blob: d8ca4ed703efd2854fad714cde2d623180a93325 [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
8#include <common.h>
Heinrich Schuchardtaa0b11b2019-01-08 18:13:06 +01009#include <bootm.h>
10#include <charset.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010011#include <command.h>
Simon Glass11c89f32017-05-17 17:18:03 -060012#include <dm.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010013#include <efi_loader.h>
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020014#include <efi_selftest.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010015#include <errno.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090016#include <linux/libfdt.h>
17#include <linux/libfdt_env.h>
Alexander Grafa2414512018-06-18 17:22:58 +020018#include <mapmem.h>
Alexander Graffdbae012016-04-11 23:51:01 +020019#include <memalign.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020020#include <asm/global_data.h>
Simon Glassc2194bf2016-09-25 15:27:32 -060021#include <asm-generic/sections.h>
Heinrich Schuchardt954e2b92018-04-03 21:59:32 +020022#include <asm-generic/unaligned.h>
Simon Glassc2194bf2016-09-25 15:27:32 -060023#include <linux/linkage.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020024
25DECLARE_GLOBAL_DATA_PTR;
Alexander Grafe2b04f22016-03-10 00:27:20 +010026
Rob Clarkf8db9222017-09-13 18:05:33 -040027static struct efi_device_path *bootefi_image_path;
28static struct efi_device_path *bootefi_device_path;
Alexander Grafe2b04f22016-03-10 00:27:20 +010029
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020030/*
Heinrich Schuchardt954e2b92018-04-03 21:59:32 +020031 * Allow unaligned memory access.
32 *
33 * This routine is overridden by architectures providing this feature.
34 */
35void __weak allow_unaligned(void)
36{
37}
38
39/*
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020040 * Set the load options of an image from an environment variable.
41 *
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090042 * @handle: the image handle
43 * @env_var: name of the environment variable
44 * Return: status code
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020045 */
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090046static efi_status_t set_load_options(efi_handle_t handle, const char *env_var)
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020047{
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090048 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020049 size_t size;
50 const char *env = env_get(env_var);
Heinrich Schuchardtde527802018-08-31 21:31:33 +020051 u16 *pos;
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090052 efi_status_t ret;
53
54 ret = EFI_CALL(systab.boottime->open_protocol(
55 handle,
56 &efi_guid_loaded_image,
57 (void **)&loaded_image_info,
58 efi_root, NULL,
59 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL));
60 if (ret != EFI_SUCCESS)
61 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020062
63 loaded_image_info->load_options = NULL;
64 loaded_image_info->load_options_size = 0;
65 if (!env)
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090066 goto out;
67
Heinrich Schuchardtde527802018-08-31 21:31:33 +020068 size = utf8_utf16_strlen(env) + 1;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020069 loaded_image_info->load_options = calloc(size, sizeof(u16));
70 if (!loaded_image_info->load_options) {
71 printf("ERROR: Out of memory\n");
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090072 EFI_CALL(systab.boottime->close_protocol(handle,
73 &efi_guid_loaded_image,
74 efi_root, NULL));
75 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020076 }
Heinrich Schuchardtde527802018-08-31 21:31:33 +020077 pos = loaded_image_info->load_options;
78 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020079 loaded_image_info->load_options_size = size * 2;
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090080
81out:
82 return EFI_CALL(systab.boottime->close_protocol(handle,
83 &efi_guid_loaded_image,
84 efi_root, NULL));
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020085}
86
Simon Glass5d618df2018-08-08 03:54:30 -060087/**
88 * copy_fdt() - Copy the device tree to a new location available to EFI
89 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010090 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +010091 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass5d618df2018-08-08 03:54:30 -060092 * expanded later with fdt_open_into().
93 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010094 * @fdtp: On entry a pointer to the flattened device tree.
95 * On exit a pointer to the copy of the flattened device tree.
Heinrich Schuchardt96af56e2018-11-12 18:55:22 +010096 * FDT start
97 * Return: status code
Simon Glass5d618df2018-08-08 03:54:30 -060098 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010099static efi_status_t copy_fdt(void **fdtp)
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200100{
Alexander Graffdbae012016-04-11 23:51:01 +0200101 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass5d618df2018-08-08 03:54:30 -0600102 efi_status_t ret = 0;
103 void *fdt, *new_fdt;
Alexander Graffdbae012016-04-11 23:51:01 +0200104 u64 new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -0600105 uint fdt_size;
Alexander Graffdbae012016-04-11 23:51:01 +0200106 int i;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200107
Simon Glass5d618df2018-08-08 03:54:30 -0600108 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
109 u64 ram_start = gd->bd->bi_dram[i].start;
110 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200111
Alexander Graffdbae012016-04-11 23:51:01 +0200112 if (!ram_size)
113 continue;
114
115 if (ram_start < fdt_ram_start)
116 fdt_ram_start = ram_start;
117 }
118
Simon Glass56bbcc12018-06-18 08:08:25 -0600119 /*
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100120 * Give us at least 12 KiB of breathing room in case the device tree
121 * needs to be expanded later.
Simon Glass56bbcc12018-06-18 08:08:25 -0600122 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100123 fdt = *fdtp;
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100124 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
125 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
Alexander Graffdbae012016-04-11 23:51:01 +0200126
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100127 /*
128 * Safe fdt location is at 127 MiB.
129 * On the sandbox convert from the sandbox address space.
130 */
131 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
132 fdt_size, 0);
Simon Glass5d618df2018-08-08 03:54:30 -0600133 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas0468b8e2019-04-12 21:26:28 +0300134 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600135 &new_fdt_addr);
136 if (ret != EFI_SUCCESS) {
Alexander Graffdbae012016-04-11 23:51:01 +0200137 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.def6b99122017-08-11 21:19:25 +0200138 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass5d618df2018-08-08 03:54:30 -0600139 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas0468b8e2019-04-12 21:26:28 +0300140 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600141 &new_fdt_addr);
142 if (ret != EFI_SUCCESS) {
Alexander Graf9b9b7162017-07-03 13:32:35 +0200143 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass5d618df2018-08-08 03:54:30 -0600144 goto done;
Alexander Graf9b9b7162017-07-03 13:32:35 +0200145 }
Alexander Graffdbae012016-04-11 23:51:01 +0200146 }
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100147 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200148 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
149 fdt_set_totalsize(new_fdt, fdt_size);
150
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100151 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -0600152done:
153 return ret;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200154}
155
Simon Glass54b9b6e2018-06-18 08:08:28 -0600156/*
157 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
158 *
159 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
160 * ignored because this is not critical and we would rather continue to try to
161 * boot.
162 *
163 * @fdt: Pointer to device tree
164 */
165static void efi_carve_out_dt_rsv(void *fdt)
Alexander Graf22c88bf2018-04-06 09:40:51 +0200166{
167 int nr_rsv, i;
168 uint64_t addr, size, pages;
169
170 nr_rsv = fdt_num_mem_rsv(fdt);
171
172 /* Look for an existing entry and add it to the efi mem map. */
173 for (i = 0; i < nr_rsv; i++) {
174 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
175 continue;
176
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100177 /* Convert from sandbox address space. */
178 addr = (uintptr_t)map_sysmem(addr, 0);
179
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100180 pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK));
Heinrich Schuchardt3d92fc82018-11-12 18:55:23 +0100181 addr &= ~EFI_PAGE_MASK;
Simon Glass54b9b6e2018-06-18 08:08:28 -0600182 if (!efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
183 false))
184 printf("FDT memrsv map %d: Failed to add to map\n", i);
Alexander Graf22c88bf2018-04-06 09:40:51 +0200185 }
Alexander Graf22c88bf2018-04-06 09:40:51 +0200186}
187
Simon Glass5d618df2018-08-08 03:54:30 -0600188static efi_status_t efi_install_fdt(ulong fdt_addr)
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100189{
190 bootm_headers_t img = { 0 };
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100191 efi_status_t ret;
Simon Glass5d618df2018-08-08 03:54:30 -0600192 void *fdt;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100193
Simon Glass5d618df2018-08-08 03:54:30 -0600194 fdt = map_sysmem(fdt_addr, 0);
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100195 if (fdt_check_header(fdt)) {
196 printf("ERROR: invalid device tree\n");
197 return EFI_INVALID_PARAMETER;
198 }
199
Heinrich Schuchardt68a0d5b2018-11-18 17:58:53 +0100200 /* Create memory reservation as indicated by the device tree */
201 efi_carve_out_dt_rsv(fdt);
202
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100203 /* Prepare fdt for payload */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100204 ret = copy_fdt(&fdt);
Simon Glass5d618df2018-08-08 03:54:30 -0600205 if (ret)
206 return ret;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100207
208 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
209 printf("ERROR: failed to process device tree\n");
210 return EFI_LOAD_ERROR;
211 }
212
213 /* Link to it in the efi tables */
214 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
215 if (ret != EFI_SUCCESS)
216 return EFI_OUT_OF_RESOURCES;
217
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100218 return ret;
219}
220
Simon Glass7816c7a2018-11-25 20:14:38 -0700221static efi_status_t bootefi_run_prepare(const char *load_options_path,
222 struct efi_device_path *device_path,
223 struct efi_device_path *image_path,
224 struct efi_loaded_image_obj **image_objp,
225 struct efi_loaded_image **loaded_image_infop)
226{
227 efi_status_t ret;
228
229 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
230 loaded_image_infop);
231 if (ret != EFI_SUCCESS)
232 return ret;
233
234 /* Transfer environment variable as load options */
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +0900235 return set_load_options((efi_handle_t)*image_objp, load_options_path);
Simon Glass7816c7a2018-11-25 20:14:38 -0700236}
237
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200238/**
Simon Glass4d77ee62018-11-25 20:14:39 -0700239 * bootefi_run_finish() - finish up after running an EFI test
240 *
241 * @loaded_image_info: Pointer to a struct which holds the loaded image info
242 * @image_objj: Pointer to a struct which holds the loaded image object
243 */
244static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
245 struct efi_loaded_image *loaded_image_info)
246{
247 efi_restore_gd();
248 free(loaded_image_info->load_options);
249 efi_delete_handle(&image_obj->header);
250}
251
252/**
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200253 * do_bootefi_exec() - execute EFI binary
254 *
255 * @efi: address of the binary
256 * @device_path: path of the device from which the binary was loaded
257 * @image_path: device path of the binary
258 * Return: status code
259 *
260 * Load the EFI binary into a newly assigned memory unwinding the relocation
261 * information, install the loaded image protocol, and call the binary.
Alexander Grafe2b04f22016-03-10 00:27:20 +0100262 */
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100263static efi_status_t do_bootefi_exec(void *efi,
Heinrich Schuchardt4e363a92017-10-18 18:13:08 +0200264 struct efi_device_path *device_path,
265 struct efi_device_path *image_path)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100266{
Heinrich Schuchardt078d6e22018-09-16 07:19:48 +0200267 efi_handle_t mem_handle = NULL;
Rob Clark18ceba72017-10-10 08:23:06 -0400268 struct efi_device_path *memdp = NULL;
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100269 efi_status_t ret;
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +0200270 struct efi_loaded_image_obj *image_obj = NULL;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200271 struct efi_loaded_image *loaded_image_info = NULL;
Rob Clarkf8db9222017-09-13 18:05:33 -0400272
Rob Clark18ceba72017-10-10 08:23:06 -0400273 /*
274 * Special case for efi payload not loaded from disk, such as
275 * 'bootefi hello' or for example payload loaded directly into
Heinrich Schuchardt5e96f422018-10-18 21:51:38 +0200276 * memory via JTAG, etc:
Rob Clark18ceba72017-10-10 08:23:06 -0400277 */
278 if (!device_path && !image_path) {
279 printf("WARNING: using memory device/image path, this may confuse some payloads!\n");
280 /* actual addresses filled in after efi_load_pe() */
Heinrich Schuchardt4c419bb2018-12-26 22:23:00 +0100281 memdp = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Rob Clark18ceba72017-10-10 08:23:06 -0400282 device_path = image_path = memdp;
Heinrich Schuchardt078d6e22018-09-16 07:19:48 +0200283 /*
284 * Grub expects that the device path of the loaded image is
285 * installed on a handle.
286 */
287 ret = efi_create_handle(&mem_handle);
288 if (ret != EFI_SUCCESS)
Simon Glass4d77ee62018-11-25 20:14:39 -0700289 return ret; /* TODO: leaks device_path */
Heinrich Schuchardt078d6e22018-09-16 07:19:48 +0200290 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
Alexander Graf2d00dbe2018-06-12 10:21:16 +0200291 device_path);
292 if (ret != EFI_SUCCESS)
Simon Glass4d77ee62018-11-25 20:14:39 -0700293 goto err_add_protocol;
Rob Clark18ceba72017-10-10 08:23:06 -0400294 } else {
295 assert(device_path && image_path);
296 }
297
Simon Glass7816c7a2018-11-25 20:14:38 -0700298 ret = bootefi_run_prepare("bootargs", device_path, image_path,
299 &image_obj, &loaded_image_info);
300 if (ret)
Simon Glass4d77ee62018-11-25 20:14:39 -0700301 goto err_prepare;
Rob Clarkf8db9222017-09-13 18:05:33 -0400302
Alexander Grafe2b04f22016-03-10 00:27:20 +0100303 /* Load the EFI payload */
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100304 ret = efi_load_pe(image_obj, efi, loaded_image_info);
305 if (ret != EFI_SUCCESS)
Simon Glass4d77ee62018-11-25 20:14:39 -0700306 goto err_prepare;
Alexander Graf77256092016-08-16 21:08:45 +0200307
Rob Clark18ceba72017-10-10 08:23:06 -0400308 if (memdp) {
309 struct efi_device_path_memory *mdp = (void *)memdp;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200310 mdp->memory_type = loaded_image_info->image_code_type;
311 mdp->start_address = (uintptr_t)loaded_image_info->image_base;
Rob Clark18ceba72017-10-10 08:23:06 -0400312 mdp->end_address = mdp->start_address +
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200313 loaded_image_info->image_size;
Rob Clark18ceba72017-10-10 08:23:06 -0400314 }
315
Rob Clark15f3d742017-09-13 18:05:37 -0400316 /* we don't support much: */
317 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
318 "{ro,boot}(blob)0000000000000000");
319
Alexander Grafe2b04f22016-03-10 00:27:20 +0100320 /* Call our payload! */
Heinrich Schuchardt408fbcc2018-12-26 12:49:09 +0100321 debug("%s: Jumping to 0x%p\n", __func__, image_obj->entry);
Heinrich Schuchardt2f8eb082018-12-26 13:28:09 +0100322 ret = EFI_CALL(efi_start_image(&image_obj->header, NULL, NULL));
Rob Clarkf8db9222017-09-13 18:05:33 -0400323
Simon Glass4d77ee62018-11-25 20:14:39 -0700324err_prepare:
Rob Clarkf8db9222017-09-13 18:05:33 -0400325 /* image has returned, loaded-image obj goes *poof*: */
Simon Glass4d77ee62018-11-25 20:14:39 -0700326 bootefi_run_finish(image_obj, loaded_image_info);
327
328err_add_protocol:
Heinrich Schuchardt078d6e22018-09-16 07:19:48 +0200329 if (mem_handle)
330 efi_delete_handle(mem_handle);
Rob Clarkf8db9222017-09-13 18:05:33 -0400331
332 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100333}
334
Simon Glass93f25592018-11-25 20:14:37 -0700335#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
336/**
337 * bootefi_test_prepare() - prepare to run an EFI test
338 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100339 * Prepare to run a test as if it were provided by a loaded image.
Simon Glass93f25592018-11-25 20:14:37 -0700340 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100341 * @image_objp: pointer to be set to the loaded image handle
342 * @loaded_image_infop: pointer to be set to the loaded image protocol
343 * @path: dummy file path used to construct the device path
344 * set in the loaded image protocol
345 * @load_options_path: name of a U-Boot environment variable. Its value is
346 * set as load options in the loaded image protocol.
347 * Return: status code
Simon Glass93f25592018-11-25 20:14:37 -0700348 */
349static efi_status_t bootefi_test_prepare
350 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100351 struct efi_loaded_image **loaded_image_infop, const char *path,
352 const char *load_options_path)
Simon Glass93f25592018-11-25 20:14:37 -0700353{
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100354 efi_status_t ret;
355
Simon Glass93f25592018-11-25 20:14:37 -0700356 /* Construct a dummy device path */
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100357 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glass93f25592018-11-25 20:14:37 -0700358 if (!bootefi_device_path)
359 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100360
Simon Glass93f25592018-11-25 20:14:37 -0700361 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100362 if (!bootefi_image_path) {
363 ret = EFI_OUT_OF_RESOURCES;
364 goto failure;
365 }
366
367 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
368 bootefi_image_path, image_objp,
369 loaded_image_infop);
370 if (ret == EFI_SUCCESS)
371 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700372
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100373 efi_free_pool(bootefi_image_path);
374 bootefi_image_path = NULL;
375failure:
376 efi_free_pool(bootefi_device_path);
377 bootefi_device_path = NULL;
378 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700379}
380
Simon Glass93f25592018-11-25 20:14:37 -0700381#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
382
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100383static int do_bootefi_bootmgr_exec(void)
Rob Clarkc84c1102017-09-13 18:05:38 -0400384{
385 struct efi_device_path *device_path, *file_path;
386 void *addr;
387 efi_status_t r;
388
Rob Clarkc84c1102017-09-13 18:05:38 -0400389 addr = efi_bootmgr_load(&device_path, &file_path);
390 if (!addr)
391 return 1;
392
393 printf("## Starting EFI application at %p ...\n", addr);
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100394 r = do_bootefi_exec(addr, device_path, file_path);
Rob Clarkc84c1102017-09-13 18:05:38 -0400395 printf("## Application terminated, r = %lu\n",
396 r & ~EFI_ERROR_MASK);
397
398 if (r != EFI_SUCCESS)
399 return 1;
400
401 return 0;
402}
403
Alexander Grafe2b04f22016-03-10 00:27:20 +0100404/* Interpreter command to boot an arbitrary EFI image from memory */
405static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
406{
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100407 unsigned long addr;
408 char *saddr;
Heinrich Schuchardt4e363a92017-10-18 18:13:08 +0200409 efi_status_t r;
Alexander Grafa2414512018-06-18 17:22:58 +0200410 unsigned long fdt_addr;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100411
Heinrich Schuchardt954e2b92018-04-03 21:59:32 +0200412 /* Allow unaligned memory access */
413 allow_unaligned();
414
Heinrich Schuchardtaa0b11b2019-01-08 18:13:06 +0100415 switch_to_non_secure_mode();
416
Heinrich Schuchardt8c0dfc22018-03-03 15:29:02 +0100417 /* Initialize EFI drivers */
418 r = efi_init_obj_list();
419 if (r != EFI_SUCCESS) {
420 printf("Error: Cannot set up EFI drivers, r = %lu\n",
421 r & ~EFI_ERROR_MASK);
422 return CMD_RET_FAILURE;
423 }
424
Alexander Grafe2b04f22016-03-10 00:27:20 +0100425 if (argc < 2)
Bin Mengda800ff2016-08-13 04:02:06 -0700426 return CMD_RET_USAGE;
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100427
428 if (argc > 2) {
Alexander Grafa2414512018-06-18 17:22:58 +0200429 fdt_addr = simple_strtoul(argv[2], NULL, 16);
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100430 if (!fdt_addr && *argv[2] != '0')
431 return CMD_RET_USAGE;
432 /* Install device tree */
Simon Glass5d618df2018-08-08 03:54:30 -0600433 r = efi_install_fdt(fdt_addr);
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100434 if (r != EFI_SUCCESS) {
435 printf("ERROR: failed to install device tree\n");
436 return CMD_RET_FAILURE;
437 }
438 } else {
439 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
440 efi_install_configuration_table(&efi_guid_fdt, NULL);
441 printf("WARNING: booting without device tree\n");
442 }
Simon Glassfac4ced2016-11-07 08:47:08 -0700443#ifdef CONFIG_CMD_BOOTEFI_HELLO
444 if (!strcmp(argv[1], "hello")) {
Heinrich Schuchardt7804ae92017-09-05 03:19:37 +0200445 ulong size = __efi_helloworld_end - __efi_helloworld_begin;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100446
Heinrich Schuchardte6a9ab52017-08-28 18:54:30 +0200447 saddr = env_get("loadaddr");
448 if (saddr)
449 addr = simple_strtoul(saddr, NULL, 16);
450 else
451 addr = CONFIG_SYS_LOAD_ADDR;
Alexander Grafa2414512018-06-18 17:22:58 +0200452 memcpy(map_sysmem(addr, size), __efi_helloworld_begin, size);
Simon Glassfac4ced2016-11-07 08:47:08 -0700453 } else
454#endif
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200455#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
456 if (!strcmp(argv[1], "selftest")) {
Heinrich Schuchardt4f94ec52018-09-26 05:27:54 +0200457 struct efi_loaded_image_obj *image_obj;
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200458 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardt389f2512017-09-20 22:54:58 +0200459
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100460 r = bootefi_test_prepare(&image_obj, &loaded_image_info,
461 "\\selftest", "efi_selftest");
462 if (r != EFI_SUCCESS)
Simon Glass758cfa12018-11-25 20:14:36 -0700463 return CMD_RET_FAILURE;
464
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200465 /* Execute the test */
Heinrich Schuchardt72506232019-02-09 14:10:39 +0100466 r = EFI_CALL(efi_selftest(&image_obj->header, &systab));
Simon Glass4d77ee62018-11-25 20:14:39 -0700467 bootefi_run_finish(image_obj, loaded_image_info);
Heinrich Schuchardtd2d90b42017-10-18 18:13:14 +0200468 return r != EFI_SUCCESS;
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200469 } else
470#endif
Rob Clarkc84c1102017-09-13 18:05:38 -0400471 if (!strcmp(argv[1], "bootmgr")) {
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100472 return do_bootefi_bootmgr_exec();
Rob Clarkc84c1102017-09-13 18:05:38 -0400473 } else {
Simon Glassfac4ced2016-11-07 08:47:08 -0700474 saddr = argv[1];
Alexander Grafe2b04f22016-03-10 00:27:20 +0100475
Simon Glassfac4ced2016-11-07 08:47:08 -0700476 addr = simple_strtoul(saddr, NULL, 16);
Heinrich Schuchardtaa6fd9a2018-01-24 20:33:54 +0100477 /* Check that a numeric value was passed */
478 if (!addr && *saddr != '0')
479 return CMD_RET_USAGE;
Simon Glassfac4ced2016-11-07 08:47:08 -0700480
Alexander Graf54c1e832016-04-14 16:07:53 +0200481 }
482
Simon Glass1a5490e2016-11-07 08:47:05 -0700483 printf("## Starting EFI application at %08lx ...\n", addr);
Alexander Grafa2414512018-06-18 17:22:58 +0200484 r = do_bootefi_exec(map_sysmem(addr, 0), bootefi_device_path,
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100485 bootefi_image_path);
xypron.glpk@gmx.de5eadbfa2017-07-04 23:15:23 +0200486 printf("## Application terminated, r = %lu\n",
487 r & ~EFI_ERROR_MASK);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100488
xypron.glpk@gmx.de5eadbfa2017-07-04 23:15:23 +0200489 if (r != EFI_SUCCESS)
490 return 1;
491 else
492 return 0;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100493}
494
495#ifdef CONFIG_SYS_LONGHELP
496static char bootefi_help_text[] =
Alexander Graf54c1e832016-04-14 16:07:53 +0200497 "<image address> [fdt address]\n"
498 " - boot EFI payload stored at address <image address>.\n"
499 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700500 " exposed as EFI configuration table.\n"
501#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200502 "bootefi hello\n"
503 " - boot a sample Hello World application stored within U-Boot\n"
504#endif
505#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100506 "bootefi selftest [fdt address]\n"
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200507 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200508 " Use environment variable efi_selftest to select a single test.\n"
509 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700510#endif
Heinrich Schuchardt1b2320f2018-01-30 19:47:43 +0100511 "bootefi bootmgr [fdt addr]\n"
Rob Clarkc84c1102017-09-13 18:05:38 -0400512 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
513 "\n"
514 " If specified, the device tree located at <fdt address> gets\n"
515 " exposed as EFI configuration table.\n";
Alexander Grafe2b04f22016-03-10 00:27:20 +0100516#endif
517
518U_BOOT_CMD(
Alexander Graf54c1e832016-04-14 16:07:53 +0200519 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700520 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100521 bootefi_help_text
522);
Alexander Graf8f19f262016-03-04 01:10:14 +0100523
Rob Clarkf8db9222017-09-13 18:05:33 -0400524void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
525{
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900526 struct efi_device_path *device, *image;
527 efi_status_t ret;
Alexander Graf34118e72016-08-05 14:49:53 +0200528
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200529 /* efi_set_bootdev is typically called repeatedly, recover memory */
530 efi_free_pool(bootefi_device_path);
531 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200532
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900533 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
534 if (ret == EFI_SUCCESS) {
535 bootefi_device_path = device;
536 bootefi_image_path = image;
Alexander Graf45e437d2016-07-21 01:44:46 +0200537 } else {
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900538 bootefi_device_path = NULL;
539 bootefi_image_path = NULL;
Alexander Graf45e437d2016-07-21 01:44:46 +0200540 }
Alexander Graf8f19f262016-03-04 01:10:14 +0100541}