]>
Commit | Line | Data |
---|---|---|
f739fcd8 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
b9939336 AG |
2 | /* |
3 | * EFI application loader | |
4 | * | |
5 | * Copyright (c) 2016 Alexander Graf | |
b9939336 AG |
6 | */ |
7 | ||
c0018374 HS |
8 | #define LOG_CATEGORY LOGC_EFI |
9 | ||
b9939336 | 10 | #include <common.h> |
82d01f04 | 11 | #include <bootm.h> |
f6c6df7e | 12 | #include <charset.h> |
b9939336 | 13 | #include <command.h> |
9d922450 | 14 | #include <dm.h> |
b9939336 | 15 | #include <efi_loader.h> |
d78e40d6 | 16 | #include <efi_selftest.h> |
7b51b576 | 17 | #include <env.h> |
b9939336 | 18 | #include <errno.h> |
4d72caa5 | 19 | #include <image.h> |
c0018374 | 20 | #include <log.h> |
336d4615 | 21 | #include <malloc.h> |
401d1c4f | 22 | #include <asm/global_data.h> |
b08c8c48 MY |
23 | #include <linux/libfdt.h> |
24 | #include <linux/libfdt_env.h> | |
354264b3 | 25 | #include <mapmem.h> |
ad0c1a3d | 26 | #include <memalign.h> |
e275458c SG |
27 | #include <asm-generic/sections.h> |
28 | #include <linux/linkage.h> | |
0d9d501f AG |
29 | |
30 | DECLARE_GLOBAL_DATA_PTR; | |
b9939336 | 31 | |
95c5553e RC |
32 | static struct efi_device_path *bootefi_image_path; |
33 | static struct efi_device_path *bootefi_device_path; | |
5f59518a HS |
34 | static void *image_addr; |
35 | static size_t image_size; | |
36 | ||
37 | /** | |
38 | * efi_clear_bootdev() - clear boot device | |
39 | */ | |
40 | static void efi_clear_bootdev(void) | |
41 | { | |
42 | efi_free_pool(bootefi_device_path); | |
43 | efi_free_pool(bootefi_image_path); | |
44 | bootefi_device_path = NULL; | |
45 | bootefi_image_path = NULL; | |
46 | image_addr = NULL; | |
47 | image_size = 0; | |
48 | } | |
49 | ||
50 | /** | |
51 | * efi_set_bootdev() - set boot device | |
52 | * | |
53 | * This function is called when a file is loaded, e.g. via the 'load' command. | |
54 | * We use the path to this file to inform the UEFI binary about the boot device. | |
55 | * | |
56 | * @dev: device, e.g. "MMC" | |
57 | * @devnr: number of the device, e.g. "1:2" | |
58 | * @path: path to file loaded | |
59 | * @buffer: buffer with file loaded | |
60 | * @buffer_size: size of file loaded | |
61 | */ | |
62 | void efi_set_bootdev(const char *dev, const char *devnr, const char *path, | |
63 | void *buffer, size_t buffer_size) | |
64 | { | |
65 | struct efi_device_path *device, *image; | |
66 | efi_status_t ret; | |
67 | ||
68 | /* Forget overwritten image */ | |
69 | if (buffer + buffer_size >= image_addr && | |
70 | image_addr + image_size >= buffer) | |
71 | efi_clear_bootdev(); | |
72 | ||
73 | /* Remember only PE-COFF and FIT images */ | |
74 | if (efi_check_pe(buffer, buffer_size, NULL) != EFI_SUCCESS) { | |
75 | #ifdef CONFIG_FIT | |
c5819701 | 76 | if (fit_check_format(buffer, IMAGE_SIZE_INVAL)) |
5f59518a HS |
77 | return; |
78 | /* | |
79 | * FIT images of type EFI_OS are started via command bootm. | |
80 | * We should not use their boot device with the bootefi command. | |
81 | */ | |
82 | buffer = 0; | |
83 | buffer_size = 0; | |
84 | #else | |
85 | return; | |
86 | #endif | |
87 | } | |
88 | ||
89 | /* efi_set_bootdev() is typically called repeatedly, recover memory */ | |
90 | efi_clear_bootdev(); | |
91 | ||
92 | image_addr = buffer; | |
93 | image_size = buffer_size; | |
94 | ||
95 | ret = efi_dp_from_name(dev, devnr, path, &device, &image); | |
96 | if (ret == EFI_SUCCESS) { | |
97 | bootefi_device_path = device; | |
98 | if (image) { | |
99 | /* FIXME: image should not contain device */ | |
100 | struct efi_device_path *image_tmp = image; | |
101 | ||
102 | efi_dp_split_file_path(image, &device, &image); | |
103 | efi_free_pool(image_tmp); | |
104 | } | |
105 | bootefi_image_path = image; | |
106 | } else { | |
107 | efi_clear_bootdev(); | |
108 | } | |
109 | } | |
b9939336 | 110 | |
810371a0 | 111 | /** |
1064d049 | 112 | * efi_env_set_load_options() - set load options from environment variable |
d78e40d6 | 113 | * |
a3850e40 HS |
114 | * @handle: the image handle |
115 | * @env_var: name of the environment variable | |
116 | * @load_options: pointer to load options (output) | |
117 | * Return: status code | |
d78e40d6 | 118 | */ |
1064d049 HS |
119 | static efi_status_t efi_env_set_load_options(efi_handle_t handle, |
120 | const char *env_var, | |
121 | u16 **load_options) | |
d78e40d6 | 122 | { |
d78e40d6 | 123 | const char *env = env_get(env_var); |
1064d049 | 124 | size_t size; |
7086a71a | 125 | u16 *pos; |
defa7b8e AT |
126 | efi_status_t ret; |
127 | ||
a3850e40 | 128 | *load_options = NULL; |
d78e40d6 | 129 | if (!env) |
1064d049 HS |
130 | return EFI_SUCCESS; |
131 | size = sizeof(u16) * (utf8_utf16_strlen(env) + 1); | |
132 | pos = calloc(size, 1); | |
133 | if (!pos) | |
defa7b8e | 134 | return EFI_OUT_OF_RESOURCES; |
a3850e40 | 135 | *load_options = pos; |
7086a71a | 136 | utf8_utf16_strcpy(&pos, env); |
1064d049 HS |
137 | ret = efi_set_load_options(handle, size, *load_options); |
138 | if (ret != EFI_SUCCESS) { | |
139 | free(*load_options); | |
140 | *load_options = NULL; | |
141 | } | |
142 | return ret; | |
d78e40d6 HS |
143 | } |
144 | ||
6182495e HS |
145 | #if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) |
146 | ||
9dff4900 SG |
147 | /** |
148 | * copy_fdt() - Copy the device tree to a new location available to EFI | |
149 | * | |
16b615d9 | 150 | * The FDT is copied to a suitable location within the EFI memory map. |
c3772ca1 | 151 | * Additional 12 KiB are added to the space in case the device tree needs to be |
9dff4900 SG |
152 | * expanded later with fdt_open_into(). |
153 | * | |
16b615d9 HS |
154 | * @fdtp: On entry a pointer to the flattened device tree. |
155 | * On exit a pointer to the copy of the flattened device tree. | |
4574d1b3 HS |
156 | * FDT start |
157 | * Return: status code | |
9dff4900 | 158 | */ |
16b615d9 | 159 | static efi_status_t copy_fdt(void **fdtp) |
0d9d501f | 160 | { |
ad0c1a3d | 161 | unsigned long fdt_ram_start = -1L, fdt_pages; |
9dff4900 SG |
162 | efi_status_t ret = 0; |
163 | void *fdt, *new_fdt; | |
ad0c1a3d | 164 | u64 new_fdt_addr; |
9dff4900 | 165 | uint fdt_size; |
ad0c1a3d | 166 | int i; |
0d9d501f | 167 | |
9dff4900 SG |
168 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
169 | u64 ram_start = gd->bd->bi_dram[i].start; | |
170 | u64 ram_size = gd->bd->bi_dram[i].size; | |
0d9d501f | 171 | |
ad0c1a3d AG |
172 | if (!ram_size) |
173 | continue; | |
174 | ||
175 | if (ram_start < fdt_ram_start) | |
176 | fdt_ram_start = ram_start; | |
177 | } | |
178 | ||
bc9a638a | 179 | /* |
c3772ca1 HS |
180 | * Give us at least 12 KiB of breathing room in case the device tree |
181 | * needs to be expanded later. | |
bc9a638a | 182 | */ |
16b615d9 | 183 | fdt = *fdtp; |
c3772ca1 HS |
184 | fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000); |
185 | fdt_size = fdt_pages << EFI_PAGE_SHIFT; | |
ad0c1a3d | 186 | |
16b615d9 HS |
187 | /* |
188 | * Safe fdt location is at 127 MiB. | |
189 | * On the sandbox convert from the sandbox address space. | |
190 | */ | |
191 | new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 + | |
192 | fdt_size, 0); | |
9dff4900 | 193 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
42a426e0 | 194 | EFI_ACPI_RECLAIM_MEMORY, fdt_pages, |
9dff4900 SG |
195 | &new_fdt_addr); |
196 | if (ret != EFI_SUCCESS) { | |
ad0c1a3d | 197 | /* If we can't put it there, put it somewhere */ |
a44bffcc | 198 | new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size); |
9dff4900 | 199 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
42a426e0 | 200 | EFI_ACPI_RECLAIM_MEMORY, fdt_pages, |
9dff4900 SG |
201 | &new_fdt_addr); |
202 | if (ret != EFI_SUCCESS) { | |
c0018374 | 203 | log_err("ERROR: Failed to reserve space for FDT\n"); |
9dff4900 | 204 | goto done; |
85a6e9b3 | 205 | } |
ad0c1a3d | 206 | } |
16b615d9 | 207 | new_fdt = (void *)(uintptr_t)new_fdt_addr; |
0d9d501f AG |
208 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
209 | fdt_set_totalsize(new_fdt, fdt_size); | |
210 | ||
16b615d9 | 211 | *fdtp = (void *)(uintptr_t)new_fdt_addr; |
9dff4900 SG |
212 | done: |
213 | return ret; | |
0d9d501f AG |
214 | } |
215 | ||
6182495e HS |
216 | /** |
217 | * get_config_table() - get configuration table | |
218 | * | |
219 | * @guid: GUID of the configuration table | |
220 | * Return: pointer to configuration table or NULL | |
221 | */ | |
222 | static void *get_config_table(const efi_guid_t *guid) | |
223 | { | |
224 | size_t i; | |
225 | ||
226 | for (i = 0; i < systab.nr_tables; i++) { | |
227 | if (!guidcmp(guid, &systab.tables[i].guid)) | |
228 | return systab.tables[i].table; | |
229 | } | |
230 | return NULL; | |
231 | } | |
232 | ||
233 | #endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */ | |
234 | ||
e878e6a7 | 235 | /** |
7a597259 | 236 | * efi_install_fdt() - install device tree |
e2d82f8b | 237 | * |
7d4d551e HS |
238 | * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory |
239 | * address will will be installed as configuration table, otherwise the device | |
240 | * tree located at the address indicated by environment variable fdt_addr or as | |
241 | * fallback fdtcontroladdr will be used. | |
e2d82f8b | 242 | * |
7a597259 HS |
243 | * On architectures using ACPI tables device trees shall not be installed as |
244 | * configuration table. | |
e2d82f8b | 245 | * |
7d4d551e | 246 | * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the |
753aa18f HS |
247 | * the hardware device tree as indicated by environment variable |
248 | * fdt_addr or as fallback the internal device tree as indicated by | |
249 | * the environment variable fdtcontroladdr | |
e878e6a7 | 250 | * Return: status code |
e878e6a7 | 251 | */ |
f64f2232 | 252 | efi_status_t efi_install_fdt(void *fdt) |
e878e6a7 | 253 | { |
6182495e HS |
254 | /* |
255 | * The EBBR spec requires that we have either an FDT or an ACPI table | |
256 | * but not both. | |
257 | */ | |
258 | #if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) | |
f64f2232 | 259 | if (fdt) { |
c0018374 | 260 | log_err("ERROR: can't have ACPI table and device tree.\n"); |
6182495e HS |
261 | return EFI_LOAD_ERROR; |
262 | } | |
263 | #else | |
3ffc52fd | 264 | bootm_headers_t img = { 0 }; |
e878e6a7 AT |
265 | efi_status_t ret; |
266 | ||
f64f2232 | 267 | if (fdt == EFI_FDT_USE_INTERNAL) { |
7a597259 | 268 | const char *fdt_opt; |
f64f2232 | 269 | uintptr_t fdt_addr; |
7a597259 | 270 | |
6182495e HS |
271 | /* Look for device tree that is already installed */ |
272 | if (get_config_table(&efi_guid_fdt)) | |
273 | return EFI_SUCCESS; | |
753aa18f HS |
274 | /* Check if there is a hardware device tree */ |
275 | fdt_opt = env_get("fdt_addr"); | |
276 | /* Use our own device tree as fallback */ | |
6182495e | 277 | if (!fdt_opt) { |
753aa18f HS |
278 | fdt_opt = env_get("fdtcontroladdr"); |
279 | if (!fdt_opt) { | |
c0018374 | 280 | log_err("ERROR: need device tree\n"); |
753aa18f HS |
281 | return EFI_NOT_FOUND; |
282 | } | |
6182495e | 283 | } |
7e5f460e | 284 | fdt_addr = hextoul(fdt_opt, NULL); |
6182495e | 285 | if (!fdt_addr) { |
c0018374 | 286 | log_err("ERROR: invalid $fdt_addr or $fdtcontroladdr\n"); |
6182495e | 287 | return EFI_LOAD_ERROR; |
3ffc52fd | 288 | } |
f64f2232 | 289 | fdt = map_sysmem(fdt_addr, 0); |
6182495e | 290 | } |
3ffc52fd | 291 | |
6182495e | 292 | /* Install device tree */ |
6182495e | 293 | if (fdt_check_header(fdt)) { |
c0018374 | 294 | log_err("ERROR: invalid device tree\n"); |
6182495e HS |
295 | return EFI_LOAD_ERROR; |
296 | } | |
3ffc52fd | 297 | |
6182495e HS |
298 | /* Prepare device tree for payload */ |
299 | ret = copy_fdt(&fdt); | |
300 | if (ret) { | |
c0018374 | 301 | log_err("ERROR: out of memory\n"); |
6182495e HS |
302 | return EFI_OUT_OF_RESOURCES; |
303 | } | |
3ffc52fd | 304 | |
6182495e | 305 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
c0018374 | 306 | log_err("ERROR: failed to process device tree\n"); |
6182495e HS |
307 | return EFI_LOAD_ERROR; |
308 | } | |
309 | ||
fef907b2 HS |
310 | /* Create memory reservations as indicated by the device tree */ |
311 | efi_carve_out_dt_rsv(fdt); | |
312 | ||
6182495e HS |
313 | /* Install device tree as UEFI table */ |
314 | ret = efi_install_configuration_table(&efi_guid_fdt, fdt); | |
315 | if (ret != EFI_SUCCESS) { | |
c0018374 | 316 | log_err("ERROR: failed to install device tree\n"); |
6182495e | 317 | return ret; |
e878e6a7 | 318 | } |
6182495e | 319 | #endif /* GENERATE_ACPI_TABLE */ |
e878e6a7 AT |
320 | |
321 | return EFI_SUCCESS; | |
322 | } | |
323 | ||
c982874e HS |
324 | /** |
325 | * do_bootefi_exec() - execute EFI binary | |
326 | * | |
72e1fcac HS |
327 | * The image indicated by @handle is started. When it returns the allocated |
328 | * memory for the @load_options is freed. | |
329 | * | |
6b95b38c | 330 | * @handle: handle of loaded image |
72e1fcac | 331 | * @load_options: load options |
c982874e HS |
332 | * Return: status code |
333 | * | |
334 | * Load the EFI binary into a newly assigned memory unwinding the relocation | |
335 | * information, install the loaded image protocol, and call the binary. | |
b9939336 | 336 | */ |
0ad64007 | 337 | static efi_status_t do_bootefi_exec(efi_handle_t handle, void *load_options) |
b9939336 | 338 | { |
45204b10 | 339 | efi_status_t ret; |
556d8dc9 HS |
340 | efi_uintn_t exit_data_size = 0; |
341 | u16 *exit_data = NULL; | |
bf19273e | 342 | |
82d01f04 HS |
343 | /* On ARM switch from EL3 or secure mode to EL2 or non-secure mode */ |
344 | switch_to_non_secure_mode(); | |
345 | ||
b9939336 | 346 | /* Call our payload! */ |
556d8dc9 | 347 | ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data)); |
c0018374 HS |
348 | if (ret != EFI_SUCCESS) { |
349 | log_err("## Application failed, r = %lu\n", | |
350 | ret & ~EFI_ERROR_MASK); | |
351 | if (exit_data) { | |
352 | log_err("## %ls\n", exit_data); | |
353 | efi_free_pool(exit_data); | |
354 | } | |
556d8dc9 | 355 | } |
95c5553e | 356 | |
3fc2b163 | 357 | efi_restore_gd(); |
5e2f0391 | 358 | |
a3850e40 | 359 | free(load_options); |
95c5553e | 360 | |
53f6a5aa IA |
361 | if (IS_ENABLED(CONFIG_EFI_LOAD_FILE2_INITRD)) |
362 | efi_initrd_deregister(); | |
363 | ||
95c5553e | 364 | return ret; |
b9939336 AG |
365 | } |
366 | ||
d6b21894 | 367 | /** |
7e92db81 | 368 | * do_efibootmgr() - execute EFI boot manager |
d6b21894 | 369 | * |
d6b21894 | 370 | * Return: status code |
d6b21894 | 371 | */ |
7e92db81 | 372 | static int do_efibootmgr(void) |
cc999d58 | 373 | { |
6b95b38c | 374 | efi_handle_t handle; |
d6b21894 | 375 | efi_status_t ret; |
0ad64007 | 376 | void *load_options; |
d6b21894 | 377 | |
0ad64007 | 378 | ret = efi_bootmgr_load(&handle, &load_options); |
6b95b38c | 379 | if (ret != EFI_SUCCESS) { |
c0018374 | 380 | log_notice("EFI boot manager: Cannot load any image\n"); |
6b95b38c AT |
381 | return CMD_RET_FAILURE; |
382 | } | |
cc999d58 | 383 | |
0ad64007 | 384 | ret = do_bootefi_exec(handle, load_options); |
cc999d58 | 385 | |
d6b21894 | 386 | if (ret != EFI_SUCCESS) |
6b95b38c | 387 | return CMD_RET_FAILURE; |
cc999d58 | 388 | |
6b95b38c | 389 | return CMD_RET_SUCCESS; |
cc999d58 AT |
390 | } |
391 | ||
810371a0 | 392 | /** |
7e92db81 HS |
393 | * do_bootefi_image() - execute EFI binary |
394 | * | |
395 | * Set up memory image for the binary to be loaded, prepare device path, and | |
396 | * then call do_bootefi_exec() to execute it. | |
e2e4098e AT |
397 | * |
398 | * @image_opt: string of image start address | |
e2e4098e | 399 | * Return: status code |
e2e4098e | 400 | */ |
7e92db81 | 401 | static int do_bootefi_image(const char *image_opt) |
e2e4098e | 402 | { |
6b95b38c | 403 | void *image_buf; |
6b95b38c | 404 | unsigned long addr, size; |
e2e4098e AT |
405 | efi_status_t ret; |
406 | ||
e2e4098e AT |
407 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
408 | if (!strcmp(image_opt, "hello")) { | |
bb33c79e | 409 | image_buf = __efi_helloworld_begin; |
6b95b38c | 410 | size = __efi_helloworld_end - __efi_helloworld_begin; |
5f59518a | 411 | efi_clear_bootdev(); |
e2e4098e AT |
412 | } else |
413 | #endif | |
414 | { | |
5f59518a | 415 | addr = strtoul(image_opt, NULL, 16); |
e2e4098e | 416 | /* Check that a numeric value was passed */ |
5f59518a | 417 | if (!addr) |
e2e4098e | 418 | return CMD_RET_USAGE; |
6b95b38c | 419 | |
5f59518a HS |
420 | image_buf = map_sysmem(addr, 0); |
421 | ||
422 | if (image_buf != image_addr) { | |
423 | log_err("No UEFI binary known at %s\n", image_opt); | |
424 | return CMD_RET_FAILURE; | |
425 | } | |
426 | size = image_size; | |
e2e4098e | 427 | } |
f9ceb6ac HS |
428 | ret = efi_run_image(image_buf, size); |
429 | ||
430 | if (ret != EFI_SUCCESS) | |
431 | return CMD_RET_FAILURE; | |
432 | ||
433 | return CMD_RET_SUCCESS; | |
434 | } | |
435 | ||
436 | /** | |
437 | * efi_run_image() - run loaded UEFI image | |
438 | * | |
439 | * @source_buffer: memory address of the UEFI image | |
440 | * @source_size: size of the UEFI image | |
441 | * Return: status code | |
442 | */ | |
443 | efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size) | |
444 | { | |
445 | efi_handle_t mem_handle = NULL, handle; | |
446 | struct efi_device_path *file_path = NULL; | |
c2f01039 | 447 | struct efi_device_path *msg_path; |
f9ceb6ac | 448 | efi_status_t ret; |
c2f01039 | 449 | u16 *load_options; |
e2e4098e | 450 | |
f9ceb6ac | 451 | if (!bootefi_device_path || !bootefi_image_path) { |
6b95b38c AT |
452 | /* |
453 | * Special case for efi payload not loaded from disk, | |
454 | * such as 'bootefi hello' or for example payload | |
455 | * loaded directly into memory via JTAG, etc: | |
456 | */ | |
457 | file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, | |
f9ceb6ac HS |
458 | (uintptr_t)source_buffer, |
459 | source_size); | |
6b95b38c AT |
460 | /* |
461 | * Make sure that device for device_path exist | |
462 | * in load_image(). Otherwise, shell and grub will fail. | |
463 | */ | |
464 | ret = efi_create_handle(&mem_handle); | |
465 | if (ret != EFI_SUCCESS) | |
466 | goto out; | |
467 | ||
468 | ret = efi_add_protocol(mem_handle, &efi_guid_device_path, | |
469 | file_path); | |
470 | if (ret != EFI_SUCCESS) | |
471 | goto out; | |
c2f01039 | 472 | msg_path = file_path; |
6b95b38c | 473 | } else { |
f9ceb6ac HS |
474 | file_path = efi_dp_append(bootefi_device_path, |
475 | bootefi_image_path); | |
c2f01039 | 476 | msg_path = bootefi_image_path; |
6b95b38c AT |
477 | } |
478 | ||
c2f01039 HS |
479 | log_info("Booting %pD\n", msg_path); |
480 | ||
f9ceb6ac HS |
481 | ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer, |
482 | source_size, &handle)); | |
c2f01039 HS |
483 | if (ret != EFI_SUCCESS) { |
484 | log_err("Loading image failed\n"); | |
6b95b38c | 485 | goto out; |
c2f01039 | 486 | } |
0ad64007 HS |
487 | |
488 | /* Transfer environment variable as load options */ | |
489 | ret = efi_env_set_load_options(handle, "bootargs", &load_options); | |
490 | if (ret != EFI_SUCCESS) | |
491 | goto out; | |
492 | ||
493 | ret = do_bootefi_exec(handle, load_options); | |
6b95b38c AT |
494 | |
495 | out: | |
4fe050e6 HS |
496 | efi_delete_handle(mem_handle); |
497 | efi_free_pool(file_path); | |
f9ceb6ac | 498 | return ret; |
e2e4098e AT |
499 | } |
500 | ||
d9717eae | 501 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
3fc2b163 AT |
502 | static efi_status_t bootefi_run_prepare(const char *load_options_path, |
503 | struct efi_device_path *device_path, | |
504 | struct efi_device_path *image_path, | |
505 | struct efi_loaded_image_obj **image_objp, | |
506 | struct efi_loaded_image **loaded_image_infop) | |
507 | { | |
508 | efi_status_t ret; | |
a3850e40 | 509 | u16 *load_options; |
3fc2b163 AT |
510 | |
511 | ret = efi_setup_loaded_image(device_path, image_path, image_objp, | |
512 | loaded_image_infop); | |
513 | if (ret != EFI_SUCCESS) | |
514 | return ret; | |
515 | ||
516 | /* Transfer environment variable as load options */ | |
1064d049 HS |
517 | return efi_env_set_load_options((efi_handle_t)*image_objp, |
518 | load_options_path, | |
519 | &load_options); | |
3fc2b163 AT |
520 | } |
521 | ||
d9717eae SG |
522 | /** |
523 | * bootefi_test_prepare() - prepare to run an EFI test | |
524 | * | |
1504bb0d | 525 | * Prepare to run a test as if it were provided by a loaded image. |
d9717eae | 526 | * |
1504bb0d HS |
527 | * @image_objp: pointer to be set to the loaded image handle |
528 | * @loaded_image_infop: pointer to be set to the loaded image protocol | |
529 | * @path: dummy file path used to construct the device path | |
530 | * set in the loaded image protocol | |
531 | * @load_options_path: name of a U-Boot environment variable. Its value is | |
532 | * set as load options in the loaded image protocol. | |
533 | * Return: status code | |
d9717eae SG |
534 | */ |
535 | static efi_status_t bootefi_test_prepare | |
536 | (struct efi_loaded_image_obj **image_objp, | |
1504bb0d HS |
537 | struct efi_loaded_image **loaded_image_infop, const char *path, |
538 | const char *load_options_path) | |
d9717eae | 539 | { |
1504bb0d HS |
540 | efi_status_t ret; |
541 | ||
d9717eae | 542 | /* Construct a dummy device path */ |
1504bb0d | 543 | bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0); |
d9717eae SG |
544 | if (!bootefi_device_path) |
545 | return EFI_OUT_OF_RESOURCES; | |
1504bb0d | 546 | |
d9717eae | 547 | bootefi_image_path = efi_dp_from_file(NULL, 0, path); |
1504bb0d HS |
548 | if (!bootefi_image_path) { |
549 | ret = EFI_OUT_OF_RESOURCES; | |
550 | goto failure; | |
551 | } | |
552 | ||
553 | ret = bootefi_run_prepare(load_options_path, bootefi_device_path, | |
554 | bootefi_image_path, image_objp, | |
555 | loaded_image_infop); | |
556 | if (ret == EFI_SUCCESS) | |
557 | return ret; | |
d9717eae | 558 | |
1504bb0d | 559 | failure: |
5f59518a | 560 | efi_clear_bootdev(); |
1504bb0d | 561 | return ret; |
d9717eae SG |
562 | } |
563 | ||
3fc2b163 AT |
564 | /** |
565 | * bootefi_run_finish() - finish up after running an EFI test | |
566 | * | |
567 | * @loaded_image_info: Pointer to a struct which holds the loaded image info | |
568 | * @image_obj: Pointer to a struct which holds the loaded image object | |
569 | */ | |
570 | static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj, | |
571 | struct efi_loaded_image *loaded_image_info) | |
572 | { | |
573 | efi_restore_gd(); | |
574 | free(loaded_image_info->load_options); | |
575 | efi_delete_handle(&image_obj->header); | |
576 | } | |
577 | ||
578 | /** | |
7e92db81 | 579 | * do_efi_selftest() - execute EFI selftest |
3fc2b163 | 580 | * |
3fc2b163 | 581 | * Return: status code |
3fc2b163 | 582 | */ |
7e92db81 | 583 | static int do_efi_selftest(void) |
3fc2b163 AT |
584 | { |
585 | struct efi_loaded_image_obj *image_obj; | |
586 | struct efi_loaded_image *loaded_image_info; | |
587 | efi_status_t ret; | |
588 | ||
3fc2b163 AT |
589 | ret = bootefi_test_prepare(&image_obj, &loaded_image_info, |
590 | "\\selftest", "efi_selftest"); | |
591 | if (ret != EFI_SUCCESS) | |
592 | return CMD_RET_FAILURE; | |
593 | ||
594 | /* Execute the test */ | |
595 | ret = EFI_CALL(efi_selftest(&image_obj->header, &systab)); | |
596 | bootefi_run_finish(image_obj, loaded_image_info); | |
597 | ||
598 | return ret != EFI_SUCCESS; | |
599 | } | |
d9717eae SG |
600 | #endif /* CONFIG_CMD_BOOTEFI_SELFTEST */ |
601 | ||
7e92db81 HS |
602 | /** |
603 | * do_bootefi() - execute `bootefi` command | |
604 | * | |
605 | * @cmdtp: table entry describing command | |
606 | * @flag: bitmap indicating how the command was invoked | |
607 | * @argc: number of arguments | |
608 | * @argv: command line arguments | |
609 | * Return: status code | |
610 | */ | |
09140113 SG |
611 | static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc, |
612 | char *const argv[]) | |
b9939336 | 613 | { |
7e92db81 | 614 | efi_status_t ret; |
f64f2232 | 615 | void *fdt; |
7e92db81 | 616 | |
3fc2b163 AT |
617 | if (argc < 2) |
618 | return CMD_RET_USAGE; | |
d6b21894 | 619 | |
7e92db81 HS |
620 | /* Initialize EFI drivers */ |
621 | ret = efi_init_obj_list(); | |
622 | if (ret != EFI_SUCCESS) { | |
c0018374 HS |
623 | log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n", |
624 | ret & ~EFI_ERROR_MASK); | |
7e92db81 HS |
625 | return CMD_RET_FAILURE; |
626 | } | |
627 | ||
f64f2232 HS |
628 | if (argc > 2) { |
629 | uintptr_t fdt_addr; | |
630 | ||
7e5f460e | 631 | fdt_addr = hextoul(argv[2], NULL); |
f64f2232 HS |
632 | fdt = map_sysmem(fdt_addr, 0); |
633 | } else { | |
634 | fdt = EFI_FDT_USE_INTERNAL; | |
635 | } | |
636 | ret = efi_install_fdt(fdt); | |
7e92db81 HS |
637 | if (ret == EFI_INVALID_PARAMETER) |
638 | return CMD_RET_USAGE; | |
639 | else if (ret != EFI_SUCCESS) | |
640 | return CMD_RET_FAILURE; | |
641 | ||
ff2f532f HS |
642 | if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR)) { |
643 | if (!strcmp(argv[1], "bootmgr")) | |
644 | return do_efibootmgr(); | |
645 | } | |
3fc2b163 | 646 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
ff2f532f | 647 | if (!strcmp(argv[1], "selftest")) |
7e92db81 | 648 | return do_efi_selftest(); |
3fc2b163 AT |
649 | #endif |
650 | ||
7e92db81 | 651 | return do_bootefi_image(argv[1]); |
b9939336 AG |
652 | } |
653 | ||
654 | #ifdef CONFIG_SYS_LONGHELP | |
655 | static char bootefi_help_text[] = | |
1c39809b AG |
656 | "<image address> [fdt address]\n" |
657 | " - boot EFI payload stored at address <image address>.\n" | |
658 | " If specified, the device tree located at <fdt address> gets\n" | |
c7ae3dfd SG |
659 | " exposed as EFI configuration table.\n" |
660 | #ifdef CONFIG_CMD_BOOTEFI_HELLO | |
623b3a57 HS |
661 | "bootefi hello\n" |
662 | " - boot a sample Hello World application stored within U-Boot\n" | |
663 | #endif | |
664 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST | |
bc4f9133 | 665 | "bootefi selftest [fdt address]\n" |
623b3a57 | 666 | " - boot an EFI selftest application stored within U-Boot\n" |
d78e40d6 HS |
667 | " Use environment variable efi_selftest to select a single test.\n" |
668 | " Use 'setenv efi_selftest list' to enumerate all tests.\n" | |
c7ae3dfd | 669 | #endif |
ff2f532f | 670 | #ifdef CONFIG_CMD_BOOTEFI_BOOTMGR |
6b95b38c | 671 | "bootefi bootmgr [fdt address]\n" |
9975fe96 RC |
672 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
673 | "\n" | |
674 | " If specified, the device tree located at <fdt address> gets\n" | |
ff2f532f HS |
675 | " exposed as EFI configuration table.\n" |
676 | #endif | |
677 | ; | |
b9939336 AG |
678 | #endif |
679 | ||
680 | U_BOOT_CMD( | |
1c39809b | 681 | bootefi, 3, 0, do_bootefi, |
92dfd922 | 682 | "Boots an EFI payload from memory", |
b9939336 AG |
683 | bootefi_help_text |
684 | ); |