blob: be557518309f11c6f73ec27456bee70711df1e32 [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
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900188/**
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900189 * efi_install_fdt() - install fdt passed by a command argument
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900190 * @fdt_opt: pointer to argument
191 * Return: status code
192 *
193 * If specified, fdt will be installed as configuration table,
194 * otherwise no fdt will be passed.
195 */
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900196static efi_status_t efi_install_fdt(const char *fdt_opt)
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900197{
198 unsigned long fdt_addr;
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900199 void *fdt;
200 bootm_headers_t img = { 0 };
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900201 efi_status_t ret;
202
203 if (fdt_opt) {
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900204 /* Install device tree */
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900205 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
206 if (!fdt_addr && *fdt_opt != '0')
207 return EFI_INVALID_PARAMETER;
208
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900209 fdt = map_sysmem(fdt_addr, 0);
210 if (fdt_check_header(fdt)) {
211 printf("ERROR: invalid device tree\n");
212 return EFI_INVALID_PARAMETER;
213 }
214
215 /* Create memory reservation as indicated by the device tree */
216 efi_carve_out_dt_rsv(fdt);
217
218 /* Prepare fdt for payload */
219 ret = copy_fdt(&fdt);
220 if (ret)
221 return ret;
222
223 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
224 printf("ERROR: failed to process device tree\n");
225 return EFI_LOAD_ERROR;
226 }
227
228 /* Link to it in the efi tables */
229 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900230 if (ret != EFI_SUCCESS) {
231 printf("ERROR: failed to install device tree\n");
232 return ret;
233 }
234 } else {
235 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
236 efi_install_configuration_table(&efi_guid_fdt, NULL);
237 }
238
239 return EFI_SUCCESS;
240}
241
Simon Glass4d77ee62018-11-25 20:14:39 -0700242/**
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200243 * do_bootefi_exec() - execute EFI binary
244 *
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900245 * @handle: handle of loaded image
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200246 * Return: status code
247 *
248 * Load the EFI binary into a newly assigned memory unwinding the relocation
249 * information, install the loaded image protocol, and call the binary.
Alexander Grafe2b04f22016-03-10 00:27:20 +0100250 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900251static efi_status_t do_bootefi_exec(efi_handle_t handle)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100252{
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100253 efi_status_t ret;
Rob Clarkf8db9222017-09-13 18:05:33 -0400254
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900255 /* Transfer environment variable as load options */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900256 ret = set_load_options(handle, "bootargs");
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900257 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900258 return ret;
Rob Clark18ceba72017-10-10 08:23:06 -0400259
Rob Clark15f3d742017-09-13 18:05:37 -0400260 /* we don't support much: */
261 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
262 "{ro,boot}(blob)0000000000000000");
263
Alexander Grafe2b04f22016-03-10 00:27:20 +0100264 /* Call our payload! */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900265 ret = EFI_CALL(efi_start_image(handle, NULL, NULL));
Rob Clarkf8db9222017-09-13 18:05:33 -0400266
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900267 efi_restore_gd();
Simon Glass4d77ee62018-11-25 20:14:39 -0700268
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900269 /*
270 * FIXME: Who is responsible for
271 * free(loaded_image_info->load_options);
272 * Once efi_exit() is implemented correctly,
273 * handle itself doesn't exist here.
274 */
Rob Clarkf8db9222017-09-13 18:05:33 -0400275
276 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100277}
278
AKASHI Takahirocf819832019-04-19 12:22:33 +0900279/**
280 * do_efibootmgr() - execute EFI Boot Manager
281 *
282 * @fdt_opt: string of fdt start address
283 * Return: status code
284 *
285 * Execute EFI Boot Manager
286 */
287static int do_efibootmgr(const char *fdt_opt)
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900288{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900289 efi_handle_t handle;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900290 efi_status_t ret;
291
292 /* Allow unaligned memory access */
293 allow_unaligned();
294
295 switch_to_non_secure_mode();
296
297 /* Initialize EFI drivers */
298 ret = efi_init_obj_list();
299 if (ret != EFI_SUCCESS) {
300 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
301 ret & ~EFI_ERROR_MASK);
302 return CMD_RET_FAILURE;
303 }
304
305 ret = efi_install_fdt(fdt_opt);
306 if (ret == EFI_INVALID_PARAMETER)
307 return CMD_RET_USAGE;
308 else if (ret != EFI_SUCCESS)
309 return CMD_RET_FAILURE;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900310
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900311 ret = efi_bootmgr_load(&handle);
312 if (ret != EFI_SUCCESS) {
313 printf("EFI boot manager: Cannot load any image\n");
314 return CMD_RET_FAILURE;
315 }
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900316
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900317 ret = do_bootefi_exec(handle);
318 printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK);
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900319
AKASHI Takahirocf819832019-04-19 12:22:33 +0900320 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900321 return CMD_RET_FAILURE;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900322
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900323 return CMD_RET_SUCCESS;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900324}
325
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900326/*
327 * do_bootefi_image() - execute EFI binary from command line
328 *
329 * @image_opt: string of image start address
330 * @fdt_opt: string of fdt start address
331 * Return: status code
332 *
333 * Set up memory image for the binary to be loaded, prepare
334 * device path and then call do_bootefi_exec() to execute it.
335 */
336static int do_bootefi_image(const char *image_opt, const char *fdt_opt)
337{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900338 void *image_buf;
339 struct efi_device_path *device_path, *image_path;
340 struct efi_device_path *file_path = NULL;
341 unsigned long addr, size;
342 const char *size_str;
343 efi_handle_t mem_handle = NULL, handle;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900344 efi_status_t ret;
345
346 /* Allow unaligned memory access */
347 allow_unaligned();
348
349 switch_to_non_secure_mode();
350
351 /* Initialize EFI drivers */
352 ret = efi_init_obj_list();
353 if (ret != EFI_SUCCESS) {
354 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
355 ret & ~EFI_ERROR_MASK);
356 return CMD_RET_FAILURE;
357 }
358
359 ret = efi_install_fdt(fdt_opt);
360 if (ret == EFI_INVALID_PARAMETER)
361 return CMD_RET_USAGE;
362 else if (ret != EFI_SUCCESS)
363 return CMD_RET_FAILURE;
364
365#ifdef CONFIG_CMD_BOOTEFI_HELLO
366 if (!strcmp(image_opt, "hello")) {
367 char *saddr;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900368
369 saddr = env_get("loadaddr");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900370 size = __efi_helloworld_end - __efi_helloworld_begin;
371
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900372 if (saddr)
373 addr = simple_strtoul(saddr, NULL, 16);
374 else
375 addr = CONFIG_SYS_LOAD_ADDR;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900376
377 image_buf = map_sysmem(addr, size);
378 memcpy(image_buf, __efi_helloworld_begin, size);
379
380 device_path = NULL;
381 image_path = NULL;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900382 } else
383#endif
384 {
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900385 size_str = env_get("filesize");
386 if (size_str)
387 size = simple_strtoul(size_str, NULL, 16);
388 else
389 size = 0;
390
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900391 addr = simple_strtoul(image_opt, NULL, 16);
392 /* Check that a numeric value was passed */
393 if (!addr && *image_opt != '0')
394 return CMD_RET_USAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900395
396 image_buf = map_sysmem(addr, size);
397
398 device_path = bootefi_device_path;
399 image_path = bootefi_image_path;
400 }
401
402 if (!device_path && !image_path) {
403 /*
404 * Special case for efi payload not loaded from disk,
405 * such as 'bootefi hello' or for example payload
406 * loaded directly into memory via JTAG, etc:
407 */
408 file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
409 (uintptr_t)image_buf, size);
410 /*
411 * Make sure that device for device_path exist
412 * in load_image(). Otherwise, shell and grub will fail.
413 */
414 ret = efi_create_handle(&mem_handle);
415 if (ret != EFI_SUCCESS)
416 goto out;
417
418 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
419 file_path);
420 if (ret != EFI_SUCCESS)
421 goto out;
422 } else {
423 assert(device_path && image_path);
424 file_path = efi_dp_append(device_path, image_path);
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900425 }
426
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900427 ret = EFI_CALL(efi_load_image(false, efi_root,
428 file_path, image_buf, size, &handle));
429 if (ret != EFI_SUCCESS)
430 goto out;
431
432 ret = do_bootefi_exec(handle);
433 printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK);
434
435out:
436 if (mem_handle)
437 efi_delete_handle(mem_handle);
438 if (file_path)
439 efi_free_pool(file_path);
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900440
441 if (ret != EFI_SUCCESS)
442 return CMD_RET_FAILURE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900443
444 return CMD_RET_SUCCESS;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900445}
446
Simon Glass93f25592018-11-25 20:14:37 -0700447#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900448static efi_status_t bootefi_run_prepare(const char *load_options_path,
449 struct efi_device_path *device_path,
450 struct efi_device_path *image_path,
451 struct efi_loaded_image_obj **image_objp,
452 struct efi_loaded_image **loaded_image_infop)
453{
454 efi_status_t ret;
455
456 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
457 loaded_image_infop);
458 if (ret != EFI_SUCCESS)
459 return ret;
460
461 /* Transfer environment variable as load options */
462 return set_load_options((efi_handle_t)*image_objp, load_options_path);
463}
464
Simon Glass93f25592018-11-25 20:14:37 -0700465/**
466 * bootefi_test_prepare() - prepare to run an EFI test
467 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100468 * Prepare to run a test as if it were provided by a loaded image.
Simon Glass93f25592018-11-25 20:14:37 -0700469 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100470 * @image_objp: pointer to be set to the loaded image handle
471 * @loaded_image_infop: pointer to be set to the loaded image protocol
472 * @path: dummy file path used to construct the device path
473 * set in the loaded image protocol
474 * @load_options_path: name of a U-Boot environment variable. Its value is
475 * set as load options in the loaded image protocol.
476 * Return: status code
Simon Glass93f25592018-11-25 20:14:37 -0700477 */
478static efi_status_t bootefi_test_prepare
479 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100480 struct efi_loaded_image **loaded_image_infop, const char *path,
481 const char *load_options_path)
Simon Glass93f25592018-11-25 20:14:37 -0700482{
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100483 efi_status_t ret;
484
Simon Glass93f25592018-11-25 20:14:37 -0700485 /* Construct a dummy device path */
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100486 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glass93f25592018-11-25 20:14:37 -0700487 if (!bootefi_device_path)
488 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100489
Simon Glass93f25592018-11-25 20:14:37 -0700490 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100491 if (!bootefi_image_path) {
492 ret = EFI_OUT_OF_RESOURCES;
493 goto failure;
494 }
495
496 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
497 bootefi_image_path, image_objp,
498 loaded_image_infop);
499 if (ret == EFI_SUCCESS)
500 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700501
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100502 efi_free_pool(bootefi_image_path);
503 bootefi_image_path = NULL;
504failure:
505 efi_free_pool(bootefi_device_path);
506 bootefi_device_path = NULL;
507 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700508}
509
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900510/**
511 * bootefi_run_finish() - finish up after running an EFI test
512 *
513 * @loaded_image_info: Pointer to a struct which holds the loaded image info
514 * @image_obj: Pointer to a struct which holds the loaded image object
515 */
516static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
517 struct efi_loaded_image *loaded_image_info)
518{
519 efi_restore_gd();
520 free(loaded_image_info->load_options);
521 efi_delete_handle(&image_obj->header);
522}
523
524/**
525 * do_efi_selftest() - execute EFI Selftest
526 *
527 * @fdt_opt: string of fdt start address
528 * Return: status code
529 *
530 * Execute EFI Selftest
531 */
532static int do_efi_selftest(const char *fdt_opt)
533{
534 struct efi_loaded_image_obj *image_obj;
535 struct efi_loaded_image *loaded_image_info;
536 efi_status_t ret;
537
538 /* Allow unaligned memory access */
539 allow_unaligned();
540
541 switch_to_non_secure_mode();
542
543 /* Initialize EFI drivers */
544 ret = efi_init_obj_list();
545 if (ret != EFI_SUCCESS) {
546 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
547 ret & ~EFI_ERROR_MASK);
548 return CMD_RET_FAILURE;
549 }
550
551 ret = efi_install_fdt(fdt_opt);
552 if (ret == EFI_INVALID_PARAMETER)
553 return CMD_RET_USAGE;
554 else if (ret != EFI_SUCCESS)
555 return CMD_RET_FAILURE;
556
557 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
558 "\\selftest", "efi_selftest");
559 if (ret != EFI_SUCCESS)
560 return CMD_RET_FAILURE;
561
562 /* Execute the test */
563 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
564 bootefi_run_finish(image_obj, loaded_image_info);
565
566 return ret != EFI_SUCCESS;
567}
Simon Glass93f25592018-11-25 20:14:37 -0700568#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
569
Alexander Grafe2b04f22016-03-10 00:27:20 +0100570/* Interpreter command to boot an arbitrary EFI image from memory */
571static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
572{
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900573 if (argc < 2)
574 return CMD_RET_USAGE;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900575
576 if (!strcmp(argv[1], "bootmgr"))
577 return do_efibootmgr(argc > 2 ? argv[2] : NULL);
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900578#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
579 else if (!strcmp(argv[1], "selftest"))
580 return do_efi_selftest(argc > 2 ? argv[2] : NULL);
581#endif
Simon Glassfac4ced2016-11-07 08:47:08 -0700582
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900583 return do_bootefi_image(argv[1], argc > 2 ? argv[2] : NULL);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100584}
585
586#ifdef CONFIG_SYS_LONGHELP
587static char bootefi_help_text[] =
Alexander Graf54c1e832016-04-14 16:07:53 +0200588 "<image address> [fdt address]\n"
589 " - boot EFI payload stored at address <image address>.\n"
590 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700591 " exposed as EFI configuration table.\n"
592#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200593 "bootefi hello\n"
594 " - boot a sample Hello World application stored within U-Boot\n"
595#endif
596#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100597 "bootefi selftest [fdt address]\n"
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200598 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200599 " Use environment variable efi_selftest to select a single test.\n"
600 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700601#endif
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900602 "bootefi bootmgr [fdt address]\n"
Rob Clarkc84c1102017-09-13 18:05:38 -0400603 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
604 "\n"
605 " If specified, the device tree located at <fdt address> gets\n"
606 " exposed as EFI configuration table.\n";
Alexander Grafe2b04f22016-03-10 00:27:20 +0100607#endif
608
609U_BOOT_CMD(
Alexander Graf54c1e832016-04-14 16:07:53 +0200610 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700611 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100612 bootefi_help_text
613);
Alexander Graf8f19f262016-03-04 01:10:14 +0100614
Rob Clarkf8db9222017-09-13 18:05:33 -0400615void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
616{
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900617 struct efi_device_path *device, *image;
618 efi_status_t ret;
Alexander Graf34118e72016-08-05 14:49:53 +0200619
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200620 /* efi_set_bootdev is typically called repeatedly, recover memory */
621 efi_free_pool(bootefi_device_path);
622 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200623
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900624 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
625 if (ret == EFI_SUCCESS) {
626 bootefi_device_path = device;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900627 if (image) {
628 /* FIXME: image should not contain device */
629 struct efi_device_path *image_tmp = image;
630
631 efi_dp_split_file_path(image, &device, &image);
632 efi_free_pool(image_tmp);
633 }
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900634 bootefi_image_path = image;
Alexander Graf45e437d2016-07-21 01:44:46 +0200635 } else {
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900636 bootefi_device_path = NULL;
637 bootefi_image_path = NULL;
Alexander Graf45e437d2016-07-21 01:44:46 +0200638 }
Alexander Graf8f19f262016-03-04 01:10:14 +0100639}