This source file includes following definitions.
- check_platform_features
- handle_kernel_image
1
2
3
4
5
6
7
8
9
10
11
12
13 #pragma GCC visibility push(hidden)
14 #include <asm/sections.h>
15 #pragma GCC visibility pop
16
17 #include <linux/efi.h>
18 #include <asm/efi.h>
19 #include <asm/memory.h>
20 #include <asm/sysreg.h>
21
22 #include "efistub.h"
23
24 efi_status_t check_platform_features(efi_system_table_t *sys_table_arg)
25 {
26 u64 tg;
27
28
29 if (IS_ENABLED(CONFIG_ARM64_4K_PAGES))
30 return EFI_SUCCESS;
31
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");
36 else
37 pr_efi_err(sys_table_arg, "This 16 KB granular kernel is not supported by your CPU\n");
38 return EFI_UNSUPPORTED;
39 }
40 return EFI_SUCCESS;
41 }
42
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)
50 {
51 efi_status_t status;
52 unsigned long kernel_size, kernel_memsize = 0;
53 void *old_image_addr = (void *)*image_addr;
54 unsigned long preferred_offset;
55 u64 phys_seed = 0;
56
57 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE)) {
58 if (!nokaslr()) {
59 status = efi_get_random_bytes(sys_table_arg,
60 sizeof(phys_seed),
61 (u8 *)&phys_seed);
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");
66 return status;
67 }
68 } else {
69 pr_efi(sys_table_arg, "KASLR disabled on kernel command line\n");
70 }
71 }
72
73
74
75
76
77
78 preferred_offset = round_down(dram_base, MIN_KIMG_ALIGN) + TEXT_OFFSET;
79 if (preferred_offset < dram_base)
80 preferred_offset += MIN_KIMG_ALIGN;
81
82 kernel_size = _edata - _text;
83 kernel_memsize = kernel_size + (_end - _edata);
84
85 if (IS_ENABLED(CONFIG_RANDOMIZE_BASE) && phys_seed != 0) {
86
87
88
89
90
91
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;
95
96
97
98
99
100
101
102
103
104 offset |= TEXT_OFFSET % EFI_KIMG_ALIGN;
105
106
107
108
109
110 *reserve_size = kernel_memsize + offset;
111 status = efi_random_alloc(sys_table_arg, *reserve_size,
112 MIN_KIMG_ALIGN, reserve_addr,
113 (u32)phys_seed);
114
115 *image_addr = *reserve_addr + offset;
116 } else {
117
118
119
120
121
122
123
124
125
126
127
128 if (*image_addr == preferred_offset)
129 return EFI_SUCCESS;
130
131 *image_addr = *reserve_addr = preferred_offset;
132 *reserve_size = round_up(kernel_memsize, EFI_ALLOC_ALIGN);
133
134 status = efi_call_early(allocate_pages, EFI_ALLOCATE_ADDRESS,
135 EFI_LOADER_DATA,
136 *reserve_size / EFI_PAGE_SIZE,
137 (efi_physical_addr_t *)reserve_addr);
138 }
139
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);
144
145 if (status != EFI_SUCCESS) {
146 pr_efi_err(sys_table_arg, "Failed to relocate kernel\n");
147 *reserve_size = 0;
148 return status;
149 }
150 *image_addr = *reserve_addr + TEXT_OFFSET;
151 }
152 memcpy((void *)*image_addr, old_image_addr, kernel_size);
153
154 return EFI_SUCCESS;
155 }