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