blob: e6487dad211e7a1c5f22b402551d22645beef4ab [file] [log] [blame]
Alexander Grafe2b04f22016-03-10 00:27:20 +01001/*
2 * EFI application loader
3 *
4 * Copyright (c) 2016 Alexander Graf
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <command.h>
Simon Glass11c89f32017-05-17 17:18:03 -060011#include <dm.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010012#include <efi_loader.h>
13#include <errno.h>
14#include <libfdt.h>
15#include <libfdt_env.h>
Alexander Graffdbae012016-04-11 23:51:01 +020016#include <memalign.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020017#include <asm/global_data.h>
Simon Glassc2194bf2016-09-25 15:27:32 -060018#include <asm-generic/sections.h>
19#include <linux/linkage.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020020
21DECLARE_GLOBAL_DATA_PTR;
Alexander Grafe2b04f22016-03-10 00:27:20 +010022
23/*
24 * When booting using the "bootefi" command, we don't know which
25 * physical device the file came from. So we create a pseudo-device
26 * called "bootefi" with the device path /bootefi.
27 *
28 * In addition to the originating device we also declare the file path
29 * of "bootefi" based loads to be /bootefi.
30 */
Alexander Graf8f19f262016-03-04 01:10:14 +010031static struct efi_device_path_file_path bootefi_image_path[] = {
Alexander Grafe2b04f22016-03-10 00:27:20 +010032 {
33 .dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE,
34 .dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH,
Alexander Graf8f19f262016-03-04 01:10:14 +010035 .dp.length = sizeof(bootefi_image_path[0]),
Alexander Grafe2b04f22016-03-10 00:27:20 +010036 .str = { 'b','o','o','t','e','f','i' },
37 }, {
38 .dp.type = DEVICE_PATH_TYPE_END,
39 .dp.sub_type = DEVICE_PATH_SUB_TYPE_END,
Alexander Graf8f19f262016-03-04 01:10:14 +010040 .dp.length = sizeof(bootefi_image_path[0]),
Alexander Grafe2b04f22016-03-10 00:27:20 +010041 }
42};
43
Alexander Grafc49a1b82016-04-11 16:16:19 +020044static struct efi_device_path_file_path bootefi_device_path[] = {
45 {
46 .dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE,
47 .dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH,
48 .dp.length = sizeof(bootefi_image_path[0]),
49 .str = { 'b','o','o','t','e','f','i' },
50 }, {
51 .dp.type = DEVICE_PATH_TYPE_END,
52 .dp.sub_type = DEVICE_PATH_SUB_TYPE_END,
53 .dp.length = sizeof(bootefi_image_path[0]),
54 }
55};
56
Alexander Grafe2b04f22016-03-10 00:27:20 +010057/* The EFI loaded_image interface for the image executed via "bootefi" */
58static struct efi_loaded_image loaded_image_info = {
Alexander Grafc49a1b82016-04-11 16:16:19 +020059 .device_handle = bootefi_device_path,
Alexander Graf8f19f262016-03-04 01:10:14 +010060 .file_path = bootefi_image_path,
Alexander Grafe2b04f22016-03-10 00:27:20 +010061};
62
63/* The EFI object struct for the image executed via "bootefi" */
64static struct efi_object loaded_image_info_obj = {
65 .handle = &loaded_image_info,
66 .protocols = {
67 {
68 /*
69 * When asking for the loaded_image interface, just
70 * return handle which points to loaded_image_info
71 */
72 .guid = &efi_guid_loaded_image,
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +020073 .protocol_interface = &loaded_image_info,
Alexander Grafe2b04f22016-03-10 00:27:20 +010074 },
75 {
76 /*
77 * When asking for the device path interface, return
Alexander Grafc49a1b82016-04-11 16:16:19 +020078 * bootefi_device_path
Alexander Grafe2b04f22016-03-10 00:27:20 +010079 */
80 .guid = &efi_guid_device_path,
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +020081 .protocol_interface = bootefi_device_path,
Alexander Grafe2b04f22016-03-10 00:27:20 +010082 },
xypron.glpk@gmx.de4534ad62017-07-11 22:06:24 +020083 {
84 .guid = &efi_guid_console_control,
85 .protocol_interface = (void *) &efi_console_control
86 },
xypron.glpk@gmx.de3c042b22017-07-11 22:06:25 +020087 {
88 .guid = &efi_guid_device_path_to_text_protocol,
89 .protocol_interface = (void *) &efi_device_path_to_text
90 },
Alexander Grafe2b04f22016-03-10 00:27:20 +010091 },
92};
93
94/* The EFI object struct for the device the "bootefi" image was loaded from */
95static struct efi_object bootefi_device_obj = {
Alexander Grafc49a1b82016-04-11 16:16:19 +020096 .handle = bootefi_device_path,
Alexander Grafe2b04f22016-03-10 00:27:20 +010097 .protocols = {
98 {
99 /* When asking for the device path interface, return
Alexander Grafc49a1b82016-04-11 16:16:19 +0200100 * bootefi_device_path */
Alexander Grafe2b04f22016-03-10 00:27:20 +0100101 .guid = &efi_guid_device_path,
xypron.glpk@gmx.dec35c9242017-07-11 22:06:14 +0200102 .protocol_interface = bootefi_device_path
Alexander Grafe2b04f22016-03-10 00:27:20 +0100103 }
104 },
105};
106
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200107static void *copy_fdt(void *fdt)
108{
109 u64 fdt_size = fdt_totalsize(fdt);
Alexander Graffdbae012016-04-11 23:51:01 +0200110 unsigned long fdt_ram_start = -1L, fdt_pages;
111 u64 new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200112 void *new_fdt;
Alexander Graffdbae012016-04-11 23:51:01 +0200113 int i;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200114
Alexander Graffdbae012016-04-11 23:51:01 +0200115 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
116 u64 ram_start = gd->bd->bi_dram[i].start;
117 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200118
Alexander Graffdbae012016-04-11 23:51:01 +0200119 if (!ram_size)
120 continue;
121
122 if (ram_start < fdt_ram_start)
123 fdt_ram_start = ram_start;
124 }
125
126 /* Give us at least 4kb breathing room */
127 fdt_size = ALIGN(fdt_size + 4096, 4096);
128 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
129
130 /* Safe fdt location is at 128MB */
131 new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size;
132 if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages,
133 &new_fdt_addr) != EFI_SUCCESS) {
134 /* If we can't put it there, put it somewhere */
135 new_fdt_addr = (ulong)memalign(4096, fdt_size);
Alexander Graf9b9b7162017-07-03 13:32:35 +0200136 if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages,
137 &new_fdt_addr) != EFI_SUCCESS) {
138 printf("ERROR: Failed to reserve space for FDT\n");
139 return NULL;
140 }
Alexander Graffdbae012016-04-11 23:51:01 +0200141 }
Alexander Graf9b9b7162017-07-03 13:32:35 +0200142
Alexander Graffdbae012016-04-11 23:51:01 +0200143 new_fdt = (void*)(ulong)new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200144 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
145 fdt_set_totalsize(new_fdt, fdt_size);
146
147 return new_fdt;
148}
149
xypron.glpk@gmx.de1e5afc62017-07-04 23:15:21 +0200150static ulong efi_do_enter(void *image_handle,
151 struct efi_system_table *st,
152 asmlinkage ulong (*entry)(void *image_handle,
153 struct efi_system_table *st))
154{
155 efi_status_t ret = EFI_LOAD_ERROR;
156
157 if (entry)
158 ret = entry(image_handle, st);
159 st->boottime->exit(image_handle, ret, 0, NULL);
160 return ret;
161}
162
Alison Wang73818d52016-11-10 10:49:03 +0800163#ifdef CONFIG_ARM64
xypron.glpk@gmx.de1e5afc62017-07-04 23:15:21 +0200164static unsigned long efi_run_in_el2(asmlinkage ulong (*entry)(
165 void *image_handle, struct efi_system_table *st),
166 void *image_handle, struct efi_system_table *st)
Alison Wang73818d52016-11-10 10:49:03 +0800167{
168 /* Enable caches again */
169 dcache_enable();
170
xypron.glpk@gmx.de1e5afc62017-07-04 23:15:21 +0200171 return efi_do_enter(image_handle, st, entry);
Alison Wang73818d52016-11-10 10:49:03 +0800172}
173#endif
174
Alexander Grafe2b04f22016-03-10 00:27:20 +0100175/*
176 * Load an EFI payload into a newly allocated piece of memory, register all
177 * EFI objects it would want to access and jump to it.
178 */
Alexander Graf54c1e832016-04-14 16:07:53 +0200179static unsigned long do_bootefi_exec(void *efi, void *fdt)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100180{
Simon Glassc2194bf2016-09-25 15:27:32 -0600181 ulong (*entry)(void *image_handle, struct efi_system_table *st)
182 asmlinkage;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100183 ulong fdt_pages, fdt_size, fdt_start, fdt_end;
Alexander Grafc81b3472016-03-04 01:10:13 +0100184 bootm_headers_t img = { 0 };
Alexander Grafe2b04f22016-03-10 00:27:20 +0100185
186 /*
187 * gd lives in a fixed register which may get clobbered while we execute
188 * the payload. So save it here and restore it on every callback entry
189 */
190 efi_save_gd();
191
Alexander Graf54c1e832016-04-14 16:07:53 +0200192 if (fdt && !fdt_check_header(fdt)) {
Alexander Grafc81b3472016-03-04 01:10:13 +0100193 /* Prepare fdt for payload */
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200194 fdt = copy_fdt(fdt);
195
196 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
Alexander Grafc81b3472016-03-04 01:10:13 +0100197 printf("ERROR: Failed to process device tree\n");
198 return -EINVAL;
199 }
200
201 /* Link to it in the efi tables */
Alexander Grafe2b04f22016-03-10 00:27:20 +0100202 systab.tables[0].guid = EFI_FDT_GUID;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200203 systab.tables[0].table = fdt;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100204 systab.nr_tables = 1;
205
206 /* And reserve the space in the memory map */
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200207 fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK;
208 fdt_end = ((ulong)fdt) + fdt_totalsize(fdt);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100209 fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK;
210 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
211 /* Give a bootloader the chance to modify the device tree */
212 fdt_pages += 2;
213 efi_add_memory_map(fdt_start, fdt_pages,
214 EFI_BOOT_SERVICES_DATA, true);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100215 } else {
Alexander Graf54c1e832016-04-14 16:07:53 +0200216 printf("WARNING: Invalid device tree, expect boot to fail\n");
Alexander Grafe2b04f22016-03-10 00:27:20 +0100217 systab.nr_tables = 0;
218 }
219
220 /* Load the EFI payload */
221 entry = efi_load_pe(efi, &loaded_image_info);
222 if (!entry)
223 return -ENOENT;
224
225 /* Initialize and populate EFI object list */
226 INIT_LIST_HEAD(&efi_obj_list);
227 list_add_tail(&loaded_image_info_obj.link, &efi_obj_list);
228 list_add_tail(&bootefi_device_obj.link, &efi_obj_list);
229#ifdef CONFIG_PARTITIONS
230 efi_disk_register();
231#endif
Alexander Grafd65783d2016-03-15 18:38:21 +0100232#ifdef CONFIG_LCD
233 efi_gop_register();
234#endif
Alexander Graf94c4b992016-05-06 21:01:01 +0200235#ifdef CONFIG_NET
236 void *nethandle = loaded_image_info.device_handle;
237 efi_net_register(&nethandle);
238
239 if (!memcmp(bootefi_device_path[0].str, "N\0e\0t", 6))
240 loaded_image_info.device_handle = nethandle;
Alexander Graf400f0722016-10-18 15:49:40 +0200241 else
242 loaded_image_info.device_handle = bootefi_device_path;
Alexander Graf94c4b992016-05-06 21:01:01 +0200243#endif
Alexander Graf66f96e12016-08-19 01:23:29 +0200244#ifdef CONFIG_GENERATE_SMBIOS_TABLE
245 efi_smbios_register();
246#endif
Alexander Grafe2b04f22016-03-10 00:27:20 +0100247
Alexander Graf77256092016-08-16 21:08:45 +0200248 /* Initialize EFI runtime services */
249 efi_reset_system_init();
250 efi_get_time_init();
251
Alexander Grafe2b04f22016-03-10 00:27:20 +0100252 /* Call our payload! */
Alexander Graf62a67482016-06-02 11:38:27 +0200253 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
Alexander Graf988c0662016-05-20 23:28:23 +0200254
255 if (setjmp(&loaded_image_info.exit_jmp)) {
256 efi_status_t status = loaded_image_info.exit_status;
257 return status == EFI_SUCCESS ? 0 : -EINVAL;
258 }
259
Alexander Grafbfd199c2016-11-17 01:02:58 +0100260#ifdef CONFIG_ARM64
261 /* On AArch64 we need to make sure we call our payload in < EL3 */
262 if (current_el() == 3) {
263 smp_kick_all_cpus();
264 dcache_disable(); /* flush cache before switch to EL2 */
Alison Wang73818d52016-11-10 10:49:03 +0800265
266 /* Move into EL2 and keep running there */
267 armv8_switch_to_el2((ulong)entry, (ulong)&loaded_image_info,
Alison Wangeb2088d2017-01-17 09:39:17 +0800268 (ulong)&systab, 0, (ulong)efi_run_in_el2,
Alison Wang73818d52016-11-10 10:49:03 +0800269 ES_TO_AARCH64);
270
271 /* Should never reach here, efi exits with longjmp */
272 while (1) { }
Alexander Grafbfd199c2016-11-17 01:02:58 +0100273 }
274#endif
275
xypron.glpk@gmx.de1e5afc62017-07-04 23:15:21 +0200276 return efi_do_enter(&loaded_image_info, &systab, entry);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100277}
278
279
280/* Interpreter command to boot an arbitrary EFI image from memory */
281static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
282{
Alexander Graf54c1e832016-04-14 16:07:53 +0200283 char *saddr, *sfdt;
284 unsigned long addr, fdt_addr = 0;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100285 int r = 0;
286
287 if (argc < 2)
Bin Mengda800ff2016-08-13 04:02:06 -0700288 return CMD_RET_USAGE;
Simon Glassfac4ced2016-11-07 08:47:08 -0700289#ifdef CONFIG_CMD_BOOTEFI_HELLO
290 if (!strcmp(argv[1], "hello")) {
291 ulong size = __efi_hello_world_end - __efi_hello_world_begin;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100292
Simon Glassfac4ced2016-11-07 08:47:08 -0700293 addr = CONFIG_SYS_LOAD_ADDR;
294 memcpy((char *)addr, __efi_hello_world_begin, size);
295 } else
296#endif
297 {
298 saddr = argv[1];
Alexander Grafe2b04f22016-03-10 00:27:20 +0100299
Simon Glassfac4ced2016-11-07 08:47:08 -0700300 addr = simple_strtoul(saddr, NULL, 16);
301
302 if (argc > 2) {
303 sfdt = argv[2];
304 fdt_addr = simple_strtoul(sfdt, NULL, 16);
305 }
Alexander Graf54c1e832016-04-14 16:07:53 +0200306 }
307
Simon Glass1a5490e2016-11-07 08:47:05 -0700308 printf("## Starting EFI application at %08lx ...\n", addr);
Alexander Graf54c1e832016-04-14 16:07:53 +0200309 r = do_bootefi_exec((void *)addr, (void*)fdt_addr);
Alexander Grafe2b04f22016-03-10 00:27:20 +0100310 printf("## Application terminated, r = %d\n", r);
311
312 if (r != 0)
313 r = 1;
314
315 return r;
316}
317
318#ifdef CONFIG_SYS_LONGHELP
319static char bootefi_help_text[] =
Alexander Graf54c1e832016-04-14 16:07:53 +0200320 "<image address> [fdt address]\n"
321 " - boot EFI payload stored at address <image address>.\n"
322 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700323 " exposed as EFI configuration table.\n"
324#ifdef CONFIG_CMD_BOOTEFI_HELLO
325 "hello\n"
326 " - boot a sample Hello World application stored within U-Boot"
327#endif
328 ;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100329#endif
330
331U_BOOT_CMD(
Alexander Graf54c1e832016-04-14 16:07:53 +0200332 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700333 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100334 bootefi_help_text
335);
Alexander Graf8f19f262016-03-04 01:10:14 +0100336
Alexander Grafc49a1b82016-04-11 16:16:19 +0200337void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf8f19f262016-03-04 01:10:14 +0100338{
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200339 __maybe_unused struct blk_desc *desc;
Alexander Graf3491ee72016-04-11 16:16:20 +0200340 char devname[32] = { 0 }; /* dp->str is u16[32] long */
Alexander Graf8f19f262016-03-04 01:10:14 +0100341 char *colon;
342
Patrick Delaunay21d3bce2017-01-27 11:00:38 +0100343#if defined(CONFIG_BLK) || CONFIG_IS_ENABLED(ISO_PARTITION)
Alexander Graf34118e72016-08-05 14:49:53 +0200344 desc = blk_get_dev(dev, simple_strtol(devnr, NULL, 10));
345#endif
346
347#ifdef CONFIG_BLK
348 if (desc) {
349 snprintf(devname, sizeof(devname), "%s", desc->bdev->name);
350 } else
351#endif
352
353 {
354 /* Assemble the condensed device name we use in efi_disk.c */
355 snprintf(devname, sizeof(devname), "%s%s", dev, devnr);
356 }
357
Alexander Graf8f19f262016-03-04 01:10:14 +0100358 colon = strchr(devname, ':');
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200359
Patrick Delaunay21d3bce2017-01-27 11:00:38 +0100360#if CONFIG_IS_ENABLED(ISO_PARTITION)
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200361 /* For ISOs we create partition block devices */
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200362 if (desc && (desc->type != DEV_TYPE_UNKNOWN) &&
363 (desc->part_type == PART_TYPE_ISO)) {
364 if (!colon)
Alexander Graf34118e72016-08-05 14:49:53 +0200365 snprintf(devname, sizeof(devname), "%s:1", devname);
366
Alexander Grafeb8d82c2016-04-11 16:16:18 +0200367 colon = NULL;
368 }
369#endif
370
Alexander Graf8f19f262016-03-04 01:10:14 +0100371 if (colon)
372 *colon = '\0';
373
Alexander Grafc49a1b82016-04-11 16:16:19 +0200374 /* Patch bootefi_device_path to the target device */
375 memset(bootefi_device_path[0].str, 0, sizeof(bootefi_device_path[0].str));
376 ascii2unicode(bootefi_device_path[0].str, devname);
377
378 /* Patch bootefi_image_path to the target file path */
Alexander Graf8f19f262016-03-04 01:10:14 +0100379 memset(bootefi_image_path[0].str, 0, sizeof(bootefi_image_path[0].str));
Alexander Graf45e437d2016-07-21 01:44:46 +0200380 if (strcmp(dev, "Net")) {
381 /* Add leading / to fs paths, because they're absolute */
382 snprintf(devname, sizeof(devname), "/%s", path);
383 } else {
384 snprintf(devname, sizeof(devname), "%s", path);
385 }
Alexander Graf8f19f262016-03-04 01:10:14 +0100386 ascii2unicode(bootefi_image_path[0].str, devname);
387}