blob: 15b4ff95159220f31f6942b5835b6d372da3f07f [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>
Simon Glass0af6e2d2019-08-01 09:46:52 -060014#include <env.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>
Simon Glassc2194bf2016-09-25 15:27:32 -060020#include <asm-generic/sections.h>
21#include <linux/linkage.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020022
23DECLARE_GLOBAL_DATA_PTR;
Alexander Grafe2b04f22016-03-10 00:27:20 +010024
Rob Clarkf8db9222017-09-13 18:05:33 -040025static struct efi_device_path *bootefi_image_path;
26static struct efi_device_path *bootefi_device_path;
Alexander Grafe2b04f22016-03-10 00:27:20 +010027
Heinrich Schuchardt031ea8f2019-07-14 13:00:44 +020028/**
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020029 * Set the load options of an image from an environment variable.
30 *
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090031 * @handle: the image handle
32 * @env_var: name of the environment variable
33 * Return: status code
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020034 */
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090035static efi_status_t set_load_options(efi_handle_t handle, const char *env_var)
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020036{
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090037 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020038 size_t size;
39 const char *env = env_get(env_var);
Heinrich Schuchardtde527802018-08-31 21:31:33 +020040 u16 *pos;
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090041 efi_status_t ret;
42
43 ret = EFI_CALL(systab.boottime->open_protocol(
44 handle,
45 &efi_guid_loaded_image,
46 (void **)&loaded_image_info,
47 efi_root, NULL,
48 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL));
49 if (ret != EFI_SUCCESS)
50 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020051
52 loaded_image_info->load_options = NULL;
53 loaded_image_info->load_options_size = 0;
54 if (!env)
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090055 goto out;
56
Heinrich Schuchardtde527802018-08-31 21:31:33 +020057 size = utf8_utf16_strlen(env) + 1;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020058 loaded_image_info->load_options = calloc(size, sizeof(u16));
59 if (!loaded_image_info->load_options) {
60 printf("ERROR: Out of memory\n");
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090061 EFI_CALL(systab.boottime->close_protocol(handle,
62 &efi_guid_loaded_image,
63 efi_root, NULL));
64 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020065 }
Heinrich Schuchardtde527802018-08-31 21:31:33 +020066 pos = loaded_image_info->load_options;
67 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020068 loaded_image_info->load_options_size = size * 2;
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +090069
70out:
71 return EFI_CALL(systab.boottime->close_protocol(handle,
72 &efi_guid_loaded_image,
73 efi_root, NULL));
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020074}
75
Heinrich Schuchardt4420a332019-04-20 13:33:55 +020076#if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
77
Simon Glass5d618df2018-08-08 03:54:30 -060078/**
79 * copy_fdt() - Copy the device tree to a new location available to EFI
80 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010081 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +010082 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass5d618df2018-08-08 03:54:30 -060083 * expanded later with fdt_open_into().
84 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010085 * @fdtp: On entry a pointer to the flattened device tree.
86 * On exit a pointer to the copy of the flattened device tree.
Heinrich Schuchardt96af56e2018-11-12 18:55:22 +010087 * FDT start
88 * Return: status code
Simon Glass5d618df2018-08-08 03:54:30 -060089 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +010090static efi_status_t copy_fdt(void **fdtp)
Alexander Graf2ff5cc32016-04-11 16:55:26 +020091{
Alexander Graffdbae012016-04-11 23:51:01 +020092 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass5d618df2018-08-08 03:54:30 -060093 efi_status_t ret = 0;
94 void *fdt, *new_fdt;
Alexander Graffdbae012016-04-11 23:51:01 +020095 u64 new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -060096 uint fdt_size;
Alexander Graffdbae012016-04-11 23:51:01 +020097 int i;
Alexander Graf2ff5cc32016-04-11 16:55:26 +020098
Simon Glass5d618df2018-08-08 03:54:30 -060099 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
100 u64 ram_start = gd->bd->bi_dram[i].start;
101 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200102
Alexander Graffdbae012016-04-11 23:51:01 +0200103 if (!ram_size)
104 continue;
105
106 if (ram_start < fdt_ram_start)
107 fdt_ram_start = ram_start;
108 }
109
Simon Glass56bbcc12018-06-18 08:08:25 -0600110 /*
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100111 * Give us at least 12 KiB of breathing room in case the device tree
112 * needs to be expanded later.
Simon Glass56bbcc12018-06-18 08:08:25 -0600113 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100114 fdt = *fdtp;
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100115 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
116 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
Alexander Graffdbae012016-04-11 23:51:01 +0200117
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100118 /*
119 * Safe fdt location is at 127 MiB.
120 * On the sandbox convert from the sandbox address space.
121 */
122 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
123 fdt_size, 0);
Simon Glass5d618df2018-08-08 03:54:30 -0600124 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas0468b8e2019-04-12 21:26:28 +0300125 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600126 &new_fdt_addr);
127 if (ret != EFI_SUCCESS) {
Alexander Graffdbae012016-04-11 23:51:01 +0200128 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.def6b99122017-08-11 21:19:25 +0200129 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass5d618df2018-08-08 03:54:30 -0600130 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas0468b8e2019-04-12 21:26:28 +0300131 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600132 &new_fdt_addr);
133 if (ret != EFI_SUCCESS) {
Alexander Graf9b9b7162017-07-03 13:32:35 +0200134 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass5d618df2018-08-08 03:54:30 -0600135 goto done;
Alexander Graf9b9b7162017-07-03 13:32:35 +0200136 }
Alexander Graffdbae012016-04-11 23:51:01 +0200137 }
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100138 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200139 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
140 fdt_set_totalsize(new_fdt, fdt_size);
141
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100142 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -0600143done:
144 return ret;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200145}
146
Heinrich Schuchardt031ea8f2019-07-14 13:00:44 +0200147/**
Simon Glass54b9b6e2018-06-18 08:08:28 -0600148 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
149 *
150 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
151 * ignored because this is not critical and we would rather continue to try to
152 * boot.
153 *
154 * @fdt: Pointer to device tree
155 */
156static void efi_carve_out_dt_rsv(void *fdt)
Alexander Graf22c88bf2018-04-06 09:40:51 +0200157{
158 int nr_rsv, i;
159 uint64_t addr, size, pages;
160
161 nr_rsv = fdt_num_mem_rsv(fdt);
162
163 /* Look for an existing entry and add it to the efi mem map. */
164 for (i = 0; i < nr_rsv; i++) {
165 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
166 continue;
167
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100168 /* Convert from sandbox address space. */
169 addr = (uintptr_t)map_sysmem(addr, 0);
170
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100171 pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK));
Heinrich Schuchardt3d92fc82018-11-12 18:55:23 +0100172 addr &= ~EFI_PAGE_MASK;
Bryan O'Donoghue89a22b42019-07-15 12:00:39 +0100173 if (efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
174 false) != EFI_SUCCESS)
Simon Glass54b9b6e2018-06-18 08:08:28 -0600175 printf("FDT memrsv map %d: Failed to add to map\n", i);
Alexander Graf22c88bf2018-04-06 09:40:51 +0200176 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200177}
178
179/**
180 * get_config_table() - get configuration table
181 *
182 * @guid: GUID of the configuration table
183 * Return: pointer to configuration table or NULL
184 */
185static void *get_config_table(const efi_guid_t *guid)
186{
187 size_t i;
188
189 for (i = 0; i < systab.nr_tables; i++) {
190 if (!guidcmp(guid, &systab.tables[i].guid))
191 return systab.tables[i].table;
192 }
193 return NULL;
Alexander Graf22c88bf2018-04-06 09:40:51 +0200194}
195
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200196#endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
197
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900198/**
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100199 * efi_install_fdt() - install device tree
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200200 *
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100201 * If fdt_addr is available, the device tree located at that memory address will
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200202 * will be installed as configuration table, otherwise the device tree located
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100203 * at the address indicated by environment variable fdt_addr or as fallback
204 * fdtcontroladdr will be used.
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200205 *
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100206 * On architectures using ACPI tables device trees shall not be installed as
207 * configuration table.
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200208 *
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100209 * @fdt_addr: address of device tree or EFI_FDT_USE_INTERNAL to use the
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100210 * the hardware device tree as indicated by environment variable
211 * fdt_addr or as fallback the internal device tree as indicated by
212 * the environment variable fdtcontroladdr
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900213 * Return: status code
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900214 */
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100215static efi_status_t efi_install_fdt(uintptr_t fdt_addr)
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900216{
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200217 /*
218 * The EBBR spec requires that we have either an FDT or an ACPI table
219 * but not both.
220 */
221#if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100222 if (fdt_addr) {
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200223 printf("ERROR: can't have ACPI table and device tree.\n");
224 return EFI_LOAD_ERROR;
225 }
226#else
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900227 void *fdt;
228 bootm_headers_t img = { 0 };
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900229 efi_status_t ret;
230
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100231 if (fdt_addr == EFI_FDT_USE_INTERNAL) {
232 const char *fdt_opt;
233
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200234 /* Look for device tree that is already installed */
235 if (get_config_table(&efi_guid_fdt))
236 return EFI_SUCCESS;
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100237 /* Check if there is a hardware device tree */
238 fdt_opt = env_get("fdt_addr");
239 /* Use our own device tree as fallback */
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200240 if (!fdt_opt) {
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100241 fdt_opt = env_get("fdtcontroladdr");
242 if (!fdt_opt) {
243 printf("ERROR: need device tree\n");
244 return EFI_NOT_FOUND;
245 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200246 }
247 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
248 if (!fdt_addr) {
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100249 printf("ERROR: invalid $fdt_addr or $fdtcontroladdr\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200250 return EFI_LOAD_ERROR;
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900251 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200252 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900253
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200254 /* Install device tree */
255 fdt = map_sysmem(fdt_addr, 0);
256 if (fdt_check_header(fdt)) {
257 printf("ERROR: invalid device tree\n");
258 return EFI_LOAD_ERROR;
259 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900260
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200261 /* Create memory reservations as indicated by the device tree */
262 efi_carve_out_dt_rsv(fdt);
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900263
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200264 /* Prepare device tree for payload */
265 ret = copy_fdt(&fdt);
266 if (ret) {
267 printf("ERROR: out of memory\n");
268 return EFI_OUT_OF_RESOURCES;
269 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900270
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200271 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
272 printf("ERROR: failed to process device tree\n");
273 return EFI_LOAD_ERROR;
274 }
275
276 /* Install device tree as UEFI table */
277 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
278 if (ret != EFI_SUCCESS) {
279 printf("ERROR: failed to install device tree\n");
280 return ret;
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900281 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200282#endif /* GENERATE_ACPI_TABLE */
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900283
284 return EFI_SUCCESS;
285}
286
Simon Glass4d77ee62018-11-25 20:14:39 -0700287/**
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200288 * do_bootefi_exec() - execute EFI binary
289 *
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900290 * @handle: handle of loaded image
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200291 * Return: status code
292 *
293 * Load the EFI binary into a newly assigned memory unwinding the relocation
294 * information, install the loaded image protocol, and call the binary.
Alexander Grafe2b04f22016-03-10 00:27:20 +0100295 */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900296static efi_status_t do_bootefi_exec(efi_handle_t handle)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100297{
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100298 efi_status_t ret;
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200299 efi_uintn_t exit_data_size = 0;
300 u16 *exit_data = NULL;
Rob Clarkf8db9222017-09-13 18:05:33 -0400301
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900302 /* Transfer environment variable as load options */
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900303 ret = set_load_options(handle, "bootargs");
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900304 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900305 return ret;
Rob Clark18ceba72017-10-10 08:23:06 -0400306
Alexander Grafe2b04f22016-03-10 00:27:20 +0100307 /* Call our payload! */
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200308 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
309 printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK);
310 if (ret && exit_data) {
311 printf("## %ls\n", exit_data);
312 efi_free_pool(exit_data);
313 }
Rob Clarkf8db9222017-09-13 18:05:33 -0400314
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900315 efi_restore_gd();
Simon Glass4d77ee62018-11-25 20:14:39 -0700316
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900317 /*
318 * FIXME: Who is responsible for
319 * free(loaded_image_info->load_options);
320 * Once efi_exit() is implemented correctly,
321 * handle itself doesn't exist here.
322 */
Rob Clarkf8db9222017-09-13 18:05:33 -0400323
324 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100325}
326
AKASHI Takahirocf819832019-04-19 12:22:33 +0900327/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200328 * do_efibootmgr() - execute EFI boot manager
AKASHI Takahirocf819832019-04-19 12:22:33 +0900329 *
AKASHI Takahirocf819832019-04-19 12:22:33 +0900330 * Return: status code
AKASHI Takahirocf819832019-04-19 12:22:33 +0900331 */
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200332static int do_efibootmgr(void)
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900333{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900334 efi_handle_t handle;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900335 efi_status_t ret;
336
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900337 ret = efi_bootmgr_load(&handle);
338 if (ret != EFI_SUCCESS) {
339 printf("EFI boot manager: Cannot load any image\n");
340 return CMD_RET_FAILURE;
341 }
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900342
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900343 ret = do_bootefi_exec(handle);
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900344
AKASHI Takahirocf819832019-04-19 12:22:33 +0900345 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900346 return CMD_RET_FAILURE;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900347
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900348 return CMD_RET_SUCCESS;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900349}
350
Heinrich Schuchardt031ea8f2019-07-14 13:00:44 +0200351/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200352 * do_bootefi_image() - execute EFI binary
353 *
354 * Set up memory image for the binary to be loaded, prepare device path, and
355 * then call do_bootefi_exec() to execute it.
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900356 *
357 * @image_opt: string of image start address
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900358 * Return: status code
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900359 */
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200360static int do_bootefi_image(const char *image_opt)
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900361{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900362 void *image_buf;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900363 unsigned long addr, size;
364 const char *size_str;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900365 efi_status_t ret;
366
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900367#ifdef CONFIG_CMD_BOOTEFI_HELLO
368 if (!strcmp(image_opt, "hello")) {
369 char *saddr;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900370
371 saddr = env_get("loadaddr");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900372 size = __efi_helloworld_end - __efi_helloworld_begin;
373
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900374 if (saddr)
375 addr = simple_strtoul(saddr, NULL, 16);
376 else
377 addr = CONFIG_SYS_LOAD_ADDR;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900378
379 image_buf = map_sysmem(addr, size);
380 memcpy(image_buf, __efi_helloworld_begin, size);
381
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100382 efi_free_pool(bootefi_device_path);
383 efi_free_pool(bootefi_image_path);
384 bootefi_device_path = NULL;
385 bootefi_image_path = NULL;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900386 } else
387#endif
388 {
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900389 size_str = env_get("filesize");
390 if (size_str)
391 size = simple_strtoul(size_str, NULL, 16);
392 else
393 size = 0;
394
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900395 addr = simple_strtoul(image_opt, NULL, 16);
396 /* Check that a numeric value was passed */
397 if (!addr && *image_opt != '0')
398 return CMD_RET_USAGE;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900399
400 image_buf = map_sysmem(addr, size);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900401 }
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100402 ret = efi_run_image(image_buf, size);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900403
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100404 if (ret != EFI_SUCCESS)
405 return CMD_RET_FAILURE;
406
407 return CMD_RET_SUCCESS;
408}
409
410/**
411 * efi_run_image() - run loaded UEFI image
412 *
413 * @source_buffer: memory address of the UEFI image
414 * @source_size: size of the UEFI image
415 * Return: status code
416 */
417efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size)
418{
419 efi_handle_t mem_handle = NULL, handle;
420 struct efi_device_path *file_path = NULL;
421 efi_status_t ret;
422
423 if (!bootefi_device_path || !bootefi_image_path) {
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900424 /*
425 * Special case for efi payload not loaded from disk,
426 * such as 'bootefi hello' or for example payload
427 * loaded directly into memory via JTAG, etc:
428 */
429 file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100430 (uintptr_t)source_buffer,
431 source_size);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900432 /*
433 * Make sure that device for device_path exist
434 * in load_image(). Otherwise, shell and grub will fail.
435 */
436 ret = efi_create_handle(&mem_handle);
437 if (ret != EFI_SUCCESS)
438 goto out;
439
440 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
441 file_path);
442 if (ret != EFI_SUCCESS)
443 goto out;
444 } else {
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100445 file_path = efi_dp_append(bootefi_device_path,
446 bootefi_image_path);
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900447 }
448
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100449 ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer,
450 source_size, &handle));
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900451 if (ret != EFI_SUCCESS)
452 goto out;
453
454 ret = do_bootefi_exec(handle);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900455
456out:
457 if (mem_handle)
458 efi_delete_handle(mem_handle);
459 if (file_path)
460 efi_free_pool(file_path);
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100461 return ret;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900462}
463
Simon Glass93f25592018-11-25 20:14:37 -0700464#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900465static efi_status_t bootefi_run_prepare(const char *load_options_path,
466 struct efi_device_path *device_path,
467 struct efi_device_path *image_path,
468 struct efi_loaded_image_obj **image_objp,
469 struct efi_loaded_image **loaded_image_infop)
470{
471 efi_status_t ret;
472
473 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
474 loaded_image_infop);
475 if (ret != EFI_SUCCESS)
476 return ret;
477
478 /* Transfer environment variable as load options */
479 return set_load_options((efi_handle_t)*image_objp, load_options_path);
480}
481
Simon Glass93f25592018-11-25 20:14:37 -0700482/**
483 * bootefi_test_prepare() - prepare to run an EFI test
484 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100485 * Prepare to run a test as if it were provided by a loaded image.
Simon Glass93f25592018-11-25 20:14:37 -0700486 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100487 * @image_objp: pointer to be set to the loaded image handle
488 * @loaded_image_infop: pointer to be set to the loaded image protocol
489 * @path: dummy file path used to construct the device path
490 * set in the loaded image protocol
491 * @load_options_path: name of a U-Boot environment variable. Its value is
492 * set as load options in the loaded image protocol.
493 * Return: status code
Simon Glass93f25592018-11-25 20:14:37 -0700494 */
495static efi_status_t bootefi_test_prepare
496 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100497 struct efi_loaded_image **loaded_image_infop, const char *path,
498 const char *load_options_path)
Simon Glass93f25592018-11-25 20:14:37 -0700499{
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100500 efi_status_t ret;
501
Simon Glass93f25592018-11-25 20:14:37 -0700502 /* Construct a dummy device path */
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100503 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glass93f25592018-11-25 20:14:37 -0700504 if (!bootefi_device_path)
505 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100506
Simon Glass93f25592018-11-25 20:14:37 -0700507 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100508 if (!bootefi_image_path) {
509 ret = EFI_OUT_OF_RESOURCES;
510 goto failure;
511 }
512
513 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
514 bootefi_image_path, image_objp,
515 loaded_image_infop);
516 if (ret == EFI_SUCCESS)
517 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700518
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100519 efi_free_pool(bootefi_image_path);
520 bootefi_image_path = NULL;
521failure:
522 efi_free_pool(bootefi_device_path);
523 bootefi_device_path = NULL;
524 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700525}
526
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900527/**
528 * bootefi_run_finish() - finish up after running an EFI test
529 *
530 * @loaded_image_info: Pointer to a struct which holds the loaded image info
531 * @image_obj: Pointer to a struct which holds the loaded image object
532 */
533static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
534 struct efi_loaded_image *loaded_image_info)
535{
536 efi_restore_gd();
537 free(loaded_image_info->load_options);
538 efi_delete_handle(&image_obj->header);
539}
540
541/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200542 * do_efi_selftest() - execute EFI selftest
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900543 *
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900544 * Return: status code
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900545 */
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200546static int do_efi_selftest(void)
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900547{
548 struct efi_loaded_image_obj *image_obj;
549 struct efi_loaded_image *loaded_image_info;
550 efi_status_t ret;
551
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900552 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
553 "\\selftest", "efi_selftest");
554 if (ret != EFI_SUCCESS)
555 return CMD_RET_FAILURE;
556
557 /* Execute the test */
558 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
559 bootefi_run_finish(image_obj, loaded_image_info);
560
561 return ret != EFI_SUCCESS;
562}
Simon Glass93f25592018-11-25 20:14:37 -0700563#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
564
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200565/**
566 * do_bootefi() - execute `bootefi` command
567 *
568 * @cmdtp: table entry describing command
569 * @flag: bitmap indicating how the command was invoked
570 * @argc: number of arguments
571 * @argv: command line arguments
572 * Return: status code
573 */
Alexander Grafe2b04f22016-03-10 00:27:20 +0100574static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
575{
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200576 efi_status_t ret;
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100577 uintptr_t fdt_addr;
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200578
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900579 if (argc < 2)
580 return CMD_RET_USAGE;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900581
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200582 /* Initialize EFI drivers */
583 ret = efi_init_obj_list();
584 if (ret != EFI_SUCCESS) {
585 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
586 ret & ~EFI_ERROR_MASK);
587 return CMD_RET_FAILURE;
588 }
589
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100590 if (argc > 2)
591 fdt_addr = simple_strtoul(argv[2], NULL, 16);
592 else
593 fdt_addr = EFI_FDT_USE_INTERNAL;
594 ret = efi_install_fdt(fdt_addr);
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200595 if (ret == EFI_INVALID_PARAMETER)
596 return CMD_RET_USAGE;
597 else if (ret != EFI_SUCCESS)
598 return CMD_RET_FAILURE;
599
AKASHI Takahirocf819832019-04-19 12:22:33 +0900600 if (!strcmp(argv[1], "bootmgr"))
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200601 return do_efibootmgr();
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900602#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
603 else if (!strcmp(argv[1], "selftest"))
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200604 return do_efi_selftest();
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900605#endif
Simon Glassfac4ced2016-11-07 08:47:08 -0700606
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200607 return do_bootefi_image(argv[1]);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100608}
609
610#ifdef CONFIG_SYS_LONGHELP
611static char bootefi_help_text[] =
Alexander Graf54c1e832016-04-14 16:07:53 +0200612 "<image address> [fdt address]\n"
613 " - boot EFI payload stored at address <image address>.\n"
614 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700615 " exposed as EFI configuration table.\n"
616#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200617 "bootefi hello\n"
618 " - boot a sample Hello World application stored within U-Boot\n"
619#endif
620#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100621 "bootefi selftest [fdt address]\n"
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200622 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200623 " Use environment variable efi_selftest to select a single test.\n"
624 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700625#endif
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900626 "bootefi bootmgr [fdt address]\n"
Rob Clarkc84c1102017-09-13 18:05:38 -0400627 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
628 "\n"
629 " If specified, the device tree located at <fdt address> gets\n"
630 " exposed as EFI configuration table.\n";
Alexander Grafe2b04f22016-03-10 00:27:20 +0100631#endif
632
633U_BOOT_CMD(
Alexander Graf54c1e832016-04-14 16:07:53 +0200634 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700635 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100636 bootefi_help_text
637);
Alexander Graf8f19f262016-03-04 01:10:14 +0100638
Heinrich Schuchardt031ea8f2019-07-14 13:00:44 +0200639/**
640 * efi_set_bootdev() - set boot device
641 *
642 * This function is called when a file is loaded, e.g. via the 'load' command.
643 * We use the path to this file to inform the UEFI binary about the boot device.
644 *
645 * @dev: device, e.g. "MMC"
646 * @devnr: number of the device, e.g. "1:2"
647 * @path: path to file loaded
648 */
Rob Clarkf8db9222017-09-13 18:05:33 -0400649void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
650{
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900651 struct efi_device_path *device, *image;
652 efi_status_t ret;
Alexander Graf34118e72016-08-05 14:49:53 +0200653
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200654 /* efi_set_bootdev is typically called repeatedly, recover memory */
655 efi_free_pool(bootefi_device_path);
656 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt761ecc82018-09-16 07:20:21 +0200657
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900658 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
659 if (ret == EFI_SUCCESS) {
660 bootefi_device_path = device;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900661 if (image) {
662 /* FIXME: image should not contain device */
663 struct efi_device_path *image_tmp = image;
664
665 efi_dp_split_file_path(image, &device, &image);
666 efi_free_pool(image_tmp);
667 }
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900668 bootefi_image_path = image;
Alexander Graf45e437d2016-07-21 01:44:46 +0200669 } else {
AKASHI Takahiro035fb012018-10-17 16:32:03 +0900670 bootefi_device_path = NULL;
671 bootefi_image_path = NULL;
Alexander Graf45e437d2016-07-21 01:44:46 +0200672 }
Alexander Graf8f19f262016-03-04 01:10:14 +0100673}