blob: 56bdff33c64732fc6f6671b08478121133d9e742 [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 *
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010031 * @handle: the image handle
32 * @env_var: name of the environment variable
33 * @load_options: pointer to load options (output)
34 * Return: status code
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020035 */
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010036static efi_status_t set_load_options(efi_handle_t handle, const char *env_var,
37 u16 **load_options)
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020038{
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090039 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020040 size_t size;
41 const char *env = env_get(env_var);
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020042 u16 *pos;
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090043 efi_status_t ret;
44
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010045 *load_options = NULL;
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090046 ret = EFI_CALL(systab.boottime->open_protocol(
47 handle,
48 &efi_guid_loaded_image,
49 (void **)&loaded_image_info,
50 efi_root, NULL,
51 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL));
52 if (ret != EFI_SUCCESS)
53 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020054
55 loaded_image_info->load_options = NULL;
56 loaded_image_info->load_options_size = 0;
57 if (!env)
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090058 goto out;
59
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020060 size = utf8_utf16_strlen(env) + 1;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020061 loaded_image_info->load_options = calloc(size, sizeof(u16));
62 if (!loaded_image_info->load_options) {
63 printf("ERROR: Out of memory\n");
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090064 EFI_CALL(systab.boottime->close_protocol(handle,
65 &efi_guid_loaded_image,
66 efi_root, NULL));
67 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020068 }
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020069 pos = loaded_image_info->load_options;
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010070 *load_options = pos;
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020071 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020072 loaded_image_info->load_options_size = size * 2;
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090073
74out:
75 return EFI_CALL(systab.boottime->close_protocol(handle,
76 &efi_guid_loaded_image,
77 efi_root, NULL));
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020078}
79
Heinrich Schuchardt61824952019-04-20 13:33:55 +020080#if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
81
Simon Glass9dff4902018-08-08 03:54:30 -060082/**
83 * copy_fdt() - Copy the device tree to a new location available to EFI
84 *
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010085 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +010086 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass9dff4902018-08-08 03:54:30 -060087 * expanded later with fdt_open_into().
88 *
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010089 * @fdtp: On entry a pointer to the flattened device tree.
90 * On exit a pointer to the copy of the flattened device tree.
Heinrich Schuchardt4574d1b2018-11-12 18:55:22 +010091 * FDT start
92 * Return: status code
Simon Glass9dff4902018-08-08 03:54:30 -060093 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010094static efi_status_t copy_fdt(void **fdtp)
Alexander Graf0d9d5012016-04-11 16:55:26 +020095{
Alexander Grafad0c1a32016-04-11 23:51:01 +020096 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass9dff4902018-08-08 03:54:30 -060097 efi_status_t ret = 0;
98 void *fdt, *new_fdt;
Alexander Grafad0c1a32016-04-11 23:51:01 +020099 u64 new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -0600100 uint fdt_size;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200101 int i;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200102
Simon Glass9dff4902018-08-08 03:54:30 -0600103 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
104 u64 ram_start = gd->bd->bi_dram[i].start;
105 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200106
Alexander Grafad0c1a32016-04-11 23:51:01 +0200107 if (!ram_size)
108 continue;
109
110 if (ram_start < fdt_ram_start)
111 fdt_ram_start = ram_start;
112 }
113
Simon Glassbc9a6382018-06-18 08:08:25 -0600114 /*
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100115 * Give us at least 12 KiB of breathing room in case the device tree
116 * needs to be expanded later.
Simon Glassbc9a6382018-06-18 08:08:25 -0600117 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100118 fdt = *fdtp;
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100119 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
120 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200121
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100122 /*
123 * Safe fdt location is at 127 MiB.
124 * On the sandbox convert from the sandbox address space.
125 */
126 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
127 fdt_size, 0);
Simon Glass9dff4902018-08-08 03:54:30 -0600128 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas29361ec2019-04-12 21:26:28 +0300129 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass9dff4902018-08-08 03:54:30 -0600130 &new_fdt_addr);
131 if (ret != EFI_SUCCESS) {
Alexander Grafad0c1a32016-04-11 23:51:01 +0200132 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.dea44bffc2017-08-11 21:19:25 +0200133 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass9dff4902018-08-08 03:54:30 -0600134 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Ilias Apalodimas29361ec2019-04-12 21:26:28 +0300135 EFI_BOOT_SERVICES_DATA, fdt_pages,
Simon Glass9dff4902018-08-08 03:54:30 -0600136 &new_fdt_addr);
137 if (ret != EFI_SUCCESS) {
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200138 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass9dff4902018-08-08 03:54:30 -0600139 goto done;
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200140 }
Alexander Grafad0c1a32016-04-11 23:51:01 +0200141 }
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100142 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200143 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
144 fdt_set_totalsize(new_fdt, fdt_size);
145
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100146 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -0600147done:
148 return ret;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200149}
150
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200151/**
Simon Glass416e07e2018-06-18 08:08:28 -0600152 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
153 *
154 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
155 * ignored because this is not critical and we would rather continue to try to
156 * boot.
157 *
158 * @fdt: Pointer to device tree
159 */
160static void efi_carve_out_dt_rsv(void *fdt)
Alexander Graf806d2fa2018-04-06 09:40:51 +0200161{
162 int nr_rsv, i;
163 uint64_t addr, size, pages;
164
165 nr_rsv = fdt_num_mem_rsv(fdt);
166
167 /* Look for an existing entry and add it to the efi mem map. */
168 for (i = 0; i < nr_rsv; i++) {
169 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
170 continue;
171
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100172 /* Convert from sandbox address space. */
173 addr = (uintptr_t)map_sysmem(addr, 0);
174
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100175 pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK));
Heinrich Schuchardt23fd84b2018-11-12 18:55:23 +0100176 addr &= ~EFI_PAGE_MASK;
Bryan O'Donoghueb225c922019-07-15 12:00:39 +0100177 if (efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
178 false) != EFI_SUCCESS)
Simon Glass416e07e2018-06-18 08:08:28 -0600179 printf("FDT memrsv map %d: Failed to add to map\n", i);
Alexander Graf806d2fa2018-04-06 09:40:51 +0200180 }
Alexander Graf806d2fa2018-04-06 09:40:51 +0200181}
182
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900183/**
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200184 * get_config_table() - get configuration table
185 *
186 * @guid: GUID of the configuration table
187 * Return: pointer to configuration table or NULL
188 */
189static void *get_config_table(const efi_guid_t *guid)
190{
191 size_t i;
192
193 for (i = 0; i < systab.nr_tables; i++) {
194 if (!guidcmp(guid, &systab.tables[i].guid))
195 return systab.tables[i].table;
196 }
197 return NULL;
198}
199
200#endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
201
202/**
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100203 * efi_install_fdt() - install device tree
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200204 *
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100205 * If fdt_addr is available, the device tree located at that memory address will
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200206 * will be installed as configuration table, otherwise the device tree located
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100207 * at the address indicated by environment variable fdt_addr or as fallback
208 * fdtcontroladdr will be used.
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200209 *
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100210 * On architectures using ACPI tables device trees shall not be installed as
211 * configuration table.
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200212 *
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100213 * @fdt_addr: address of device tree or EFI_FDT_USE_INTERNAL to use the
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100214 * the hardware device tree as indicated by environment variable
215 * fdt_addr or as fallback the internal device tree as indicated by
216 * the environment variable fdtcontroladdr
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900217 * Return: status code
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900218 */
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100219efi_status_t efi_install_fdt(void *fdt)
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900220{
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200221 /*
222 * The EBBR spec requires that we have either an FDT or an ACPI table
223 * but not both.
224 */
225#if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100226 if (fdt) {
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200227 printf("ERROR: can't have ACPI table and device tree.\n");
228 return EFI_LOAD_ERROR;
229 }
230#else
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900231 bootm_headers_t img = { 0 };
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900232 efi_status_t ret;
233
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100234 if (fdt == EFI_FDT_USE_INTERNAL) {
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100235 const char *fdt_opt;
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100236 uintptr_t fdt_addr;
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100237
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200238 /* Look for device tree that is already installed */
239 if (get_config_table(&efi_guid_fdt))
240 return EFI_SUCCESS;
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100241 /* Check if there is a hardware device tree */
242 fdt_opt = env_get("fdt_addr");
243 /* Use our own device tree as fallback */
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200244 if (!fdt_opt) {
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100245 fdt_opt = env_get("fdtcontroladdr");
246 if (!fdt_opt) {
247 printf("ERROR: need device tree\n");
248 return EFI_NOT_FOUND;
249 }
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900250 }
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200251 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
252 if (!fdt_addr) {
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100253 printf("ERROR: invalid $fdt_addr or $fdtcontroladdr\n");
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900254 return EFI_LOAD_ERROR;
255 }
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100256 fdt = map_sysmem(fdt_addr, 0);
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900257 }
258
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200259 /* Install device tree */
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200260 if (fdt_check_header(fdt)) {
261 printf("ERROR: invalid device tree\n");
262 return EFI_LOAD_ERROR;
263 }
264
265 /* Create memory reservations as indicated by the device tree */
266 efi_carve_out_dt_rsv(fdt);
267
268 /* Prepare device tree for payload */
269 ret = copy_fdt(&fdt);
270 if (ret) {
271 printf("ERROR: out of memory\n");
272 return EFI_OUT_OF_RESOURCES;
273 }
274
275 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
276 printf("ERROR: failed to process device tree\n");
277 return EFI_LOAD_ERROR;
278 }
279
280 /* Install device tree as UEFI table */
281 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
282 if (ret != EFI_SUCCESS) {
283 printf("ERROR: failed to install device tree\n");
284 return ret;
285 }
286#endif /* GENERATE_ACPI_TABLE */
287
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900288 return EFI_SUCCESS;
289}
290
Simon Glass5e2f0392018-11-25 20:14:39 -0700291/**
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200292 * do_bootefi_exec() - execute EFI binary
293 *
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900294 * @handle: handle of loaded image
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200295 * Return: status code
296 *
297 * Load the EFI binary into a newly assigned memory unwinding the relocation
298 * information, install the loaded image protocol, and call the binary.
Alexander Grafb9939332016-03-10 00:27:20 +0100299 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900300static efi_status_t do_bootefi_exec(efi_handle_t handle)
Alexander Grafb9939332016-03-10 00:27:20 +0100301{
Heinrich Schuchardt45204b12018-03-03 15:29:01 +0100302 efi_status_t ret;
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +0200303 efi_uintn_t exit_data_size = 0;
304 u16 *exit_data = NULL;
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100305 u16 *load_options;
Rob Clark95c55532017-09-13 18:05:33 -0400306
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900307 /* Transfer environment variable as load options */
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100308 ret = set_load_options(handle, "bootargs", &load_options);
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900309 if (ret != EFI_SUCCESS)
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900310 return ret;
Rob Clarkbf192732017-10-10 08:23:06 -0400311
Alexander Grafb9939332016-03-10 00:27:20 +0100312 /* Call our payload! */
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +0200313 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
314 printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK);
315 if (ret && exit_data) {
316 printf("## %ls\n", exit_data);
317 efi_free_pool(exit_data);
318 }
Rob Clark95c55532017-09-13 18:05:33 -0400319
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900320 efi_restore_gd();
Simon Glass5e2f0392018-11-25 20:14:39 -0700321
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100322 free(load_options);
Rob Clark95c55532017-09-13 18:05:33 -0400323
324 return ret;
Alexander Grafb9939332016-03-10 00:27:20 +0100325}
326
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900327/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200328 * do_efibootmgr() - execute EFI boot manager
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900329 *
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900330 * Return: status code
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900331 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200332static int do_efibootmgr(void)
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900333{
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900334 efi_handle_t handle;
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900335 efi_status_t ret;
336
AKASHI Takahiro6b95b382019-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 Takahirocc999d52019-04-19 12:22:32 +0900342
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900343 ret = do_bootefi_exec(handle);
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900344
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900345 if (ret != EFI_SUCCESS)
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900346 return CMD_RET_FAILURE;
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900347
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900348 return CMD_RET_SUCCESS;
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900349}
350
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200351/**
Heinrich Schuchardt7e92db82019-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 Takahiroe2e40982019-04-19 12:22:34 +0900356 *
357 * @image_opt: string of image start address
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900358 * Return: status code
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900359 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200360static int do_bootefi_image(const char *image_opt)
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900361{
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900362 void *image_buf;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900363 unsigned long addr, size;
364 const char *size_str;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900365 efi_status_t ret;
366
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900367#ifdef CONFIG_CMD_BOOTEFI_HELLO
368 if (!strcmp(image_opt, "hello")) {
369 char *saddr;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900370
371 saddr = env_get("loadaddr");
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900372 size = __efi_helloworld_end - __efi_helloworld_begin;
373
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900374 if (saddr)
375 addr = simple_strtoul(saddr, NULL, 16);
376 else
377 addr = CONFIG_SYS_LOAD_ADDR;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900378
379 image_buf = map_sysmem(addr, size);
380 memcpy(image_buf, __efi_helloworld_begin, size);
381
Heinrich Schuchardtf9ceb6a2019-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 Takahiroe2e40982019-04-19 12:22:34 +0900386 } else
387#endif
388 {
AKASHI Takahiro6b95b382019-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 Takahiroe2e40982019-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 Takahiro6b95b382019-04-19 12:22:35 +0900399
400 image_buf = map_sysmem(addr, size);
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900401 }
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100402 ret = efi_run_image(image_buf, size);
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900403
Heinrich Schuchardtf9ceb6a2019-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 Takahiro6b95b382019-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 Schuchardtf9ceb6a2019-12-07 20:51:06 +0100430 (uintptr_t)source_buffer,
431 source_size);
AKASHI Takahiro6b95b382019-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 Schuchardtf9ceb6a2019-12-07 20:51:06 +0100445 file_path = efi_dp_append(bootefi_device_path,
446 bootefi_image_path);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900447 }
448
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100449 ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer,
450 source_size, &handle));
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900451 if (ret != EFI_SUCCESS)
452 goto out;
453
454 ret = do_bootefi_exec(handle);
AKASHI Takahiro6b95b382019-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 Schuchardtf9ceb6a2019-12-07 20:51:06 +0100461 return ret;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900462}
463
Simon Glassd9717ea2018-11-25 20:14:37 -0700464#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro3fc2b162019-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;
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100472 u16 *load_options;
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900473
474 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
475 loaded_image_infop);
476 if (ret != EFI_SUCCESS)
477 return ret;
478
479 /* Transfer environment variable as load options */
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100480 return set_load_options((efi_handle_t)*image_objp, load_options_path,
481 &load_options);
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900482}
483
Simon Glassd9717ea2018-11-25 20:14:37 -0700484/**
485 * bootefi_test_prepare() - prepare to run an EFI test
486 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100487 * Prepare to run a test as if it were provided by a loaded image.
Simon Glassd9717ea2018-11-25 20:14:37 -0700488 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100489 * @image_objp: pointer to be set to the loaded image handle
490 * @loaded_image_infop: pointer to be set to the loaded image protocol
491 * @path: dummy file path used to construct the device path
492 * set in the loaded image protocol
493 * @load_options_path: name of a U-Boot environment variable. Its value is
494 * set as load options in the loaded image protocol.
495 * Return: status code
Simon Glassd9717ea2018-11-25 20:14:37 -0700496 */
497static efi_status_t bootefi_test_prepare
498 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100499 struct efi_loaded_image **loaded_image_infop, const char *path,
500 const char *load_options_path)
Simon Glassd9717ea2018-11-25 20:14:37 -0700501{
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100502 efi_status_t ret;
503
Simon Glassd9717ea2018-11-25 20:14:37 -0700504 /* Construct a dummy device path */
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100505 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glassd9717ea2018-11-25 20:14:37 -0700506 if (!bootefi_device_path)
507 return EFI_OUT_OF_RESOURCES;
Simon Glassd9717ea2018-11-25 20:14:37 -0700508
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100509 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
510 if (!bootefi_image_path) {
511 ret = EFI_OUT_OF_RESOURCES;
512 goto failure;
513 }
514
515 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
516 bootefi_image_path, image_objp,
517 loaded_image_infop);
518 if (ret == EFI_SUCCESS)
519 return ret;
520
521 efi_free_pool(bootefi_image_path);
522 bootefi_image_path = NULL;
523failure:
524 efi_free_pool(bootefi_device_path);
525 bootefi_device_path = NULL;
526 return ret;
Simon Glassd9717ea2018-11-25 20:14:37 -0700527}
528
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900529/**
530 * bootefi_run_finish() - finish up after running an EFI test
531 *
532 * @loaded_image_info: Pointer to a struct which holds the loaded image info
533 * @image_obj: Pointer to a struct which holds the loaded image object
534 */
535static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
536 struct efi_loaded_image *loaded_image_info)
537{
538 efi_restore_gd();
539 free(loaded_image_info->load_options);
540 efi_delete_handle(&image_obj->header);
541}
542
543/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200544 * do_efi_selftest() - execute EFI selftest
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900545 *
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900546 * Return: status code
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900547 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200548static int do_efi_selftest(void)
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900549{
550 struct efi_loaded_image_obj *image_obj;
551 struct efi_loaded_image *loaded_image_info;
552 efi_status_t ret;
553
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900554 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
555 "\\selftest", "efi_selftest");
556 if (ret != EFI_SUCCESS)
557 return CMD_RET_FAILURE;
558
559 /* Execute the test */
560 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
561 bootefi_run_finish(image_obj, loaded_image_info);
562
563 return ret != EFI_SUCCESS;
564}
Simon Glassd9717ea2018-11-25 20:14:37 -0700565#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
566
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200567/**
568 * do_bootefi() - execute `bootefi` command
569 *
570 * @cmdtp: table entry describing command
571 * @flag: bitmap indicating how the command was invoked
572 * @argc: number of arguments
573 * @argv: command line arguments
574 * Return: status code
575 */
Alexander Grafb9939332016-03-10 00:27:20 +0100576static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
577{
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200578 efi_status_t ret;
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100579 void *fdt;
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200580
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900581 if (argc < 2)
582 return CMD_RET_USAGE;
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900583
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200584 /* Initialize EFI drivers */
585 ret = efi_init_obj_list();
586 if (ret != EFI_SUCCESS) {
587 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
588 ret & ~EFI_ERROR_MASK);
589 return CMD_RET_FAILURE;
590 }
591
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100592 if (argc > 2) {
593 uintptr_t fdt_addr;
594
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100595 fdt_addr = simple_strtoul(argv[2], NULL, 16);
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100596 fdt = map_sysmem(fdt_addr, 0);
597 } else {
598 fdt = EFI_FDT_USE_INTERNAL;
599 }
600 ret = efi_install_fdt(fdt);
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200601 if (ret == EFI_INVALID_PARAMETER)
602 return CMD_RET_USAGE;
603 else if (ret != EFI_SUCCESS)
604 return CMD_RET_FAILURE;
605
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900606 if (!strcmp(argv[1], "bootmgr"))
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200607 return do_efibootmgr();
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900608#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
609 else if (!strcmp(argv[1], "selftest"))
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200610 return do_efi_selftest();
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900611#endif
612
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200613 return do_bootefi_image(argv[1]);
Alexander Grafb9939332016-03-10 00:27:20 +0100614}
615
616#ifdef CONFIG_SYS_LONGHELP
617static char bootefi_help_text[] =
Alexander Graf1c398092016-04-14 16:07:53 +0200618 "<image address> [fdt address]\n"
619 " - boot EFI payload stored at address <image address>.\n"
620 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700621 " exposed as EFI configuration table.\n"
622#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200623 "bootefi hello\n"
624 " - boot a sample Hello World application stored within U-Boot\n"
625#endif
626#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100627 "bootefi selftest [fdt address]\n"
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200628 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200629 " Use environment variable efi_selftest to select a single test.\n"
630 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700631#endif
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900632 "bootefi bootmgr [fdt address]\n"
Rob Clark9975fe92017-09-13 18:05:38 -0400633 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
634 "\n"
635 " If specified, the device tree located at <fdt address> gets\n"
636 " exposed as EFI configuration table.\n";
Alexander Grafb9939332016-03-10 00:27:20 +0100637#endif
638
639U_BOOT_CMD(
Alexander Graf1c398092016-04-14 16:07:53 +0200640 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700641 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100642 bootefi_help_text
643);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100644
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200645/**
646 * efi_set_bootdev() - set boot device
647 *
648 * This function is called when a file is loaded, e.g. via the 'load' command.
649 * We use the path to this file to inform the UEFI binary about the boot device.
650 *
651 * @dev: device, e.g. "MMC"
652 * @devnr: number of the device, e.g. "1:2"
653 * @path: path to file loaded
654 */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200655void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100656{
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900657 struct efi_device_path *device, *image;
658 efi_status_t ret;
Alexander Graf0f4060e2016-03-04 01:10:14 +0100659
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200660 /* efi_set_bootdev is typically called repeatedly, recover memory */
661 efi_free_pool(bootefi_device_path);
662 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200663
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900664 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
665 if (ret == EFI_SUCCESS) {
666 bootefi_device_path = device;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900667 if (image) {
668 /* FIXME: image should not contain device */
669 struct efi_device_path *image_tmp = image;
670
671 efi_dp_split_file_path(image, &device, &image);
672 efi_free_pool(image_tmp);
673 }
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900674 bootefi_image_path = image;
Rob Clark95c55532017-09-13 18:05:33 -0400675 } else {
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900676 bootefi_device_path = NULL;
677 bootefi_image_path = NULL;
Alexander Graff9d334b2016-08-05 14:49:53 +0200678 }
Alexander Graf0f4060e2016-03-04 01:10:14 +0100679}