1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2013, 2014 Linaro Ltd; <roy.franz@linaro.org>
5 * This file implements the EFI boot stub for the arm64 kernel.
6 * Adapted from ARM version by Mark Salter <msalter@redhat.com>
10 * To prevent the compiler from emitting GOT-indirected (and thus absolute)
11 * references to the section markers, override their visibility as 'hidden'
13 #pragma GCC visibility push(hidden)
14 #include <asm/sections.h>
15 #pragma GCC visibility pop
17 #include <linux/efi.h>
19 #include <asm/memory.h>
20 #include <asm/sysreg.h>
24 efi_status_t
check_platform_features(efi_system_table_t
*sys_table_arg
)
28 /* UEFI mandates support for 4 KB granularity, no need to check */
29 if (IS_ENABLED(CONFIG_ARM64_4K_PAGES
))
32 tg
= (read_cpuid(ID_AA64MMFR0_EL1
) >> ID_AA64MMFR0_TGRAN_SHIFT
) & 0xf;
33 if (tg
!= ID_AA64MMFR0_TGRAN_SUPPORTED
) {
34 if (IS_ENABLED(CONFIG_ARM64_64K_PAGES
))
35 pr_efi_err(sys_table_arg
, "This 64 KB granular kernel is not supported by your CPU\n");
37 pr_efi_err(sys_table_arg
, "This 16 KB granular kernel is not supported by your CPU\n");
38 return EFI_UNSUPPORTED
;
43 efi_status_t
handle_kernel_image(efi_system_table_t
*sys_table_arg
,
44 unsigned long *image_addr
,
45 unsigned long *image_size
,
46 unsigned long *reserve_addr
,
47 unsigned long *reserve_size
,
48 unsigned long dram_base
,
49 efi_loaded_image_t
*image
)
52 unsigned long kernel_size
, kernel_memsize
= 0;
53 void *old_image_addr
= (void *)*image_addr
;
54 unsigned long preferred_offset
;
57 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE
)) {
59 status
= efi_get_random_bytes(sys_table_arg
,
62 if (status
== EFI_NOT_FOUND
) {
63 pr_efi(sys_table_arg
, "EFI_RNG_PROTOCOL unavailable, no randomness supplied\n");
64 } else if (status
!= EFI_SUCCESS
) {
65 pr_efi_err(sys_table_arg
, "efi_get_random_bytes() failed\n");
69 pr_efi(sys_table_arg
, "KASLR disabled on kernel command line\n");
74 * The preferred offset of the kernel Image is TEXT_OFFSET bytes beyond
75 * a 2 MB aligned base, which itself may be lower than dram_base, as
76 * long as the resulting offset equals or exceeds it.
78 preferred_offset
= round_down(dram_base
, MIN_KIMG_ALIGN
) + TEXT_OFFSET
;
79 if (preferred_offset
< dram_base
)
80 preferred_offset
+= MIN_KIMG_ALIGN
;
82 kernel_size
= _edata
- _text
;
83 kernel_memsize
= kernel_size
+ (_end
- _edata
);
85 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE
) && phys_seed
!= 0) {
87 * If CONFIG_DEBUG_ALIGN_RODATA is not set, produce a
88 * displacement in the interval [0, MIN_KIMG_ALIGN) that
89 * doesn't violate this kernel's de-facto alignment
92 u32 mask
= (MIN_KIMG_ALIGN
- 1) & ~(EFI_KIMG_ALIGN
- 1);
93 u32 offset
= !IS_ENABLED(CONFIG_DEBUG_ALIGN_RODATA
) ?
94 (phys_seed
>> 32) & mask
: TEXT_OFFSET
;
97 * With CONFIG_RANDOMIZE_TEXT_OFFSET=y, TEXT_OFFSET may not
98 * be a multiple of EFI_KIMG_ALIGN, and we must ensure that
99 * we preserve the misalignment of 'offset' relative to
100 * EFI_KIMG_ALIGN so that statically allocated objects whose
101 * alignment exceeds PAGE_SIZE appear correctly aligned in
104 offset
|= TEXT_OFFSET
% EFI_KIMG_ALIGN
;
107 * If KASLR is enabled, and we have some randomness available,
108 * locate the kernel at a randomized offset in physical memory.
110 *reserve_size
= kernel_memsize
+ offset
;
111 status
= efi_random_alloc(sys_table_arg
, *reserve_size
,
112 MIN_KIMG_ALIGN
, reserve_addr
,
115 *image_addr
= *reserve_addr
+ offset
;
118 * Else, try a straight allocation at the preferred offset.
119 * This will work around the issue where, if dram_base == 0x0,
120 * efi_low_alloc() refuses to allocate at 0x0 (to prevent the
121 * address of the allocation to be mistaken for a FAIL return
122 * value or a NULL pointer). It will also ensure that, on
123 * platforms where the [dram_base, dram_base + TEXT_OFFSET)
124 * interval is partially occupied by the firmware (like on APM
125 * Mustang), we can still place the kernel at the address
126 * 'dram_base + TEXT_OFFSET'.
128 if (*image_addr
== preferred_offset
)
131 *image_addr
= *reserve_addr
= preferred_offset
;
132 *reserve_size
= round_up(kernel_memsize
, EFI_ALLOC_ALIGN
);
134 status
= efi_call_early(allocate_pages
, EFI_ALLOCATE_ADDRESS
,
136 *reserve_size
/ EFI_PAGE_SIZE
,
137 (efi_physical_addr_t
*)reserve_addr
);
140 if (status
!= EFI_SUCCESS
) {
141 *reserve_size
= kernel_memsize
+ TEXT_OFFSET
;
142 status
= efi_low_alloc(sys_table_arg
, *reserve_size
,
143 MIN_KIMG_ALIGN
, reserve_addr
);
145 if (status
!= EFI_SUCCESS
) {
146 pr_efi_err(sys_table_arg
, "Failed to relocate kernel\n");
150 *image_addr
= *reserve_addr
+ TEXT_OFFSET
;
152 memcpy((void *)*image_addr
, old_image_addr
, kernel_size
);