blob: 82d755ceb31d88f98d0ccdcf43c13fa22e4e05ce [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
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010031#define OBJ_LIST_NOT_INITIALIZED 1
32
33static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020034
Rob Clark95c55532017-09-13 18:05:33 -040035static struct efi_device_path *bootefi_image_path;
36static struct efi_device_path *bootefi_device_path;
Alexander Grafb9939332016-03-10 00:27:20 +010037
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020038/* Initialize and populate EFI object list */
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010039efi_status_t efi_init_obj_list(void)
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020040{
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010041 efi_status_t ret = EFI_SUCCESS;
42
Heinrich Schuchardt098a6cd2018-03-03 15:28:58 +010043 /* Initialize once only */
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010044 if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED)
45 return efi_obj_list_initialized;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020046
Heinrich Schuchardt640adad2018-06-28 12:45:31 +020047 /* Initialize system table */
48 ret = efi_initialize_system_table();
49 if (ret != EFI_SUCCESS)
50 goto out;
51
Heinrich Schuchardt4e6b5d62018-09-20 21:58:23 +020052 /* Initialize root node */
53 ret = efi_root_node_register();
54 if (ret != EFI_SUCCESS)
55 goto out;
56
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +010057 /* Initialize EFI driver uclass */
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010058 ret = efi_driver_init();
59 if (ret != EFI_SUCCESS)
60 goto out;
Heinrich Schuchardt05ef48a2018-01-21 19:29:30 +010061
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010062 ret = efi_console_register();
63 if (ret != EFI_SUCCESS)
64 goto out;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020065#ifdef CONFIG_PARTITIONS
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010066 ret = efi_disk_register();
67 if (ret != EFI_SUCCESS)
68 goto out;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020069#endif
70#if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010071 ret = efi_gop_register();
72 if (ret != EFI_SUCCESS)
73 goto out;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020074#endif
Joe Hershberger092f2f32018-04-13 15:26:39 -050075#ifdef CONFIG_NET
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010076 ret = efi_net_register();
77 if (ret != EFI_SUCCESS)
78 goto out;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020079#endif
Bin Meng86df34d2018-06-27 20:38:03 -070080#ifdef CONFIG_GENERATE_ACPI_TABLE
81 ret = efi_acpi_register();
82 if (ret != EFI_SUCCESS)
83 goto out;
84#endif
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020085#ifdef CONFIG_GENERATE_SMBIOS_TABLE
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010086 ret = efi_smbios_register();
87 if (ret != EFI_SUCCESS)
88 goto out;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020089#endif
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010090 ret = efi_watchdog_register();
91 if (ret != EFI_SUCCESS)
92 goto out;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +020093
94 /* Initialize EFI runtime services */
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010095 ret = efi_reset_system_init();
96 if (ret != EFI_SUCCESS)
97 goto out;
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +010098
99out:
100 efi_obj_list_initialized = ret;
101 return ret;
Heinrich Schuchardt7cbc1242017-07-19 19:37:22 +0200102}
103
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200104/*
Heinrich Schuchardtc3b11de2018-04-03 21:59:32 +0200105 * Allow unaligned memory access.
106 *
107 * This routine is overridden by architectures providing this feature.
108 */
109void __weak allow_unaligned(void)
110{
111}
112
113/*
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200114 * Set the load options of an image from an environment variable.
115 *
116 * @loaded_image_info: the image
117 * @env_var: name of the environment variable
118 */
119static void set_load_options(struct efi_loaded_image *loaded_image_info,
120 const char *env_var)
121{
122 size_t size;
123 const char *env = env_get(env_var);
Heinrich Schuchardt7086a712018-08-31 21:31:33 +0200124 u16 *pos;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200125
126 loaded_image_info->load_options = NULL;
127 loaded_image_info->load_options_size = 0;
128 if (!env)
129 return;
Heinrich Schuchardt7086a712018-08-31 21:31:33 +0200130 size = utf8_utf16_strlen(env) + 1;
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200131 loaded_image_info->load_options = calloc(size, sizeof(u16));
132 if (!loaded_image_info->load_options) {
133 printf("ERROR: Out of memory\n");
134 return;
135 }
Heinrich Schuchardt7086a712018-08-31 21:31:33 +0200136 pos = loaded_image_info->load_options;
137 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200138 loaded_image_info->load_options_size = size * 2;
139}
140
Simon Glass9dff4902018-08-08 03:54:30 -0600141/**
142 * copy_fdt() - Copy the device tree to a new location available to EFI
143 *
144 * The FDT is relocated into a suitable location within the EFI memory map.
145 * An additional 12KB is added to the space in case the device tree needs to be
146 * expanded later with fdt_open_into().
147 *
148 * @fdt_addr: On entry, address of start of FDT. On exit, address of relocated
149 * FDT start
150 * @fdt_sizep: Returns new size of FDT, including
151 * @return new relocated address of FDT
152 */
153static efi_status_t copy_fdt(ulong *fdt_addrp, ulong *fdt_sizep)
Alexander Graf0d9d5012016-04-11 16:55:26 +0200154{
Alexander Grafad0c1a32016-04-11 23:51:01 +0200155 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass9dff4902018-08-08 03:54:30 -0600156 efi_status_t ret = 0;
157 void *fdt, *new_fdt;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200158 u64 new_fdt_addr;
Simon Glass9dff4902018-08-08 03:54:30 -0600159 uint fdt_size;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200160 int i;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200161
Simon Glass9dff4902018-08-08 03:54:30 -0600162 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
163 u64 ram_start = gd->bd->bi_dram[i].start;
164 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200165
Alexander Grafad0c1a32016-04-11 23:51:01 +0200166 if (!ram_size)
167 continue;
168
169 if (ram_start < fdt_ram_start)
170 fdt_ram_start = ram_start;
171 }
172
Simon Glassbc9a6382018-06-18 08:08:25 -0600173 /*
174 * Give us at least 4KB of breathing room in case the device tree needs
175 * to be expanded later. Round up to the nearest EFI page boundary.
176 */
Simon Glass9dff4902018-08-08 03:54:30 -0600177 fdt = map_sysmem(*fdt_addrp, 0);
178 fdt_size = fdt_totalsize(fdt);
179 fdt_size += 4096 * 3;
Simon Glassbc9a6382018-06-18 08:08:25 -0600180 fdt_size = ALIGN(fdt_size + EFI_PAGE_SIZE - 1, EFI_PAGE_SIZE);
Alexander Grafad0c1a32016-04-11 23:51:01 +0200181 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
182
Simon Glassbaf70c02018-08-08 03:54:29 -0600183 /* Safe fdt location is at 127MB */
184 new_fdt_addr = fdt_ram_start + (127 * 1024 * 1024) + fdt_size;
Simon Glass9dff4902018-08-08 03:54:30 -0600185 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
186 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
187 &new_fdt_addr);
188 if (ret != EFI_SUCCESS) {
Alexander Grafad0c1a32016-04-11 23:51:01 +0200189 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.dea44bffc2017-08-11 21:19:25 +0200190 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass9dff4902018-08-08 03:54:30 -0600191 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
192 EFI_RUNTIME_SERVICES_DATA, fdt_pages,
193 &new_fdt_addr);
194 if (ret != EFI_SUCCESS) {
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200195 printf("ERROR: Failed to reserve space for FDT\n");
Simon Glass9dff4902018-08-08 03:54:30 -0600196 goto done;
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200197 }
Alexander Grafad0c1a32016-04-11 23:51:01 +0200198 }
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200199
Simon Glass9dff4902018-08-08 03:54:30 -0600200 new_fdt = map_sysmem(new_fdt_addr, fdt_size);
Alexander Graf0d9d5012016-04-11 16:55:26 +0200201 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
202 fdt_set_totalsize(new_fdt, fdt_size);
203
Simon Glass9dff4902018-08-08 03:54:30 -0600204 *fdt_addrp = new_fdt_addr;
205 *fdt_sizep = fdt_size;
206done:
207 return ret;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200208}
209
Heinrich Schuchardt3eb08412017-10-18 18:13:08 +0200210static efi_status_t efi_do_enter(
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100211 efi_handle_t image_handle, struct efi_system_table *st,
Alexander Grafc6fa5df2018-01-24 00:18:08 +0100212 EFIAPI efi_status_t (*entry)(
213 efi_handle_t image_handle,
214 struct efi_system_table *st))
xypron.glpk@gmx.deb06d8ac2017-07-04 23:15:21 +0200215{
216 efi_status_t ret = EFI_LOAD_ERROR;
217
218 if (entry)
219 ret = entry(image_handle, st);
220 st->boottime->exit(image_handle, ret, 0, NULL);
221 return ret;
222}
223
Alison Wangec6617c2016-11-10 10:49:03 +0800224#ifdef CONFIG_ARM64
Alexander Grafc6fa5df2018-01-24 00:18:08 +0100225static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)(
Heinrich Schuchardt2074f702018-01-11 08:16:09 +0100226 efi_handle_t image_handle, struct efi_system_table *st),
227 efi_handle_t image_handle, struct efi_system_table *st)
Alison Wangec6617c2016-11-10 10:49:03 +0800228{
229 /* Enable caches again */
230 dcache_enable();
231
xypron.glpk@gmx.deb06d8ac2017-07-04 23:15:21 +0200232 return efi_do_enter(image_handle, st, entry);
Alison Wangec6617c2016-11-10 10:49:03 +0800233}
234#endif
235
Mark Kettenisdc500c32018-06-15 23:47:12 +0200236#ifdef CONFIG_ARMV7_NONSEC
Mark Kettenisf17f2002018-06-15 23:47:13 +0200237static bool is_nonsec;
238
Mark Kettenisdc500c32018-06-15 23:47:12 +0200239static efi_status_t efi_run_in_hyp(EFIAPI efi_status_t (*entry)(
240 efi_handle_t image_handle, struct efi_system_table *st),
241 efi_handle_t image_handle, struct efi_system_table *st)
242{
243 /* Enable caches again */
244 dcache_enable();
245
Mark Kettenisf17f2002018-06-15 23:47:13 +0200246 is_nonsec = true;
247
Mark Kettenisdc500c32018-06-15 23:47:12 +0200248 return efi_do_enter(image_handle, st, entry);
249}
250#endif
251
Simon Glass416e07e2018-06-18 08:08:28 -0600252/*
253 * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges
254 *
255 * The mem_rsv entries of the FDT are added to the memory map. Any failures are
256 * ignored because this is not critical and we would rather continue to try to
257 * boot.
258 *
259 * @fdt: Pointer to device tree
260 */
261static void efi_carve_out_dt_rsv(void *fdt)
Alexander Graf806d2fa2018-04-06 09:40:51 +0200262{
263 int nr_rsv, i;
264 uint64_t addr, size, pages;
265
266 nr_rsv = fdt_num_mem_rsv(fdt);
267
268 /* Look for an existing entry and add it to the efi mem map. */
269 for (i = 0; i < nr_rsv; i++) {
270 if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0)
271 continue;
272
273 pages = ALIGN(size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT;
Simon Glass416e07e2018-06-18 08:08:28 -0600274 if (!efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE,
275 false))
276 printf("FDT memrsv map %d: Failed to add to map\n", i);
Alexander Graf806d2fa2018-04-06 09:40:51 +0200277 }
Alexander Graf806d2fa2018-04-06 09:40:51 +0200278}
279
Simon Glass9dff4902018-08-08 03:54:30 -0600280static efi_status_t efi_install_fdt(ulong fdt_addr)
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100281{
282 bootm_headers_t img = { 0 };
Simon Glass9dff4902018-08-08 03:54:30 -0600283 ulong fdt_pages, fdt_size, fdt_start;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100284 efi_status_t ret;
Simon Glass9dff4902018-08-08 03:54:30 -0600285 void *fdt;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100286
Simon Glass9dff4902018-08-08 03:54:30 -0600287 fdt = map_sysmem(fdt_addr, 0);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100288 if (fdt_check_header(fdt)) {
289 printf("ERROR: invalid device tree\n");
290 return EFI_INVALID_PARAMETER;
291 }
292
293 /* Prepare fdt for payload */
Simon Glass9dff4902018-08-08 03:54:30 -0600294 ret = copy_fdt(&fdt_addr, &fdt_size);
295 if (ret)
296 return ret;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100297
Simon Glass9dff4902018-08-08 03:54:30 -0600298 unmap_sysmem(fdt);
299 fdt = map_sysmem(fdt_addr, 0);
300 fdt_size = fdt_totalsize(fdt);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100301 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
302 printf("ERROR: failed to process device tree\n");
303 return EFI_LOAD_ERROR;
304 }
305
Simon Glass416e07e2018-06-18 08:08:28 -0600306 efi_carve_out_dt_rsv(fdt);
Alexander Graf806d2fa2018-04-06 09:40:51 +0200307
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100308 /* Link to it in the efi tables */
309 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
310 if (ret != EFI_SUCCESS)
311 return EFI_OUT_OF_RESOURCES;
312
313 /* And reserve the space in the memory map */
Simon Glass9dff4902018-08-08 03:54:30 -0600314 fdt_start = fdt_addr;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100315 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
Simon Glass9dff4902018-08-08 03:54:30 -0600316
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100317 ret = efi_add_memory_map(fdt_start, fdt_pages,
318 EFI_BOOT_SERVICES_DATA, true);
Simon Glass9dff4902018-08-08 03:54:30 -0600319
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100320 return ret;
321}
322
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200323/**
324 * do_bootefi_exec() - execute EFI binary
325 *
326 * @efi: address of the binary
327 * @device_path: path of the device from which the binary was loaded
328 * @image_path: device path of the binary
329 * Return: status code
330 *
331 * Load the EFI binary into a newly assigned memory unwinding the relocation
332 * information, install the loaded image protocol, and call the binary.
Alexander Grafb9939332016-03-10 00:27:20 +0100333 */
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100334static efi_status_t do_bootefi_exec(void *efi,
Heinrich Schuchardt3eb08412017-10-18 18:13:08 +0200335 struct efi_device_path *device_path,
336 struct efi_device_path *image_path)
Alexander Grafb9939332016-03-10 00:27:20 +0100337{
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200338 efi_handle_t mem_handle = NULL;
Rob Clarkbf192732017-10-10 08:23:06 -0400339 struct efi_device_path *memdp = NULL;
Heinrich Schuchardt45204b12018-03-03 15:29:01 +0100340 efi_status_t ret;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200341 struct efi_loaded_image_obj *image_handle = NULL;
342 struct efi_loaded_image *loaded_image_info = NULL;
Rob Clark95c55532017-09-13 18:05:33 -0400343
Alexander Grafc6fa5df2018-01-24 00:18:08 +0100344 EFIAPI efi_status_t (*entry)(efi_handle_t image_handle,
345 struct efi_system_table *st);
Alexander Grafb9939332016-03-10 00:27:20 +0100346
Rob Clarkbf192732017-10-10 08:23:06 -0400347 /*
348 * Special case for efi payload not loaded from disk, such as
349 * 'bootefi hello' or for example payload loaded directly into
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200350 * memory via jtag, etc:
Rob Clarkbf192732017-10-10 08:23:06 -0400351 */
352 if (!device_path && !image_path) {
353 printf("WARNING: using memory device/image path, this may confuse some payloads!\n");
354 /* actual addresses filled in after efi_load_pe() */
355 memdp = efi_dp_from_mem(0, 0, 0);
356 device_path = image_path = memdp;
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200357 /*
358 * Grub expects that the device path of the loaded image is
359 * installed on a handle.
360 */
361 ret = efi_create_handle(&mem_handle);
362 if (ret != EFI_SUCCESS)
363 goto exit;
364 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
Alexander Graf58bc69d2018-06-12 10:21:16 +0200365 device_path);
366 if (ret != EFI_SUCCESS)
367 goto exit;
Rob Clarkbf192732017-10-10 08:23:06 -0400368 } else {
369 assert(device_path && image_path);
370 }
371
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200372 ret = efi_setup_loaded_image(device_path, image_path, &image_handle,
373 &loaded_image_info);
374 if (ret != EFI_SUCCESS)
375 goto exit;
Rob Clark95c55532017-09-13 18:05:33 -0400376
Alexander Grafb9939332016-03-10 00:27:20 +0100377 /*
378 * gd lives in a fixed register which may get clobbered while we execute
379 * the payload. So save it here and restore it on every callback entry
380 */
381 efi_save_gd();
382
Heinrich Schuchardtb57f48a2017-10-18 18:13:15 +0200383 /* Transfer environment variable bootargs as load options */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200384 set_load_options(loaded_image_info, "bootargs");
Alexander Grafb9939332016-03-10 00:27:20 +0100385 /* Load the EFI payload */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200386 entry = efi_load_pe(image_handle, efi, loaded_image_info);
Rob Clark95c55532017-09-13 18:05:33 -0400387 if (!entry) {
Heinrich Schuchardt45204b12018-03-03 15:29:01 +0100388 ret = EFI_LOAD_ERROR;
Rob Clark95c55532017-09-13 18:05:33 -0400389 goto exit;
390 }
Alexander Graf80a48002016-08-16 21:08:45 +0200391
Rob Clarkbf192732017-10-10 08:23:06 -0400392 if (memdp) {
393 struct efi_device_path_memory *mdp = (void *)memdp;
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200394 mdp->memory_type = loaded_image_info->image_code_type;
395 mdp->start_address = (uintptr_t)loaded_image_info->image_base;
Rob Clarkbf192732017-10-10 08:23:06 -0400396 mdp->end_address = mdp->start_address +
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200397 loaded_image_info->image_size;
Rob Clarkbf192732017-10-10 08:23:06 -0400398 }
399
Rob Clarkad644e72017-09-13 18:05:37 -0400400 /* we don't support much: */
401 env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported",
402 "{ro,boot}(blob)0000000000000000");
403
Alexander Grafb9939332016-03-10 00:27:20 +0100404 /* Call our payload! */
Alexander Grafedcef3b2016-06-02 11:38:27 +0200405 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
Alexander Grafa86aeaf2016-05-20 23:28:23 +0200406
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200407 if (setjmp(&image_handle->exit_jmp)) {
408 ret = image_handle->exit_status;
Rob Clark95c55532017-09-13 18:05:33 -0400409 goto exit;
Alexander Grafa86aeaf2016-05-20 23:28:23 +0200410 }
411
Alexander Graf69bd4592016-11-17 01:02:58 +0100412#ifdef CONFIG_ARM64
413 /* On AArch64 we need to make sure we call our payload in < EL3 */
414 if (current_el() == 3) {
415 smp_kick_all_cpus();
416 dcache_disable(); /* flush cache before switch to EL2 */
Alison Wangec6617c2016-11-10 10:49:03 +0800417
418 /* Move into EL2 and keep running there */
Heinrich Schuchardtea54ad52017-11-26 14:05:22 +0100419 armv8_switch_to_el2((ulong)entry,
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200420 (ulong)image_handle,
Alison Wang7c5e1fe2017-01-17 09:39:17 +0800421 (ulong)&systab, 0, (ulong)efi_run_in_el2,
Alison Wangec6617c2016-11-10 10:49:03 +0800422 ES_TO_AARCH64);
423
424 /* Should never reach here, efi exits with longjmp */
425 while (1) { }
Alexander Graf69bd4592016-11-17 01:02:58 +0100426 }
427#endif
428
Mark Kettenisdc500c32018-06-15 23:47:12 +0200429#ifdef CONFIG_ARMV7_NONSEC
Mark Kettenisf17f2002018-06-15 23:47:13 +0200430 if (armv7_boot_nonsec() && !is_nonsec) {
Mark Kettenisdc500c32018-06-15 23:47:12 +0200431 dcache_disable(); /* flush cache before switch to HYP */
432
433 armv7_init_nonsec();
434 secure_ram_addr(_do_nonsec_entry)(
435 efi_run_in_hyp,
436 (uintptr_t)entry,
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200437 (uintptr_t)image_handle,
Mark Kettenisdc500c32018-06-15 23:47:12 +0200438 (uintptr_t)&systab);
439
440 /* Should never reach here, efi exits with longjmp */
441 while (1) { }
442 }
443#endif
444
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200445 ret = efi_do_enter(image_handle, &systab, entry);
Rob Clark95c55532017-09-13 18:05:33 -0400446
447exit:
448 /* image has returned, loaded-image obj goes *poof*: */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200449 if (image_handle)
450 efi_delete_handle(&image_handle->parent);
Heinrich Schuchardt8887acc2018-09-16 07:19:48 +0200451 if (mem_handle)
452 efi_delete_handle(mem_handle);
Rob Clark95c55532017-09-13 18:05:33 -0400453
454 return ret;
Alexander Grafb9939332016-03-10 00:27:20 +0100455}
456
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100457static int do_bootefi_bootmgr_exec(void)
Rob Clark9975fe92017-09-13 18:05:38 -0400458{
459 struct efi_device_path *device_path, *file_path;
460 void *addr;
461 efi_status_t r;
462
Rob Clark9975fe92017-09-13 18:05:38 -0400463 /*
464 * gd lives in a fixed register which may get clobbered while we execute
465 * the payload. So save it here and restore it on every callback entry
466 */
467 efi_save_gd();
468
469 addr = efi_bootmgr_load(&device_path, &file_path);
470 if (!addr)
471 return 1;
472
473 printf("## Starting EFI application at %p ...\n", addr);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100474 r = do_bootefi_exec(addr, device_path, file_path);
Rob Clark9975fe92017-09-13 18:05:38 -0400475 printf("## Application terminated, r = %lu\n",
476 r & ~EFI_ERROR_MASK);
477
478 if (r != EFI_SUCCESS)
479 return 1;
480
481 return 0;
482}
483
Alexander Grafb9939332016-03-10 00:27:20 +0100484/* Interpreter command to boot an arbitrary EFI image from memory */
485static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
486{
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100487 unsigned long addr;
488 char *saddr;
Heinrich Schuchardt3eb08412017-10-18 18:13:08 +0200489 efi_status_t r;
Alexander Graf354264b2018-06-18 17:22:58 +0200490 unsigned long fdt_addr;
Alexander Grafb9939332016-03-10 00:27:20 +0100491
Heinrich Schuchardtc3b11de2018-04-03 21:59:32 +0200492 /* Allow unaligned memory access */
493 allow_unaligned();
494
Heinrich Schuchardtfc225e62018-03-03 15:29:02 +0100495 /* Initialize EFI drivers */
496 r = efi_init_obj_list();
497 if (r != EFI_SUCCESS) {
498 printf("Error: Cannot set up EFI drivers, r = %lu\n",
499 r & ~EFI_ERROR_MASK);
500 return CMD_RET_FAILURE;
501 }
502
Alexander Grafb9939332016-03-10 00:27:20 +0100503 if (argc < 2)
Bin Meng3c1dcef2016-08-13 04:02:06 -0700504 return CMD_RET_USAGE;
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100505
506 if (argc > 2) {
Alexander Graf354264b2018-06-18 17:22:58 +0200507 fdt_addr = simple_strtoul(argv[2], NULL, 16);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100508 if (!fdt_addr && *argv[2] != '0')
509 return CMD_RET_USAGE;
510 /* Install device tree */
Simon Glass9dff4902018-08-08 03:54:30 -0600511 r = efi_install_fdt(fdt_addr);
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100512 if (r != EFI_SUCCESS) {
513 printf("ERROR: failed to install device tree\n");
514 return CMD_RET_FAILURE;
515 }
516 } else {
517 /* Remove device tree. EFI_NOT_FOUND can be ignored here */
518 efi_install_configuration_table(&efi_guid_fdt, NULL);
519 printf("WARNING: booting without device tree\n");
520 }
Simon Glassc7ae3df2016-11-07 08:47:08 -0700521#ifdef CONFIG_CMD_BOOTEFI_HELLO
522 if (!strcmp(argv[1], "hello")) {
Heinrich Schuchardt5e444892017-09-05 03:19:37 +0200523 ulong size = __efi_helloworld_end - __efi_helloworld_begin;
Alexander Grafb9939332016-03-10 00:27:20 +0100524
Heinrich Schuchardt51c533f2017-08-28 18:54:30 +0200525 saddr = env_get("loadaddr");
526 if (saddr)
527 addr = simple_strtoul(saddr, NULL, 16);
528 else
529 addr = CONFIG_SYS_LOAD_ADDR;
Alexander Graf354264b2018-06-18 17:22:58 +0200530 memcpy(map_sysmem(addr, size), __efi_helloworld_begin, size);
Simon Glassc7ae3df2016-11-07 08:47:08 -0700531 } else
532#endif
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200533#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
534 if (!strcmp(argv[1], "selftest")) {
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200535 struct efi_loaded_image_obj *image_handle;
536 struct efi_loaded_image *loaded_image_info;
Heinrich Schuchardt7aca68c2017-09-20 22:54:58 +0200537
Heinrich Schuchardtf972dc12017-10-18 18:13:09 +0200538 /* Construct a dummy device path. */
539 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
540 (uintptr_t)&efi_selftest,
541 (uintptr_t)&efi_selftest);
542 bootefi_image_path = efi_dp_from_file(NULL, 0, "\\selftest");
543
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200544 r = efi_setup_loaded_image(bootefi_device_path,
545 bootefi_image_path, &image_handle,
546 &loaded_image_info);
547 if (r != EFI_SUCCESS)
548 return CMD_RET_FAILURE;
549
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200550 /*
551 * gd lives in a fixed register which may get clobbered while we
552 * execute the payload. So save it here and restore it on every
553 * callback entry
554 */
555 efi_save_gd();
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200556 /* Transfer environment variable efi_selftest as load options */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200557 set_load_options(loaded_image_info, "efi_selftest");
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200558 /* Execute the test */
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200559 r = efi_selftest(image_handle, &systab);
Heinrich Schuchardtc2b53902017-10-18 18:13:14 +0200560 efi_restore_gd();
Heinrich Schuchardtc9828742018-09-23 17:21:51 +0200561 free(loaded_image_info->load_options);
562 efi_delete_handle(&image_handle->parent);
Heinrich Schuchardtc2b53902017-10-18 18:13:14 +0200563 return r != EFI_SUCCESS;
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200564 } else
565#endif
Rob Clark9975fe92017-09-13 18:05:38 -0400566 if (!strcmp(argv[1], "bootmgr")) {
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100567 return do_bootefi_bootmgr_exec();
Rob Clark9975fe92017-09-13 18:05:38 -0400568 } else {
Simon Glassc7ae3df2016-11-07 08:47:08 -0700569 saddr = argv[1];
Alexander Grafb9939332016-03-10 00:27:20 +0100570
Simon Glassc7ae3df2016-11-07 08:47:08 -0700571 addr = simple_strtoul(saddr, NULL, 16);
Heinrich Schuchardt49db1cb2018-01-24 20:33:54 +0100572 /* Check that a numeric value was passed */
573 if (!addr && *saddr != '0')
574 return CMD_RET_USAGE;
Simon Glassc7ae3df2016-11-07 08:47:08 -0700575
Alexander Graf1c398092016-04-14 16:07:53 +0200576 }
577
Simon Glass5ee31ba2016-11-07 08:47:05 -0700578 printf("## Starting EFI application at %08lx ...\n", addr);
Alexander Graf354264b2018-06-18 17:22:58 +0200579 r = do_bootefi_exec(map_sysmem(addr, 0), bootefi_device_path,
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100580 bootefi_image_path);
xypron.glpk@gmx.de1da1bac2017-07-04 23:15:23 +0200581 printf("## Application terminated, r = %lu\n",
582 r & ~EFI_ERROR_MASK);
Alexander Grafb9939332016-03-10 00:27:20 +0100583
xypron.glpk@gmx.de1da1bac2017-07-04 23:15:23 +0200584 if (r != EFI_SUCCESS)
585 return 1;
586 else
587 return 0;
Alexander Grafb9939332016-03-10 00:27:20 +0100588}
589
590#ifdef CONFIG_SYS_LONGHELP
591static char bootefi_help_text[] =
Alexander Graf1c398092016-04-14 16:07:53 +0200592 "<image address> [fdt address]\n"
593 " - boot EFI payload stored at address <image address>.\n"
594 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700595 " exposed as EFI configuration table.\n"
596#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200597 "bootefi hello\n"
598 " - boot a sample Hello World application stored within U-Boot\n"
599#endif
600#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtbc4f9132018-03-03 15:29:03 +0100601 "bootefi selftest [fdt address]\n"
Heinrich Schuchardt623b3a52017-09-15 10:06:11 +0200602 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardtd78e40d2017-10-18 18:13:13 +0200603 " Use environment variable efi_selftest to select a single test.\n"
604 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700605#endif
Heinrich Schuchardtf623e072018-01-30 19:47:43 +0100606 "bootefi bootmgr [fdt addr]\n"
Rob Clark9975fe92017-09-13 18:05:38 -0400607 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
608 "\n"
609 " If specified, the device tree located at <fdt address> gets\n"
610 " exposed as EFI configuration table.\n";
Alexander Grafb9939332016-03-10 00:27:20 +0100611#endif
612
613U_BOOT_CMD(
Alexander Graf1c398092016-04-14 16:07:53 +0200614 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700615 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100616 bootefi_help_text
617);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100618
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200619void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100620{
Rob Clark95c55532017-09-13 18:05:33 -0400621 char filename[32] = { 0 }; /* dp->str is u16[32] long */
622 char *s;
Alexander Graf0f4060e2016-03-04 01:10:14 +0100623
Heinrich Schuchardt79276eb2018-09-16 07:20:21 +0200624 /* efi_set_bootdev is typically called repeatedly, recover memory */
625 efi_free_pool(bootefi_device_path);
626 efi_free_pool(bootefi_image_path);
627 /* If blk_get_device_part_str fails, avoid duplicate free. */
628 bootefi_device_path = NULL;
629 bootefi_image_path = NULL;
630
Rob Clark95c55532017-09-13 18:05:33 -0400631 if (strcmp(dev, "Net")) {
632 struct blk_desc *desc;
Heinrich Schuchardt2db1eba2018-04-03 22:40:55 +0200633 disk_partition_t fs_partition;
Rob Clark95c55532017-09-13 18:05:33 -0400634 int part;
635
Heinrich Schuchardt2db1eba2018-04-03 22:40:55 +0200636 part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition,
637 1);
638 if (part < 0)
Stefan Roese8300be62017-11-17 08:47:09 +0100639 return;
Rob Clark95c55532017-09-13 18:05:33 -0400640
641 bootefi_device_path = efi_dp_from_part(desc, part);
642 } else {
Joe Hershberger092f2f32018-04-13 15:26:39 -0500643#ifdef CONFIG_NET
Rob Clark95c55532017-09-13 18:05:33 -0400644 bootefi_device_path = efi_dp_from_eth();
Alexander Graff9d334b2016-08-05 14:49:53 +0200645#endif
Alexander Graff9d334b2016-08-05 14:49:53 +0200646 }
647
Rob Clark9975fe92017-09-13 18:05:38 -0400648 if (!path)
649 return;
650
Alexander Graf49271662016-07-21 01:44:46 +0200651 if (strcmp(dev, "Net")) {
652 /* Add leading / to fs paths, because they're absolute */
Rob Clark95c55532017-09-13 18:05:33 -0400653 snprintf(filename, sizeof(filename), "/%s", path);
Alexander Graf49271662016-07-21 01:44:46 +0200654 } else {
Rob Clark95c55532017-09-13 18:05:33 -0400655 snprintf(filename, sizeof(filename), "%s", path);
Alexander Graf49271662016-07-21 01:44:46 +0200656 }
Rob Clark3e433e92017-07-24 07:59:09 -0400657 /* DOS style file path: */
Rob Clark95c55532017-09-13 18:05:33 -0400658 s = filename;
Rob Clark3e433e92017-07-24 07:59:09 -0400659 while ((s = strchr(s, '/')))
660 *s++ = '\\';
Rob Clark95c55532017-09-13 18:05:33 -0400661 bootefi_image_path = efi_dp_from_file(NULL, 0, filename);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100662}