blob: ca411702baed83b49c31186926d57bb963f8b2bc [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>
Alexander Graff9d334b2016-08-05 14:49:53 +020011#include <dm/device.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
Simon Glasse2754582016-09-25 15:27:32 -060057static efi_status_t EFIAPI bootefi_open_dp(void *handle, efi_guid_t *protocol,
Alexander Grafb9939332016-03-10 00:27:20 +010058 void **protocol_interface, void *agent_handle,
59 void *controller_handle, uint32_t attributes)
60{
Alexander Grafc07ad7c2016-04-11 16:16:19 +020061 *protocol_interface = bootefi_device_path;
Alexander Grafb9939332016-03-10 00:27:20 +010062 return EFI_SUCCESS;
63}
64
65/* The EFI loaded_image interface for the image executed via "bootefi" */
66static struct efi_loaded_image loaded_image_info = {
Alexander Grafc07ad7c2016-04-11 16:16:19 +020067 .device_handle = bootefi_device_path,
Alexander Graf0f4060e2016-03-04 01:10:14 +010068 .file_path = bootefi_image_path,
Alexander Grafb9939332016-03-10 00:27:20 +010069};
70
71/* The EFI object struct for the image executed via "bootefi" */
72static struct efi_object loaded_image_info_obj = {
73 .handle = &loaded_image_info,
74 .protocols = {
75 {
76 /*
77 * When asking for the loaded_image interface, just
78 * return handle which points to loaded_image_info
79 */
80 .guid = &efi_guid_loaded_image,
81 .open = &efi_return_handle,
82 },
83 {
84 /*
85 * When asking for the device path interface, return
Alexander Grafc07ad7c2016-04-11 16:16:19 +020086 * bootefi_device_path
Alexander Grafb9939332016-03-10 00:27:20 +010087 */
88 .guid = &efi_guid_device_path,
89 .open = &bootefi_open_dp,
90 },
91 },
92};
93
94/* The EFI object struct for the device the "bootefi" image was loaded from */
95static struct efi_object bootefi_device_obj = {
Alexander Grafc07ad7c2016-04-11 16:16:19 +020096 .handle = bootefi_device_path,
Alexander Grafb9939332016-03-10 00:27:20 +010097 .protocols = {
98 {
99 /* When asking for the device path interface, return
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200100 * bootefi_device_path */
Alexander Grafb9939332016-03-10 00:27:20 +0100101 .guid = &efi_guid_device_path,
102 .open = &bootefi_open_dp,
103 }
104 },
105};
106
Alexander Graf0d9d5012016-04-11 16:55:26 +0200107static void *copy_fdt(void *fdt)
108{
109 u64 fdt_size = fdt_totalsize(fdt);
Alexander Grafad0c1a32016-04-11 23:51:01 +0200110 unsigned long fdt_ram_start = -1L, fdt_pages;
111 u64 new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200112 void *new_fdt;
Alexander Grafad0c1a32016-04-11 23:51:01 +0200113 int i;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200114
Alexander Grafad0c1a32016-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 Graf0d9d5012016-04-11 16:55:26 +0200118
Alexander Grafad0c1a32016-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);
136 }
137 new_fdt = (void*)(ulong)new_fdt_addr;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200138 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
139 fdt_set_totalsize(new_fdt, fdt_size);
140
141 return new_fdt;
142}
143
Alexander Grafb9939332016-03-10 00:27:20 +0100144/*
145 * Load an EFI payload into a newly allocated piece of memory, register all
146 * EFI objects it would want to access and jump to it.
147 */
Alexander Graf1c398092016-04-14 16:07:53 +0200148static unsigned long do_bootefi_exec(void *efi, void *fdt)
Alexander Grafb9939332016-03-10 00:27:20 +0100149{
Simon Glasse2754582016-09-25 15:27:32 -0600150 ulong (*entry)(void *image_handle, struct efi_system_table *st)
151 asmlinkage;
Alexander Grafb9939332016-03-10 00:27:20 +0100152 ulong fdt_pages, fdt_size, fdt_start, fdt_end;
Alexander Grafdea21742016-03-04 01:10:13 +0100153 bootm_headers_t img = { 0 };
Alexander Grafb9939332016-03-10 00:27:20 +0100154
155 /*
156 * gd lives in a fixed register which may get clobbered while we execute
157 * the payload. So save it here and restore it on every callback entry
158 */
159 efi_save_gd();
160
Alexander Graf1c398092016-04-14 16:07:53 +0200161 if (fdt && !fdt_check_header(fdt)) {
Alexander Grafdea21742016-03-04 01:10:13 +0100162 /* Prepare fdt for payload */
Alexander Graf0d9d5012016-04-11 16:55:26 +0200163 fdt = copy_fdt(fdt);
164
165 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
Alexander Grafdea21742016-03-04 01:10:13 +0100166 printf("ERROR: Failed to process device tree\n");
167 return -EINVAL;
168 }
169
170 /* Link to it in the efi tables */
Alexander Grafb9939332016-03-10 00:27:20 +0100171 systab.tables[0].guid = EFI_FDT_GUID;
Alexander Graf0d9d5012016-04-11 16:55:26 +0200172 systab.tables[0].table = fdt;
Alexander Grafb9939332016-03-10 00:27:20 +0100173 systab.nr_tables = 1;
174
175 /* And reserve the space in the memory map */
Alexander Graf0d9d5012016-04-11 16:55:26 +0200176 fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK;
177 fdt_end = ((ulong)fdt) + fdt_totalsize(fdt);
Alexander Grafb9939332016-03-10 00:27:20 +0100178 fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK;
179 fdt_pages = fdt_size >> EFI_PAGE_SHIFT;
180 /* Give a bootloader the chance to modify the device tree */
181 fdt_pages += 2;
182 efi_add_memory_map(fdt_start, fdt_pages,
183 EFI_BOOT_SERVICES_DATA, true);
Alexander Grafb9939332016-03-10 00:27:20 +0100184 } else {
Alexander Graf1c398092016-04-14 16:07:53 +0200185 printf("WARNING: Invalid device tree, expect boot to fail\n");
Alexander Grafb9939332016-03-10 00:27:20 +0100186 systab.nr_tables = 0;
187 }
188
189 /* Load the EFI payload */
190 entry = efi_load_pe(efi, &loaded_image_info);
191 if (!entry)
192 return -ENOENT;
193
194 /* Initialize and populate EFI object list */
195 INIT_LIST_HEAD(&efi_obj_list);
196 list_add_tail(&loaded_image_info_obj.link, &efi_obj_list);
197 list_add_tail(&bootefi_device_obj.link, &efi_obj_list);
198#ifdef CONFIG_PARTITIONS
199 efi_disk_register();
200#endif
Alexander Grafbe8d3242016-03-15 18:38:21 +0100201#ifdef CONFIG_LCD
202 efi_gop_register();
203#endif
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200204#ifdef CONFIG_NET
205 void *nethandle = loaded_image_info.device_handle;
206 efi_net_register(&nethandle);
207
208 if (!memcmp(bootefi_device_path[0].str, "N\0e\0t", 6))
209 loaded_image_info.device_handle = nethandle;
Alexander Graf3fb97e22016-10-18 15:49:40 +0200210 else
211 loaded_image_info.device_handle = bootefi_device_path;
Alexander Graf0efe1bc2016-05-06 21:01:01 +0200212#endif
Alexander Grafe663b352016-08-19 01:23:29 +0200213#ifdef CONFIG_GENERATE_SMBIOS_TABLE
214 efi_smbios_register();
215#endif
Alexander Grafb9939332016-03-10 00:27:20 +0100216
Alexander Graf80a48002016-08-16 21:08:45 +0200217 /* Initialize EFI runtime services */
218 efi_reset_system_init();
219 efi_get_time_init();
220
Alexander Grafb9939332016-03-10 00:27:20 +0100221 /* Call our payload! */
Alexander Grafedcef3b2016-06-02 11:38:27 +0200222 debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry);
Alexander Grafa86aeaf2016-05-20 23:28:23 +0200223
224 if (setjmp(&loaded_image_info.exit_jmp)) {
225 efi_status_t status = loaded_image_info.exit_status;
226 return status == EFI_SUCCESS ? 0 : -EINVAL;
227 }
228
Alexander Graf69bd4592016-11-17 01:02:58 +0100229#ifdef CONFIG_ARM64
230 /* On AArch64 we need to make sure we call our payload in < EL3 */
231 if (current_el() == 3) {
232 smp_kick_all_cpus();
233 dcache_disable(); /* flush cache before switch to EL2 */
234 armv8_switch_to_el2();
235 /* Enable caches again */
236 dcache_enable();
237 }
238#endif
239
Alexander Grafb9939332016-03-10 00:27:20 +0100240 return entry(&loaded_image_info, &systab);
241}
242
243
244/* Interpreter command to boot an arbitrary EFI image from memory */
245static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
246{
Alexander Graf1c398092016-04-14 16:07:53 +0200247 char *saddr, *sfdt;
248 unsigned long addr, fdt_addr = 0;
Alexander Grafb9939332016-03-10 00:27:20 +0100249 int r = 0;
250
251 if (argc < 2)
Bin Meng3c1dcef2016-08-13 04:02:06 -0700252 return CMD_RET_USAGE;
Simon Glassc7ae3df2016-11-07 08:47:08 -0700253#ifdef CONFIG_CMD_BOOTEFI_HELLO
254 if (!strcmp(argv[1], "hello")) {
255 ulong size = __efi_hello_world_end - __efi_hello_world_begin;
Alexander Grafb9939332016-03-10 00:27:20 +0100256
Simon Glassc7ae3df2016-11-07 08:47:08 -0700257 addr = CONFIG_SYS_LOAD_ADDR;
258 memcpy((char *)addr, __efi_hello_world_begin, size);
259 } else
260#endif
261 {
262 saddr = argv[1];
Alexander Grafb9939332016-03-10 00:27:20 +0100263
Simon Glassc7ae3df2016-11-07 08:47:08 -0700264 addr = simple_strtoul(saddr, NULL, 16);
265
266 if (argc > 2) {
267 sfdt = argv[2];
268 fdt_addr = simple_strtoul(sfdt, NULL, 16);
269 }
Alexander Graf1c398092016-04-14 16:07:53 +0200270 }
271
Simon Glass5ee31ba2016-11-07 08:47:05 -0700272 printf("## Starting EFI application at %08lx ...\n", addr);
Alexander Graf1c398092016-04-14 16:07:53 +0200273 r = do_bootefi_exec((void *)addr, (void*)fdt_addr);
Alexander Grafb9939332016-03-10 00:27:20 +0100274 printf("## Application terminated, r = %d\n", r);
275
276 if (r != 0)
277 r = 1;
278
279 return r;
280}
281
282#ifdef CONFIG_SYS_LONGHELP
283static char bootefi_help_text[] =
Alexander Graf1c398092016-04-14 16:07:53 +0200284 "<image address> [fdt address]\n"
285 " - boot EFI payload stored at address <image address>.\n"
286 " If specified, the device tree located at <fdt address> gets\n"
Simon Glassc7ae3df2016-11-07 08:47:08 -0700287 " exposed as EFI configuration table.\n"
288#ifdef CONFIG_CMD_BOOTEFI_HELLO
289 "hello\n"
290 " - boot a sample Hello World application stored within U-Boot"
291#endif
292 ;
Alexander Grafb9939332016-03-10 00:27:20 +0100293#endif
294
295U_BOOT_CMD(
Alexander Graf1c398092016-04-14 16:07:53 +0200296 bootefi, 3, 0, do_bootefi,
Sergey Kubushyn92dfd922016-06-07 11:14:31 -0700297 "Boots an EFI payload from memory",
Alexander Grafb9939332016-03-10 00:27:20 +0100298 bootefi_help_text
299);
Alexander Graf0f4060e2016-03-04 01:10:14 +0100300
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200301void efi_set_bootdev(const char *dev, const char *devnr, const char *path)
Alexander Graf0f4060e2016-03-04 01:10:14 +0100302{
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200303 __maybe_unused struct blk_desc *desc;
Alexander Grafecbe1a02016-04-11 16:16:20 +0200304 char devname[32] = { 0 }; /* dp->str is u16[32] long */
Alexander Graf0f4060e2016-03-04 01:10:14 +0100305 char *colon;
306
Alexander Graff9d334b2016-08-05 14:49:53 +0200307#if defined(CONFIG_BLK) || defined(CONFIG_ISO_PARTITION)
308 desc = blk_get_dev(dev, simple_strtol(devnr, NULL, 10));
309#endif
310
311#ifdef CONFIG_BLK
312 if (desc) {
313 snprintf(devname, sizeof(devname), "%s", desc->bdev->name);
314 } else
315#endif
316
317 {
318 /* Assemble the condensed device name we use in efi_disk.c */
319 snprintf(devname, sizeof(devname), "%s%s", dev, devnr);
320 }
321
Alexander Graf0f4060e2016-03-04 01:10:14 +0100322 colon = strchr(devname, ':');
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200323
324#ifdef CONFIG_ISO_PARTITION
325 /* For ISOs we create partition block devices */
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200326 if (desc && (desc->type != DEV_TYPE_UNKNOWN) &&
327 (desc->part_type == PART_TYPE_ISO)) {
328 if (!colon)
Alexander Graff9d334b2016-08-05 14:49:53 +0200329 snprintf(devname, sizeof(devname), "%s:1", devname);
330
Alexander Graf8c3df0b2016-04-11 16:16:18 +0200331 colon = NULL;
332 }
333#endif
334
Alexander Graf0f4060e2016-03-04 01:10:14 +0100335 if (colon)
336 *colon = '\0';
337
Alexander Grafc07ad7c2016-04-11 16:16:19 +0200338 /* Patch bootefi_device_path to the target device */
339 memset(bootefi_device_path[0].str, 0, sizeof(bootefi_device_path[0].str));
340 ascii2unicode(bootefi_device_path[0].str, devname);
341
342 /* Patch bootefi_image_path to the target file path */
Alexander Graf0f4060e2016-03-04 01:10:14 +0100343 memset(bootefi_image_path[0].str, 0, sizeof(bootefi_image_path[0].str));
Alexander Graf49271662016-07-21 01:44:46 +0200344 if (strcmp(dev, "Net")) {
345 /* Add leading / to fs paths, because they're absolute */
346 snprintf(devname, sizeof(devname), "/%s", path);
347 } else {
348 snprintf(devname, sizeof(devname), "%s", path);
349 }
Alexander Graf0f4060e2016-03-04 01:10:14 +0100350 ascii2unicode(bootefi_image_path[0].str, devname);
351}