blob: a0fd1a3158ba9a67a4372f124dcb1bbbc426fda6 [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafe2b04f22016-03-10 00:27:20 +01002/*
3 * EFI application loader
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafe2b04f22016-03-10 00:27:20 +01006 */
7
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +02008#include <charset.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +01009#include <common.h>
10#include <command.h>
Simon Glass11c89f32017-05-17 17:18:03 -060011#include <dm.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010012#include <efi_loader.h>
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020013#include <efi_selftest.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010014#include <errno.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090015#include <linux/libfdt.h>
16#include <linux/libfdt_env.h>
Alexander Grafa2414512018-06-18 17:22:58 +020017#include <mapmem.h>
Alexander Graffdbae012016-04-11 23:51:01 +020018#include <memalign.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020019#include <asm/global_data.h>
Simon Glassc2194bf2016-09-25 15:27:32 -060020#include <asm-generic/sections.h>
Heinrich Schuchardt954e2b92018-04-03 21:59:32 +020021#include <asm-generic/unaligned.h>
Simon Glassc2194bf2016-09-25 15:27:32 -060022#include <linux/linkage.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020023
Mark Kettenis5eb68ed2018-06-15 23:47:12 +020024#ifdef CONFIG_ARMV7_NONSEC
25#include <asm/armv7.h>
26#include <asm/secure.h>
27#endif
28
Alexander Graf2ff5cc32016-04-11 16:55:26 +020029DECLARE_GLOBAL_DATA_PTR;
Alexander Grafe2b04f22016-03-10 00:27:20 +010030
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010031#define OBJ_LIST_NOT_INITIALIZED 1
32
33static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020034
Rob Clarkf8db9222017-09-13 18:05:33 -040035static struct efi_device_path *bootefi_image_path;
36static struct efi_device_path *bootefi_device_path;
Alexander Grafe2b04f22016-03-10 00:27:20 +010037
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020038/* Initialize and populate EFI object list */
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010039efi_status_t efi_init_obj_list(void)
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020040{
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010041 efi_status_t ret = EFI_SUCCESS;
42
Heinrich Schuchardtd4b38f02018-03-03 15:28:58 +010043 /* Initialize once only */
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010044 if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED)
45 return efi_obj_list_initialized;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020046
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010047 /* Initialize EFI driver uclass */
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010048 ret = efi_driver_init();
49 if (ret != EFI_SUCCESS)
50 goto out;
Heinrich Schuchardt11206f42018-01-21 19:29:30 +010051
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010052 ret = efi_console_register();
53 if (ret != EFI_SUCCESS)
54 goto out;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020055#ifdef CONFIG_PARTITIONS
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010056 ret = efi_disk_register();
57 if (ret != EFI_SUCCESS)
58 goto out;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020059#endif
60#if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010061 ret = efi_gop_register();
62 if (ret != EFI_SUCCESS)
63 goto out;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020064#endif
Joe Hershberger5277a972018-04-13 15:26:39 -050065#ifdef CONFIG_NET
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010066 ret = efi_net_register();
67 if (ret != EFI_SUCCESS)
68 goto out;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020069#endif
Bin Meng2cfbdae2018-06-27 20:38:03 -070070#ifdef CONFIG_GENERATE_ACPI_TABLE
71 ret = efi_acpi_register();
72 if (ret != EFI_SUCCESS)
73 goto out;
74#endif
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020075#ifdef CONFIG_GENERATE_SMBIOS_TABLE
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010076 ret = efi_smbios_register();
77 if (ret != EFI_SUCCESS)
78 goto out;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020079#endif
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010080 ret = efi_watchdog_register();
81 if (ret != EFI_SUCCESS)
82 goto out;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020083
84 /* Initialize EFI runtime services */
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +010085 ret = efi_reset_system_init();
86 if (ret != EFI_SUCCESS)
87 goto out;
88 ret = efi_get_time_init();
89 if (ret != EFI_SUCCESS)
90 goto out;
91
92out:
93 efi_obj_list_initialized = ret;
94 return ret;
Heinrich Schuchardt5e9900f2017-07-19 19:37:22 +020095}
96
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020097/*
Heinrich Schuchardt954e2b92018-04-03 21:59:32 +020098 * Allow unaligned memory access.
99 *
100 * This routine is overridden by architectures providing this feature.
101 */
102void __weak allow_unaligned(void)
103{
104}
105
106/*
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200107 * Set the load options of an image from an environment variable.
108 *
109 * @loaded_image_info: the image
110 * @env_var: name of the environment variable
111 */
112static void set_load_options(struct efi_loaded_image *loaded_image_info,
113 const char *env_var)
114{
115 size_t size;
116 const char *env = env_get(env_var);
117
118 loaded_image_info->load_options = NULL;
119 loaded_image_info->load_options_size = 0;
120 if (!env)
121 return;
122 size = strlen(env) + 1;
123 loaded_image_info->load_options = calloc(size, sizeof(u16));
124 if (!loaded_image_info->load_options) {
125 printf("ERROR: Out of memory\n");
126 return;
127 }
128 utf8_to_utf16(loaded_image_info->load_options, (u8 *)env, size);
129 loaded_image_info->load_options_size = size * 2;
130}
131
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200132static void *copy_fdt(void *fdt)
133{
134 u64 fdt_size = fdt_totalsize(fdt);
Alexander Graffdbae012016-04-11 23:51:01 +0200135 unsigned long fdt_ram_start = -1L, fdt_pages;
136 u64 new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200137 void *new_fdt;
Alexander Graffdbae012016-04-11 23:51:01 +0200138 int i;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200139
Alexander Graffdbae012016-04-11 23:51:01 +0200140 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
141 u64 ram_start = gd->bd->bi_dram[i].start;
142 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200143
Alexander Graffdbae012016-04-11 23:51:01 +0200144 if (!ram_size)
145 continue;
146
147 if (ram_start < fdt_ram_start)
148 fdt_ram_start = ram_start;
149 }
150
151 /* Give us at least 4kb breathing room */
xypron.glpk@gmx.def6b99122017-08-11 21:19:25 +0200152 fdt_size = ALIGN(fdt_size + 4096, EFI_PAGE_SIZE);
Alexander Graffdbae012016-04-11 23:51:01 +0200153 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
154
155 /* Safe fdt location is at 128MB */
156 new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size;
Heinrich Schuchardt0f7186b2018-05-26 10:32:27 +0200157 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
158 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
Alexander Graffdbae012016-04-11 23:51:01 +0200159 &new_fdt_addr) != EFI_SUCCESS) {
160 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.def6b99122017-08-11 21:19:25 +0200161 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Heinrich Schuchardt0f7186b2018-05-26 10:32:27 +0200162 if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
163 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
Alexander Graf9b9b7162017-07-03 13:32:35 +0200164 &new_fdt_addr) != EFI_SUCCESS) {
165 printf("ERROR: Failed to reserve space for FDT\n");
166 return NULL;
167 }
Alexander Graffdbae012016-04-11 23:51:01 +0200168 }
Alexander Graf9b9b7162017-07-03 13:32:35 +0200169
Alexander Graffdbae012016-04-11 23:51:01 +0200170 new_fdt = (void*)(ulong)new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200171 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
172 fdt_set_totalsize(new_fdt, fdt_size);
173
174 return new_fdt;
175}
176
Heinrich Schuchardt4e363a92017-10-18 18:13:08 +0200177static efi_status_t efi_do_enter(
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100178 efi_handle_t image_handle, struct efi_system_table *st,
Alexander Graf54d8cdf2018-01-24 00:18:08 +0100179 EFIAPI efi_status_t (*entry)(
180 efi_handle_t image_handle,
181 struct efi_system_table *st))
xypron.glpk@gmx.de1e5afc62017-07-04 23:15:21 +0200182{
183 efi_status_t ret = EFI_LOAD_ERROR;
184
185 if (entry)
186 ret = entry(image_handle, st);
187 st->boottime->exit(image_handle, ret, 0, NULL);
188 return ret;
189}
190
Alison Wang73818d52016-11-10 10:49:03 +0800191#ifdef CONFIG_ARM64
Alexander Graf54d8cdf2018-01-24 00:18:08 +0100192static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)(
Heinrich Schuchardtb7cb8b42018-01-11 08:16:09 +0100193 efi_handle_t image_handle, struct efi_system_table *st),
194 efi_handle_t image_handle, struct efi_system_table *st)
Alison Wang73818d52016-11-10 10:49:03 +0800195{
196 /* Enable caches again */
197 dcache_enable();
198
xypron.glpk@gmx.de1e5afc62017-07-04 23:15:21 +0200199 return efi_do_enter(image_handle, st, entry);
Alison Wang73818d52016-11-10 10:49:03 +0800200}
201#endif
202
Mark Kettenis5eb68ed2018-06-15 23:47:12 +0200203#ifdef CONFIG_ARMV7_NONSEC
Mark Kettenis6d140a62018-06-15 23:47:13 +0200204static bool is_nonsec;
205
Mark Kettenis5eb68ed2018-06-15 23:47:12 +0200206static efi_status_t efi_run_in_hyp(EFIAPI efi_status_t (*entry)(
207 efi_handle_t image_handle, struct efi_system_table *st),
208 efi_handle_t image_handle, struct efi_system_table *st)
209{
210 /* Enable caches again */
211 dcache_enable();
212
Mark Kettenis6d140a62018-06-15 23:47:13 +0200213 is_nonsec = true;
214
Mark Kettenis5eb68ed2018-06-15 23:47:12 +0200215 return efi_do_enter(image_handle, st, entry);
216}
217#endif
218
Alexander Graf22c88bf2018-04-06 09:40:51 +0200219/* Carve out DT reserved memory ranges */
220static efi_status_t efi_carve_out_dt_rsv(void *fdt)
221{
222 int nr_rsv, i;
223 uint64_t addr, size, pages;
224
225 nr_rsv = fdt_num_mem_rsv(fdt);
226
227 /* Look for an existing entry and add it to the efi mem map. */
228 for (i = 0; i < nr_rsv; i++) {
229 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
230 continue;
231
232 pages = ALIGN(size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT;
233 efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
234 false);
235 }
236
237 return EFI_SUCCESS;
238}
239
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100240static efi_status_t efi_install_fdt(void *fdt)
241{
242 bootm_headers_t img = { 0 };
243 ulong fdt_pages, fdt_size, fdt_start, fdt_end;
244 efi_status_t ret;
245
246 if (fdt_check_header(fdt)) {
247 printf("ERROR: invalid device tree\n");
248 return EFI_INVALID_PARAMETER;
249 }
250
251 /* Prepare fdt for payload */
252 fdt = copy_fdt(fdt);
253 if (!fdt)
254 return EFI_OUT_OF_RESOURCES;
255
256 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
257 printf("ERROR: failed to process device tree\n");
258 return EFI_LOAD_ERROR;
259 }
260
Alexander Graf22c88bf2018-04-06 09:40:51 +0200261 if (efi_carve_out_dt_rsv(fdt) != EFI_SUCCESS) {
262 printf("ERROR: failed to carve out memory\n");
263 return EFI_LOAD_ERROR;
264 }
265
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100266 /* Link to it in the efi tables */
267 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
268 if (ret != EFI_SUCCESS)
269 return EFI_OUT_OF_RESOURCES;
270
271 /* And reserve the space in the memory map */
272 fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK;
273 fdt_end = ((ulong)fdt) + fdt_totalsize(fdt);
274 fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK;
275 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
276 /* Give a bootloader the chance to modify the device tree */
277 fdt_pages += 2;
278 ret = efi_add_memory_map(fdt_start, fdt_pages,
279 EFI_BOOT_SERVICES_DATA, true);
280 return ret;
281}
282
Alexander Grafe2b04f22016-03-10 00:27:20 +0100283/*
284 * Load an EFI payload into a newly allocated piece of memory, register all
285 * EFI objects it would want to access and jump to it.
286 */
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100287static efi_status_t do_bootefi_exec(void *efi,
Heinrich Schuchardt4e363a92017-10-18 18:13:08 +0200288 struct efi_device_path *device_path,
289 struct efi_device_path *image_path)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100290{
Rob Clarkf8db9222017-09-13 18:05:33 -0400291 struct efi_loaded_image loaded_image_info = {};
292 struct efi_object loaded_image_info_obj = {};
Alexander Graf2d00dbe2018-06-12 10:21:16 +0200293 struct efi_object mem_obj = {};
Rob Clark18ceba72017-10-10 08:23:06 -0400294 struct efi_device_path *memdp = NULL;
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100295 efi_status_t ret;
Rob Clarkf8db9222017-09-13 18:05:33 -0400296
Alexander Graf54d8cdf2018-01-24 00:18:08 +0100297 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
298 struct efi_system_table *st);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100299
Rob Clark18ceba72017-10-10 08:23:06 -0400300 /*
301 * Special case for efi payload not loaded from disk, such as
302 * 'bootefi hello' or for example payload loaded directly into
303 * memory via jtag/etc:
304 */
305 if (!device_path && !image_path) {
306 printf("WARNING: using memory device/image path, this may confuse some payloads!\n");
307 /* actual addresses filled in after efi_load_pe() */
308 memdp = efi_dp_from_mem(0, 0, 0);
309 device_path = image_path = memdp;
Alexander Graf2d00dbe2018-06-12 10:21:16 +0200310 efi_add_handle(&mem_obj);
311
312 ret = efi_add_protocol(mem_obj.handle, &efi_guid_device_path,
313 device_path);
314 if (ret != EFI_SUCCESS)
315 goto exit;
Rob Clark18ceba72017-10-10 08:23:06 -0400316 } else {
317 assert(device_path && image_path);
318 }
319
Rob Clarkf8db9222017-09-13 18:05:33 -0400320 efi_setup_loaded_image(&loaded_image_info, &loaded_image_info_obj,
321 device_path, image_path);
322
Alexander Grafe2b04f22016-03-10 00:27:20 +0100323 /*
324 * gd lives in a fixed register which may get clobbered while we execute
325 * the payload. So save it here and restore it on every callback entry
326 */
327 efi_save_gd();
328
Heinrich Schuchardta4589e22017-10-18 18:13:15 +0200329 /* Transfer environment variable bootargs as load options */
330 set_load_options(&loaded_image_info, "bootargs");
Alexander Grafe2b04f22016-03-10 00:27:20 +0100331 /* Load the EFI payload */
332 entry = efi_load_pe(efi, &loaded_image_info);
Rob Clarkf8db9222017-09-13 18:05:33 -0400333 if (!entry) {
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100334 ret = EFI_LOAD_ERROR;
Rob Clarkf8db9222017-09-13 18:05:33 -0400335 goto exit;
336 }
Alexander Graf77256092016-08-16 21:08:45 +0200337
Rob Clark18ceba72017-10-10 08:23:06 -0400338 if (memdp) {
339 struct efi_device_path_memory *mdp = (void *)memdp;
340 mdp->memory_type = loaded_image_info.image_code_type;
341 mdp->start_address = (uintptr_t)loaded_image_info.image_base;
342 mdp->end_address = mdp->start_address +
343 loaded_image_info.image_size;
344 }
345
Rob Clark15f3d742017-09-13 18:05:37 -0400346 /* we don't support much: */
347 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
348 "{ro,boot}(blob)0000000000000000");
349
Alexander Grafe2b04f22016-03-10 00:27:20 +0100350 /* Call our payload! */
Alexander Graf62a67482016-06-02 11:38:27 +0200351 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
Alexander Graf988c0662016-05-20 23:28:23 +0200352
353 if (setjmp(&loaded_image_info.exit_jmp)) {
Rob Clarkf8db9222017-09-13 18:05:33 -0400354 ret = loaded_image_info.exit_status;
Rob Clarkf8db9222017-09-13 18:05:33 -0400355 goto exit;
Alexander Graf988c0662016-05-20 23:28:23 +0200356 }
357
Alexander Grafbfd199c2016-11-17 01:02:58 +0100358#ifdef CONFIG_ARM64
359 /* On AArch64 we need to make sure we call our payload in < EL3 */
360 if (current_el() == 3) {
361 smp_kick_all_cpus();
362 dcache_disable(); /* flush cache before switch to EL2 */
Alison Wang73818d52016-11-10 10:49:03 +0800363
364 /* Move into EL2 and keep running there */
Heinrich Schuchardt754d4972017-11-26 14:05:22 +0100365 armv8_switch_to_el2((ulong)entry,
366 (ulong)&loaded_image_info_obj.handle,
Alison Wangeb2088d2017-01-17 09:39:17 +0800367 (ulong)&systab, 0, (ulong)efi_run_in_el2,
Alison Wang73818d52016-11-10 10:49:03 +0800368 ES_TO_AARCH64);
369
370 /* Should never reach here, efi exits with longjmp */
371 while (1) { }
Alexander Grafbfd199c2016-11-17 01:02:58 +0100372 }
373#endif
374
Mark Kettenis5eb68ed2018-06-15 23:47:12 +0200375#ifdef CONFIG_ARMV7_NONSEC
Mark Kettenis6d140a62018-06-15 23:47:13 +0200376 if (armv7_boot_nonsec() && !is_nonsec) {
Mark Kettenis5eb68ed2018-06-15 23:47:12 +0200377 dcache_disable(); /* flush cache before switch to HYP */
378
379 armv7_init_nonsec();
380 secure_ram_addr(_do_nonsec_entry)(
381 efi_run_in_hyp,
382 (uintptr_t)entry,
383 (uintptr_t)loaded_image_info_obj.handle,
384 (uintptr_t)&systab);
385
386 /* Should never reach here, efi exits with longjmp */
387 while (1) { }
388 }
389#endif
390
Heinrich Schuchardt754d4972017-11-26 14:05:22 +0100391 ret = efi_do_enter(loaded_image_info_obj.handle, &systab, entry);
Rob Clarkf8db9222017-09-13 18:05:33 -0400392
393exit:
394 /* image has returned, loaded-image obj goes *poof*: */
395 list_del(&loaded_image_info_obj.link);
Alexander Graf2d00dbe2018-06-12 10:21:16 +0200396 if (mem_obj.handle)
397 list_del(&mem_obj.link);
Rob Clarkf8db9222017-09-13 18:05:33 -0400398
399 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100400}
401
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100402static int do_bootefi_bootmgr_exec(void)
Rob Clarkc84c1102017-09-13 18:05:38 -0400403{
404 struct efi_device_path *device_path, *file_path;
405 void *addr;
406 efi_status_t r;
407
Rob Clarkc84c1102017-09-13 18:05:38 -0400408 /*
409 * gd lives in a fixed register which may get clobbered while we execute
410 * the payload. So save it here and restore it on every callback entry
411 */
412 efi_save_gd();
413
414 addr = efi_bootmgr_load(&device_path, &file_path);
415 if (!addr)
416 return 1;
417
418 printf("## Starting EFI application at %p ...\n", addr);
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100419 r = do_bootefi_exec(addr, device_path, file_path);
Rob Clarkc84c1102017-09-13 18:05:38 -0400420 printf("## Application terminated, r = %lu\n",
421 r & ~EFI_ERROR_MASK);
422
423 if (r != EFI_SUCCESS)
424 return 1;
425
426 return 0;
427}
428
Alexander Grafe2b04f22016-03-10 00:27:20 +0100429/* Interpreter command to boot an arbitrary EFI image from memory */
430static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
431{
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100432 unsigned long addr;
433 char *saddr;
Heinrich Schuchardt4e363a92017-10-18 18:13:08 +0200434 efi_status_t r;
Alexander Grafa2414512018-06-18 17:22:58 +0200435 unsigned long fdt_addr;
436 void *fdt;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100437
Heinrich Schuchardt954e2b92018-04-03 21:59:32 +0200438 /* Allow unaligned memory access */
439 allow_unaligned();
440
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +0100441 /* Initialize EFI drivers */
442 r = efi_init_obj_list();
443 if (r != EFI_SUCCESS) {
444 printf("Error: Cannot set up EFI drivers, r = %lu\n",
445 r & ~EFI_ERROR_MASK);
446 return CMD_RET_FAILURE;
447 }
448
Alexander Grafe2b04f22016-03-10 00:27:20 +0100449 if (argc < 2)
Bin Mengda800ff2016-08-13 04:02:06 -0700450 return CMD_RET_USAGE;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100451
452 if (argc > 2) {
Alexander Grafa2414512018-06-18 17:22:58 +0200453 fdt_addr = simple_strtoul(argv[2], NULL, 16);
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100454 if (!fdt_addr && *argv[2] != '0')
455 return CMD_RET_USAGE;
456 /* Install device tree */
Alexander Grafa2414512018-06-18 17:22:58 +0200457 fdt = map_sysmem(fdt_addr, 0);
458 r = efi_install_fdt(fdt);
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100459 if (r != EFI_SUCCESS) {
460 printf("ERROR: failed to install device tree\n");
461 return CMD_RET_FAILURE;
462 }
463 } else {
464 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
465 efi_install_configuration_table(&efi_guid_fdt, NULL);
466 printf("WARNING: booting without device tree\n");
467 }
Simon Glassfac4ced2016-11-07 08:47:08 -0700468#ifdef CONFIG_CMD_BOOTEFI_HELLO
469 if (!strcmp(argv[1], "hello")) {
Heinrich Schuchardt7804ae92017-09-05 03:19:37 +0200470 ulong size = __efi_helloworld_end - __efi_helloworld_begin;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100471
Heinrich Schuchardte6a9ab52017-08-28 18:54:30 +0200472 saddr = env_get("loadaddr");
473 if (saddr)
474 addr = simple_strtoul(saddr, NULL, 16);
475 else
476 addr = CONFIG_SYS_LOAD_ADDR;
Alexander Grafa2414512018-06-18 17:22:58 +0200477 memcpy(map_sysmem(addr, size), __efi_helloworld_begin, size);
Simon Glassfac4ced2016-11-07 08:47:08 -0700478 } else
479#endif
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200480#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
481 if (!strcmp(argv[1], "selftest")) {
Heinrich Schuchardt389f2512017-09-20 22:54:58 +0200482 struct efi_loaded_image loaded_image_info = {};
483 struct efi_object loaded_image_info_obj = {};
484
Heinrich Schuchardta809bc22017-10-18 18:13:09 +0200485 /* Construct a dummy device path. */
486 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
487 (uintptr_t)&efi_selftest,
488 (uintptr_t)&efi_selftest);
489 bootefi_image_path = efi_dp_from_file(NULL, 0, "\\selftest");
490
Heinrich Schuchardt389f2512017-09-20 22:54:58 +0200491 efi_setup_loaded_image(&loaded_image_info,
492 &loaded_image_info_obj,
493 bootefi_device_path, bootefi_image_path);
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200494 /*
495 * gd lives in a fixed register which may get clobbered while we
496 * execute the payload. So save it here and restore it on every
497 * callback entry
498 */
499 efi_save_gd();
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200500 /* Transfer environment variable efi_selftest as load options */
501 set_load_options(&loaded_image_info, "efi_selftest");
502 /* Execute the test */
Heinrich Schuchardt754d4972017-11-26 14:05:22 +0100503 r = efi_selftest(loaded_image_info_obj.handle, &systab);
Heinrich Schuchardtd2d90b42017-10-18 18:13:14 +0200504 efi_restore_gd();
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200505 free(loaded_image_info.load_options);
Heinrich Schuchardtd2d90b42017-10-18 18:13:14 +0200506 list_del(&loaded_image_info_obj.link);
507 return r != EFI_SUCCESS;
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200508 } else
509#endif
Rob Clarkc84c1102017-09-13 18:05:38 -0400510 if (!strcmp(argv[1], "bootmgr")) {
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100511 return do_bootefi_bootmgr_exec();
Rob Clarkc84c1102017-09-13 18:05:38 -0400512 } else {
Simon Glassfac4ced2016-11-07 08:47:08 -0700513 saddr = argv[1];
Alexander Grafe2b04f22016-03-10 00:27:20 +0100514
Simon Glassfac4ced2016-11-07 08:47:08 -0700515 addr = simple_strtoul(saddr, NULL, 16);
Heinrich Schuchardtaa6fd9a2018-01-24 20:33:54 +0100516 /* Check that a numeric value was passed */
517 if (!addr && *saddr != '0')
518 return CMD_RET_USAGE;
Simon Glassfac4ced2016-11-07 08:47:08 -0700519
Alexander Graf54c1e832016-04-14 16:07:53 +0200520 }
521
Simon Glass1a5490e2016-11-07 08:47:05 -0700522 printf("## Starting EFI application at %08lx ...\n", addr);
Alexander Grafa2414512018-06-18 17:22:58 +0200523 r = do_bootefi_exec(map_sysmem(addr, 0), bootefi_device_path,
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100524 bootefi_image_path);
xypron.glpk@gmx.de5eadbfa2017-07-04 23:15:23 +0200525 printf("## Application terminated, r = %lu\n",
526 r & ~EFI_ERROR_MASK);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100527
xypron.glpk@gmx.de5eadbfa2017-07-04 23:15:23 +0200528 if (r != EFI_SUCCESS)
529 return 1;
530 else
531 return 0;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100532}
533
534#ifdef CONFIG_SYS_LONGHELP
535static char bootefi_help_text[] =
Alexander Graf54c1e832016-04-14 16:07:53 +0200536 "<image address> [fdt address]\n"
537 " - boot EFI payload stored at address <image address>.\n"
538 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700539 " exposed as EFI configuration table.\n"
540#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200541 "bootefi hello\n"
542 " - boot a sample Hello World application stored within U-Boot\n"
543#endif
544#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100545 "bootefi selftest [fdt address]\n"
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200546 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200547 " Use environment variable efi_selftest to select a single test.\n"
548 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700549#endif
Heinrich Schuchardt1b2320f2018-01-30 19:47:43 +0100550 "bootefi bootmgr [fdt addr]\n"
Rob Clarkc84c1102017-09-13 18:05:38 -0400551 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
552 "\n"
553 " If specified, the device tree located at <fdt address> gets\n"
554 " exposed as EFI configuration table.\n";
Alexander Grafe2b04f22016-03-10 00:27:20 +0100555#endif
556
557U_BOOT_CMD(
Alexander Graf54c1e832016-04-14 16:07:53 +0200558 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700559 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100560 bootefi_help_text
561);
Alexander Graf8f19f262016-03-04 01:10:14 +0100562
Rob Clarkf8db9222017-09-13 18:05:33 -0400563void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
564{
565 char filename[32] = { 0 }; /* dp->str is u16[32] long */
566 char *s;
Alexander Graf34118e72016-08-05 14:49:53 +0200567
Rob Clarkf8db9222017-09-13 18:05:33 -0400568 if (strcmp(dev, "Net")) {
569 struct blk_desc *desc;
Heinrich Schuchardt7e262a72018-04-03 22:40:55 +0200570 disk_partition_t fs_partition;
Rob Clarkf8db9222017-09-13 18:05:33 -0400571 int part;
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200572
Heinrich Schuchardt7e262a72018-04-03 22:40:55 +0200573 part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition,
574 1);
575 if (part < 0)
Stefan Roesedf769762017-11-17 08:47:09 +0100576 return;
Alexander Graf8f19f262016-03-04 01:10:14 +0100577
Rob Clarkf8db9222017-09-13 18:05:33 -0400578 bootefi_device_path = efi_dp_from_part(desc, part);
579 } else {
Joe Hershberger5277a972018-04-13 15:26:39 -0500580#ifdef CONFIG_NET
Rob Clarkf8db9222017-09-13 18:05:33 -0400581 bootefi_device_path = efi_dp_from_eth();
582#endif
583 }
Alexander Grafc49a1b82016-04-11 16:16:19 +0200584
Rob Clarkc84c1102017-09-13 18:05:38 -0400585 if (!path)
586 return;
587
Alexander Graf45e437d2016-07-21 01:44:46 +0200588 if (strcmp(dev, "Net")) {
589 /* Add leading / to fs paths, because they're absolute */
Rob Clarkf8db9222017-09-13 18:05:33 -0400590 snprintf(filename, sizeof(filename), "/%s", path);
Alexander Graf45e437d2016-07-21 01:44:46 +0200591 } else {
Rob Clarkf8db9222017-09-13 18:05:33 -0400592 snprintf(filename, sizeof(filename), "%s", path);
Alexander Graf45e437d2016-07-21 01:44:46 +0200593 }
Rob Clark65336522017-07-24 07:59:09 -0400594 /* DOS style file path: */
Rob Clarkf8db9222017-09-13 18:05:33 -0400595 s = filename;
Rob Clark65336522017-07-24 07:59:09 -0400596 while ((s = strchr(s, '/')))
597 *s++ = '\\';
Rob Clarkf8db9222017-09-13 18:05:33 -0400598 bootefi_image_path = efi_dp_from_file(NULL, 0, filename);
Alexander Graf8f19f262016-03-04 01:10:14 +0100599}