blob: 0f6d0f77507ca2b0e577814a830dc4a5b813bce0 [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>
Simon Glass4d72caa2020-05-10 11:40:01 -060016#include <image.h>
Simon Glass336d4612020-02-03 07:36:16 -070017#include <malloc.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090018#include <linux/libfdt.h>
19#include <linux/libfdt_env.h>
Alexander Graf354264b2018-06-18 17:22:58 +020020#include <mapmem.h>
Alexander Grafad0c1a32016-04-11 23:51:01 +020021#include <memalign.h>
Simon Glasse2754582016-09-25 15:27:32 -060022#include <asm-generic/sections.h>
23#include <linux/linkage.h>
Alexander Graf0d9d5012016-04-11 16:55:26 +020024
25DECLARE_GLOBAL_DATA_PTR;
Alexander Grafb9939332016-03-10 00:27:20 +010026
Rob Clark95c55532017-09-13 18:05:33 -040027static struct efi_device_path *bootefi_image_path;
28static struct efi_device_path *bootefi_device_path;
Alexander Grafb9939332016-03-10 00:27:20 +010029
Heinrich Schuchardt810371a2019-07-14 13:00:44 +020030/**
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020031 * Set the load options of an image from an environment variable.
32 *
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010033 * @handle: the image handle
34 * @env_var: name of the environment variable
35 * @load_options: pointer to load options (output)
36 * Return: status code
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020037 */
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010038static efi_status_t set_load_options(efi_handle_t handle, const char *env_var,
39 u16 **load_options)
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020040{
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090041 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020042 size_t size;
43 const char *env = env_get(env_var);
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020044 u16 *pos;
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090045 efi_status_t ret;
46
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010047 *load_options = NULL;
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090048 ret = EFI_CALL(systab.boottime->open_protocol(
49 handle,
50 &efi_guid_loaded_image,
51 (void **)&loaded_image_info,
52 efi_root, NULL,
53 EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL));
54 if (ret != EFI_SUCCESS)
55 return EFI_INVALID_PARAMETER;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020056
57 loaded_image_info->load_options = NULL;
58 loaded_image_info->load_options_size = 0;
59 if (!env)
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090060 goto out;
61
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020062 size = utf8_utf16_strlen(env) + 1;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020063 loaded_image_info->load_options = calloc(size, sizeof(u16));
64 if (!loaded_image_info->load_options) {
65 printf("ERROR: Out of memory\n");
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090066 EFI_CALL(systab.boottime->close_protocol(handle,
67 &efi_guid_loaded_image,
68 efi_root, NULL));
69 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020070 }
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020071 pos = loaded_image_info->load_options;
Heinrich Schuchardta3850e42020-01-03 22:53:42 +010072 *load_options = pos;
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020073 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020074 loaded_image_info->load_options_size = size * 2;
AKASHI Takahirodefa7b82019-04-19 12:22:28 +090075
76out:
77 return EFI_CALL(systab.boottime->close_protocol(handle,
78 &efi_guid_loaded_image,
79 efi_root, NULL));
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020080}
81
Heinrich Schuchardt61824952019-04-20 13:33:55 +020082#if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
83
Simon Glass9dff4902018-08-08 03:54:30 -060084/**
85 * copy_fdt() - Copy the device tree to a new location available to EFI
86 *
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010087 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +010088 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass9dff4902018-08-08 03:54:30 -060089 * expanded later with fdt_open_into().
90 *
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010091 * @fdtp: On entry a pointer to the flattened device tree.
92 * On exit a pointer to the copy of the flattened device tree.
Heinrich Schuchardt4574d1b2018-11-12 18:55:22 +010093 * FDT start
94 * Return: status code
Simon Glass9dff4902018-08-08 03:54:30 -060095 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010096static efi_status_t copy_fdt(void **fdtp)
Alexander Graf0d9d5012016-04-11 16:55:26 +020097{
Alexander Grafad0c1a32016-04-11 23:51:01 +020098 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass9dff4902018-08-08 03:54:30 -060099 efi_status_t ret = 0;
100 void *fdt, *new_fdt;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200101 u64 new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -0600102 uint fdt_size;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200103 int i;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200104
Simon Glass9dff4902018-08-08 03:54:30 -0600105 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
106 u64 ram_start = gd->bd->bi_dram[i].start;
107 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200108
Alexander Grafad0c1a32016-04-11 23:51:01 +0200109 if (!ram_size)
110 continue;
111
112 if (ram_start < fdt_ram_start)
113 fdt_ram_start = ram_start;
114 }
115
Simon Glassbc9a6382018-06-18 08:08:25 -0600116 /*
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100117 * Give us at least 12 KiB of breathing room in case the device tree
118 * needs to be expanded later.
Simon Glassbc9a6382018-06-18 08:08:25 -0600119 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100120 fdt = *fdtp;
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100121 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
122 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200123
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100124 /*
125 * Safe fdt location is at 127 MiB.
126 * On the sandbox convert from the sandbox address space.
127 */
128 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
129 fdt_size, 0);
Simon Glass9dff4902018-08-08 03:54:30 -0600130 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Heinrich Schuchardt42a426e2020-05-06 20:32:31 +0200131 EFI_ACPI_RECLAIM_MEMORY, fdt_pages,
Simon Glass9dff4902018-08-08 03:54:30 -0600132 &new_fdt_addr);
133 if (ret != EFI_SUCCESS) {
Alexander Grafad0c1a32016-04-11 23:51:01 +0200134 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.dea44bffc2017-08-11 21:19:25 +0200135 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass9dff4902018-08-08 03:54:30 -0600136 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Heinrich Schuchardt42a426e2020-05-06 20:32:31 +0200137 EFI_ACPI_RECLAIM_MEMORY, fdt_pages,
Simon Glass9dff4902018-08-08 03:54:30 -0600138 &new_fdt_addr);
139 if (ret != EFI_SUCCESS) {
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200140 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass9dff4902018-08-08 03:54:30 -0600141 goto done;
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200142 }
Alexander Grafad0c1a32016-04-11 23:51:01 +0200143 }
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100144 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200145 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
146 fdt_set_totalsize(new_fdt, fdt_size);
147
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100148 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -0600149done:
150 return ret;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200151}
152
Atish Patra7be64b82020-03-13 17:11:30 -0700153static void efi_reserve_memory(u64 addr, u64 size)
154{
Atish Patra7be64b82020-03-13 17:11:30 -0700155 /* Convert from sandbox address space. */
156 addr = (uintptr_t)map_sysmem(addr, 0);
Michael Walle714497e2020-05-17 12:29:19 +0200157 if (efi_add_memory_map(addr, size,
158 EFI_RESERVED_MEMORY_TYPE) != EFI_SUCCESS)
Atish Patra7be64b82020-03-13 17:11:30 -0700159 printf("Reserved memory mapping failed addr %llx size %llx\n",
160 addr, size);
161}
162
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200163/**
Simon Glass416e07e2018-06-18 08:08:28 -0600164 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
165 *
166 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
167 * ignored because this is not critical and we would rather continue to try to
168 * boot.
169 *
170 * @fdt: Pointer to device tree
171 */
172static void efi_carve_out_dt_rsv(void *fdt)
Alexander Graf806d2fa2018-04-06 09:40:51 +0200173{
174 int nr_rsv, i;
Atish Patra7be64b82020-03-13 17:11:30 -0700175 u64 addr, size;
176 int nodeoffset, subnode;
Alexander Graf806d2fa2018-04-06 09:40:51 +0200177
178 nr_rsv = fdt_num_mem_rsv(fdt);
179
180 /* Look for an existing entry and add it to the efi mem map. */
181 for (i = 0; i < nr_rsv; i++) {
182 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
183 continue;
Atish Patra7be64b82020-03-13 17:11:30 -0700184 efi_reserve_memory(addr, size);
185 }
Alexander Graf806d2fa2018-04-06 09:40:51 +0200186
Atish Patra7be64b82020-03-13 17:11:30 -0700187 /* process reserved-memory */
188 nodeoffset = fdt_subnode_offset(fdt, 0, "reserved-memory");
189 if (nodeoffset >= 0) {
190 subnode = fdt_first_subnode(fdt, nodeoffset);
191 while (subnode >= 0) {
192 /* check if this subnode has a reg property */
193 addr = fdtdec_get_addr_size(fdt, subnode, "reg",
194 (fdt_size_t *)&size);
195 /*
196 * The /reserved-memory node may have children with
197 * a size instead of a reg property.
198 */
Heinrich Schuchardt4ef2b0d2020-03-24 07:37:52 +0100199 if (addr != FDT_ADDR_T_NONE &&
200 fdtdec_get_is_enabled(fdt, subnode))
Atish Patra7be64b82020-03-13 17:11:30 -0700201 efi_reserve_memory(addr, size);
202 subnode = fdt_next_subnode(fdt, subnode);
203 }
Alexander Graf806d2fa2018-04-06 09:40:51 +0200204 }
Alexander Graf806d2fa2018-04-06 09:40:51 +0200205}
206
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900207/**
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200208 * get_config_table() - get configuration table
209 *
210 * @guid: GUID of the configuration table
211 * Return: pointer to configuration table or NULL
212 */
213static void *get_config_table(const efi_guid_t *guid)
214{
215 size_t i;
216
217 for (i = 0; i < systab.nr_tables; i++) {
218 if (!guidcmp(guid, &systab.tables[i].guid))
219 return systab.tables[i].table;
220 }
221 return NULL;
222}
223
224#endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
225
226/**
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100227 * efi_install_fdt() - install device tree
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200228 *
Heinrich Schuchardt7d4d5512020-02-07 22:10:49 +0100229 * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory
230 * address will will be installed as configuration table, otherwise the device
231 * tree located at the address indicated by environment variable fdt_addr or as
232 * fallback fdtcontroladdr will be used.
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200233 *
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100234 * On architectures using ACPI tables device trees shall not be installed as
235 * configuration table.
Heinrich Schuchardte2d82f82019-05-12 20:16:25 +0200236 *
Heinrich Schuchardt7d4d5512020-02-07 22:10:49 +0100237 * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100238 * the hardware device tree as indicated by environment variable
239 * fdt_addr or as fallback the internal device tree as indicated by
240 * the environment variable fdtcontroladdr
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900241 * Return: status code
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900242 */
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100243efi_status_t efi_install_fdt(void *fdt)
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900244{
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200245 /*
246 * The EBBR spec requires that we have either an FDT or an ACPI table
247 * but not both.
248 */
249#if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100250 if (fdt) {
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200251 printf("ERROR: can't have ACPI table and device tree.\n");
252 return EFI_LOAD_ERROR;
253 }
254#else
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900255 bootm_headers_t img = { 0 };
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900256 efi_status_t ret;
257
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100258 if (fdt == EFI_FDT_USE_INTERNAL) {
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100259 const char *fdt_opt;
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100260 uintptr_t fdt_addr;
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100261
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200262 /* Look for device tree that is already installed */
263 if (get_config_table(&efi_guid_fdt))
264 return EFI_SUCCESS;
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100265 /* Check if there is a hardware device tree */
266 fdt_opt = env_get("fdt_addr");
267 /* Use our own device tree as fallback */
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200268 if (!fdt_opt) {
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100269 fdt_opt = env_get("fdtcontroladdr");
270 if (!fdt_opt) {
271 printf("ERROR: need device tree\n");
272 return EFI_NOT_FOUND;
273 }
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900274 }
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200275 fdt_addr = simple_strtoul(fdt_opt, NULL, 16);
276 if (!fdt_addr) {
Heinrich Schuchardt753aa182019-12-04 12:31:12 +0100277 printf("ERROR: invalid $fdt_addr or $fdtcontroladdr\n");
AKASHI Takahiro3ffc52f2019-04-19 12:22:30 +0900278 return EFI_LOAD_ERROR;
279 }
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100280 fdt = map_sysmem(fdt_addr, 0);
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900281 }
282
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200283 /* Install device tree */
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200284 if (fdt_check_header(fdt)) {
285 printf("ERROR: invalid device tree\n");
286 return EFI_LOAD_ERROR;
287 }
288
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200289 /* Prepare device tree for payload */
290 ret = copy_fdt(&fdt);
291 if (ret) {
292 printf("ERROR: out of memory\n");
293 return EFI_OUT_OF_RESOURCES;
294 }
295
296 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
297 printf("ERROR: failed to process device tree\n");
298 return EFI_LOAD_ERROR;
299 }
300
Heinrich Schuchardtfef907b2020-03-14 10:59:34 +0100301 /* Create memory reservations as indicated by the device tree */
302 efi_carve_out_dt_rsv(fdt);
303
Heinrich Schuchardt61824952019-04-20 13:33:55 +0200304 /* Install device tree as UEFI table */
305 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
306 if (ret != EFI_SUCCESS) {
307 printf("ERROR: failed to install device tree\n");
308 return ret;
309 }
310#endif /* GENERATE_ACPI_TABLE */
311
AKASHI Takahiroe878e6a2019-04-19 12:22:29 +0900312 return EFI_SUCCESS;
313}
314
Simon Glass5e2f0392018-11-25 20:14:39 -0700315/**
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200316 * do_bootefi_exec() - execute EFI binary
317 *
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900318 * @handle: handle of loaded image
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200319 * Return: status code
320 *
321 * Load the EFI binary into a newly assigned memory unwinding the relocation
322 * information, install the loaded image protocol, and call the binary.
Alexander Grafb9939332016-03-10 00:27:20 +0100323 */
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900324static efi_status_t do_bootefi_exec(efi_handle_t handle)
Alexander Grafb9939332016-03-10 00:27:20 +0100325{
Heinrich Schuchardt45204b12018-03-03 15:29:01 +0100326 efi_status_t ret;
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +0200327 efi_uintn_t exit_data_size = 0;
328 u16 *exit_data = NULL;
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100329 u16 *load_options;
Rob Clark95c55532017-09-13 18:05:33 -0400330
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900331 /* Transfer environment variable as load options */
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100332 ret = set_load_options(handle, "bootargs", &load_options);
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900333 if (ret != EFI_SUCCESS)
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900334 return ret;
Rob Clarkbf192732017-10-10 08:23:06 -0400335
Alexander Grafb9939332016-03-10 00:27:20 +0100336 /* Call our payload! */
Heinrich Schuchardt556d8dc2019-04-30 17:57:30 +0200337 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
338 printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK);
339 if (ret && exit_data) {
340 printf("## %ls\n", exit_data);
341 efi_free_pool(exit_data);
342 }
Rob Clark95c55532017-09-13 18:05:33 -0400343
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900344 efi_restore_gd();
Simon Glass5e2f0392018-11-25 20:14:39 -0700345
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100346 free(load_options);
Rob Clark95c55532017-09-13 18:05:33 -0400347
348 return ret;
Alexander Grafb9939332016-03-10 00:27:20 +0100349}
350
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900351/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200352 * do_efibootmgr() - execute EFI boot manager
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900353 *
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900354 * Return: status code
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900355 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200356static int do_efibootmgr(void)
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900357{
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900358 efi_handle_t handle;
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900359 efi_status_t ret;
360
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900361 ret = efi_bootmgr_load(&handle);
362 if (ret != EFI_SUCCESS) {
363 printf("EFI boot manager: Cannot load any image\n");
364 return CMD_RET_FAILURE;
365 }
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900366
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900367 ret = do_bootefi_exec(handle);
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900368
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900369 if (ret != EFI_SUCCESS)
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900370 return CMD_RET_FAILURE;
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900371
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900372 return CMD_RET_SUCCESS;
AKASHI Takahirocc999d52019-04-19 12:22:32 +0900373}
374
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200375/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200376 * do_bootefi_image() - execute EFI binary
377 *
378 * Set up memory image for the binary to be loaded, prepare device path, and
379 * then call do_bootefi_exec() to execute it.
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900380 *
381 * @image_opt: string of image start address
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900382 * Return: status code
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900383 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200384static int do_bootefi_image(const char *image_opt)
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900385{
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900386 void *image_buf;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900387 unsigned long addr, size;
388 const char *size_str;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900389 efi_status_t ret;
390
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900391#ifdef CONFIG_CMD_BOOTEFI_HELLO
392 if (!strcmp(image_opt, "hello")) {
393 char *saddr;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900394
395 saddr = env_get("loadaddr");
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900396 size = __efi_helloworld_end - __efi_helloworld_begin;
397
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900398 if (saddr)
399 addr = simple_strtoul(saddr, NULL, 16);
400 else
401 addr = CONFIG_SYS_LOAD_ADDR;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900402
403 image_buf = map_sysmem(addr, size);
404 memcpy(image_buf, __efi_helloworld_begin, size);
405
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100406 efi_free_pool(bootefi_device_path);
407 efi_free_pool(bootefi_image_path);
408 bootefi_device_path = NULL;
409 bootefi_image_path = NULL;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900410 } else
411#endif
412 {
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900413 size_str = env_get("filesize");
414 if (size_str)
415 size = simple_strtoul(size_str, NULL, 16);
416 else
417 size = 0;
418
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900419 addr = simple_strtoul(image_opt, NULL, 16);
420 /* Check that a numeric value was passed */
421 if (!addr && *image_opt != '0')
422 return CMD_RET_USAGE;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900423
424 image_buf = map_sysmem(addr, size);
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900425 }
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100426 ret = efi_run_image(image_buf, size);
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900427
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100428 if (ret != EFI_SUCCESS)
429 return CMD_RET_FAILURE;
430
431 return CMD_RET_SUCCESS;
432}
433
434/**
435 * efi_run_image() - run loaded UEFI image
436 *
437 * @source_buffer: memory address of the UEFI image
438 * @source_size: size of the UEFI image
439 * Return: status code
440 */
441efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size)
442{
443 efi_handle_t mem_handle = NULL, handle;
444 struct efi_device_path *file_path = NULL;
445 efi_status_t ret;
446
447 if (!bootefi_device_path || !bootefi_image_path) {
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900448 /*
449 * Special case for efi payload not loaded from disk,
450 * such as 'bootefi hello' or for example payload
451 * loaded directly into memory via JTAG, etc:
452 */
453 file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100454 (uintptr_t)source_buffer,
455 source_size);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900456 /*
457 * Make sure that device for device_path exist
458 * in load_image(). Otherwise, shell and grub will fail.
459 */
460 ret = efi_create_handle(&mem_handle);
461 if (ret != EFI_SUCCESS)
462 goto out;
463
464 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
465 file_path);
466 if (ret != EFI_SUCCESS)
467 goto out;
468 } else {
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100469 file_path = efi_dp_append(bootefi_device_path,
470 bootefi_image_path);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900471 }
472
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100473 ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer,
474 source_size, &handle));
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900475 if (ret != EFI_SUCCESS)
476 goto out;
477
478 ret = do_bootefi_exec(handle);
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900479
480out:
Heinrich Schuchardt4fe050e2020-04-20 12:44:56 +0200481 efi_delete_handle(mem_handle);
482 efi_free_pool(file_path);
Heinrich Schuchardtf9ceb6a2019-12-07 20:51:06 +0100483 return ret;
AKASHI Takahiroe2e40982019-04-19 12:22:34 +0900484}
485
Simon Glassd9717ea2018-11-25 20:14:37 -0700486#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900487static efi_status_t bootefi_run_prepare(const char *load_options_path,
488 struct efi_device_path *device_path,
489 struct efi_device_path *image_path,
490 struct efi_loaded_image_obj **image_objp,
491 struct efi_loaded_image **loaded_image_infop)
492{
493 efi_status_t ret;
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100494 u16 *load_options;
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900495
496 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
497 loaded_image_infop);
498 if (ret != EFI_SUCCESS)
499 return ret;
500
501 /* Transfer environment variable as load options */
Heinrich Schuchardta3850e42020-01-03 22:53:42 +0100502 return set_load_options((efi_handle_t)*image_objp, load_options_path,
503 &load_options);
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900504}
505
Simon Glassd9717ea2018-11-25 20:14:37 -0700506/**
507 * bootefi_test_prepare() - prepare to run an EFI test
508 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100509 * Prepare to run a test as if it were provided by a loaded image.
Simon Glassd9717ea2018-11-25 20:14:37 -0700510 *
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100511 * @image_objp: pointer to be set to the loaded image handle
512 * @loaded_image_infop: pointer to be set to the loaded image protocol
513 * @path: dummy file path used to construct the device path
514 * set in the loaded image protocol
515 * @load_options_path: name of a U-Boot environment variable. Its value is
516 * set as load options in the loaded image protocol.
517 * Return: status code
Simon Glassd9717ea2018-11-25 20:14:37 -0700518 */
519static efi_status_t bootefi_test_prepare
520 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100521 struct efi_loaded_image **loaded_image_infop, const char *path,
522 const char *load_options_path)
Simon Glassd9717ea2018-11-25 20:14:37 -0700523{
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100524 efi_status_t ret;
525
Simon Glassd9717ea2018-11-25 20:14:37 -0700526 /* Construct a dummy device path */
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100527 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glassd9717ea2018-11-25 20:14:37 -0700528 if (!bootefi_device_path)
529 return EFI_OUT_OF_RESOURCES;
Simon Glassd9717ea2018-11-25 20:14:37 -0700530
Heinrich Schuchardt1504bb02019-01-12 14:42:40 +0100531 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
532 if (!bootefi_image_path) {
533 ret = EFI_OUT_OF_RESOURCES;
534 goto failure;
535 }
536
537 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
538 bootefi_image_path, image_objp,
539 loaded_image_infop);
540 if (ret == EFI_SUCCESS)
541 return ret;
542
543 efi_free_pool(bootefi_image_path);
544 bootefi_image_path = NULL;
545failure:
546 efi_free_pool(bootefi_device_path);
547 bootefi_device_path = NULL;
548 return ret;
Simon Glassd9717ea2018-11-25 20:14:37 -0700549}
550
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900551/**
552 * bootefi_run_finish() - finish up after running an EFI test
553 *
554 * @loaded_image_info: Pointer to a struct which holds the loaded image info
555 * @image_obj: Pointer to a struct which holds the loaded image object
556 */
557static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
558 struct efi_loaded_image *loaded_image_info)
559{
560 efi_restore_gd();
561 free(loaded_image_info->load_options);
562 efi_delete_handle(&image_obj->header);
563}
564
565/**
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200566 * do_efi_selftest() - execute EFI selftest
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900567 *
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900568 * Return: status code
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900569 */
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200570static int do_efi_selftest(void)
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900571{
572 struct efi_loaded_image_obj *image_obj;
573 struct efi_loaded_image *loaded_image_info;
574 efi_status_t ret;
575
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900576 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
577 "\\selftest", "efi_selftest");
578 if (ret != EFI_SUCCESS)
579 return CMD_RET_FAILURE;
580
581 /* Execute the test */
582 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
583 bootefi_run_finish(image_obj, loaded_image_info);
584
585 return ret != EFI_SUCCESS;
586}
Simon Glassd9717ea2018-11-25 20:14:37 -0700587#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
588
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200589/**
590 * do_bootefi() - execute `bootefi` command
591 *
592 * @cmdtp: table entry describing command
593 * @flag: bitmap indicating how the command was invoked
594 * @argc: number of arguments
595 * @argv: command line arguments
596 * Return: status code
597 */
Simon Glass09140112020-05-10 11:40:03 -0600598static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc,
599 char *const argv[])
Alexander Grafb9939332016-03-10 00:27:20 +0100600{
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200601 efi_status_t ret;
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100602 void *fdt;
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200603
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900604 if (argc < 2)
605 return CMD_RET_USAGE;
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900606
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200607 /* Initialize EFI drivers */
608 ret = efi_init_obj_list();
609 if (ret != EFI_SUCCESS) {
610 printf("Error: Cannot initialize UEFI sub-system, r = %lu\n",
611 ret & ~EFI_ERROR_MASK);
612 return CMD_RET_FAILURE;
613 }
614
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100615 if (argc > 2) {
616 uintptr_t fdt_addr;
617
Heinrich Schuchardt7a597252019-11-28 06:46:09 +0100618 fdt_addr = simple_strtoul(argv[2], NULL, 16);
Heinrich Schuchardtf64f2232019-12-08 01:07:01 +0100619 fdt = map_sysmem(fdt_addr, 0);
620 } else {
621 fdt = EFI_FDT_USE_INTERNAL;
622 }
623 ret = efi_install_fdt(fdt);
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200624 if (ret == EFI_INVALID_PARAMETER)
625 return CMD_RET_USAGE;
626 else if (ret != EFI_SUCCESS)
627 return CMD_RET_FAILURE;
628
AKASHI Takahirod6b21892019-04-19 12:22:33 +0900629 if (!strcmp(argv[1], "bootmgr"))
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200630 return do_efibootmgr();
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900631#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
632 else if (!strcmp(argv[1], "selftest"))
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200633 return do_efi_selftest();
AKASHI Takahiro3fc2b162019-04-19 12:22:31 +0900634#endif
635
Heinrich Schuchardt7e92db82019-05-12 20:16:25 +0200636 return do_bootefi_image(argv[1]);
Alexander Grafb9939332016-03-10 00:27:20 +0100637}
638
639#ifdef CONFIG_SYS_LONGHELP
640static char bootefi_help_text[] =
Alexander Graf1c398092016-04-14 16:07:53 +0200641 "<image address> [fdt address]\n"
642 " - boot EFI payload stored at address <image address>.\n"
643 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700644 " exposed as EFI configuration table.\n"
645#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200646 "bootefi hello\n"
647 " - boot a sample Hello World application stored within U-Boot\n"
648#endif
649#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100650 "bootefi selftest [fdt address]\n"
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200651 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200652 " Use environment variable efi_selftest to select a single test.\n"
653 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700654#endif
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900655 "bootefi bootmgr [fdt address]\n"
Rob Clark9975fe92017-09-13 18:05:38 -0400656 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
657 "\n"
658 " If specified, the device tree located at <fdt address> gets\n"
659 " exposed as EFI configuration table.\n";
Alexander Grafb9939332016-03-10 00:27:20 +0100660#endif
661
662U_BOOT_CMD(
Alexander Graf1c398092016-04-14 16:07:53 +0200663 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700664 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100665 bootefi_help_text
666);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100667
Heinrich Schuchardt810371a2019-07-14 13:00:44 +0200668/**
669 * efi_set_bootdev() - set boot device
670 *
671 * This function is called when a file is loaded, e.g. via the 'load' command.
672 * We use the path to this file to inform the UEFI binary about the boot device.
673 *
674 * @dev: device, e.g. "MMC"
675 * @devnr: number of the device, e.g. "1:2"
676 * @path: path to file loaded
677 */
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200678void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100679{
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900680 struct efi_device_path *device, *image;
681 efi_status_t ret;
Alexander Graf0f4060e2016-03-04 01:10:14 +0100682
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200683 /* efi_set_bootdev is typically called repeatedly, recover memory */
684 efi_free_pool(bootefi_device_path);
685 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200686
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900687 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
688 if (ret == EFI_SUCCESS) {
689 bootefi_device_path = device;
AKASHI Takahiro6b95b382019-04-19 12:22:35 +0900690 if (image) {
691 /* FIXME: image should not contain device */
692 struct efi_device_path *image_tmp = image;
693
694 efi_dp_split_file_path(image, &device, &image);
695 efi_free_pool(image_tmp);
696 }
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900697 bootefi_image_path = image;
Rob Clark95c55532017-09-13 18:05:33 -0400698 } else {
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900699 bootefi_device_path = NULL;
700 bootefi_image_path = NULL;
Alexander Graff9d334b2016-08-05 14:49:53 +0200701 }
Alexander Graf0f4060e2016-03-04 01:10:14 +0100702}