]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/bootefi.c
avb2.0: add proper dependencies
[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>
ad0c1a3d 17#include <memalign.h>
0d9d501f 18#include <asm/global_data.h>
e275458c 19#include <asm-generic/sections.h>
c3b11dea 20#include <asm-generic/unaligned.h>
e275458c 21#include <linux/linkage.h>
0d9d501f
AG
22
23DECLARE_GLOBAL_DATA_PTR;
b9939336 24
fc225e60
HS
25#define OBJ_LIST_NOT_INITIALIZED 1
26
27static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
7cbc1241 28
95c5553e
RC
29static struct efi_device_path *bootefi_image_path;
30static struct efi_device_path *bootefi_device_path;
b9939336 31
7cbc1241 32/* Initialize and populate EFI object list */
fc225e60 33efi_status_t efi_init_obj_list(void)
7cbc1241 34{
fc225e60
HS
35 efi_status_t ret = EFI_SUCCESS;
36
098a6cdd 37 /* Initialize once only */
fc225e60
HS
38 if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED)
39 return efi_obj_list_initialized;
7cbc1241 40
05ef48a2 41 /* Initialize EFI driver uclass */
fc225e60
HS
42 ret = efi_driver_init();
43 if (ret != EFI_SUCCESS)
44 goto out;
05ef48a2 45
fc225e60
HS
46 ret = efi_console_register();
47 if (ret != EFI_SUCCESS)
48 goto out;
7cbc1241 49#ifdef CONFIG_PARTITIONS
fc225e60
HS
50 ret = efi_disk_register();
51 if (ret != EFI_SUCCESS)
52 goto out;
7cbc1241
HS
53#endif
54#if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
fc225e60
HS
55 ret = efi_gop_register();
56 if (ret != EFI_SUCCESS)
57 goto out;
7cbc1241 58#endif
092f2f35 59#ifdef CONFIG_NET
fc225e60
HS
60 ret = efi_net_register();
61 if (ret != EFI_SUCCESS)
62 goto out;
7cbc1241 63#endif
86df34d4
BM
64#ifdef CONFIG_GENERATE_ACPI_TABLE
65 ret = efi_acpi_register();
66 if (ret != EFI_SUCCESS)
67 goto out;
68#endif
7cbc1241 69#ifdef CONFIG_GENERATE_SMBIOS_TABLE
fc225e60
HS
70 ret = efi_smbios_register();
71 if (ret != EFI_SUCCESS)
72 goto out;
7cbc1241 73#endif
fc225e60
HS
74 ret = efi_watchdog_register();
75 if (ret != EFI_SUCCESS)
76 goto out;
7cbc1241
HS
77
78 /* Initialize EFI runtime services */
fc225e60
HS
79 ret = efi_reset_system_init();
80 if (ret != EFI_SUCCESS)
81 goto out;
82 ret = efi_get_time_init();
83 if (ret != EFI_SUCCESS)
84 goto out;
85
86out:
87 efi_obj_list_initialized = ret;
88 return ret;
7cbc1241
HS
89}
90
c3b11dea
HS
91/*
92 * Allow unaligned memory access.
93 *
94 * This routine is overridden by architectures providing this feature.
95 */
96void __weak allow_unaligned(void)
97{
98}
99
d78e40d6
HS
100/*
101 * Set the load options of an image from an environment variable.
102 *
103 * @loaded_image_info: the image
104 * @env_var: name of the environment variable
105 */
106static void set_load_options(struct efi_loaded_image *loaded_image_info,
107 const char *env_var)
108{
109 size_t size;
110 const char *env = env_get(env_var);
111
112 loaded_image_info->load_options = NULL;
113 loaded_image_info->load_options_size = 0;
114 if (!env)
115 return;
116 size = strlen(env) + 1;
117 loaded_image_info->load_options = calloc(size, sizeof(u16));
118 if (!loaded_image_info->load_options) {
119 printf("ERROR: Out of memory\n");
120 return;
121 }
122 utf8_to_utf16(loaded_image_info->load_options, (u8 *)env, size);
123 loaded_image_info->load_options_size = size * 2;
124}
125
0d9d501f
AG
126static void *copy_fdt(void *fdt)
127{
128 u64 fdt_size = fdt_totalsize(fdt);
ad0c1a3d
AG
129 unsigned long fdt_ram_start = -1L, fdt_pages;
130 u64 new_fdt_addr;
0d9d501f 131 void *new_fdt;
ad0c1a3d 132 int i;
0d9d501f 133
ad0c1a3d
AG
134 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
135 u64 ram_start = gd->bd->bi_dram[i].start;
136 u64 ram_size = gd->bd->bi_dram[i].size;
0d9d501f 137
ad0c1a3d
AG
138 if (!ram_size)
139 continue;
140
141 if (ram_start < fdt_ram_start)
142 fdt_ram_start = ram_start;
143 }
144
145 /* Give us at least 4kb breathing room */
a44bffcc 146 fdt_size = ALIGN(fdt_size + 4096, EFI_PAGE_SIZE);
ad0c1a3d
AG
147 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
148
149 /* Safe fdt location is at 128MB */
150 new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size;
e09159c8
HS
151 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
152 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
ad0c1a3d
AG
153 &new_fdt_addr) != EFI_SUCCESS) {
154 /* If we can't put it there, put it somewhere */
a44bffcc 155 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
e09159c8
HS
156 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
157 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
85a6e9b3
AG
158 &new_fdt_addr) != EFI_SUCCESS) {
159 printf("ERROR: Failed to reserve space for FDT\n");
160 return NULL;
161 }
ad0c1a3d 162 }
85a6e9b3 163
ad0c1a3d 164 new_fdt = (void*)(ulong)new_fdt_addr;
0d9d501f
AG
165 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
166 fdt_set_totalsize(new_fdt, fdt_size);
167
168 return new_fdt;
169}
170
3eb0841b 171static efi_status_t efi_do_enter(
2074f700 172 efi_handle_t image_handle, struct efi_system_table *st,
c6fa5df6
AG
173 EFIAPI efi_status_t (*entry)(
174 efi_handle_t image_handle,
175 struct efi_system_table *st))
b06d8ac3
HS
176{
177 efi_status_t ret = EFI_LOAD_ERROR;
178
179 if (entry)
180 ret = entry(image_handle, st);
181 st->boottime->exit(image_handle, ret, 0, NULL);
182 return ret;
183}
184
ec6617c3 185#ifdef CONFIG_ARM64
c6fa5df6 186static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)(
2074f700
HS
187 efi_handle_t image_handle, struct efi_system_table *st),
188 efi_handle_t image_handle, struct efi_system_table *st)
ec6617c3
AW
189{
190 /* Enable caches again */
191 dcache_enable();
192
b06d8ac3 193 return efi_do_enter(image_handle, st, entry);
ec6617c3
AW
194}
195#endif
196
806d2fa8
AG
197/* Carve out DT reserved memory ranges */
198static efi_status_t efi_carve_out_dt_rsv(void *fdt)
199{
200 int nr_rsv, i;
201 uint64_t addr, size, pages;
202
203 nr_rsv = fdt_num_mem_rsv(fdt);
204
205 /* Look for an existing entry and add it to the efi mem map. */
206 for (i = 0; i < nr_rsv; i++) {
207 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
208 continue;
209
210 pages = ALIGN(size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT;
211 efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
212 false);
213 }
214
215 return EFI_SUCCESS;
216}
217
bc4f9133
HS
218static efi_status_t efi_install_fdt(void *fdt)
219{
220 bootm_headers_t img = { 0 };
221 ulong fdt_pages, fdt_size, fdt_start, fdt_end;
222 efi_status_t ret;
223
224 if (fdt_check_header(fdt)) {
225 printf("ERROR: invalid device tree\n");
226 return EFI_INVALID_PARAMETER;
227 }
228
229 /* Prepare fdt for payload */
230 fdt = copy_fdt(fdt);
231 if (!fdt)
232 return EFI_OUT_OF_RESOURCES;
233
234 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
235 printf("ERROR: failed to process device tree\n");
236 return EFI_LOAD_ERROR;
237 }
238
806d2fa8
AG
239 if (efi_carve_out_dt_rsv(fdt) != EFI_SUCCESS) {
240 printf("ERROR: failed to carve out memory\n");
241 return EFI_LOAD_ERROR;
242 }
243
bc4f9133
HS
244 /* Link to it in the efi tables */
245 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
246 if (ret != EFI_SUCCESS)
247 return EFI_OUT_OF_RESOURCES;
248
249 /* And reserve the space in the memory map */
250 fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK;
251 fdt_end = ((ulong)fdt) + fdt_totalsize(fdt);
252 fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK;
253 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
254 /* Give a bootloader the chance to modify the device tree */
255 fdt_pages += 2;
256 ret = efi_add_memory_map(fdt_start, fdt_pages,
257 EFI_BOOT_SERVICES_DATA, true);
258 return ret;
259}
260
b9939336
AG
261/*
262 * Load an EFI payload into a newly allocated piece of memory, register all
263 * EFI objects it would want to access and jump to it.
264 */
bc4f9133 265static efi_status_t do_bootefi_exec(void *efi,
3eb0841b
HS
266 struct efi_device_path *device_path,
267 struct efi_device_path *image_path)
b9939336 268{
95c5553e
RC
269 struct efi_loaded_image loaded_image_info = {};
270 struct efi_object loaded_image_info_obj = {};
58bc69d2 271 struct efi_object mem_obj = {};
bf19273e 272 struct efi_device_path *memdp = NULL;
45204b10 273 efi_status_t ret;
95c5553e 274
c6fa5df6
AG
275 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
276 struct efi_system_table *st);
b9939336 277
bf19273e
RC
278 /*
279 * Special case for efi payload not loaded from disk, such as
280 * 'bootefi hello' or for example payload loaded directly into
281 * memory via jtag/etc:
282 */
283 if (!device_path && !image_path) {
284 printf("WARNING: using memory device/image path, this may confuse some payloads!\n");
285 /* actual addresses filled in after efi_load_pe() */
286 memdp = efi_dp_from_mem(0, 0, 0);
287 device_path = image_path = memdp;
58bc69d2
AG
288 efi_add_handle(&mem_obj);
289
290 ret = efi_add_protocol(mem_obj.handle, &efi_guid_device_path,
291 device_path);
292 if (ret != EFI_SUCCESS)
293 goto exit;
bf19273e
RC
294 } else {
295 assert(device_path && image_path);
296 }
297
95c5553e
RC
298 efi_setup_loaded_image(&loaded_image_info, &loaded_image_info_obj,
299 device_path, image_path);
300
b9939336
AG
301 /*
302 * gd lives in a fixed register which may get clobbered while we execute
303 * the payload. So save it here and restore it on every callback entry
304 */
305 efi_save_gd();
306
b57f48a8
HS
307 /* Transfer environment variable bootargs as load options */
308 set_load_options(&loaded_image_info, "bootargs");
b9939336
AG
309 /* Load the EFI payload */
310 entry = efi_load_pe(efi, &loaded_image_info);
95c5553e 311 if (!entry) {
45204b10 312 ret = EFI_LOAD_ERROR;
95c5553e
RC
313 goto exit;
314 }
80a4800e 315
bf19273e
RC
316 if (memdp) {
317 struct efi_device_path_memory *mdp = (void *)memdp;
318 mdp->memory_type = loaded_image_info.image_code_type;
319 mdp->start_address = (uintptr_t)loaded_image_info.image_base;
320 mdp->end_address = mdp->start_address +
321 loaded_image_info.image_size;
322 }
323
ad644e7c
RC
324 /* we don't support much: */
325 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
326 "{ro,boot}(blob)0000000000000000");
327
b9939336 328 /* Call our payload! */
edcef3ba 329 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
a86aeaf2
AG
330
331 if (setjmp(&loaded_image_info.exit_jmp)) {
95c5553e 332 ret = loaded_image_info.exit_status;
95c5553e 333 goto exit;
a86aeaf2
AG
334 }
335
69bd459d
AG
336#ifdef CONFIG_ARM64
337 /* On AArch64 we need to make sure we call our payload in < EL3 */
338 if (current_el() == 3) {
339 smp_kick_all_cpus();
340 dcache_disable(); /* flush cache before switch to EL2 */
ec6617c3
AW
341
342 /* Move into EL2 and keep running there */
ea54ad59
HS
343 armv8_switch_to_el2((ulong)entry,
344 (ulong)&loaded_image_info_obj.handle,
7c5e1feb 345 (ulong)&systab, 0, (ulong)efi_run_in_el2,
ec6617c3
AW
346 ES_TO_AARCH64);
347
348 /* Should never reach here, efi exits with longjmp */
349 while (1) { }
69bd459d
AG
350 }
351#endif
352
ea54ad59 353 ret = efi_do_enter(loaded_image_info_obj.handle, &systab, entry);
95c5553e
RC
354
355exit:
356 /* image has returned, loaded-image obj goes *poof*: */
357 list_del(&loaded_image_info_obj.link);
58bc69d2
AG
358 if (mem_obj.handle)
359 list_del(&mem_obj.link);
95c5553e
RC
360
361 return ret;
b9939336
AG
362}
363
bc4f9133 364static int do_bootefi_bootmgr_exec(void)
9975fe96
RC
365{
366 struct efi_device_path *device_path, *file_path;
367 void *addr;
368 efi_status_t r;
369
9975fe96
RC
370 /*
371 * gd lives in a fixed register which may get clobbered while we execute
372 * the payload. So save it here and restore it on every callback entry
373 */
374 efi_save_gd();
375
376 addr = efi_bootmgr_load(&device_path, &file_path);
377 if (!addr)
378 return 1;
379
380 printf("## Starting EFI application at %p ...\n", addr);
bc4f9133 381 r = do_bootefi_exec(addr, device_path, file_path);
9975fe96
RC
382 printf("## Application terminated, r = %lu\n",
383 r & ~EFI_ERROR_MASK);
384
385 if (r != EFI_SUCCESS)
386 return 1;
387
388 return 0;
389}
390
b9939336
AG
391/* Interpreter command to boot an arbitrary EFI image from memory */
392static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
393{
bc4f9133
HS
394 unsigned long addr;
395 char *saddr;
3eb0841b 396 efi_status_t r;
bc4f9133 397 void *fdt_addr;
b9939336 398
c3b11dea
HS
399 /* Allow unaligned memory access */
400 allow_unaligned();
401
fc225e60
HS
402 /* Initialize EFI drivers */
403 r = efi_init_obj_list();
404 if (r != EFI_SUCCESS) {
405 printf("Error: Cannot set up EFI drivers, r = %lu\n",
406 r & ~EFI_ERROR_MASK);
407 return CMD_RET_FAILURE;
408 }
409
b9939336 410 if (argc < 2)
3c1dcef6 411 return CMD_RET_USAGE;
bc4f9133
HS
412
413 if (argc > 2) {
414 fdt_addr = (void *)simple_strtoul(argv[2], NULL, 16);
415 if (!fdt_addr && *argv[2] != '0')
416 return CMD_RET_USAGE;
417 /* Install device tree */
418 r = efi_install_fdt(fdt_addr);
419 if (r != EFI_SUCCESS) {
420 printf("ERROR: failed to install device tree\n");
421 return CMD_RET_FAILURE;
422 }
423 } else {
424 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
425 efi_install_configuration_table(&efi_guid_fdt, NULL);
426 printf("WARNING: booting without device tree\n");
427 }
c7ae3dfd
SG
428#ifdef CONFIG_CMD_BOOTEFI_HELLO
429 if (!strcmp(argv[1], "hello")) {
5e44489b 430 ulong size = __efi_helloworld_end - __efi_helloworld_begin;
b9939336 431
51c533fd
HS
432 saddr = env_get("loadaddr");
433 if (saddr)
434 addr = simple_strtoul(saddr, NULL, 16);
435 else
436 addr = CONFIG_SYS_LOAD_ADDR;
5e44489b 437 memcpy((char *)addr, __efi_helloworld_begin, size);
c7ae3dfd 438 } else
623b3a57
HS
439#endif
440#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
441 if (!strcmp(argv[1], "selftest")) {
7aca68ca
HS
442 struct efi_loaded_image loaded_image_info = {};
443 struct efi_object loaded_image_info_obj = {};
444
f972dc14
HS
445 /* Construct a dummy device path. */
446 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
447 (uintptr_t)&efi_selftest,
448 (uintptr_t)&efi_selftest);
449 bootefi_image_path = efi_dp_from_file(NULL, 0, "\\selftest");
450
7aca68ca
HS
451 efi_setup_loaded_image(&loaded_image_info,
452 &loaded_image_info_obj,
453 bootefi_device_path, bootefi_image_path);
623b3a57
HS
454 /*
455 * gd lives in a fixed register which may get clobbered while we
456 * execute the payload. So save it here and restore it on every
457 * callback entry
458 */
459 efi_save_gd();
d78e40d6
HS
460 /* Transfer environment variable efi_selftest as load options */
461 set_load_options(&loaded_image_info, "efi_selftest");
462 /* Execute the test */
ea54ad59 463 r = efi_selftest(loaded_image_info_obj.handle, &systab);
c2b53902 464 efi_restore_gd();
d78e40d6 465 free(loaded_image_info.load_options);
c2b53902
HS
466 list_del(&loaded_image_info_obj.link);
467 return r != EFI_SUCCESS;
623b3a57 468 } else
c7ae3dfd 469#endif
9975fe96 470 if (!strcmp(argv[1], "bootmgr")) {
bc4f9133 471 return do_bootefi_bootmgr_exec();
9975fe96 472 } else {
c7ae3dfd 473 saddr = argv[1];
b9939336 474
c7ae3dfd 475 addr = simple_strtoul(saddr, NULL, 16);
49db1cb8
HS
476 /* Check that a numeric value was passed */
477 if (!addr && *saddr != '0')
478 return CMD_RET_USAGE;
c7ae3dfd 479
1c39809b
AG
480 }
481
5ee31baf 482 printf("## Starting EFI application at %08lx ...\n", addr);
bc4f9133
HS
483 r = do_bootefi_exec((void *)addr, bootefi_device_path,
484 bootefi_image_path);
1da1bac4
HS
485 printf("## Application terminated, r = %lu\n",
486 r & ~EFI_ERROR_MASK);
b9939336 487
1da1bac4
HS
488 if (r != EFI_SUCCESS)
489 return 1;
490 else
491 return 0;
b9939336
AG
492}
493
494#ifdef CONFIG_SYS_LONGHELP
495static char bootefi_help_text[] =
1c39809b
AG
496 "<image address> [fdt address]\n"
497 " - boot EFI payload stored at address <image address>.\n"
498 " If specified, the device tree located at <fdt address> gets\n"
c7ae3dfd
SG
499 " exposed as EFI configuration table.\n"
500#ifdef CONFIG_CMD_BOOTEFI_HELLO
623b3a57
HS
501 "bootefi hello\n"
502 " - boot a sample Hello World application stored within U-Boot\n"
503#endif
504#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
bc4f9133 505 "bootefi selftest [fdt address]\n"
623b3a57 506 " - boot an EFI selftest application stored within U-Boot\n"
d78e40d6
HS
507 " Use environment variable efi_selftest to select a single test.\n"
508 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
c7ae3dfd 509#endif
f623e07f 510 "bootefi bootmgr [fdt addr]\n"
9975fe96
RC
511 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
512 "\n"
513 " If specified, the device tree located at <fdt address> gets\n"
514 " exposed as EFI configuration table.\n";
b9939336
AG
515#endif
516
517U_BOOT_CMD(
1c39809b 518 bootefi, 3, 0, do_bootefi,
92dfd922 519 "Boots an EFI payload from memory",
b9939336
AG
520 bootefi_help_text
521);
0f4060eb 522
95c5553e
RC
523void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
524{
525 char filename[32] = { 0 }; /* dp->str is u16[32] long */
526 char *s;
f9d334bd 527
95c5553e
RC
528 if (strcmp(dev, "Net")) {
529 struct blk_desc *desc;
2db1eba1 530 disk_partition_t fs_partition;
95c5553e 531 int part;
8c3df0bf 532
2db1eba1
HS
533 part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition,
534 1);
535 if (part < 0)
8300be61 536 return;
0f4060eb 537
95c5553e
RC
538 bootefi_device_path = efi_dp_from_part(desc, part);
539 } else {
092f2f35 540#ifdef CONFIG_NET
95c5553e
RC
541 bootefi_device_path = efi_dp_from_eth();
542#endif
543 }
c07ad7c0 544
9975fe96
RC
545 if (!path)
546 return;
547
49271666
AG
548 if (strcmp(dev, "Net")) {
549 /* Add leading / to fs paths, because they're absolute */
95c5553e 550 snprintf(filename, sizeof(filename), "/%s", path);
49271666 551 } else {
95c5553e 552 snprintf(filename, sizeof(filename), "%s", path);
49271666 553 }
3e433e96 554 /* DOS style file path: */
95c5553e 555 s = filename;
3e433e96
RC
556 while ((s = strchr(s, '/')))
557 *s++ = '\\';
95c5553e 558 bootefi_image_path = efi_dp_from_file(NULL, 0, filename);
0f4060eb 559}