blob: 52116b308cc5050e259d258420a8acf6071b8e79 [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 <charset.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010010#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>
Simon Glassc2194bf2016-09-25 15:27:32 -060019#include <asm-generic/sections.h>
20#include <linux/linkage.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020021
22DECLARE_GLOBAL_DATA_PTR;
Alexander Grafe2b04f22016-03-10 00:27:20 +010023
Rob Clarkf8db9222017-09-13 18:05:33 -040024static struct efi_device_path *bootefi_image_path;
25static struct efi_device_path *bootefi_device_path;
Alexander Grafe2b04f22016-03-10 00:27:20 +010026
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020027/*
28 * Set the load options of an image from an environment variable.
29 *
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090030 * @handle: the image handle
31 * @env_var: name of the environment variable
32 * Return: status code
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020033 */
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090034static efi_status_t set_load_options(efi_handle_t handle, const char *env_var)
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020035{
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090036 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020037 size_t size;
38 const char *env = env_get(env_var);
Heinrich Schuchardtde527802018-08-31 21:31:33 +020039 u16 *pos;
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090040 efi_status_t ret;
41
42 ret = EFI_CALL(systab.boottime->open_protocol(
43 handle,
44 &efi_guid_loaded_image,
45 (void **)&loaded_image_info,
46 efi_root, NULL,
47 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL));
48 if (ret != EFI_SUCCESS)
49 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020050
51 loaded_image_info->load_options = NULL;
52 loaded_image_info->load_options_size = 0;
53 if (!env)
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090054 goto out;
55
Heinrich Schuchardtde527802018-08-31 21:31:33 +020056 size = utf8_utf16_strlen(env) + 1;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020057 loaded_image_info->load_options = calloc(size, sizeof(u16));
58 if (!loaded_image_info->load_options) {
59 printf("ERROR: Out of memory\n");
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090060 EFI_CALL(systab.boottime->close_protocol(handle,
61 &efi_guid_loaded_image,
62 efi_root, NULL));
63 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020064 }
Heinrich Schuchardtde527802018-08-31 21:31:33 +020065 pos = loaded_image_info->load_options;
66 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020067 loaded_image_info->load_options_size = size * 2;
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090068
69out:
70 return EFI_CALL(systab.boottime->close_protocol(handle,
71 &efi_guid_loaded_image,
72 efi_root, NULL));
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020073}
74
Heinrich Schuchardt4420a332019-04-20 13:33:55 +020075#if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
76
Simon Glass5d618df2018-08-08 03:54:30 -060077/**
78 * copy_fdt() - Copy the device tree to a new location available to EFI
79 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010080 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +010081 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass5d618df2018-08-08 03:54:30 -060082 * expanded later with fdt_open_into().
83 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010084 * @fdtp: On entry a pointer to the flattened device tree.
85 * On exit a pointer to the copy of the flattened device tree.
Heinrich Schuchardt96af56e2018-11-12 18:55:22 +010086 * FDT start
87 * Return: status code
Simon Glass5d618df2018-08-08 03:54:30 -060088 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010089static efi_status_t copy_fdt(void **fdtp)
Alexander Graf2ff5cc32016-04-11 16:55:26 +020090{
Alexander Graffdbae012016-04-11 23:51:01 +020091 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass5d618df2018-08-08 03:54:30 -060092 efi_status_t ret = 0;
93 void *fdt, *new_fdt;
Alexander Graffdbae012016-04-11 23:51:01 +020094 u64 new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -060095 uint fdt_size;
Alexander Graffdbae012016-04-11 23:51:01 +020096 int i;
Alexander Graf2ff5cc32016-04-11 16:55:26 +020097
Simon Glass5d618df2018-08-08 03:54:30 -060098 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
99 u64 ram_start = gd->bd->bi_dram[i].start;
100 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200101
Alexander Graffdbae012016-04-11 23:51:01 +0200102 if (!ram_size)
103 continue;
104
105 if (ram_start < fdt_ram_start)
106 fdt_ram_start = ram_start;
107 }
108
Simon Glass56bbcc12018-06-18 08:08:25 -0600109 /*
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100110 * Give us at least 12 KiB of breathing room in case the device tree
111 * needs to be expanded later.
Simon Glass56bbcc12018-06-18 08:08:25 -0600112 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100113 fdt = *fdtp;
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100114 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
115 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
Alexander Graffdbae012016-04-11 23:51:01 +0200116
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100117 /*
118 * Safe fdt location is at 127 MiB.
119 * On the sandbox convert from the sandbox address space.
120 */
121 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
122 fdt_size, 0);
Simon Glass5d618df2018-08-08 03:54:30 -0600123 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas0468b8e2019-04-12 21:26:28 +0300124 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600125 &new_fdt_addr);
126 if (ret != EFI_SUCCESS) {
Alexander Graffdbae012016-04-11 23:51:01 +0200127 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.def6b99122017-08-11 21:19:25 +0200128 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass5d618df2018-08-08 03:54:30 -0600129 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas0468b8e2019-04-12 21:26:28 +0300130 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600131 &new_fdt_addr);
132 if (ret != EFI_SUCCESS) {
Alexander Graf9b9b7162017-07-03 13:32:35 +0200133 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass5d618df2018-08-08 03:54:30 -0600134 goto done;
Alexander Graf9b9b7162017-07-03 13:32:35 +0200135 }
Alexander Graffdbae012016-04-11 23:51:01 +0200136 }
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100137 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200138 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
139 fdt_set_totalsize(new_fdt, fdt_size);
140
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100141 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -0600142done:
143 return ret;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200144}
145
Simon Glass54b9b6e2018-06-18 08:08:28 -0600146/*
147 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
148 *
149 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
150 * ignored because this is not critical and we would rather continue to try to
151 * boot.
152 *
153 * @fdt: Pointer to device tree
154 */
155static void efi_carve_out_dt_rsv(void *fdt)
Alexander Graf22c88bf2018-04-06 09:40:51 +0200156{
157 int nr_rsv, i;
158 uint64_t addr, size, pages;
159
160 nr_rsv = fdt_num_mem_rsv(fdt);
161
162 /* Look for an existing entry and add it to the efi mem map. */
163 for (i = 0; i < nr_rsv; i++) {
164 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
165 continue;
166
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100167 /* Convert from sandbox address space. */
168 addr = (uintptr_t)map_sysmem(addr, 0);
169
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100170 pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK));
Heinrich Schuchardt3d92fc82018-11-12 18:55:23 +0100171 addr &= ~EFI_PAGE_MASK;
Simon Glass54b9b6e2018-06-18 08:08:28 -0600172 if (!efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
173 false))
174 printf("FDT memrsv map %d: Failed to add to map\n", i);
Alexander Graf22c88bf2018-04-06 09:40:51 +0200175 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200176}
177
178/**
179 * get_config_table() - get configuration table
180 *
181 * @guid: GUID of the configuration table
182 * Return: pointer to configuration table or NULL
183 */
184static void *get_config_table(const efi_guid_t *guid)
185{
186 size_t i;
187
188 for (i = 0; i < systab.nr_tables; i++) {
189 if (!guidcmp(guid, &systab.tables[i].guid))
190 return systab.tables[i].table;
191 }
192 return NULL;
Alexander Graf22c88bf2018-04-06 09:40:51 +0200193}
194
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200195#endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
196
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900197/**
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900198 * efi_install_fdt() - install fdt passed by a command argument
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900199 * @fdt_opt: pointer to argument
200 * Return: status code
201 *
202 * If specified, fdt will be installed as configuration table,
203 * otherwise no fdt will be passed.
204 */
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900205static efi_status_t efi_install_fdt(const char *fdt_opt)
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900206{
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200207 /*
208 * The EBBR spec requires that we have either an FDT or an ACPI table
209 * but not both.
210 */
211#if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
212 if (fdt_opt) {
213 printf("ERROR: can't have ACPI table and device tree.\n");
214 return EFI_LOAD_ERROR;
215 }
216#else
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900217 unsigned long fdt_addr;
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900218 void *fdt;
219 bootm_headers_t img = { 0 };
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900220 efi_status_t ret;
221
222 if (fdt_opt) {
223 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200224 if (!fdt_addr)
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900225 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200226 } else {
227 /* Look for device tree that is already installed */
228 if (get_config_table(&efi_guid_fdt))
229 return EFI_SUCCESS;
230 /* Use our own device tree as default */
231 fdt_opt = env_get("fdtcontroladdr");
232 if (!fdt_opt) {
233 printf("ERROR: need device tree\n");
234 return EFI_NOT_FOUND;
235 }
236 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
237 if (!fdt_addr) {
238 printf("ERROR: invalid $fdtcontroladdr\n");
239 return EFI_LOAD_ERROR;
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900240 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200241 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900242
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200243 /* Install device tree */
244 fdt = map_sysmem(fdt_addr, 0);
245 if (fdt_check_header(fdt)) {
246 printf("ERROR: invalid device tree\n");
247 return EFI_LOAD_ERROR;
248 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900249
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200250 /* Create memory reservations as indicated by the device tree */
251 efi_carve_out_dt_rsv(fdt);
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900252
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200253 /* Prepare device tree for payload */
254 ret = copy_fdt(&fdt);
255 if (ret) {
256 printf("ERROR: out of memory\n");
257 return EFI_OUT_OF_RESOURCES;
258 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900259
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200260 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
261 printf("ERROR: failed to process device tree\n");
262 return EFI_LOAD_ERROR;
263 }
264
265 /* Install device tree as UEFI table */
266 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
267 if (ret != EFI_SUCCESS) {
268 printf("ERROR: failed to install device tree\n");
269 return ret;
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900270 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200271#endif /* GENERATE_ACPI_TABLE */
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900272
273 return EFI_SUCCESS;
274}
275
Simon Glass4d77ee62018-11-25 20:14:39 -0700276/**
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200277 * do_bootefi_exec() - execute EFI binary
278 *
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900279 * @handle: handle of loaded image
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200280 * Return: status code
281 *
282 * Load the EFI binary into a newly assigned memory unwinding the relocation
283 * information, install the loaded image protocol, and call the binary.
Alexander Grafe2b04f22016-03-10 00:27:20 +0100284 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900285static efi_status_t do_bootefi_exec(efi_handle_t handle)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100286{
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100287 efi_status_t ret;
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200288 efi_uintn_t exit_data_size = 0;
289 u16 *exit_data = NULL;
Rob Clarkf8db9222017-09-13 18:05:33 -0400290
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900291 /* Transfer environment variable as load options */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900292 ret = set_load_options(handle, "bootargs");
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900293 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900294 return ret;
Rob Clark18ceba72017-10-10 08:23:06 -0400295
Alexander Grafe2b04f22016-03-10 00:27:20 +0100296 /* Call our payload! */
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200297 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
298 printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK);
299 if (ret && exit_data) {
300 printf("## %ls\n", exit_data);
301 efi_free_pool(exit_data);
302 }
Rob Clarkf8db9222017-09-13 18:05:33 -0400303
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900304 efi_restore_gd();
Simon Glass4d77ee62018-11-25 20:14:39 -0700305
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900306 /*
307 * FIXME: Who is responsible for
308 * free(loaded_image_info->load_options);
309 * Once efi_exit() is implemented correctly,
310 * handle itself doesn't exist here.
311 */
Rob Clarkf8db9222017-09-13 18:05:33 -0400312
313 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100314}
315
AKASHI Takahirocf819832019-04-19 12:22:33 +0900316/**
317 * do_efibootmgr() - execute EFI Boot Manager
318 *
319 * @fdt_opt: string of fdt start address
320 * Return: status code
321 *
322 * Execute EFI Boot Manager
323 */
324static int do_efibootmgr(const char *fdt_opt)
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900325{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900326 efi_handle_t handle;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900327 efi_status_t ret;
328
AKASHI Takahirocf819832019-04-19 12:22:33 +0900329 /* Initialize EFI drivers */
330 ret = efi_init_obj_list();
331 if (ret != EFI_SUCCESS) {
332 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
333 ret & ~EFI_ERROR_MASK);
334 return CMD_RET_FAILURE;
335 }
336
337 ret = efi_install_fdt(fdt_opt);
338 if (ret == EFI_INVALID_PARAMETER)
339 return CMD_RET_USAGE;
340 else if (ret != EFI_SUCCESS)
341 return CMD_RET_FAILURE;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900342
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900343 ret = efi_bootmgr_load(&handle);
344 if (ret != EFI_SUCCESS) {
345 printf("EFI boot manager: Cannot load any image\n");
346 return CMD_RET_FAILURE;
347 }
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900348
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900349 ret = do_bootefi_exec(handle);
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900350
AKASHI Takahirocf819832019-04-19 12:22:33 +0900351 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900352 return CMD_RET_FAILURE;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900353
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900354 return CMD_RET_SUCCESS;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900355}
356
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900357/*
358 * do_bootefi_image() - execute EFI binary from command line
359 *
360 * @image_opt: string of image start address
361 * @fdt_opt: string of fdt start address
362 * Return: status code
363 *
364 * Set up memory image for the binary to be loaded, prepare
365 * device path and then call do_bootefi_exec() to execute it.
366 */
367static int do_bootefi_image(const char *image_opt, const char *fdt_opt)
368{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900369 void *image_buf;
370 struct efi_device_path *device_path, *image_path;
371 struct efi_device_path *file_path = NULL;
372 unsigned long addr, size;
373 const char *size_str;
374 efi_handle_t mem_handle = NULL, handle;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900375 efi_status_t ret;
376
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900377 /* Initialize EFI drivers */
378 ret = efi_init_obj_list();
379 if (ret != EFI_SUCCESS) {
380 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
381 ret & ~EFI_ERROR_MASK);
382 return CMD_RET_FAILURE;
383 }
384
385 ret = efi_install_fdt(fdt_opt);
386 if (ret == EFI_INVALID_PARAMETER)
387 return CMD_RET_USAGE;
388 else if (ret != EFI_SUCCESS)
389 return CMD_RET_FAILURE;
390
391#ifdef CONFIG_CMD_BOOTEFI_HELLO
392 if (!strcmp(image_opt, "hello")) {
393 char *saddr;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900394
395 saddr = env_get("loadaddr");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900396 size = __efi_helloworld_end - __efi_helloworld_begin;
397
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900398 if (saddr)
399 addr = simple_strtoul(saddr, NULL, 16);
400 else
401 addr = CONFIG_SYS_LOAD_ADDR;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900402
403 image_buf = map_sysmem(addr, size);
404 memcpy(image_buf, __efi_helloworld_begin, size);
405
406 device_path = NULL;
407 image_path = NULL;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900408 } else
409#endif
410 {
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900411 size_str = env_get("filesize");
412 if (size_str)
413 size = simple_strtoul(size_str, NULL, 16);
414 else
415 size = 0;
416
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900417 addr = simple_strtoul(image_opt, NULL, 16);
418 /* Check that a numeric value was passed */
419 if (!addr && *image_opt != '0')
420 return CMD_RET_USAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900421
422 image_buf = map_sysmem(addr, size);
423
424 device_path = bootefi_device_path;
425 image_path = bootefi_image_path;
426 }
427
428 if (!device_path && !image_path) {
429 /*
430 * Special case for efi payload not loaded from disk,
431 * such as 'bootefi hello' or for example payload
432 * loaded directly into memory via JTAG, etc:
433 */
434 file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
435 (uintptr_t)image_buf, size);
436 /*
437 * Make sure that device for device_path exist
438 * in load_image(). Otherwise, shell and grub will fail.
439 */
440 ret = efi_create_handle(&mem_handle);
441 if (ret != EFI_SUCCESS)
442 goto out;
443
444 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
445 file_path);
446 if (ret != EFI_SUCCESS)
447 goto out;
448 } else {
449 assert(device_path && image_path);
450 file_path = efi_dp_append(device_path, image_path);
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900451 }
452
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900453 ret = EFI_CALL(efi_load_image(false, efi_root,
454 file_path, image_buf, size, &handle));
455 if (ret != EFI_SUCCESS)
456 goto out;
457
458 ret = do_bootefi_exec(handle);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900459
460out:
461 if (mem_handle)
462 efi_delete_handle(mem_handle);
463 if (file_path)
464 efi_free_pool(file_path);
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900465
466 if (ret != EFI_SUCCESS)
467 return CMD_RET_FAILURE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900468
469 return CMD_RET_SUCCESS;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900470}
471
Simon Glass93f25592018-11-25 20:14:37 -0700472#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900473static efi_status_t bootefi_run_prepare(const char *load_options_path,
474 struct efi_device_path *device_path,
475 struct efi_device_path *image_path,
476 struct efi_loaded_image_obj **image_objp,
477 struct efi_loaded_image **loaded_image_infop)
478{
479 efi_status_t ret;
480
481 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
482 loaded_image_infop);
483 if (ret != EFI_SUCCESS)
484 return ret;
485
486 /* Transfer environment variable as load options */
487 return set_load_options((efi_handle_t)*image_objp, load_options_path);
488}
489
Simon Glass93f25592018-11-25 20:14:37 -0700490/**
491 * bootefi_test_prepare() - prepare to run an EFI test
492 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100493 * Prepare to run a test as if it were provided by a loaded image.
Simon Glass93f25592018-11-25 20:14:37 -0700494 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100495 * @image_objp: pointer to be set to the loaded image handle
496 * @loaded_image_infop: pointer to be set to the loaded image protocol
497 * @path: dummy file path used to construct the device path
498 * set in the loaded image protocol
499 * @load_options_path: name of a U-Boot environment variable. Its value is
500 * set as load options in the loaded image protocol.
501 * Return: status code
Simon Glass93f25592018-11-25 20:14:37 -0700502 */
503static efi_status_t bootefi_test_prepare
504 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100505 struct efi_loaded_image **loaded_image_infop, const char *path,
506 const char *load_options_path)
Simon Glass93f25592018-11-25 20:14:37 -0700507{
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100508 efi_status_t ret;
509
Simon Glass93f25592018-11-25 20:14:37 -0700510 /* Construct a dummy device path */
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100511 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glass93f25592018-11-25 20:14:37 -0700512 if (!bootefi_device_path)
513 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100514
Simon Glass93f25592018-11-25 20:14:37 -0700515 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100516 if (!bootefi_image_path) {
517 ret = EFI_OUT_OF_RESOURCES;
518 goto failure;
519 }
520
521 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
522 bootefi_image_path, image_objp,
523 loaded_image_infop);
524 if (ret == EFI_SUCCESS)
525 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700526
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100527 efi_free_pool(bootefi_image_path);
528 bootefi_image_path = NULL;
529failure:
530 efi_free_pool(bootefi_device_path);
531 bootefi_device_path = NULL;
532 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700533}
534
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900535/**
536 * bootefi_run_finish() - finish up after running an EFI test
537 *
538 * @loaded_image_info: Pointer to a struct which holds the loaded image info
539 * @image_obj: Pointer to a struct which holds the loaded image object
540 */
541static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
542 struct efi_loaded_image *loaded_image_info)
543{
544 efi_restore_gd();
545 free(loaded_image_info->load_options);
546 efi_delete_handle(&image_obj->header);
547}
548
549/**
550 * do_efi_selftest() - execute EFI Selftest
551 *
552 * @fdt_opt: string of fdt start address
553 * Return: status code
554 *
555 * Execute EFI Selftest
556 */
557static int do_efi_selftest(const char *fdt_opt)
558{
559 struct efi_loaded_image_obj *image_obj;
560 struct efi_loaded_image *loaded_image_info;
561 efi_status_t ret;
562
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900563 /* Initialize EFI drivers */
564 ret = efi_init_obj_list();
565 if (ret != EFI_SUCCESS) {
566 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
567 ret & ~EFI_ERROR_MASK);
568 return CMD_RET_FAILURE;
569 }
570
571 ret = efi_install_fdt(fdt_opt);
572 if (ret == EFI_INVALID_PARAMETER)
573 return CMD_RET_USAGE;
574 else if (ret != EFI_SUCCESS)
575 return CMD_RET_FAILURE;
576
577 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
578 "\\selftest", "efi_selftest");
579 if (ret != EFI_SUCCESS)
580 return CMD_RET_FAILURE;
581
582 /* Execute the test */
583 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
584 bootefi_run_finish(image_obj, loaded_image_info);
585
586 return ret != EFI_SUCCESS;
587}
Simon Glass93f25592018-11-25 20:14:37 -0700588#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
589
Alexander Grafe2b04f22016-03-10 00:27:20 +0100590/* Interpreter command to boot an arbitrary EFI image from memory */
591static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
592{
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900593 if (argc < 2)
594 return CMD_RET_USAGE;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900595
596 if (!strcmp(argv[1], "bootmgr"))
597 return do_efibootmgr(argc > 2 ? argv[2] : NULL);
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900598#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
599 else if (!strcmp(argv[1], "selftest"))
600 return do_efi_selftest(argc > 2 ? argv[2] : NULL);
601#endif
Simon Glassfac4ced2016-11-07 08:47:08 -0700602
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900603 return do_bootefi_image(argv[1], argc > 2 ? argv[2] : NULL);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100604}
605
606#ifdef CONFIG_SYS_LONGHELP
607static char bootefi_help_text[] =
Alexander Graf54c1e832016-04-14 16:07:53 +0200608 "<image address> [fdt address]\n"
609 " - boot EFI payload stored at address <image address>.\n"
610 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700611 " exposed as EFI configuration table.\n"
612#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200613 "bootefi hello\n"
614 " - boot a sample Hello World application stored within U-Boot\n"
615#endif
616#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100617 "bootefi selftest [fdt address]\n"
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200618 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200619 " Use environment variable efi_selftest to select a single test.\n"
620 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700621#endif
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900622 "bootefi bootmgr [fdt address]\n"
Rob Clarkc84c1102017-09-13 18:05:38 -0400623 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
624 "\n"
625 " If specified, the device tree located at <fdt address> gets\n"
626 " exposed as EFI configuration table.\n";
Alexander Grafe2b04f22016-03-10 00:27:20 +0100627#endif
628
629U_BOOT_CMD(
Alexander Graf54c1e832016-04-14 16:07:53 +0200630 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700631 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100632 bootefi_help_text
633);
Alexander Graf8f19f262016-03-04 01:10:14 +0100634
Rob Clarkf8db9222017-09-13 18:05:33 -0400635void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
636{
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900637 struct efi_device_path *device, *image;
638 efi_status_t ret;
Alexander Graf34118e72016-08-05 14:49:53 +0200639
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200640 /* efi_set_bootdev is typically called repeatedly, recover memory */
641 efi_free_pool(bootefi_device_path);
642 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200643
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900644 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
645 if (ret == EFI_SUCCESS) {
646 bootefi_device_path = device;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900647 if (image) {
648 /* FIXME: image should not contain device */
649 struct efi_device_path *image_tmp = image;
650
651 efi_dp_split_file_path(image, &device, &image);
652 efi_free_pool(image_tmp);
653 }
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900654 bootefi_image_path = image;
Alexander Graf45e437d2016-07-21 01:44:46 +0200655 } else {
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900656 bootefi_device_path = NULL;
657 bootefi_image_path = NULL;
Alexander Graf45e437d2016-07-21 01:44:46 +0200658 }
Alexander Graf8f19f262016-03-04 01:10:14 +0100659}