]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/bootefi.c
distro: not taint environment variables if possible
[thirdparty/u-boot.git] / cmd / bootefi.c
CommitLineData
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
d78e40d6 8#include <charset.h>
b9939336
AG
9#include <common.h>
10#include <command.h>
9d922450 11#include <dm.h>
b9939336 12#include <efi_loader.h>
d78e40d6 13#include <efi_selftest.h>
b9939336 14#include <errno.h>
b08c8c48
MY
15#include <linux/libfdt.h>
16#include <linux/libfdt_env.h>
354264b3 17#include <mapmem.h>
ad0c1a3d 18#include <memalign.h>
0d9d501f 19#include <asm/global_data.h>
e275458c 20#include <asm-generic/sections.h>
c3b11dea 21#include <asm-generic/unaligned.h>
e275458c 22#include <linux/linkage.h>
0d9d501f 23
dc500c36
MK
24#ifdef CONFIG_ARMV7_NONSEC
25#include <asm/armv7.h>
26#include <asm/secure.h>
27#endif
28
0d9d501f 29DECLARE_GLOBAL_DATA_PTR;
b9939336 30
fc225e60
HS
31#define OBJ_LIST_NOT_INITIALIZED 1
32
33static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
7cbc1241 34
95c5553e
RC
35static struct efi_device_path *bootefi_image_path;
36static struct efi_device_path *bootefi_device_path;
b9939336 37
7cbc1241 38/* Initialize and populate EFI object list */
fc225e60 39efi_status_t efi_init_obj_list(void)
7cbc1241 40{
fc225e60
HS
41 efi_status_t ret = EFI_SUCCESS;
42
1e1e1c27
HS
43 /*
44 * On the ARM architecture gd is mapped to a fixed register (r9 or x18).
45 * As this register may be overwritten by an EFI payload we save it here
46 * and restore it on every callback entered.
47 */
48 efi_save_gd();
49
098a6cdd 50 /* Initialize once only */
fc225e60
HS
51 if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED)
52 return efi_obj_list_initialized;
7cbc1241 53
640adadf
HS
54 /* Initialize system table */
55 ret = efi_initialize_system_table();
56 if (ret != EFI_SUCCESS)
57 goto out;
58
4e6b5d65
HS
59 /* Initialize root node */
60 ret = efi_root_node_register();
61 if (ret != EFI_SUCCESS)
62 goto out;
63
05ef48a2 64 /* Initialize EFI driver uclass */
fc225e60
HS
65 ret = efi_driver_init();
66 if (ret != EFI_SUCCESS)
67 goto out;
05ef48a2 68
fc225e60
HS
69 ret = efi_console_register();
70 if (ret != EFI_SUCCESS)
71 goto out;
7cbc1241 72#ifdef CONFIG_PARTITIONS
fc225e60
HS
73 ret = efi_disk_register();
74 if (ret != EFI_SUCCESS)
75 goto out;
7cbc1241
HS
76#endif
77#if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
fc225e60
HS
78 ret = efi_gop_register();
79 if (ret != EFI_SUCCESS)
80 goto out;
7cbc1241 81#endif
092f2f35 82#ifdef CONFIG_NET
fc225e60
HS
83 ret = efi_net_register();
84 if (ret != EFI_SUCCESS)
85 goto out;
7cbc1241 86#endif
86df34d4
BM
87#ifdef CONFIG_GENERATE_ACPI_TABLE
88 ret = efi_acpi_register();
89 if (ret != EFI_SUCCESS)
90 goto out;
91#endif
7cbc1241 92#ifdef CONFIG_GENERATE_SMBIOS_TABLE
fc225e60
HS
93 ret = efi_smbios_register();
94 if (ret != EFI_SUCCESS)
95 goto out;
7cbc1241 96#endif
fc225e60
HS
97 ret = efi_watchdog_register();
98 if (ret != EFI_SUCCESS)
99 goto out;
7cbc1241
HS
100
101 /* Initialize EFI runtime services */
fc225e60
HS
102 ret = efi_reset_system_init();
103 if (ret != EFI_SUCCESS)
104 goto out;
fc225e60
HS
105
106out:
107 efi_obj_list_initialized = ret;
108 return ret;
7cbc1241
HS
109}
110
c3b11dea
HS
111/*
112 * Allow unaligned memory access.
113 *
114 * This routine is overridden by architectures providing this feature.
115 */
116void __weak allow_unaligned(void)
117{
118}
119
d78e40d6
HS
120/*
121 * Set the load options of an image from an environment variable.
122 *
123 * @loaded_image_info: the image
124 * @env_var: name of the environment variable
125 */
126static void set_load_options(struct efi_loaded_image *loaded_image_info,
127 const char *env_var)
128{
129 size_t size;
130 const char *env = env_get(env_var);
7086a71a 131 u16 *pos;
d78e40d6
HS
132
133 loaded_image_info->load_options = NULL;
134 loaded_image_info->load_options_size = 0;
135 if (!env)
136 return;
7086a71a 137 size = utf8_utf16_strlen(env) + 1;
d78e40d6
HS
138 loaded_image_info->load_options = calloc(size, sizeof(u16));
139 if (!loaded_image_info->load_options) {
140 printf("ERROR: Out of memory\n");
141 return;
142 }
7086a71a
HS
143 pos = loaded_image_info->load_options;
144 utf8_utf16_strcpy(&pos, env);
d78e40d6
HS
145 loaded_image_info->load_options_size = size * 2;
146}
147
9dff4900
SG
148/**
149 * copy_fdt() - Copy the device tree to a new location available to EFI
150 *
16b615d9 151 * The FDT is copied to a suitable location within the EFI memory map.
c3772ca1 152 * Additional 12 KiB are added to the space in case the device tree needs to be
9dff4900
SG
153 * expanded later with fdt_open_into().
154 *
16b615d9
HS
155 * @fdtp: On entry a pointer to the flattened device tree.
156 * On exit a pointer to the copy of the flattened device tree.
4574d1b3
HS
157 * FDT start
158 * Return: status code
9dff4900 159 */
16b615d9 160static efi_status_t copy_fdt(void **fdtp)
0d9d501f 161{
ad0c1a3d 162 unsigned long fdt_ram_start = -1L, fdt_pages;
9dff4900
SG
163 efi_status_t ret = 0;
164 void *fdt, *new_fdt;
ad0c1a3d 165 u64 new_fdt_addr;
9dff4900 166 uint fdt_size;
ad0c1a3d 167 int i;
0d9d501f 168
9dff4900
SG
169 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
170 u64 ram_start = gd->bd->bi_dram[i].start;
171 u64 ram_size = gd->bd->bi_dram[i].size;
0d9d501f 172
ad0c1a3d
AG
173 if (!ram_size)
174 continue;
175
176 if (ram_start < fdt_ram_start)
177 fdt_ram_start = ram_start;
178 }
179
bc9a638a 180 /*
c3772ca1
HS
181 * Give us at least 12 KiB of breathing room in case the device tree
182 * needs to be expanded later.
bc9a638a 183 */
16b615d9 184 fdt = *fdtp;
c3772ca1
HS
185 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
186 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
ad0c1a3d 187
16b615d9
HS
188 /*
189 * Safe fdt location is at 127 MiB.
190 * On the sandbox convert from the sandbox address space.
191 */
192 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
193 fdt_size, 0);
9dff4900
SG
194 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
195 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
196 &new_fdt_addr);
197 if (ret != EFI_SUCCESS) {
ad0c1a3d 198 /* If we can't put it there, put it somewhere */
a44bffcc 199 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
9dff4900
SG
200 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
201 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
202 &new_fdt_addr);
203 if (ret != EFI_SUCCESS) {
85a6e9b3 204 printf("ERROR: Failed to reserve space for FDT\n");
9dff4900 205 goto done;
85a6e9b3 206 }
ad0c1a3d 207 }
16b615d9 208 new_fdt = (void *)(uintptr_t)new_fdt_addr;
0d9d501f
AG
209 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
210 fdt_set_totalsize(new_fdt, fdt_size);
211
16b615d9 212 *fdtp = (void *)(uintptr_t)new_fdt_addr;
9dff4900
SG
213done:
214 return ret;
0d9d501f
AG
215}
216
3eb0841b 217static efi_status_t efi_do_enter(
2074f700 218 efi_handle_t image_handle, struct efi_system_table *st,
c6fa5df6
AG
219 EFIAPI efi_status_t (*entry)(
220 efi_handle_t image_handle,
221 struct efi_system_table *st))
b06d8ac3
HS
222{
223 efi_status_t ret = EFI_LOAD_ERROR;
224
225 if (entry)
226 ret = entry(image_handle, st);
227 st->boottime->exit(image_handle, ret, 0, NULL);
228 return ret;
229}
230
ec6617c3 231#ifdef CONFIG_ARM64
c6fa5df6 232static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)(
2074f700
HS
233 efi_handle_t image_handle, struct efi_system_table *st),
234 efi_handle_t image_handle, struct efi_system_table *st)
ec6617c3
AW
235{
236 /* Enable caches again */
237 dcache_enable();
238
b06d8ac3 239 return efi_do_enter(image_handle, st, entry);
ec6617c3
AW
240}
241#endif
242
dc500c36 243#ifdef CONFIG_ARMV7_NONSEC
f17f2001
MK
244static bool is_nonsec;
245
dc500c36
MK
246static efi_status_t efi_run_in_hyp(EFIAPI efi_status_t (*entry)(
247 efi_handle_t image_handle, struct efi_system_table *st),
248 efi_handle_t image_handle, struct efi_system_table *st)
249{
250 /* Enable caches again */
251 dcache_enable();
252
f17f2001
MK
253 is_nonsec = true;
254
dc500c36
MK
255 return efi_do_enter(image_handle, st, entry);
256}
257#endif
258
416e07e2
SG
259/*
260 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
261 *
262 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
263 * ignored because this is not critical and we would rather continue to try to
264 * boot.
265 *
266 * @fdt: Pointer to device tree
267 */
268static void efi_carve_out_dt_rsv(void *fdt)
806d2fa8
AG
269{
270 int nr_rsv, i;
271 uint64_t addr, size, pages;
272
273 nr_rsv = fdt_num_mem_rsv(fdt);
274
275 /* Look for an existing entry and add it to the efi mem map. */
276 for (i = 0; i < nr_rsv; i++) {
277 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
278 continue;
279
16b615d9
HS
280 /* Convert from sandbox address space. */
281 addr = (uintptr_t)map_sysmem(addr, 0);
282
c3772ca1 283 pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK));
23fd84b3 284 addr &= ~EFI_PAGE_MASK;
416e07e2
SG
285 if (!efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
286 false))
287 printf("FDT memrsv map %d: Failed to add to map\n", i);
806d2fa8 288 }
806d2fa8
AG
289}
290
9dff4900 291static efi_status_t efi_install_fdt(ulong fdt_addr)
bc4f9133
HS
292{
293 bootm_headers_t img = { 0 };
bc4f9133 294 efi_status_t ret;
9dff4900 295 void *fdt;
bc4f9133 296
9dff4900 297 fdt = map_sysmem(fdt_addr, 0);
bc4f9133
HS
298 if (fdt_check_header(fdt)) {
299 printf("ERROR: invalid device tree\n");
300 return EFI_INVALID_PARAMETER;
301 }
302
0c9ac06a
HS
303 /* Create memory reservation as indicated by the device tree */
304 efi_carve_out_dt_rsv(fdt);
305
bc4f9133 306 /* Prepare fdt for payload */
16b615d9 307 ret = copy_fdt(&fdt);
9dff4900
SG
308 if (ret)
309 return ret;
bc4f9133
HS
310
311 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
312 printf("ERROR: failed to process device tree\n");
313 return EFI_LOAD_ERROR;
314 }
315
316 /* Link to it in the efi tables */
317 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
318 if (ret != EFI_SUCCESS)
319 return EFI_OUT_OF_RESOURCES;
320
bc4f9133
HS
321 return ret;
322}
323
f4f0f7cb
SG
324static efi_status_t bootefi_run_prepare(const char *load_options_path,
325 struct efi_device_path *device_path,
326 struct efi_device_path *image_path,
327 struct efi_loaded_image_obj **image_objp,
328 struct efi_loaded_image **loaded_image_infop)
329{
330 efi_status_t ret;
331
332 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
333 loaded_image_infop);
334 if (ret != EFI_SUCCESS)
335 return ret;
336
337 /* Transfer environment variable as load options */
338 set_load_options(*loaded_image_infop, load_options_path);
339
340 return 0;
341}
342
5e2f0391
SG
343/**
344 * bootefi_run_finish() - finish up after running an EFI test
345 *
346 * @loaded_image_info: Pointer to a struct which holds the loaded image info
347 * @image_objj: Pointer to a struct which holds the loaded image object
348 */
349static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
350 struct efi_loaded_image *loaded_image_info)
351{
352 efi_restore_gd();
353 free(loaded_image_info->load_options);
354 efi_delete_handle(&image_obj->header);
355}
356
c982874e
HS
357/**
358 * do_bootefi_exec() - execute EFI binary
359 *
360 * @efi: address of the binary
361 * @device_path: path of the device from which the binary was loaded
362 * @image_path: device path of the binary
363 * Return: status code
364 *
365 * Load the EFI binary into a newly assigned memory unwinding the relocation
366 * information, install the loaded image protocol, and call the binary.
b9939336 367 */
bc4f9133 368static efi_status_t do_bootefi_exec(void *efi,
3eb0841b
HS
369 struct efi_device_path *device_path,
370 struct efi_device_path *image_path)
b9939336 371{
8887acc6 372 efi_handle_t mem_handle = NULL;
bf19273e 373 struct efi_device_path *memdp = NULL;
45204b10 374 efi_status_t ret;
faea1041 375 struct efi_loaded_image_obj *image_obj = NULL;
c982874e 376 struct efi_loaded_image *loaded_image_info = NULL;
95c5553e 377
c6fa5df6
AG
378 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
379 struct efi_system_table *st);
b9939336 380
bf19273e
RC
381 /*
382 * Special case for efi payload not loaded from disk, such as
383 * 'bootefi hello' or for example payload loaded directly into
e1fec152 384 * memory via JTAG, etc:
bf19273e
RC
385 */
386 if (!device_path && !image_path) {
387 printf("WARNING: using memory device/image path, this may confuse some payloads!\n");
388 /* actual addresses filled in after efi_load_pe() */
389 memdp = efi_dp_from_mem(0, 0, 0);
390 device_path = image_path = memdp;
8887acc6
HS
391 /*
392 * Grub expects that the device path of the loaded image is
393 * installed on a handle.
394 */
395 ret = efi_create_handle(&mem_handle);
396 if (ret != EFI_SUCCESS)
5e2f0391 397 return ret; /* TODO: leaks device_path */
8887acc6 398 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
58bc69d2
AG
399 device_path);
400 if (ret != EFI_SUCCESS)
5e2f0391 401 goto err_add_protocol;
bf19273e
RC
402 } else {
403 assert(device_path && image_path);
404 }
405
f4f0f7cb
SG
406 ret = bootefi_run_prepare("bootargs", device_path, image_path,
407 &image_obj, &loaded_image_info);
408 if (ret)
5e2f0391 409 goto err_prepare;
95c5553e 410
b9939336 411 /* Load the EFI payload */
faea1041 412 entry = efi_load_pe(image_obj, efi, loaded_image_info);
95c5553e 413 if (!entry) {
45204b10 414 ret = EFI_LOAD_ERROR;
5e2f0391 415 goto err_prepare;
95c5553e 416 }
80a4800e 417
bf19273e
RC
418 if (memdp) {
419 struct efi_device_path_memory *mdp = (void *)memdp;
c982874e
HS
420 mdp->memory_type = loaded_image_info->image_code_type;
421 mdp->start_address = (uintptr_t)loaded_image_info->image_base;
bf19273e 422 mdp->end_address = mdp->start_address +
c982874e 423 loaded_image_info->image_size;
bf19273e
RC
424 }
425
ad644e7c
RC
426 /* we don't support much: */
427 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
428 "{ro,boot}(blob)0000000000000000");
429
b9939336 430 /* Call our payload! */
edcef3ba 431 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
a86aeaf2 432
faea1041
HS
433 if (setjmp(&image_obj->exit_jmp)) {
434 ret = image_obj->exit_status;
5e2f0391 435 goto err_prepare;
a86aeaf2
AG
436 }
437
69bd459d
AG
438#ifdef CONFIG_ARM64
439 /* On AArch64 we need to make sure we call our payload in < EL3 */
440 if (current_el() == 3) {
441 smp_kick_all_cpus();
442 dcache_disable(); /* flush cache before switch to EL2 */
ec6617c3
AW
443
444 /* Move into EL2 and keep running there */
ea54ad59 445 armv8_switch_to_el2((ulong)entry,
d39646a3 446 (ulong)&image_obj->header,
7c5e1feb 447 (ulong)&systab, 0, (ulong)efi_run_in_el2,
ec6617c3
AW
448 ES_TO_AARCH64);
449
450 /* Should never reach here, efi exits with longjmp */
451 while (1) { }
69bd459d
AG
452 }
453#endif
454
dc500c36 455#ifdef CONFIG_ARMV7_NONSEC
f17f2001 456 if (armv7_boot_nonsec() && !is_nonsec) {
dc500c36
MK
457 dcache_disable(); /* flush cache before switch to HYP */
458
459 armv7_init_nonsec();
460 secure_ram_addr(_do_nonsec_entry)(
461 efi_run_in_hyp,
462 (uintptr_t)entry,
d39646a3 463 (uintptr_t)&image_obj->header,
dc500c36
MK
464 (uintptr_t)&systab);
465
466 /* Should never reach here, efi exits with longjmp */
467 while (1) { }
468 }
469#endif
470
d39646a3 471 ret = efi_do_enter(&image_obj->header, &systab, entry);
95c5553e 472
5e2f0391 473err_prepare:
95c5553e 474 /* image has returned, loaded-image obj goes *poof*: */
5e2f0391
SG
475 bootefi_run_finish(image_obj, loaded_image_info);
476
477err_add_protocol:
8887acc6
HS
478 if (mem_handle)
479 efi_delete_handle(mem_handle);
95c5553e
RC
480
481 return ret;
b9939336
AG
482}
483
d9717eae
SG
484#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
485/**
486 * bootefi_test_prepare() - prepare to run an EFI test
487 *
488 * This sets things up so we can call EFI functions. This involves preparing
489 * the 'gd' pointer and setting up the load ed image data structures.
490 *
491 * @image_objp: loaded_image_infop: Pointer to a struct which will hold the
492 * loaded image object. This struct will be inited by this function before
493 * use.
494 * @loaded_image_infop: Pointer to a struct which will hold the loaded image
495 * info. This struct will be inited by this function before use.
496 * @path: File path to the test being run (often just the test name with a
497 * backslash before it
498 * @test_func: Address of the test function that is being run
f4f0f7cb 499 * @load_options_path: U-Boot environment variable to use as load options
d9717eae
SG
500 * @return 0 if OK, -ve on error
501 */
502static efi_status_t bootefi_test_prepare
503 (struct efi_loaded_image_obj **image_objp,
f4f0f7cb
SG
504 struct efi_loaded_image **loaded_image_infop, const char *path,
505 ulong test_func, const char *load_options_path)
d9717eae 506{
d9717eae
SG
507 /* Construct a dummy device path */
508 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
509 (uintptr_t)test_func,
510 (uintptr_t)test_func);
511 if (!bootefi_device_path)
512 return EFI_OUT_OF_RESOURCES;
513 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
514 if (!bootefi_image_path)
515 return EFI_OUT_OF_RESOURCES;
d9717eae 516
f4f0f7cb
SG
517 return bootefi_run_prepare(load_options_path, bootefi_device_path,
518 bootefi_image_path, image_objp,
519 loaded_image_infop);
d9717eae
SG
520}
521
d9717eae
SG
522#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
523
bc4f9133 524static int do_bootefi_bootmgr_exec(void)
9975fe96
RC
525{
526 struct efi_device_path *device_path, *file_path;
527 void *addr;
528 efi_status_t r;
529
9975fe96
RC
530 addr = efi_bootmgr_load(&device_path, &file_path);
531 if (!addr)
532 return 1;
533
534 printf("## Starting EFI application at %p ...\n", addr);
bc4f9133 535 r = do_bootefi_exec(addr, device_path, file_path);
9975fe96
RC
536 printf("## Application terminated, r = %lu\n",
537 r & ~EFI_ERROR_MASK);
538
539 if (r != EFI_SUCCESS)
540 return 1;
541
542 return 0;
543}
544
b9939336
AG
545/* Interpreter command to boot an arbitrary EFI image from memory */
546static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
547{
bc4f9133
HS
548 unsigned long addr;
549 char *saddr;
3eb0841b 550 efi_status_t r;
354264b3 551 unsigned long fdt_addr;
b9939336 552
c3b11dea
HS
553 /* Allow unaligned memory access */
554 allow_unaligned();
555
fc225e60
HS
556 /* Initialize EFI drivers */
557 r = efi_init_obj_list();
558 if (r != EFI_SUCCESS) {
559 printf("Error: Cannot set up EFI drivers, r = %lu\n",
560 r & ~EFI_ERROR_MASK);
561 return CMD_RET_FAILURE;
562 }
563
b9939336 564 if (argc < 2)
3c1dcef6 565 return CMD_RET_USAGE;
bc4f9133
HS
566
567 if (argc > 2) {
354264b3 568 fdt_addr = simple_strtoul(argv[2], NULL, 16);
bc4f9133
HS
569 if (!fdt_addr && *argv[2] != '0')
570 return CMD_RET_USAGE;
571 /* Install device tree */
9dff4900 572 r = efi_install_fdt(fdt_addr);
bc4f9133
HS
573 if (r != EFI_SUCCESS) {
574 printf("ERROR: failed to install device tree\n");
575 return CMD_RET_FAILURE;
576 }
577 } else {
578 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
579 efi_install_configuration_table(&efi_guid_fdt, NULL);
580 printf("WARNING: booting without device tree\n");
581 }
c7ae3dfd
SG
582#ifdef CONFIG_CMD_BOOTEFI_HELLO
583 if (!strcmp(argv[1], "hello")) {
5e44489b 584 ulong size = __efi_helloworld_end - __efi_helloworld_begin;
b9939336 585
51c533fd
HS
586 saddr = env_get("loadaddr");
587 if (saddr)
588 addr = simple_strtoul(saddr, NULL, 16);
589 else
590 addr = CONFIG_SYS_LOAD_ADDR;
354264b3 591 memcpy(map_sysmem(addr, size), __efi_helloworld_begin, size);
c7ae3dfd 592 } else
623b3a57
HS
593#endif
594#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
595 if (!strcmp(argv[1], "selftest")) {
faea1041 596 struct efi_loaded_image_obj *image_obj;
c982874e 597 struct efi_loaded_image *loaded_image_info;
7aca68ca 598
d9717eae 599 if (bootefi_test_prepare(&image_obj, &loaded_image_info,
f4f0f7cb
SG
600 "\\selftest", (uintptr_t)&efi_selftest,
601 "efi_selftest"))
2ab7ef74 602 return CMD_RET_FAILURE;
f972dc14 603
d78e40d6 604 /* Execute the test */
d39646a3 605 r = efi_selftest(&image_obj->header, &systab);
5e2f0391 606 bootefi_run_finish(image_obj, loaded_image_info);
c2b53902 607 return r != EFI_SUCCESS;
623b3a57 608 } else
c7ae3dfd 609#endif
9975fe96 610 if (!strcmp(argv[1], "bootmgr")) {
bc4f9133 611 return do_bootefi_bootmgr_exec();
9975fe96 612 } else {
c7ae3dfd 613 saddr = argv[1];
b9939336 614
c7ae3dfd 615 addr = simple_strtoul(saddr, NULL, 16);
49db1cb8
HS
616 /* Check that a numeric value was passed */
617 if (!addr && *saddr != '0')
618 return CMD_RET_USAGE;
c7ae3dfd 619
1c39809b
AG
620 }
621
5ee31baf 622 printf("## Starting EFI application at %08lx ...\n", addr);
354264b3 623 r = do_bootefi_exec(map_sysmem(addr, 0), bootefi_device_path,
bc4f9133 624 bootefi_image_path);
1da1bac4
HS
625 printf("## Application terminated, r = %lu\n",
626 r & ~EFI_ERROR_MASK);
b9939336 627
1da1bac4
HS
628 if (r != EFI_SUCCESS)
629 return 1;
630 else
631 return 0;
b9939336
AG
632}
633
634#ifdef CONFIG_SYS_LONGHELP
635static char bootefi_help_text[] =
1c39809b
AG
636 "<image address> [fdt address]\n"
637 " - boot EFI payload stored at address <image address>.\n"
638 " If specified, the device tree located at <fdt address> gets\n"
c7ae3dfd
SG
639 " exposed as EFI configuration table.\n"
640#ifdef CONFIG_CMD_BOOTEFI_HELLO
623b3a57
HS
641 "bootefi hello\n"
642 " - boot a sample Hello World application stored within U-Boot\n"
643#endif
644#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
bc4f9133 645 "bootefi selftest [fdt address]\n"
623b3a57 646 " - boot an EFI selftest application stored within U-Boot\n"
d78e40d6
HS
647 " Use environment variable efi_selftest to select a single test.\n"
648 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
c7ae3dfd 649#endif
f623e07f 650 "bootefi bootmgr [fdt addr]\n"
9975fe96
RC
651 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
652 "\n"
653 " If specified, the device tree located at <fdt address> gets\n"
654 " exposed as EFI configuration table.\n";
b9939336
AG
655#endif
656
657U_BOOT_CMD(
1c39809b 658 bootefi, 3, 0, do_bootefi,
92dfd922 659 "Boots an EFI payload from memory",
b9939336
AG
660 bootefi_help_text
661);
0f4060eb 662
95c5553e
RC
663void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
664{
f1589ffb
AT
665 struct efi_device_path *device, *image;
666 efi_status_t ret;
f9d334bd 667
79276eb2
HS
668 /* efi_set_bootdev is typically called repeatedly, recover memory */
669 efi_free_pool(bootefi_device_path);
670 efi_free_pool(bootefi_image_path);
9975fe96 671
f1589ffb
AT
672 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
673 if (ret == EFI_SUCCESS) {
674 bootefi_device_path = device;
675 bootefi_image_path = image;
49271666 676 } else {
f1589ffb
AT
677 bootefi_device_path = NULL;
678 bootefi_image_path = NULL;
49271666 679 }
0f4060eb 680}