blob: f613cce7e2628053e74b6f8f190cc6990a642060 [file] [log] [blame]
Tom Rinif739fcd2018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafb9939332016-03-10 00:27:20 +01002/*
3 * EFI application loader
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafb9939332016-03-10 00:27:20 +01006 */
7
8#include <common.h>
Heinrich Schuchardtf6c6df72019-01-08 18:13:06 +01009#include <charset.h>
Alexander Grafb9939332016-03-10 00:27:20 +010010#include <command.h>
Simon Glass9d922452017-05-17 17:18:03 -060011#include <dm.h>
Alexander Grafb9939332016-03-10 00:27:20 +010012#include <efi_loader.h>
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020013#include <efi_selftest.h>
Simon Glass7b51b572019-08-01 09:46:52 -060014#include <env.h>
Alexander Grafb9939332016-03-10 00:27:20 +010015#include <errno.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090016#include <linux/libfdt.h>
17#include <linux/libfdt_env.h>
Alexander Graf354264b2018-06-18 17:22:58 +020018#include <mapmem.h>
Alexander Grafad0c1a32016-04-11 23:51:01 +020019#include <memalign.h>
Simon Glasse2754582016-09-25 15:27:32 -060020#include <asm-generic/sections.h>
21#include <linux/linkage.h>
Alexander Graf0d9d5012016-04-11 16:55:26 +020022
23DECLARE_GLOBAL_DATA_PTR;
Alexander Grafb9939332016-03-10 00:27:20 +010024
Rob Clark95c55532017-09-13 18:05:33 -040025static struct efi_device_path *bootefi_image_path;
26static struct efi_device_path *bootefi_device_path;
Alexander Grafb9939332016-03-10 00:27:20 +010027
Heinrich Schuchardt810371a2019-07-14 13:00:44 +020028/**
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020029 * Set the load options of an image from an environment variable.
30 *
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090031 * @handle: the image handle
32 * @env_var: name of the environment variable
33 * Return: status code
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020034 */
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090035static efi_status_t set_load_options(efi_handle_t handle, const char *env_var)
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020036{
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090037 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020038 size_t size;
39 const char *env = env_get(env_var);
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020040 u16 *pos;
AKASHI Takahirodefa7b82019-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 Schuchardtd78e40d2017-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 Takahirodefa7b82019-04-19 12:22:28 +090055 goto out;
56
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020057 size = utf8_utf16_strlen(env) + 1;
Heinrich Schuchardtd78e40d2017-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 Takahirodefa7b82019-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 Schuchardtd78e40d2017-10-18 18:13:13 +020065 }
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020066 pos = loaded_image_info->load_options;
67 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020068 loaded_image_info->load_options_size = size * 2;
AKASHI Takahirodefa7b82019-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 Schuchardtd78e40d2017-10-18 18:13:13 +020074}
75
Heinrich Schuchardt61824952019-04-20 13:33:55 +020076#if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
77
Simon Glass9dff4902018-08-08 03:54:30 -060078/**
79 * copy_fdt() - Copy the device tree to a new location available to EFI
80 *
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010081 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +010082 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass9dff4902018-08-08 03:54:30 -060083 * expanded later with fdt_open_into().
84 *
Heinrich Schuchardt16b615d2018-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 Schuchardt4574d1b2018-11-12 18:55:22 +010087 * FDT start
88 * Return: status code
Simon Glass9dff4902018-08-08 03:54:30 -060089 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010090static efi_status_t copy_fdt(void **fdtp)
Alexander Graf0d9d5012016-04-11 16:55:26 +020091{
Alexander Grafad0c1a32016-04-11 23:51:01 +020092 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass9dff4902018-08-08 03:54:30 -060093 efi_status_t ret = 0;
94 void *fdt, *new_fdt;
Alexander Grafad0c1a32016-04-11 23:51:01 +020095 u64 new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -060096 uint fdt_size;
Alexander Grafad0c1a32016-04-11 23:51:01 +020097 int i;
Alexander Graf0d9d5012016-04-11 16:55:26 +020098
Simon Glass9dff4902018-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 Graf0d9d5012016-04-11 16:55:26 +0200102
Alexander Grafad0c1a32016-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 Glassbc9a6382018-06-18 08:08:25 -0600110 /*
Heinrich Schuchardtc3772ca2018-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 Glassbc9a6382018-06-18 08:08:25 -0600113 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100114 fdt = *fdtp;
Heinrich Schuchardtc3772ca2018-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 Grafad0c1a32016-04-11 23:51:01 +0200117
Heinrich Schuchardt16b615d2018-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 Glass9dff4902018-08-08 03:54:30 -0600124 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas29361ec2019-04-12 21:26:28 +0300125 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass9dff4902018-08-08 03:54:30 -0600126 &new_fdt_addr);
127 if (ret != EFI_SUCCESS) {
Alexander Grafad0c1a32016-04-11 23:51:01 +0200128 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.dea44bffc2017-08-11 21:19:25 +0200129 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass9dff4902018-08-08 03:54:30 -0600130 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas29361ec2019-04-12 21:26:28 +0300131 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass9dff4902018-08-08 03:54:30 -0600132 &new_fdt_addr);
133 if (ret != EFI_SUCCESS) {
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200134 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass9dff4902018-08-08 03:54:30 -0600135 goto done;
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200136 }
Alexander Grafad0c1a32016-04-11 23:51:01 +0200137 }
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100138 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200139 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
140 fdt_set_totalsize(new_fdt, fdt_size);
141
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100142 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -0600143done:
144 return ret;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200145}
146
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200147/**
Simon Glass416e07e2018-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 Graf806d2fa2018-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 Schuchardt16b615d2018-11-18 17:58:52 +0100168 /* Convert from sandbox address space. */
169 addr = (uintptr_t)map_sysmem(addr, 0);
170
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100171 pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK));
Heinrich Schuchardt23fd84b2018-11-12 18:55:23 +0100172 addr &= ~EFI_PAGE_MASK;
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100173 if (efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
174 false) != EFI_SUCCESS)
Simon Glass416e07e2018-06-18 08:08:28 -0600175 printf("FDT memrsv map %d: Failed to add to map\n", i);
Alexander Graf806d2fa2018-04-06 09:40:51 +0200176 }
Alexander Graf806d2fa2018-04-06 09:40:51 +0200177}
178
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900179/**
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200180 * 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;
194}
195
196#endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
197
198/**
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900199 * efi_install_fdt() - install fdt passed by a command argument
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200200 *
201 * If fdt_opt is available, the device tree located at that memory address will
202 * will be installed as configuration table, otherwise the device tree located
203 * at the address indicated by environment variable fdtcontroladdr will be used.
204 *
205 * On architectures (x86) using ACPI tables device trees shall not be installed
206 * as configuration table.
207 *
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900208 * @fdt_opt: pointer to argument
209 * Return: status code
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900210 */
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900211static efi_status_t efi_install_fdt(const char *fdt_opt)
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900212{
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200213 /*
214 * The EBBR spec requires that we have either an FDT or an ACPI table
215 * but not both.
216 */
217#if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
218 if (fdt_opt) {
219 printf("ERROR: can't have ACPI table and device tree.\n");
220 return EFI_LOAD_ERROR;
221 }
222#else
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900223 unsigned long fdt_addr;
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900224 void *fdt;
225 bootm_headers_t img = { 0 };
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900226 efi_status_t ret;
227
228 if (fdt_opt) {
229 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200230 if (!fdt_addr)
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900231 return EFI_INVALID_PARAMETER;
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200232 } else {
233 /* Look for device tree that is already installed */
234 if (get_config_table(&efi_guid_fdt))
235 return EFI_SUCCESS;
236 /* Use our own device tree as default */
237 fdt_opt = env_get("fdtcontroladdr");
238 if (!fdt_opt) {
239 printf("ERROR: need device tree\n");
240 return EFI_NOT_FOUND;
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900241 }
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200242 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
243 if (!fdt_addr) {
244 printf("ERROR: invalid $fdtcontroladdr\n");
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900245 return EFI_LOAD_ERROR;
246 }
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900247 }
248
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200249 /* Install device tree */
250 fdt = map_sysmem(fdt_addr, 0);
251 if (fdt_check_header(fdt)) {
252 printf("ERROR: invalid device tree\n");
253 return EFI_LOAD_ERROR;
254 }
255
256 /* Create memory reservations as indicated by the device tree */
257 efi_carve_out_dt_rsv(fdt);
258
259 /* Prepare device tree for payload */
260 ret = copy_fdt(&fdt);
261 if (ret) {
262 printf("ERROR: out of memory\n");
263 return EFI_OUT_OF_RESOURCES;
264 }
265
266 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
267 printf("ERROR: failed to process device tree\n");
268 return EFI_LOAD_ERROR;
269 }
270
271 /* Install device tree as UEFI table */
272 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
273 if (ret != EFI_SUCCESS) {
274 printf("ERROR: failed to install device tree\n");
275 return ret;
276 }
277#endif /* GENERATE_ACPI_TABLE */
278
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900279 return EFI_SUCCESS;
280}
281
Simon Glass5e2f0392018-11-25 20:14:39 -0700282/**
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200283 * do_bootefi_exec() - execute EFI binary
284 *
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900285 * @handle: handle of loaded image
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200286 * Return: status code
287 *
288 * Load the EFI binary into a newly assigned memory unwinding the relocation
289 * information, install the loaded image protocol, and call the binary.
Alexander Grafb9939332016-03-10 00:27:20 +0100290 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900291static efi_status_t do_bootefi_exec(efi_handle_t handle)
Alexander Grafb9939332016-03-10 00:27:20 +0100292{
Heinrich Schuchardt45204b12018-03-03 15:29:01 +0100293 efi_status_t ret;
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +0200294 efi_uintn_t exit_data_size = 0;
295 u16 *exit_data = NULL;
Rob Clark95c55532017-09-13 18:05:33 -0400296
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900297 /* Transfer environment variable as load options */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900298 ret = set_load_options(handle, "bootargs");
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900299 if (ret != EFI_SUCCESS)
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900300 return ret;
Rob Clarkbf192732017-10-10 08:23:06 -0400301
Alexander Grafb9939332016-03-10 00:27:20 +0100302 /* Call our payload! */
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +0200303 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
304 printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK);
305 if (ret && exit_data) {
306 printf("## %ls\n", exit_data);
307 efi_free_pool(exit_data);
308 }
Rob Clark95c55532017-09-13 18:05:33 -0400309
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900310 efi_restore_gd();
Simon Glass5e2f0392018-11-25 20:14:39 -0700311
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900312 /*
313 * FIXME: Who is responsible for
314 * free(loaded_image_info->load_options);
315 * Once efi_exit() is implemented correctly,
316 * handle itself doesn't exist here.
317 */
Rob Clark95c55532017-09-13 18:05:33 -0400318
319 return ret;
Alexander Grafb9939332016-03-10 00:27:20 +0100320}
321
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900322/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200323 * do_efibootmgr() - execute EFI boot manager
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900324 *
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900325 * Return: status code
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900326 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200327static int do_efibootmgr(void)
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900328{
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900329 efi_handle_t handle;
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900330 efi_status_t ret;
331
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900332 ret = efi_bootmgr_load(&handle);
333 if (ret != EFI_SUCCESS) {
334 printf("EFI boot manager: Cannot load any image\n");
335 return CMD_RET_FAILURE;
336 }
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900337
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900338 ret = do_bootefi_exec(handle);
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900339
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900340 if (ret != EFI_SUCCESS)
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900341 return CMD_RET_FAILURE;
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900342
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900343 return CMD_RET_SUCCESS;
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900344}
345
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200346/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200347 * do_bootefi_image() - execute EFI binary
348 *
349 * Set up memory image for the binary to be loaded, prepare device path, and
350 * then call do_bootefi_exec() to execute it.
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900351 *
352 * @image_opt: string of image start address
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900353 * Return: status code
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900354 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200355static int do_bootefi_image(const char *image_opt)
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900356{
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900357 void *image_buf;
358 struct efi_device_path *device_path, *image_path;
359 struct efi_device_path *file_path = NULL;
360 unsigned long addr, size;
361 const char *size_str;
362 efi_handle_t mem_handle = NULL, handle;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900363 efi_status_t ret;
364
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900365#ifdef CONFIG_CMD_BOOTEFI_HELLO
366 if (!strcmp(image_opt, "hello")) {
367 char *saddr;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900368
369 saddr = env_get("loadaddr");
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900370 size = __efi_helloworld_end - __efi_helloworld_begin;
371
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900372 if (saddr)
373 addr = simple_strtoul(saddr, NULL, 16);
374 else
375 addr = CONFIG_SYS_LOAD_ADDR;
AKASHI Takahiro6b95b382019-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 Takahiroe2e40982019-04-19 12:22:34 +0900382 } else
383#endif
384 {
AKASHI Takahiro6b95b382019-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 Takahiroe2e40982019-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 Takahiro6b95b382019-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;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900400 }
401
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900402 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);
425 }
426
427 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);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900433
434out:
435 if (mem_handle)
436 efi_delete_handle(mem_handle);
437 if (file_path)
438 efi_free_pool(file_path);
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900439
440 if (ret != EFI_SUCCESS)
441 return CMD_RET_FAILURE;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900442
443 return CMD_RET_SUCCESS;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900444}
445
Simon Glassd9717ea2018-11-25 20:14:37 -0700446#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900447static efi_status_t bootefi_run_prepare(const char *load_options_path,
448 struct efi_device_path *device_path,
449 struct efi_device_path *image_path,
450 struct efi_loaded_image_obj **image_objp,
451 struct efi_loaded_image **loaded_image_infop)
452{
453 efi_status_t ret;
454
455 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
456 loaded_image_infop);
457 if (ret != EFI_SUCCESS)
458 return ret;
459
460 /* Transfer environment variable as load options */
461 return set_load_options((efi_handle_t)*image_objp, load_options_path);
462}
463
Simon Glassd9717ea2018-11-25 20:14:37 -0700464/**
465 * bootefi_test_prepare() - prepare to run an EFI test
466 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100467 * Prepare to run a test as if it were provided by a loaded image.
Simon Glassd9717ea2018-11-25 20:14:37 -0700468 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100469 * @image_objp: pointer to be set to the loaded image handle
470 * @loaded_image_infop: pointer to be set to the loaded image protocol
471 * @path: dummy file path used to construct the device path
472 * set in the loaded image protocol
473 * @load_options_path: name of a U-Boot environment variable. Its value is
474 * set as load options in the loaded image protocol.
475 * Return: status code
Simon Glassd9717ea2018-11-25 20:14:37 -0700476 */
477static efi_status_t bootefi_test_prepare
478 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100479 struct efi_loaded_image **loaded_image_infop, const char *path,
480 const char *load_options_path)
Simon Glassd9717ea2018-11-25 20:14:37 -0700481{
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100482 efi_status_t ret;
483
Simon Glassd9717ea2018-11-25 20:14:37 -0700484 /* Construct a dummy device path */
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100485 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glassd9717ea2018-11-25 20:14:37 -0700486 if (!bootefi_device_path)
487 return EFI_OUT_OF_RESOURCES;
Simon Glassd9717ea2018-11-25 20:14:37 -0700488
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100489 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
490 if (!bootefi_image_path) {
491 ret = EFI_OUT_OF_RESOURCES;
492 goto failure;
493 }
494
495 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
496 bootefi_image_path, image_objp,
497 loaded_image_infop);
498 if (ret == EFI_SUCCESS)
499 return ret;
500
501 efi_free_pool(bootefi_image_path);
502 bootefi_image_path = NULL;
503failure:
504 efi_free_pool(bootefi_device_path);
505 bootefi_device_path = NULL;
506 return ret;
Simon Glassd9717ea2018-11-25 20:14:37 -0700507}
508
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900509/**
510 * bootefi_run_finish() - finish up after running an EFI test
511 *
512 * @loaded_image_info: Pointer to a struct which holds the loaded image info
513 * @image_obj: Pointer to a struct which holds the loaded image object
514 */
515static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
516 struct efi_loaded_image *loaded_image_info)
517{
518 efi_restore_gd();
519 free(loaded_image_info->load_options);
520 efi_delete_handle(&image_obj->header);
521}
522
523/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200524 * do_efi_selftest() - execute EFI selftest
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900525 *
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900526 * Return: status code
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900527 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200528static int do_efi_selftest(void)
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900529{
530 struct efi_loaded_image_obj *image_obj;
531 struct efi_loaded_image *loaded_image_info;
532 efi_status_t ret;
533
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900534 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
535 "\\selftest", "efi_selftest");
536 if (ret != EFI_SUCCESS)
537 return CMD_RET_FAILURE;
538
539 /* Execute the test */
540 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
541 bootefi_run_finish(image_obj, loaded_image_info);
542
543 return ret != EFI_SUCCESS;
544}
Simon Glassd9717ea2018-11-25 20:14:37 -0700545#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
546
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200547/**
548 * do_bootefi() - execute `bootefi` command
549 *
550 * @cmdtp: table entry describing command
551 * @flag: bitmap indicating how the command was invoked
552 * @argc: number of arguments
553 * @argv: command line arguments
554 * Return: status code
555 */
Alexander Grafb9939332016-03-10 00:27:20 +0100556static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
557{
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200558 efi_status_t ret;
559
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900560 if (argc < 2)
561 return CMD_RET_USAGE;
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900562
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200563 /* 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(argc > 2 ? argv[2] : NULL);
572 if (ret == EFI_INVALID_PARAMETER)
573 return CMD_RET_USAGE;
574 else if (ret != EFI_SUCCESS)
575 return CMD_RET_FAILURE;
576
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900577 if (!strcmp(argv[1], "bootmgr"))
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200578 return do_efibootmgr();
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900579#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
580 else if (!strcmp(argv[1], "selftest"))
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200581 return do_efi_selftest();
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900582#endif
583
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200584 return do_bootefi_image(argv[1]);
Alexander Grafb9939332016-03-10 00:27:20 +0100585}
586
587#ifdef CONFIG_SYS_LONGHELP
588static char bootefi_help_text[] =
Alexander Graf1c398092016-04-14 16:07:53 +0200589 "<image address> [fdt address]\n"
590 " - boot EFI payload stored at address <image address>.\n"
591 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700592 " exposed as EFI configuration table.\n"
593#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200594 "bootefi hello\n"
595 " - boot a sample Hello World application stored within U-Boot\n"
596#endif
597#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100598 "bootefi selftest [fdt address]\n"
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200599 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200600 " Use environment variable efi_selftest to select a single test.\n"
601 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700602#endif
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900603 "bootefi bootmgr [fdt address]\n"
Rob Clark9975fe92017-09-13 18:05:38 -0400604 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
605 "\n"
606 " If specified, the device tree located at <fdt address> gets\n"
607 " exposed as EFI configuration table.\n";
Alexander Grafb9939332016-03-10 00:27:20 +0100608#endif
609
610U_BOOT_CMD(
Alexander Graf1c398092016-04-14 16:07:53 +0200611 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700612 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100613 bootefi_help_text
614);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100615
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200616/**
617 * efi_set_bootdev() - set boot device
618 *
619 * This function is called when a file is loaded, e.g. via the 'load' command.
620 * We use the path to this file to inform the UEFI binary about the boot device.
621 *
622 * @dev: device, e.g. "MMC"
623 * @devnr: number of the device, e.g. "1:2"
624 * @path: path to file loaded
625 */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200626void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100627{
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900628 struct efi_device_path *device, *image;
629 efi_status_t ret;
Alexander Graf0f4060e2016-03-04 01:10:14 +0100630
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200631 /* efi_set_bootdev is typically called repeatedly, recover memory */
632 efi_free_pool(bootefi_device_path);
633 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200634
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900635 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
636 if (ret == EFI_SUCCESS) {
637 bootefi_device_path = device;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900638 if (image) {
639 /* FIXME: image should not contain device */
640 struct efi_device_path *image_tmp = image;
641
642 efi_dp_split_file_path(image, &device, &image);
643 efi_free_pool(image_tmp);
644 }
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900645 bootefi_image_path = image;
Rob Clark95c55532017-09-13 18:05:33 -0400646 } else {
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900647 bootefi_device_path = NULL;
648 bootefi_image_path = NULL;
Alexander Graff9d334b2016-08-05 14:49:53 +0200649 }
Alexander Graf0f4060e2016-03-04 01:10:14 +0100650}