blob: 8453d90b2c0e93cc1ad1f587b71952a4ad5b9b51 [file] [log] [blame]
Alexander Grafb9939332016-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 Glass9d922452017-05-17 17:18:03 -060011#include <dm.h>
Alexander Grafb9939332016-03-10 00:27:20 +010012#include <efi_loader.h>
13#include <errno.h>
14#include <libfdt.h>
15#include <libfdt_env.h>
Alexander Grafad0c1a32016-04-11 23:51:01 +020016#include <memalign.h>
Alexander Graf0d9d5012016-04-11 16:55:26 +020017#include <asm/global_data.h>
Simon Glasse2754582016-09-25 15:27:32 -060018#include <asm-generic/sections.h>
19#include <linux/linkage.h>
Alexander Graf0d9d5012016-04-11 16:55:26 +020020
21DECLARE_GLOBAL_DATA_PTR;
Alexander Grafb9939332016-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 Graf0f4060e2016-03-04 01:10:14 +010031static struct efi_device_path_file_path bootefi_image_path[] = {
Alexander Grafb9939332016-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 Graf0f4060e2016-03-04 01:10:14 +010035 .dp.length = sizeof(bootefi_image_path[0]),
Alexander Grafb9939332016-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 Graf0f4060e2016-03-04 01:10:14 +010040 .dp.length = sizeof(bootefi_image_path[0]),
Alexander Grafb9939332016-03-10 00:27:20 +010041 }
42};
43
Alexander Grafc07ad7c2016-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 Grafb9939332016-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 Grafc07ad7c2016-04-11 16:16:19 +020059 .device_handle = bootefi_device_path,
Alexander Graf0f4060e2016-03-04 01:10:14 +010060 .file_path = bootefi_image_path,
Alexander Grafb9939332016-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.deb5349f72017-07-11 22:06:14 +020073 .protocol_interface = &loaded_image_info,
Alexander Grafb9939332016-03-10 00:27:20 +010074 },
75 {
76 /*
77 * When asking for the device path interface, return
Alexander Grafc07ad7c2016-04-11 16:16:19 +020078 * bootefi_device_path
Alexander Grafb9939332016-03-10 00:27:20 +010079 */
80 .guid = &efi_guid_device_path,
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020081 .protocol_interface = bootefi_device_path,
Alexander Grafb9939332016-03-10 00:27:20 +010082 },
xypron.glpk@gmx.de88adae52017-07-11 22:06:24 +020083 {
84 .guid = &efi_guid_console_control,
85 .protocol_interface = (void *) &efi_console_control
86 },
Alexander Grafb9939332016-03-10 00:27:20 +010087 },
88};
89
90/* The EFI object struct for the device the "bootefi" image was loaded from */
91static struct efi_object bootefi_device_obj = {
Alexander Grafc07ad7c2016-04-11 16:16:19 +020092 .handle = bootefi_device_path,
Alexander Grafb9939332016-03-10 00:27:20 +010093 .protocols = {
94 {
95 /* When asking for the device path interface, return
Alexander Grafc07ad7c2016-04-11 16:16:19 +020096 * bootefi_device_path */
Alexander Grafb9939332016-03-10 00:27:20 +010097 .guid = &efi_guid_device_path,
xypron.glpk@gmx.deb5349f72017-07-11 22:06:14 +020098 .protocol_interface = bootefi_device_path
Alexander Grafb9939332016-03-10 00:27:20 +010099 }
100 },
101};
102
Alexander Graf0d9d5012016-04-11 16:55:26 +0200103static void *copy_fdt(void *fdt)
104{
105 u64 fdt_size = fdt_totalsize(fdt);
Alexander Grafad0c1a32016-04-11 23:51:01 +0200106 unsigned long fdt_ram_start = -1L, fdt_pages;
107 u64 new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200108 void *new_fdt;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200109 int i;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200110
Alexander Grafad0c1a32016-04-11 23:51:01 +0200111 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
112 u64 ram_start = gd->bd->bi_dram[i].start;
113 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200114
Alexander Grafad0c1a32016-04-11 23:51:01 +0200115 if (!ram_size)
116 continue;
117
118 if (ram_start < fdt_ram_start)
119 fdt_ram_start = ram_start;
120 }
121
122 /* Give us at least 4kb breathing room */
123 fdt_size = ALIGN(fdt_size + 4096, 4096);
124 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
125
126 /* Safe fdt location is at 128MB */
127 new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size;
128 if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages,
129 &new_fdt_addr) != EFI_SUCCESS) {
130 /* If we can't put it there, put it somewhere */
131 new_fdt_addr = (ulong)memalign(4096, fdt_size);
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200132 if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages,
133 &new_fdt_addr) != EFI_SUCCESS) {
134 printf("ERROR: Failed to reserve space for FDT\n");
135 return NULL;
136 }
Alexander Grafad0c1a32016-04-11 23:51:01 +0200137 }
Alexander Graf85a6e9b2017-07-03 13:32:35 +0200138
Alexander Grafad0c1a32016-04-11 23:51:01 +0200139 new_fdt = (void*)(ulong)new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200140 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
141 fdt_set_totalsize(new_fdt, fdt_size);
142
143 return new_fdt;
144}
145
Alison Wangec6617c2016-11-10 10:49:03 +0800146#ifdef CONFIG_ARM64
147static unsigned long efi_run_in_el2(ulong (*entry)(void *image_handle,
148 struct efi_system_table *st), void *image_handle,
149 struct efi_system_table *st)
150{
151 /* Enable caches again */
152 dcache_enable();
153
154 return entry(image_handle, st);
155}
156#endif
157
Alexander Grafb9939332016-03-10 00:27:20 +0100158/*
159 * Load an EFI payload into a newly allocated piece of memory, register all
160 * EFI objects it would want to access and jump to it.
161 */
Alexander Graf1c398092016-04-14 16:07:53 +0200162static unsigned long do_bootefi_exec(void *efi, void *fdt)
Alexander Grafb9939332016-03-10 00:27:20 +0100163{
Simon Glasse2754582016-09-25 15:27:32 -0600164 ulong (*entry)(void *image_handle, struct efi_system_table *st)
165 asmlinkage;
Alexander Grafb9939332016-03-10 00:27:20 +0100166 ulong fdt_pages, fdt_size, fdt_start, fdt_end;
Alexander Grafdea21742016-03-04 01:10:13 +0100167 bootm_headers_t img = { 0 };
Alexander Grafb9939332016-03-10 00:27:20 +0100168
169 /*
170 * gd lives in a fixed register which may get clobbered while we execute
171 * the payload. So save it here and restore it on every callback entry
172 */
173 efi_save_gd();
174
Alexander Graf1c398092016-04-14 16:07:53 +0200175 if (fdt && !fdt_check_header(fdt)) {
Alexander Grafdea21742016-03-04 01:10:13 +0100176 /* Prepare fdt for payload */
Alexander Graf0d9d5012016-04-11 16:55:26 +0200177 fdt = copy_fdt(fdt);
178
179 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
Alexander Grafdea21742016-03-04 01:10:13 +0100180 printf("ERROR: Failed to process device tree\n");
181 return -EINVAL;
182 }
183
184 /* Link to it in the efi tables */
Alexander Grafb9939332016-03-10 00:27:20 +0100185 systab.tables[0].guid = EFI_FDT_GUID;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200186 systab.tables[0].table = fdt;
Alexander Grafb9939332016-03-10 00:27:20 +0100187 systab.nr_tables = 1;
188
189 /* And reserve the space in the memory map */
Alexander Graf0d9d5012016-04-11 16:55:26 +0200190 fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK;
191 fdt_end = ((ulong)fdt) + fdt_totalsize(fdt);
Alexander Grafb9939332016-03-10 00:27:20 +0100192 fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK;
193 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
194 /* Give a bootloader the chance to modify the device tree */
195 fdt_pages += 2;
196 efi_add_memory_map(fdt_start, fdt_pages,
197 EFI_BOOT_SERVICES_DATA, true);
Alexander Grafb9939332016-03-10 00:27:20 +0100198 } else {
Alexander Graf1c398092016-04-14 16:07:53 +0200199 printf("WARNING: Invalid device tree, expect boot to fail\n");
Alexander Grafb9939332016-03-10 00:27:20 +0100200 systab.nr_tables = 0;
201 }
202
203 /* Load the EFI payload */
204 entry = efi_load_pe(efi, &loaded_image_info);
205 if (!entry)
206 return -ENOENT;
207
208 /* Initialize and populate EFI object list */
209 INIT_LIST_HEAD(&efi_obj_list);
210 list_add_tail(&loaded_image_info_obj.link, &efi_obj_list);
211 list_add_tail(&bootefi_device_obj.link, &efi_obj_list);
212#ifdef CONFIG_PARTITIONS
213 efi_disk_register();
214#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100215#ifdef CONFIG_LCD
216 efi_gop_register();
217#endif
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200218#ifdef CONFIG_NET
219 void *nethandle = loaded_image_info.device_handle;
220 efi_net_register(&nethandle);
221
222 if (!memcmp(bootefi_device_path[0].str, "N\0e\0t", 6))
223 loaded_image_info.device_handle = nethandle;
Alexander Graf3fb97e22016-10-18 15:49:40 +0200224 else
225 loaded_image_info.device_handle = bootefi_device_path;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200226#endif
Alexander Grafe663b352016-08-19 01:23:29 +0200227#ifdef CONFIG_GENERATE_SMBIOS_TABLE
228 efi_smbios_register();
229#endif
Alexander Grafb9939332016-03-10 00:27:20 +0100230
Alexander Graf80a48002016-08-16 21:08:45 +0200231 /* Initialize EFI runtime services */
232 efi_reset_system_init();
233 efi_get_time_init();
234
Alexander Grafb9939332016-03-10 00:27:20 +0100235 /* Call our payload! */
Alexander Grafedcef3b2016-06-02 11:38:27 +0200236 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
Alexander Grafa86aeaf2016-05-20 23:28:23 +0200237
238 if (setjmp(&loaded_image_info.exit_jmp)) {
239 efi_status_t status = loaded_image_info.exit_status;
240 return status == EFI_SUCCESS ? 0 : -EINVAL;
241 }
242
Alexander Graf69bd4592016-11-17 01:02:58 +0100243#ifdef CONFIG_ARM64
244 /* On AArch64 we need to make sure we call our payload in < EL3 */
245 if (current_el() == 3) {
246 smp_kick_all_cpus();
247 dcache_disable(); /* flush cache before switch to EL2 */
Alison Wangec6617c2016-11-10 10:49:03 +0800248
249 /* Move into EL2 and keep running there */
250 armv8_switch_to_el2((ulong)entry, (ulong)&loaded_image_info,
Alison Wang7c5e1fe2017-01-17 09:39:17 +0800251 (ulong)&systab, 0, (ulong)efi_run_in_el2,
Alison Wangec6617c2016-11-10 10:49:03 +0800252 ES_TO_AARCH64);
253
254 /* Should never reach here, efi exits with longjmp */
255 while (1) { }
Alexander Graf69bd4592016-11-17 01:02:58 +0100256 }
257#endif
258
Alexander Grafb9939332016-03-10 00:27:20 +0100259 return entry(&loaded_image_info, &systab);
260}
261
262
263/* Interpreter command to boot an arbitrary EFI image from memory */
264static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
265{
Alexander Graf1c398092016-04-14 16:07:53 +0200266 char *saddr, *sfdt;
267 unsigned long addr, fdt_addr = 0;
Alexander Grafb9939332016-03-10 00:27:20 +0100268 int r = 0;
269
270 if (argc < 2)
Bin Meng3c1dcef2016-08-13 04:02:06 -0700271 return CMD_RET_USAGE;
Simon Glassc7ae3df2016-11-07 08:47:08 -0700272#ifdef CONFIG_CMD_BOOTEFI_HELLO
273 if (!strcmp(argv[1], "hello")) {
274 ulong size = __efi_hello_world_end - __efi_hello_world_begin;
Alexander Grafb9939332016-03-10 00:27:20 +0100275
Simon Glassc7ae3df2016-11-07 08:47:08 -0700276 addr = CONFIG_SYS_LOAD_ADDR;
277 memcpy((char *)addr, __efi_hello_world_begin, size);
278 } else
279#endif
280 {
281 saddr = argv[1];
Alexander Grafb9939332016-03-10 00:27:20 +0100282
Simon Glassc7ae3df2016-11-07 08:47:08 -0700283 addr = simple_strtoul(saddr, NULL, 16);
284
285 if (argc > 2) {
286 sfdt = argv[2];
287 fdt_addr = simple_strtoul(sfdt, NULL, 16);
288 }
Alexander Graf1c398092016-04-14 16:07:53 +0200289 }
290
Simon Glass5ee31ba2016-11-07 08:47:05 -0700291 printf("## Starting EFI application at %08lx ...\n", addr);
Alexander Graf1c398092016-04-14 16:07:53 +0200292 r = do_bootefi_exec((void *)addr, (void*)fdt_addr);
Alexander Grafb9939332016-03-10 00:27:20 +0100293 printf("## Application terminated, r = %d\n", r);
294
295 if (r != 0)
296 r = 1;
297
298 return r;
299}
300
301#ifdef CONFIG_SYS_LONGHELP
302static char bootefi_help_text[] =
Alexander Graf1c398092016-04-14 16:07:53 +0200303 "<image address> [fdt address]\n"
304 " - boot EFI payload stored at address <image address>.\n"
305 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700306 " exposed as EFI configuration table.\n"
307#ifdef CONFIG_CMD_BOOTEFI_HELLO
308 "hello\n"
309 " - boot a sample Hello World application stored within U-Boot"
310#endif
311 ;
Alexander Grafb9939332016-03-10 00:27:20 +0100312#endif
313
314U_BOOT_CMD(
Alexander Graf1c398092016-04-14 16:07:53 +0200315 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700316 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100317 bootefi_help_text
318);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100319
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200320void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100321{
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200322 __maybe_unused struct blk_desc *desc;
Alexander Grafecbe1a02016-04-11 16:16:20 +0200323 char devname[32] = { 0 }; /* dp->str is u16[32] long */
Alexander Graf0f4060e2016-03-04 01:10:14 +0100324 char *colon;
325
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100326#if defined(CONFIG_BLK) || CONFIG_IS_ENABLED(ISO_PARTITION)
Alexander Graff9d334b2016-08-05 14:49:53 +0200327 desc = blk_get_dev(dev, simple_strtol(devnr, NULL, 10));
328#endif
329
330#ifdef CONFIG_BLK
331 if (desc) {
332 snprintf(devname, sizeof(devname), "%s", desc->bdev->name);
333 } else
334#endif
335
336 {
337 /* Assemble the condensed device name we use in efi_disk.c */
338 snprintf(devname, sizeof(devname), "%s%s", dev, devnr);
339 }
340
Alexander Graf0f4060e2016-03-04 01:10:14 +0100341 colon = strchr(devname, ':');
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200342
Patrick Delaunay1acc0082017-01-27 11:00:38 +0100343#if CONFIG_IS_ENABLED(ISO_PARTITION)
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200344 /* For ISOs we create partition block devices */
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200345 if (desc && (desc->type != DEV_TYPE_UNKNOWN) &&
346 (desc->part_type == PART_TYPE_ISO)) {
347 if (!colon)
Alexander Graff9d334b2016-08-05 14:49:53 +0200348 snprintf(devname, sizeof(devname), "%s:1", devname);
349
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200350 colon = NULL;
351 }
352#endif
353
Alexander Graf0f4060e2016-03-04 01:10:14 +0100354 if (colon)
355 *colon = '\0';
356
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200357 /* Patch bootefi_device_path to the target device */
358 memset(bootefi_device_path[0].str, 0, sizeof(bootefi_device_path[0].str));
359 ascii2unicode(bootefi_device_path[0].str, devname);
360
361 /* Patch bootefi_image_path to the target file path */
Alexander Graf0f4060e2016-03-04 01:10:14 +0100362 memset(bootefi_image_path[0].str, 0, sizeof(bootefi_image_path[0].str));
Alexander Graf49271662016-07-21 01:44:46 +0200363 if (strcmp(dev, "Net")) {
364 /* Add leading / to fs paths, because they're absolute */
365 snprintf(devname, sizeof(devname), "/%s", path);
366 } else {
367 snprintf(devname, sizeof(devname), "%s", path);
368 }
Alexander Graf0f4060e2016-03-04 01:10:14 +0100369 ascii2unicode(bootefi_image_path[0].str, devname);
370}