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