summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/board-dt-2nd-aarch64.S
blob: 030366c1cbf5cc76c0d64a61ceee0ed067aeab3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <linux/linkage.h>
#include <asm/barebox-arm64.h>
#include <asm/image.h>
#include "efi-header-aarch64.S"

#define IMAGE_FLAGS \
	(ARM64_IMAGE_FLAG_PAGE_SIZE_4K << ARM64_IMAGE_FLAG_PAGE_SIZE_SHIFT) | \
	(ARM64_IMAGE_FLAG_PHYS_BASE << ARM64_IMAGE_FLAG_PHYS_BASE_SHIFT)

.section .text_head_entry_start_dt_2nd
ENTRY("start_dt_2nd")
	efi_signature_nop          /* code0 */
	b 2f                       /* code1 */
	.xword 0x80000             /* Image load offset */
	.xword _barebox_image_size /* Effective Image size */
	.xword IMAGE_FLAGS	   /* Kernel flags */
	.xword 0                   /* reserved */
	.xword 0                   /* reserved */
	.xword 0                   /* reserved */
	.ascii ARM64_IMAGE_MAGIC   /* magic number */
	.int   .Lpe_header_offset  /* reserved (PE-COFF offset) */
	.asciz "barebox"	   /* unused for now */
2:
	adr x1, 0
	mov sp, x1
	/* Stack now grows into the 0x80000 image load offset specified
	 * above. This is more than enough until FDT /memory is decoded.
	 */
	b dt_2nd_aarch64

	__EFI_PE_HEADER
ENTRY_PROC_END(start_dt_2nd)