blob: bcdd29ebed03615d45bd4b8f48b6c53aed92b57c [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
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +02008#include <charset.h>
Alexander Grafb9939332016-03-10 00:27:20 +01009#include <common.h>
10#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>
Alexander Grafb9939332016-03-10 00:27:20 +010014#include <errno.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090015#include <linux/libfdt.h>
16#include <linux/libfdt_env.h>
Alexander Graf354264b2018-06-18 17:22:58 +020017#include <mapmem.h>
Alexander Grafad0c1a32016-04-11 23:51:01 +020018#include <memalign.h>
Alexander Graf0d9d5012016-04-11 16:55:26 +020019#include <asm/global_data.h>
Simon Glasse2754582016-09-25 15:27:32 -060020#include <asm-generic/sections.h>
Heinrich Schuchardtc3b11de2018-04-03 21:59:32 +020021#include <asm-generic/unaligned.h>
Simon Glasse2754582016-09-25 15:27:32 -060022#include <linux/linkage.h>
Alexander Graf0d9d5012016-04-11 16:55:26 +020023
Mark Kettenisdc500c32018-06-15 23:47:12 +020024#ifdef CONFIG_ARMV7_NONSEC
25#include <asm/armv7.h>
26#include <asm/secure.h>
27#endif
28
Alexander Graf0d9d5012016-04-11 16:55:26 +020029DECLARE_GLOBAL_DATA_PTR;
Alexander Grafb9939332016-03-10 00:27:20 +010030
Rob Clark95c55532017-09-13 18:05:33 -040031static struct efi_device_path *bootefi_image_path;
32static struct efi_device_path *bootefi_device_path;
Alexander Grafb9939332016-03-10 00:27:20 +010033
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020034/*
Heinrich Schuchardtc3b11de2018-04-03 21:59:32 +020035 * Allow unaligned memory access.
36 *
37 * This routine is overridden by architectures providing this feature.
38 */
39void __weak allow_unaligned(void)
40{
41}
42
43/*
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020044 * Set the load options of an image from an environment variable.
45 *
46 * @loaded_image_info: the image
47 * @env_var: name of the environment variable
48 */
49static void set_load_options(struct efi_loaded_image *loaded_image_info,
50 const char *env_var)
51{
52 size_t size;
53 const char *env = env_get(env_var);
Heinrich Schuchardt7086a712018-08-31 21:31:33 +020054 u16 *pos;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +020055
56 loaded_image_info->load_options = NULL;
57 loaded_image_info->load_options_size = 0;
58 if (!env)
59 return;
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");
64 return;
65 }
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;
69}
70
Simon Glass9dff4902018-08-08 03:54:30 -060071/**
72 * copy_fdt() - Copy the device tree to a new location available to EFI
73 *
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010074 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +010075 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass9dff4902018-08-08 03:54:30 -060076 * expanded later with fdt_open_into().
77 *
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010078 * @fdtp: On entry a pointer to the flattened device tree.
79 * On exit a pointer to the copy of the flattened device tree.
Heinrich Schuchardt4574d1b2018-11-12 18:55:22 +010080 * FDT start
81 * Return: status code
Simon Glass9dff4902018-08-08 03:54:30 -060082 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +010083static efi_status_t copy_fdt(void **fdtp)
Alexander Graf0d9d5012016-04-11 16:55:26 +020084{
Alexander Grafad0c1a32016-04-11 23:51:01 +020085 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass9dff4902018-08-08 03:54:30 -060086 efi_status_t ret = 0;
87 void *fdt, *new_fdt;
Alexander Grafad0c1a32016-04-11 23:51:01 +020088 u64 new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -060089 uint fdt_size;
Alexander Grafad0c1a32016-04-11 23:51:01 +020090 int i;
Alexander Graf0d9d5012016-04-11 16:55:26 +020091
Simon Glass9dff4902018-08-08 03:54:30 -060092 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
93 u64 ram_start = gd->bd->bi_dram[i].start;
94 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf0d9d5012016-04-11 16:55:26 +020095
Alexander Grafad0c1a32016-04-11 23:51:01 +020096 if (!ram_size)
97 continue;
98
99 if (ram_start < fdt_ram_start)
100 fdt_ram_start = ram_start;
101 }
102
Simon Glassbc9a6382018-06-18 08:08:25 -0600103 /*
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100104 * Give us at least 12 KiB of breathing room in case the device tree
105 * needs to be expanded later.
Simon Glassbc9a6382018-06-18 08:08:25 -0600106 */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100107 fdt = *fdtp;
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100108 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
109 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200110
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100111 /*
112 * Safe fdt location is at 127 MiB.
113 * On the sandbox convert from the sandbox address space.
114 */
115 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
116 fdt_size, 0);
Simon Glass9dff4902018-08-08 03:54:30 -0600117 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
118 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
119 &new_fdt_addr);
120 if (ret != EFI_SUCCESS) {
Alexander Grafad0c1a32016-04-11 23:51:01 +0200121 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.dea44bffc2017-08-11 21:19:25 +0200122 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass9dff4902018-08-08 03:54:30 -0600123 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
124 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
125 &new_fdt_addr);
126 if (ret != EFI_SUCCESS) {
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200127 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass9dff4902018-08-08 03:54:30 -0600128 goto done;
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200129 }
Alexander Grafad0c1a32016-04-11 23:51:01 +0200130 }
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100131 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200132 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
133 fdt_set_totalsize(new_fdt, fdt_size);
134
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100135 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -0600136done:
137 return ret;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200138}
139
Heinrich Schuchardt3eb08412017-10-18 18:13:08 +0200140static efi_status_t efi_do_enter(
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100141 efi_handle_t image_handle, struct efi_system_table *st,
Alexander Grafc6fa5df2018-01-24 00:18:08 +0100142 EFIAPI efi_status_t (*entry)(
143 efi_handle_t image_handle,
144 struct efi_system_table *st))
xypron.glpk@gmx.deb06d8ac2017-07-04 23:15:21 +0200145{
146 efi_status_t ret = EFI_LOAD_ERROR;
147
148 if (entry)
149 ret = entry(image_handle, st);
150 st->boottime->exit(image_handle, ret, 0, NULL);
151 return ret;
152}
153
Alison Wangec6617c2016-11-10 10:49:03 +0800154#ifdef CONFIG_ARM64
Alexander Grafc6fa5df2018-01-24 00:18:08 +0100155static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)(
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100156 efi_handle_t image_handle, struct efi_system_table *st),
157 efi_handle_t image_handle, struct efi_system_table *st)
Alison Wangec6617c2016-11-10 10:49:03 +0800158{
159 /* Enable caches again */
160 dcache_enable();
161
xypron.glpk@gmx.deb06d8ac2017-07-04 23:15:21 +0200162 return efi_do_enter(image_handle, st, entry);
Alison Wangec6617c2016-11-10 10:49:03 +0800163}
164#endif
165
Mark Kettenisdc500c32018-06-15 23:47:12 +0200166#ifdef CONFIG_ARMV7_NONSEC
Mark Kettenisf17f2002018-06-15 23:47:13 +0200167static bool is_nonsec;
168
Mark Kettenisdc500c32018-06-15 23:47:12 +0200169static efi_status_t efi_run_in_hyp(EFIAPI efi_status_t (*entry)(
170 efi_handle_t image_handle, struct efi_system_table *st),
171 efi_handle_t image_handle, struct efi_system_table *st)
172{
173 /* Enable caches again */
174 dcache_enable();
175
Mark Kettenisf17f2002018-06-15 23:47:13 +0200176 is_nonsec = true;
177
Mark Kettenisdc500c32018-06-15 23:47:12 +0200178 return efi_do_enter(image_handle, st, entry);
179}
180#endif
181
Simon Glass416e07e2018-06-18 08:08:28 -0600182/*
183 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
184 *
185 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
186 * ignored because this is not critical and we would rather continue to try to
187 * boot.
188 *
189 * @fdt: Pointer to device tree
190 */
191static void efi_carve_out_dt_rsv(void *fdt)
Alexander Graf806d2fa2018-04-06 09:40:51 +0200192{
193 int nr_rsv, i;
194 uint64_t addr, size, pages;
195
196 nr_rsv = fdt_num_mem_rsv(fdt);
197
198 /* Look for an existing entry and add it to the efi mem map. */
199 for (i = 0; i < nr_rsv; i++) {
200 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
201 continue;
202
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100203 /* Convert from sandbox address space. */
204 addr = (uintptr_t)map_sysmem(addr, 0);
205
Heinrich Schuchardtc3772ca2018-11-18 17:58:49 +0100206 pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK));
Heinrich Schuchardt23fd84b2018-11-12 18:55:23 +0100207 addr &= ~EFI_PAGE_MASK;
Simon Glass416e07e2018-06-18 08:08:28 -0600208 if (!efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
209 false))
210 printf("FDT memrsv map %d: Failed to add to map\n", i);
Alexander Graf806d2fa2018-04-06 09:40:51 +0200211 }
Alexander Graf806d2fa2018-04-06 09:40:51 +0200212}
213
Simon Glass9dff4902018-08-08 03:54:30 -0600214static efi_status_t efi_install_fdt(ulong fdt_addr)
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100215{
216 bootm_headers_t img = { 0 };
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100217 efi_status_t ret;
Simon Glass9dff4902018-08-08 03:54:30 -0600218 void *fdt;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100219
Simon Glass9dff4902018-08-08 03:54:30 -0600220 fdt = map_sysmem(fdt_addr, 0);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100221 if (fdt_check_header(fdt)) {
222 printf("ERROR: invalid device tree\n");
223 return EFI_INVALID_PARAMETER;
224 }
225
Heinrich Schuchardt0c9ac062018-11-18 17:58:53 +0100226 /* Create memory reservation as indicated by the device tree */
227 efi_carve_out_dt_rsv(fdt);
228
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100229 /* Prepare fdt for payload */
Heinrich Schuchardt16b615d2018-11-18 17:58:52 +0100230 ret = copy_fdt(&fdt);
Simon Glass9dff4902018-08-08 03:54:30 -0600231 if (ret)
232 return ret;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100233
234 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
235 printf("ERROR: failed to process device tree\n");
236 return EFI_LOAD_ERROR;
237 }
238
239 /* Link to it in the efi tables */
240 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
241 if (ret != EFI_SUCCESS)
242 return EFI_OUT_OF_RESOURCES;
243
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100244 return ret;
245}
246
Simon Glassf4f0f7c2018-11-25 20:14:38 -0700247static efi_status_t bootefi_run_prepare(const char *load_options_path,
248 struct efi_device_path *device_path,
249 struct efi_device_path *image_path,
250 struct efi_loaded_image_obj **image_objp,
251 struct efi_loaded_image **loaded_image_infop)
252{
253 efi_status_t ret;
254
255 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
256 loaded_image_infop);
257 if (ret != EFI_SUCCESS)
258 return ret;
259
260 /* Transfer environment variable as load options */
261 set_load_options(*loaded_image_infop, load_options_path);
262
263 return 0;
264}
265
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200266/**
Simon Glass5e2f0392018-11-25 20:14:39 -0700267 * bootefi_run_finish() - finish up after running an EFI test
268 *
269 * @loaded_image_info: Pointer to a struct which holds the loaded image info
270 * @image_objj: Pointer to a struct which holds the loaded image object
271 */
272static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
273 struct efi_loaded_image *loaded_image_info)
274{
275 efi_restore_gd();
276 free(loaded_image_info->load_options);
277 efi_delete_handle(&image_obj->header);
278}
279
280/**
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200281 * do_bootefi_exec() - execute EFI binary
282 *
283 * @efi: address of the binary
284 * @device_path: path of the device from which the binary was loaded
285 * @image_path: device path of the binary
286 * 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 */
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100291static efi_status_t do_bootefi_exec(void *efi,
Heinrich Schuchardt3eb08412017-10-18 18:13:08 +0200292 struct efi_device_path *device_path,
293 struct efi_device_path *image_path)
Alexander Grafb9939332016-03-10 00:27:20 +0100294{
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200295 efi_handle_t mem_handle = NULL;
Rob Clarkbf192732017-10-10 08:23:06 -0400296 struct efi_device_path *memdp = NULL;
Heinrich Schuchardt45204b12018-03-03 15:29:01 +0100297 efi_status_t ret;
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +0200298 struct efi_loaded_image_obj *image_obj = NULL;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200299 struct efi_loaded_image *loaded_image_info = NULL;
Rob Clark95c55532017-09-13 18:05:33 -0400300
Alexander Grafc6fa5df2018-01-24 00:18:08 +0100301 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
302 struct efi_system_table *st);
Alexander Grafb9939332016-03-10 00:27:20 +0100303
Rob Clarkbf192732017-10-10 08:23:06 -0400304 /*
305 * Special case for efi payload not loaded from disk, such as
306 * 'bootefi hello' or for example payload loaded directly into
Heinrich Schuchardte1fec152018-10-18 21:51:38 +0200307 * memory via JTAG, etc:
Rob Clarkbf192732017-10-10 08:23:06 -0400308 */
309 if (!device_path && !image_path) {
310 printf("WARNING: using memory device/image path, this may confuse some payloads!\n");
311 /* actual addresses filled in after efi_load_pe() */
Heinrich Schuchardt0a76ba62018-12-26 22:23:00 +0100312 memdp = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Rob Clarkbf192732017-10-10 08:23:06 -0400313 device_path = image_path = memdp;
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200314 /*
315 * Grub expects that the device path of the loaded image is
316 * installed on a handle.
317 */
318 ret = efi_create_handle(&mem_handle);
319 if (ret != EFI_SUCCESS)
Simon Glass5e2f0392018-11-25 20:14:39 -0700320 return ret; /* TODO: leaks device_path */
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200321 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
Alexander Graf58bc69d2018-06-12 10:21:16 +0200322 device_path);
323 if (ret != EFI_SUCCESS)
Simon Glass5e2f0392018-11-25 20:14:39 -0700324 goto err_add_protocol;
Rob Clarkbf192732017-10-10 08:23:06 -0400325 } else {
326 assert(device_path && image_path);
327 }
328
Simon Glassf4f0f7c2018-11-25 20:14:38 -0700329 ret = bootefi_run_prepare("bootargs", device_path, image_path,
330 &image_obj, &loaded_image_info);
331 if (ret)
Simon Glass5e2f0392018-11-25 20:14:39 -0700332 goto err_prepare;
Rob Clark95c55532017-09-13 18:05:33 -0400333
Alexander Grafb9939332016-03-10 00:27:20 +0100334 /* Load the EFI payload */
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +0200335 entry = efi_load_pe(image_obj, efi, loaded_image_info);
Rob Clark95c55532017-09-13 18:05:33 -0400336 if (!entry) {
Heinrich Schuchardt45204b12018-03-03 15:29:01 +0100337 ret = EFI_LOAD_ERROR;
Simon Glass5e2f0392018-11-25 20:14:39 -0700338 goto err_prepare;
Rob Clark95c55532017-09-13 18:05:33 -0400339 }
Alexander Graf80a48002016-08-16 21:08:45 +0200340
Rob Clarkbf192732017-10-10 08:23:06 -0400341 if (memdp) {
342 struct efi_device_path_memory *mdp = (void *)memdp;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200343 mdp->memory_type = loaded_image_info->image_code_type;
344 mdp->start_address = (uintptr_t)loaded_image_info->image_base;
Rob Clarkbf192732017-10-10 08:23:06 -0400345 mdp->end_address = mdp->start_address +
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200346 loaded_image_info->image_size;
Rob Clarkbf192732017-10-10 08:23:06 -0400347 }
348
Rob Clarkad644e72017-09-13 18:05:37 -0400349 /* we don't support much: */
350 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
351 "{ro,boot}(blob)0000000000000000");
352
Alexander Grafb9939332016-03-10 00:27:20 +0100353 /* Call our payload! */
Heinrich Schuchardtc6d876f2018-12-28 12:41:14 +0100354 debug("%s: Jumping to 0x%p\n", __func__, entry);
Alexander Grafa86aeaf2016-05-20 23:28:23 +0200355
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +0200356 if (setjmp(&image_obj->exit_jmp)) {
357 ret = image_obj->exit_status;
Simon Glass5e2f0392018-11-25 20:14:39 -0700358 goto err_prepare;
Alexander Grafa86aeaf2016-05-20 23:28:23 +0200359 }
360
Alexander Graf69bd4592016-11-17 01:02:58 +0100361#ifdef CONFIG_ARM64
362 /* On AArch64 we need to make sure we call our payload in < EL3 */
363 if (current_el() == 3) {
364 smp_kick_all_cpus();
365 dcache_disable(); /* flush cache before switch to EL2 */
Alison Wangec6617c2016-11-10 10:49:03 +0800366
367 /* Move into EL2 and keep running there */
Heinrich Schuchardtea54ad52017-11-26 14:05:22 +0100368 armv8_switch_to_el2((ulong)entry,
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200369 (ulong)&image_obj->header,
Alison Wang7c5e1fe2017-01-17 09:39:17 +0800370 (ulong)&systab, 0, (ulong)efi_run_in_el2,
Alison Wangec6617c2016-11-10 10:49:03 +0800371 ES_TO_AARCH64);
372
373 /* Should never reach here, efi exits with longjmp */
374 while (1) { }
Alexander Graf69bd4592016-11-17 01:02:58 +0100375 }
376#endif
377
Mark Kettenisdc500c32018-06-15 23:47:12 +0200378#ifdef CONFIG_ARMV7_NONSEC
Mark Kettenisf17f2002018-06-15 23:47:13 +0200379 if (armv7_boot_nonsec() && !is_nonsec) {
Mark Kettenisdc500c32018-06-15 23:47:12 +0200380 dcache_disable(); /* flush cache before switch to HYP */
381
382 armv7_init_nonsec();
383 secure_ram_addr(_do_nonsec_entry)(
384 efi_run_in_hyp,
385 (uintptr_t)entry,
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200386 (uintptr_t)&image_obj->header,
Mark Kettenisdc500c32018-06-15 23:47:12 +0200387 (uintptr_t)&systab);
388
389 /* Should never reach here, efi exits with longjmp */
390 while (1) { }
391 }
392#endif
393
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200394 ret = efi_do_enter(&image_obj->header, &systab, entry);
Rob Clark95c55532017-09-13 18:05:33 -0400395
Simon Glass5e2f0392018-11-25 20:14:39 -0700396err_prepare:
Rob Clark95c55532017-09-13 18:05:33 -0400397 /* image has returned, loaded-image obj goes *poof*: */
Simon Glass5e2f0392018-11-25 20:14:39 -0700398 bootefi_run_finish(image_obj, loaded_image_info);
399
400err_add_protocol:
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200401 if (mem_handle)
402 efi_delete_handle(mem_handle);
Rob Clark95c55532017-09-13 18:05:33 -0400403
404 return ret;
Alexander Grafb9939332016-03-10 00:27:20 +0100405}
406
Simon Glassd9717ea2018-11-25 20:14:37 -0700407#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
408/**
409 * bootefi_test_prepare() - prepare to run an EFI test
410 *
411 * This sets things up so we can call EFI functions. This involves preparing
412 * the 'gd' pointer and setting up the load ed image data structures.
413 *
414 * @image_objp: loaded_image_infop: Pointer to a struct which will hold the
415 * loaded image object. This struct will be inited by this function before
416 * use.
417 * @loaded_image_infop: Pointer to a struct which will hold the loaded image
418 * info. This struct will be inited by this function before use.
419 * @path: File path to the test being run (often just the test name with a
420 * backslash before it
421 * @test_func: Address of the test function that is being run
Simon Glassf4f0f7c2018-11-25 20:14:38 -0700422 * @load_options_path: U-Boot environment variable to use as load options
Simon Glassd9717ea2018-11-25 20:14:37 -0700423 * @return 0 if OK, -ve on error
424 */
425static efi_status_t bootefi_test_prepare
426 (struct efi_loaded_image_obj **image_objp,
Simon Glassf4f0f7c2018-11-25 20:14:38 -0700427 struct efi_loaded_image **loaded_image_infop, const char *path,
428 ulong test_func, const char *load_options_path)
Simon Glassd9717ea2018-11-25 20:14:37 -0700429{
Simon Glassd9717ea2018-11-25 20:14:37 -0700430 /* Construct a dummy device path */
431 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
432 (uintptr_t)test_func,
433 (uintptr_t)test_func);
434 if (!bootefi_device_path)
435 return EFI_OUT_OF_RESOURCES;
436 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
437 if (!bootefi_image_path)
438 return EFI_OUT_OF_RESOURCES;
Simon Glassd9717ea2018-11-25 20:14:37 -0700439
Simon Glassf4f0f7c2018-11-25 20:14:38 -0700440 return bootefi_run_prepare(load_options_path, bootefi_device_path,
441 bootefi_image_path, image_objp,
442 loaded_image_infop);
Simon Glassd9717ea2018-11-25 20:14:37 -0700443}
444
Simon Glassd9717ea2018-11-25 20:14:37 -0700445#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
446
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100447static int do_bootefi_bootmgr_exec(void)
Rob Clark9975fe92017-09-13 18:05:38 -0400448{
449 struct efi_device_path *device_path, *file_path;
450 void *addr;
451 efi_status_t r;
452
Rob Clark9975fe92017-09-13 18:05:38 -0400453 addr = efi_bootmgr_load(&device_path, &file_path);
454 if (!addr)
455 return 1;
456
457 printf("## Starting EFI application at %p ...\n", addr);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100458 r = do_bootefi_exec(addr, device_path, file_path);
Rob Clark9975fe92017-09-13 18:05:38 -0400459 printf("## Application terminated, r = %lu\n",
460 r & ~EFI_ERROR_MASK);
461
462 if (r != EFI_SUCCESS)
463 return 1;
464
465 return 0;
466}
467
Alexander Grafb9939332016-03-10 00:27:20 +0100468/* Interpreter command to boot an arbitrary EFI image from memory */
469static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
470{
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100471 unsigned long addr;
472 char *saddr;
Heinrich Schuchardt3eb08412017-10-18 18:13:08 +0200473 efi_status_t r;
Alexander Graf354264b2018-06-18 17:22:58 +0200474 unsigned long fdt_addr;
Alexander Grafb9939332016-03-10 00:27:20 +0100475
Heinrich Schuchardtc3b11de2018-04-03 21:59:32 +0200476 /* Allow unaligned memory access */
477 allow_unaligned();
478
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +0100479 /* Initialize EFI drivers */
480 r = efi_init_obj_list();
481 if (r != EFI_SUCCESS) {
482 printf("Error: Cannot set up EFI drivers, r = %lu\n",
483 r & ~EFI_ERROR_MASK);
484 return CMD_RET_FAILURE;
485 }
486
Alexander Grafb9939332016-03-10 00:27:20 +0100487 if (argc < 2)
Bin Meng3c1dcef2016-08-13 04:02:06 -0700488 return CMD_RET_USAGE;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100489
490 if (argc > 2) {
Alexander Graf354264b2018-06-18 17:22:58 +0200491 fdt_addr = simple_strtoul(argv[2], NULL, 16);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100492 if (!fdt_addr && *argv[2] != '0')
493 return CMD_RET_USAGE;
494 /* Install device tree */
Simon Glass9dff4902018-08-08 03:54:30 -0600495 r = efi_install_fdt(fdt_addr);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100496 if (r != EFI_SUCCESS) {
497 printf("ERROR: failed to install device tree\n");
498 return CMD_RET_FAILURE;
499 }
500 } else {
501 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
502 efi_install_configuration_table(&efi_guid_fdt, NULL);
503 printf("WARNING: booting without device tree\n");
504 }
Simon Glassc7ae3df2016-11-07 08:47:08 -0700505#ifdef CONFIG_CMD_BOOTEFI_HELLO
506 if (!strcmp(argv[1], "hello")) {
Heinrich Schuchardt5e444892017-09-05 03:19:37 +0200507 ulong size = __efi_helloworld_end - __efi_helloworld_begin;
Alexander Grafb9939332016-03-10 00:27:20 +0100508
Heinrich Schuchardt51c533f2017-08-28 18:54:30 +0200509 saddr = env_get("loadaddr");
510 if (saddr)
511 addr = simple_strtoul(saddr, NULL, 16);
512 else
513 addr = CONFIG_SYS_LOAD_ADDR;
Alexander Graf354264b2018-06-18 17:22:58 +0200514 memcpy(map_sysmem(addr, size), __efi_helloworld_begin, size);
Simon Glassc7ae3df2016-11-07 08:47:08 -0700515 } else
516#endif
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200517#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
518 if (!strcmp(argv[1], "selftest")) {
Heinrich Schuchardtfaea1042018-09-26 05:27:54 +0200519 struct efi_loaded_image_obj *image_obj;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200520 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardt7aca68c2017-09-20 22:54:58 +0200521
Simon Glassd9717ea2018-11-25 20:14:37 -0700522 if (bootefi_test_prepare(&image_obj, &loaded_image_info,
Simon Glassf4f0f7c2018-11-25 20:14:38 -0700523 "\\selftest", (uintptr_t)&efi_selftest,
524 "efi_selftest"))
Simon Glass2ab7ef72018-11-25 20:14:36 -0700525 return CMD_RET_FAILURE;
526
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200527 /* Execute the test */
Heinrich Schuchardtd39646a2018-09-26 05:27:56 +0200528 r = efi_selftest(&image_obj->header, &systab);
Simon Glass5e2f0392018-11-25 20:14:39 -0700529 bootefi_run_finish(image_obj, loaded_image_info);
Heinrich Schuchardtc2b53902017-10-18 18:13:14 +0200530 return r != EFI_SUCCESS;
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200531 } else
532#endif
Rob Clark9975fe92017-09-13 18:05:38 -0400533 if (!strcmp(argv[1], "bootmgr")) {
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100534 return do_bootefi_bootmgr_exec();
Rob Clark9975fe92017-09-13 18:05:38 -0400535 } else {
Simon Glassc7ae3df2016-11-07 08:47:08 -0700536 saddr = argv[1];
Alexander Grafb9939332016-03-10 00:27:20 +0100537
Simon Glassc7ae3df2016-11-07 08:47:08 -0700538 addr = simple_strtoul(saddr, NULL, 16);
Heinrich Schuchardt49db1cb2018-01-24 20:33:54 +0100539 /* Check that a numeric value was passed */
540 if (!addr && *saddr != '0')
541 return CMD_RET_USAGE;
Simon Glassc7ae3df2016-11-07 08:47:08 -0700542
Alexander Graf1c398092016-04-14 16:07:53 +0200543 }
544
Simon Glass5ee31ba2016-11-07 08:47:05 -0700545 printf("## Starting EFI application at %08lx ...\n", addr);
Alexander Graf354264b2018-06-18 17:22:58 +0200546 r = do_bootefi_exec(map_sysmem(addr, 0), bootefi_device_path,
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100547 bootefi_image_path);
xypron.glpk@gmx.de1da1bac2017-07-04 23:15:23 +0200548 printf("## Application terminated, r = %lu\n",
549 r & ~EFI_ERROR_MASK);
Alexander Grafb9939332016-03-10 00:27:20 +0100550
xypron.glpk@gmx.de1da1bac2017-07-04 23:15:23 +0200551 if (r != EFI_SUCCESS)
552 return 1;
553 else
554 return 0;
Alexander Grafb9939332016-03-10 00:27:20 +0100555}
556
557#ifdef CONFIG_SYS_LONGHELP
558static char bootefi_help_text[] =
Alexander Graf1c398092016-04-14 16:07:53 +0200559 "<image address> [fdt address]\n"
560 " - boot EFI payload stored at address <image address>.\n"
561 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700562 " exposed as EFI configuration table.\n"
563#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200564 "bootefi hello\n"
565 " - boot a sample Hello World application stored within U-Boot\n"
566#endif
567#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100568 "bootefi selftest [fdt address]\n"
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200569 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200570 " Use environment variable efi_selftest to select a single test.\n"
571 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700572#endif
Heinrich Schuchardtf623e072018-01-30 19:47:43 +0100573 "bootefi bootmgr [fdt addr]\n"
Rob Clark9975fe92017-09-13 18:05:38 -0400574 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
575 "\n"
576 " If specified, the device tree located at <fdt address> gets\n"
577 " exposed as EFI configuration table.\n";
Alexander Grafb9939332016-03-10 00:27:20 +0100578#endif
579
580U_BOOT_CMD(
Alexander Graf1c398092016-04-14 16:07:53 +0200581 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700582 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100583 bootefi_help_text
584);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100585
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200586void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100587{
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900588 struct efi_device_path *device, *image;
589 efi_status_t ret;
Alexander Graf0f4060e2016-03-04 01:10:14 +0100590
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200591 /* efi_set_bootdev is typically called repeatedly, recover memory */
592 efi_free_pool(bootefi_device_path);
593 efi_free_pool(bootefi_image_path);
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200594
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900595 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
596 if (ret == EFI_SUCCESS) {
597 bootefi_device_path = device;
598 bootefi_image_path = image;
Rob Clark95c55532017-09-13 18:05:33 -0400599 } else {
AKASHI Takahirof1589ff2018-10-17 16:32:03 +0900600 bootefi_device_path = NULL;
601 bootefi_image_path = NULL;
Alexander Graff9d334b2016-08-05 14:49:53 +0200602 }
Alexander Graf0f4060e2016-03-04 01:10:14 +0100603}