blob: 4d74969ad6211fa9d6e2b2e3a1358db0750b9b5b [file] [log] [blame]
Tom Rini70df9d62018-05-07 17:02:21 -04001// SPDX-License-Identifier: GPL-2.0+
Alexander Grafe2b04f22016-03-10 00:27:20 +01002/*
3 * EFI application loader
4 *
5 * Copyright (c) 2016 Alexander Graf
Alexander Grafe2b04f22016-03-10 00:27:20 +01006 */
7
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +02008#define LOG_CATEGORY LOGC_EFI
9
Alexander Grafe2b04f22016-03-10 00:27:20 +010010#include <common.h>
Heinrich Schuchardtaf64c3e2021-01-24 14:34:12 +000011#include <bootm.h>
Heinrich Schuchardtaa0b11b2019-01-08 18:13:06 +010012#include <charset.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010013#include <command.h>
Simon Glass11c89f32017-05-17 17:18:03 -060014#include <dm.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010015#include <efi_loader.h>
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +020016#include <efi_selftest.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060017#include <env.h>
Alexander Grafe2b04f22016-03-10 00:27:20 +010018#include <errno.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060019#include <image.h>
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +020020#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070021#include <malloc.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060022#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090023#include <linux/libfdt.h>
24#include <linux/libfdt_env.h>
Alexander Grafa2414512018-06-18 17:22:58 +020025#include <mapmem.h>
Alexander Graffdbae012016-04-11 23:51:01 +020026#include <memalign.h>
Simon Glassc2194bf2016-09-25 15:27:32 -060027#include <asm-generic/sections.h>
28#include <linux/linkage.h>
Alexander Graf2ff5cc32016-04-11 16:55:26 +020029
30DECLARE_GLOBAL_DATA_PTR;
Alexander Grafe2b04f22016-03-10 00:27:20 +010031
Rob Clarkf8db9222017-09-13 18:05:33 -040032static struct efi_device_path *bootefi_image_path;
33static struct efi_device_path *bootefi_device_path;
Heinrich Schuchardt6b821592021-01-12 12:46:24 +010034static void *image_addr;
35static size_t image_size;
Alexander Grafe2b04f22016-03-10 00:27:20 +010036
Heinrich Schuchardt031ea8f2019-07-14 13:00:44 +020037/**
Rui Miguel Silva433f15a2022-05-11 10:55:40 +010038 * efi_get_image_parameters() - return image parameters
39 *
40 * @img_addr: address of loaded image in memory
41 * @img_size: size of loaded image
42 */
43void efi_get_image_parameters(void **img_addr, size_t *img_size)
44{
45 *img_addr = image_addr;
46 *img_size = image_size;
47}
48
49/**
Heinrich Schuchardt6b821592021-01-12 12:46:24 +010050 * efi_clear_bootdev() - clear boot device
51 */
52static void efi_clear_bootdev(void)
53{
54 efi_free_pool(bootefi_device_path);
55 efi_free_pool(bootefi_image_path);
56 bootefi_device_path = NULL;
57 bootefi_image_path = NULL;
58 image_addr = NULL;
59 image_size = 0;
60}
61
62/**
63 * efi_set_bootdev() - set boot device
64 *
65 * This function is called when a file is loaded, e.g. via the 'load' command.
66 * We use the path to this file to inform the UEFI binary about the boot device.
67 *
68 * @dev: device, e.g. "MMC"
69 * @devnr: number of the device, e.g. "1:2"
70 * @path: path to file loaded
71 * @buffer: buffer with file loaded
72 * @buffer_size: size of file loaded
73 */
74void efi_set_bootdev(const char *dev, const char *devnr, const char *path,
75 void *buffer, size_t buffer_size)
76{
77 struct efi_device_path *device, *image;
78 efi_status_t ret;
79
Simon Glass95c1d252022-01-29 14:58:37 -070080 log_debug("dev=%s, devnr=%s, path=%s, buffer=%p, size=%zx\n", dev,
81 devnr, path, buffer, buffer_size);
82
Heinrich Schuchardt6b821592021-01-12 12:46:24 +010083 /* Forget overwritten image */
84 if (buffer + buffer_size >= image_addr &&
85 image_addr + image_size >= buffer)
86 efi_clear_bootdev();
87
88 /* Remember only PE-COFF and FIT images */
89 if (efi_check_pe(buffer, buffer_size, NULL) != EFI_SUCCESS) {
Simon Glass95c1d252022-01-29 14:58:37 -070090 if (IS_ENABLED(CONFIG_FIT) &&
91 !fit_check_format(buffer, IMAGE_SIZE_INVAL)) {
92 /*
93 * FIT images of type EFI_OS are started via command
94 * bootm. We should not use their boot device with the
95 * bootefi command.
96 */
97 buffer = 0;
98 buffer_size = 0;
99 } else {
100 log_debug("- not remembering image\n");
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100101 return;
Simon Glass95c1d252022-01-29 14:58:37 -0700102 }
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100103 }
104
105 /* efi_set_bootdev() is typically called repeatedly, recover memory */
106 efi_clear_bootdev();
107
108 image_addr = buffer;
109 image_size = buffer_size;
110
111 ret = efi_dp_from_name(dev, devnr, path, &device, &image);
112 if (ret == EFI_SUCCESS) {
113 bootefi_device_path = device;
114 if (image) {
115 /* FIXME: image should not contain device */
116 struct efi_device_path *image_tmp = image;
117
118 efi_dp_split_file_path(image, &device, &image);
119 efi_free_pool(image_tmp);
120 }
121 bootefi_image_path = image;
Heinrich Schuchardtb274e772022-07-10 15:46:57 +0200122 log_debug("- boot device %pD\n", device);
Simon Glass95c1d252022-01-29 14:58:37 -0700123 if (image)
Heinrich Schuchardtb274e772022-07-10 15:46:57 +0200124 log_debug("- image %pD\n", image);
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100125 } else {
Simon Glass95c1d252022-01-29 14:58:37 -0700126 log_debug("- efi_dp_from_name() failed, err=%lx\n", ret);
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100127 efi_clear_bootdev();
128 }
129}
130
131/**
Heinrich Schuchardt25c6be52020-08-07 17:47:13 +0200132 * efi_env_set_load_options() - set load options from environment variable
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200133 *
Heinrich Schuchardte6263952020-01-03 22:53:42 +0100134 * @handle: the image handle
135 * @env_var: name of the environment variable
136 * @load_options: pointer to load options (output)
137 * Return: status code
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200138 */
Heinrich Schuchardt25c6be52020-08-07 17:47:13 +0200139static efi_status_t efi_env_set_load_options(efi_handle_t handle,
140 const char *env_var,
141 u16 **load_options)
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200142{
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200143 const char *env = env_get(env_var);
Heinrich Schuchardt25c6be52020-08-07 17:47:13 +0200144 size_t size;
Heinrich Schuchardtde527802018-08-31 21:31:33 +0200145 u16 *pos;
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +0900146 efi_status_t ret;
147
Heinrich Schuchardte6263952020-01-03 22:53:42 +0100148 *load_options = NULL;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200149 if (!env)
Heinrich Schuchardt25c6be52020-08-07 17:47:13 +0200150 return EFI_SUCCESS;
151 size = sizeof(u16) * (utf8_utf16_strlen(env) + 1);
152 pos = calloc(size, 1);
153 if (!pos)
AKASHI Takahiroe25a7b82019-04-19 12:22:28 +0900154 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardte6263952020-01-03 22:53:42 +0100155 *load_options = pos;
Heinrich Schuchardtde527802018-08-31 21:31:33 +0200156 utf8_utf16_strcpy(&pos, env);
Heinrich Schuchardt25c6be52020-08-07 17:47:13 +0200157 ret = efi_set_load_options(handle, size, *load_options);
158 if (ret != EFI_SUCCESS) {
159 free(*load_options);
160 *load_options = NULL;
161 }
162 return ret;
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200163}
164
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200165#if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
166
Simon Glass5d618df2018-08-08 03:54:30 -0600167/**
168 * copy_fdt() - Copy the device tree to a new location available to EFI
169 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100170 * The FDT is copied to a suitable location within the EFI memory map.
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100171 * Additional 12 KiB are added to the space in case the device tree needs to be
Simon Glass5d618df2018-08-08 03:54:30 -0600172 * expanded later with fdt_open_into().
173 *
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100174 * @fdtp: On entry a pointer to the flattened device tree.
175 * On exit a pointer to the copy of the flattened device tree.
Heinrich Schuchardt96af56e2018-11-12 18:55:22 +0100176 * FDT start
177 * Return: status code
Simon Glass5d618df2018-08-08 03:54:30 -0600178 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100179static efi_status_t copy_fdt(void **fdtp)
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200180{
Alexander Graffdbae012016-04-11 23:51:01 +0200181 unsigned long fdt_ram_start = -1L, fdt_pages;
Simon Glass5d618df2018-08-08 03:54:30 -0600182 efi_status_t ret = 0;
183 void *fdt, *new_fdt;
Alexander Graffdbae012016-04-11 23:51:01 +0200184 u64 new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -0600185 uint fdt_size;
Alexander Graffdbae012016-04-11 23:51:01 +0200186 int i;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200187
Simon Glass5d618df2018-08-08 03:54:30 -0600188 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
189 u64 ram_start = gd->bd->bi_dram[i].start;
190 u64 ram_size = gd->bd->bi_dram[i].size;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200191
Alexander Graffdbae012016-04-11 23:51:01 +0200192 if (!ram_size)
193 continue;
194
195 if (ram_start < fdt_ram_start)
196 fdt_ram_start = ram_start;
197 }
198
Simon Glass56bbcc12018-06-18 08:08:25 -0600199 /*
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100200 * Give us at least 12 KiB of breathing room in case the device tree
201 * needs to be expanded later.
Simon Glass56bbcc12018-06-18 08:08:25 -0600202 */
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100203 fdt = *fdtp;
Heinrich Schuchardtdcdca292018-11-18 17:58:49 +0100204 fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000);
205 fdt_size = fdt_pages << EFI_PAGE_SHIFT;
Alexander Graffdbae012016-04-11 23:51:01 +0200206
Heinrich Schuchardt45a755d2023-02-23 20:27:38 +0100207 ret = efi_allocate_pages(EFI_ALLOCATE_ANY_PAGES,
Heinrich Schuchardte00764b2020-05-06 20:32:31 +0200208 EFI_ACPI_RECLAIM_MEMORY, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600209 &new_fdt_addr);
210 if (ret != EFI_SUCCESS) {
Heinrich Schuchardt45a755d2023-02-23 20:27:38 +0100211 log_err("ERROR: Failed to reserve space for FDT\n");
212 goto done;
Alexander Graffdbae012016-04-11 23:51:01 +0200213 }
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100214 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200215 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
216 fdt_set_totalsize(new_fdt, fdt_size);
217
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100218 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -0600219done:
220 return ret;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200221}
222
Heinrich Schuchardt928de7d2020-08-27 12:52:20 +0200223/**
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200224 * get_config_table() - get configuration table
225 *
226 * @guid: GUID of the configuration table
227 * Return: pointer to configuration table or NULL
228 */
229static void *get_config_table(const efi_guid_t *guid)
230{
231 size_t i;
232
233 for (i = 0; i < systab.nr_tables; i++) {
234 if (!guidcmp(guid, &systab.tables[i].guid))
235 return systab.tables[i].table;
236 }
237 return NULL;
Alexander Graf22c88bf2018-04-06 09:40:51 +0200238}
239
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200240#endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
241
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900242/**
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100243 * efi_install_fdt() - install device tree
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200244 *
Heinrich Schuchardtb112ac22020-02-07 22:10:49 +0100245 * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory
246 * address will will be installed as configuration table, otherwise the device
247 * tree located at the address indicated by environment variable fdt_addr or as
248 * fallback fdtcontroladdr will be used.
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200249 *
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100250 * On architectures using ACPI tables device trees shall not be installed as
251 * configuration table.
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200252 *
Heinrich Schuchardtb112ac22020-02-07 22:10:49 +0100253 * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100254 * the hardware device tree as indicated by environment variable
255 * fdt_addr or as fallback the internal device tree as indicated by
256 * the environment variable fdtcontroladdr
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900257 * Return: status code
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900258 */
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100259efi_status_t efi_install_fdt(void *fdt)
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900260{
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200261 /*
262 * The EBBR spec requires that we have either an FDT or an ACPI table
263 * but not both.
264 */
265#if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100266 if (fdt) {
Alexander Graf08994972022-02-27 13:18:56 +0100267 log_warning("WARNING: Can't have ACPI table and device tree - ignoring DT.\n");
268 return EFI_SUCCESS;
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200269 }
270#else
Simon Glassdf00afa2022-09-06 20:26:50 -0600271 struct bootm_headers img = { 0 };
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900272 efi_status_t ret;
273
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100274 if (fdt == EFI_FDT_USE_INTERNAL) {
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100275 const char *fdt_opt;
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100276 uintptr_t fdt_addr;
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100277
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200278 /* Look for device tree that is already installed */
279 if (get_config_table(&efi_guid_fdt))
280 return EFI_SUCCESS;
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100281 /* Check if there is a hardware device tree */
282 fdt_opt = env_get("fdt_addr");
283 /* Use our own device tree as fallback */
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200284 if (!fdt_opt) {
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100285 fdt_opt = env_get("fdtcontroladdr");
286 if (!fdt_opt) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200287 log_err("ERROR: need device tree\n");
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100288 return EFI_NOT_FOUND;
289 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200290 }
Simon Glass3ff49ec2021-07-24 09:03:29 -0600291 fdt_addr = hextoul(fdt_opt, NULL);
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200292 if (!fdt_addr) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200293 log_err("ERROR: invalid $fdt_addr or $fdtcontroladdr\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200294 return EFI_LOAD_ERROR;
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900295 }
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100296 fdt = map_sysmem(fdt_addr, 0);
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200297 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900298
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200299 /* Install device tree */
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200300 if (fdt_check_header(fdt)) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200301 log_err("ERROR: invalid device tree\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200302 return EFI_LOAD_ERROR;
303 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900304
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200305 /* Prepare device tree for payload */
306 ret = copy_fdt(&fdt);
307 if (ret) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200308 log_err("ERROR: out of memory\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200309 return EFI_OUT_OF_RESOURCES;
310 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900311
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200312 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200313 log_err("ERROR: failed to process device tree\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200314 return EFI_LOAD_ERROR;
315 }
316
Heinrich Schuchardt74811c82020-03-14 10:59:34 +0100317 /* Create memory reservations as indicated by the device tree */
318 efi_carve_out_dt_rsv(fdt);
319
Ilias Apalodimase4e56602022-01-03 14:07:37 +0200320 efi_try_purge_kaslr_seed(fdt);
321
Etienne Carriereb9064352023-02-16 17:29:48 +0100322 if (CONFIG_IS_ENABLED(EFI_TCG2_PROTOCOL_MEASURE_DTB)) {
323 ret = efi_tcg2_measure_dtb(fdt);
324 if (ret == EFI_SECURITY_VIOLATION) {
325 log_err("ERROR: failed to measure DTB\n");
326 return ret;
327 }
328 }
329
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200330 /* Install device tree as UEFI table */
331 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
332 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200333 log_err("ERROR: failed to install device tree\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200334 return ret;
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900335 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200336#endif /* GENERATE_ACPI_TABLE */
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900337
338 return EFI_SUCCESS;
339}
340
Simon Glass4d77ee62018-11-25 20:14:39 -0700341/**
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200342 * do_bootefi_exec() - execute EFI binary
343 *
Heinrich Schuchardtaa4a66c2020-08-15 23:10:22 +0200344 * The image indicated by @handle is started. When it returns the allocated
345 * memory for the @load_options is freed.
346 *
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900347 * @handle: handle of loaded image
Heinrich Schuchardtaa4a66c2020-08-15 23:10:22 +0200348 * @load_options: load options
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200349 * Return: status code
350 *
351 * Load the EFI binary into a newly assigned memory unwinding the relocation
352 * information, install the loaded image protocol, and call the binary.
Alexander Grafe2b04f22016-03-10 00:27:20 +0100353 */
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200354static efi_status_t do_bootefi_exec(efi_handle_t handle, void *load_options)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100355{
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100356 efi_status_t ret;
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200357 efi_uintn_t exit_data_size = 0;
358 u16 *exit_data = NULL;
Masahisa Kojima1923f362023-11-10 13:25:39 +0900359 struct efi_event *evt;
Rob Clark18ceba72017-10-10 08:23:06 -0400360
Heinrich Schuchardtaf64c3e2021-01-24 14:34:12 +0000361 /* On ARM switch from EL3 or secure mode to EL2 or non-secure mode */
362 switch_to_non_secure_mode();
363
Masahisa Kojimad250a8f2022-02-22 09:58:30 +0900364 /*
365 * The UEFI standard requires that the watchdog timer is set to five
366 * minutes when invoking an EFI boot option.
367 *
368 * Unified Extensible Firmware Interface (UEFI), version 2.7 Errata A
369 * 7.5. Miscellaneous Boot Services - EFI_BOOT_SERVICES.SetWatchdogTimer
370 */
371 ret = efi_set_watchdog(300);
372 if (ret != EFI_SUCCESS) {
373 log_err("ERROR: Failed to set watchdog timer\n");
374 goto out;
375 }
376
Alexander Grafe2b04f22016-03-10 00:27:20 +0100377 /* Call our payload! */
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200378 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200379 if (ret != EFI_SUCCESS) {
380 log_err("## Application failed, r = %lu\n",
381 ret & ~EFI_ERROR_MASK);
382 if (exit_data) {
383 log_err("## %ls\n", exit_data);
384 efi_free_pool(exit_data);
385 }
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200386 }
Rob Clarkf8db9222017-09-13 18:05:33 -0400387
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900388 efi_restore_gd();
Simon Glass4d77ee62018-11-25 20:14:39 -0700389
Masahisa Kojimad250a8f2022-02-22 09:58:30 +0900390out:
Heinrich Schuchardte6263952020-01-03 22:53:42 +0100391 free(load_options);
Rob Clarkf8db9222017-09-13 18:05:33 -0400392
Ilias Apalodimas7e052792022-10-16 11:36:32 +0300393 if (IS_ENABLED(CONFIG_EFI_LOAD_FILE2_INITRD)) {
394 if (efi_initrd_deregister() != EFI_SUCCESS)
395 log_err("Failed to remove loadfile2 for initrd\n");
396 }
Ilias Apalodimasb307e3d2021-03-17 21:55:00 +0200397
Masahisa Kojima1923f362023-11-10 13:25:39 +0900398 /* Notify EFI_EVENT_GROUP_RETURN_TO_EFIBOOTMGR event group. */
399 list_for_each_entry(evt, &efi_events, link) {
400 if (evt->group &&
401 !guidcmp(evt->group,
402 &efi_guid_event_group_return_to_efibootmgr)) {
403 efi_signal_event(evt);
404 EFI_CALL(systab.boottime->close_event(evt));
405 break;
406 }
407 }
408
Masahisa Kojimad250a8f2022-02-22 09:58:30 +0900409 /* Control is returned to U-Boot, disable EFI watchdog */
410 efi_set_watchdog(0);
411
Rob Clarkf8db9222017-09-13 18:05:33 -0400412 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100413}
414
AKASHI Takahirocf819832019-04-19 12:22:33 +0900415/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200416 * do_efibootmgr() - execute EFI boot manager
AKASHI Takahirocf819832019-04-19 12:22:33 +0900417 *
AKASHI Takahirocf819832019-04-19 12:22:33 +0900418 * Return: status code
AKASHI Takahirocf819832019-04-19 12:22:33 +0900419 */
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200420static int do_efibootmgr(void)
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900421{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900422 efi_handle_t handle;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900423 efi_status_t ret;
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200424 void *load_options;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900425
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200426 ret = efi_bootmgr_load(&handle, &load_options);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900427 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200428 log_notice("EFI boot manager: Cannot load any image\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900429 return CMD_RET_FAILURE;
430 }
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900431
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200432 ret = do_bootefi_exec(handle, load_options);
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900433
AKASHI Takahirocf819832019-04-19 12:22:33 +0900434 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900435 return CMD_RET_FAILURE;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900436
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900437 return CMD_RET_SUCCESS;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900438}
439
Heinrich Schuchardt031ea8f2019-07-14 13:00:44 +0200440/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200441 * do_bootefi_image() - execute EFI binary
442 *
443 * Set up memory image for the binary to be loaded, prepare device path, and
444 * then call do_bootefi_exec() to execute it.
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900445 *
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500446 * @image_opt: string with image start address
447 * @size_opt: string with image size or NULL
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900448 * Return: status code
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900449 */
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500450static int do_bootefi_image(const char *image_opt, const char *size_opt)
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900451{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900452 void *image_buf;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900453 unsigned long addr, size;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900454 efi_status_t ret;
455
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900456#ifdef CONFIG_CMD_BOOTEFI_HELLO
457 if (!strcmp(image_opt, "hello")) {
Heinrich Schuchardt6a7ae672021-01-12 17:44:08 +0100458 image_buf = __efi_helloworld_begin;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900459 size = __efi_helloworld_end - __efi_helloworld_begin;
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100460 efi_clear_bootdev();
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900461 } else
462#endif
463 {
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100464 addr = strtoul(image_opt, NULL, 16);
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900465 /* Check that a numeric value was passed */
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100466 if (!addr)
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900467 return CMD_RET_USAGE;
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100468 image_buf = map_sysmem(addr, 0);
469
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500470 if (size_opt) {
471 size = strtoul(size_opt, NULL, 16);
472 if (!size)
473 return CMD_RET_USAGE;
474 efi_clear_bootdev();
475 } else {
476 if (image_buf != image_addr) {
477 log_err("No UEFI binary known at %s\n",
478 image_opt);
479 return CMD_RET_FAILURE;
480 }
481 size = image_size;
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100482 }
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900483 }
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100484 ret = efi_run_image(image_buf, size);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900485
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100486 if (ret != EFI_SUCCESS)
487 return CMD_RET_FAILURE;
488
489 return CMD_RET_SUCCESS;
490}
491
492/**
493 * efi_run_image() - run loaded UEFI image
494 *
495 * @source_buffer: memory address of the UEFI image
496 * @source_size: size of the UEFI image
497 * Return: status code
498 */
499efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size)
500{
501 efi_handle_t mem_handle = NULL, handle;
502 struct efi_device_path *file_path = NULL;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000503 struct efi_device_path *msg_path;
Ilias Apalodimas3e2c20f2022-10-06 16:08:44 +0300504 efi_status_t ret, ret2;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000505 u16 *load_options;
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100506
507 if (!bootefi_device_path || !bootefi_image_path) {
Simon Glass95c1d252022-01-29 14:58:37 -0700508 log_debug("Not loaded from disk\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900509 /*
510 * Special case for efi payload not loaded from disk,
511 * such as 'bootefi hello' or for example payload
512 * loaded directly into memory via JTAG, etc:
513 */
514 file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100515 (uintptr_t)source_buffer,
516 source_size);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900517 /*
518 * Make sure that device for device_path exist
519 * in load_image(). Otherwise, shell and grub will fail.
520 */
Ilias Apalodimas3e2c20f2022-10-06 16:08:44 +0300521 ret = efi_install_multiple_protocol_interfaces(&mem_handle,
522 &efi_guid_device_path,
523 file_path, NULL);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900524 if (ret != EFI_SUCCESS)
525 goto out;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000526 msg_path = file_path;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900527 } else {
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100528 file_path = efi_dp_append(bootefi_device_path,
529 bootefi_image_path);
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000530 msg_path = bootefi_image_path;
Simon Glass95c1d252022-01-29 14:58:37 -0700531 log_debug("Loaded from disk\n");
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900532 }
533
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000534 log_info("Booting %pD\n", msg_path);
535
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100536 ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer,
537 source_size, &handle));
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000538 if (ret != EFI_SUCCESS) {
539 log_err("Loading image failed\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900540 goto out;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000541 }
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200542
543 /* Transfer environment variable as load options */
544 ret = efi_env_set_load_options(handle, "bootargs", &load_options);
545 if (ret != EFI_SUCCESS)
546 goto out;
547
548 ret = do_bootefi_exec(handle, load_options);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900549
550out:
Ilias Apalodimas3e2c20f2022-10-06 16:08:44 +0300551 ret2 = efi_uninstall_multiple_protocol_interfaces(mem_handle,
552 &efi_guid_device_path,
553 file_path, NULL);
Heinrich Schuchardt6e35d3b2020-04-20 12:44:56 +0200554 efi_free_pool(file_path);
Ilias Apalodimas3e2c20f2022-10-06 16:08:44 +0300555 return (ret != EFI_SUCCESS) ? ret : ret2;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900556}
557
Simon Glass93f25592018-11-25 20:14:37 -0700558#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900559static efi_status_t bootefi_run_prepare(const char *load_options_path,
560 struct efi_device_path *device_path,
561 struct efi_device_path *image_path,
562 struct efi_loaded_image_obj **image_objp,
563 struct efi_loaded_image **loaded_image_infop)
564{
565 efi_status_t ret;
Heinrich Schuchardte6263952020-01-03 22:53:42 +0100566 u16 *load_options;
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900567
568 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
569 loaded_image_infop);
570 if (ret != EFI_SUCCESS)
571 return ret;
572
573 /* Transfer environment variable as load options */
Heinrich Schuchardt25c6be52020-08-07 17:47:13 +0200574 return efi_env_set_load_options((efi_handle_t)*image_objp,
575 load_options_path,
576 &load_options);
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900577}
578
Simon Glass93f25592018-11-25 20:14:37 -0700579/**
580 * bootefi_test_prepare() - prepare to run an EFI test
581 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100582 * Prepare to run a test as if it were provided by a loaded image.
Simon Glass93f25592018-11-25 20:14:37 -0700583 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100584 * @image_objp: pointer to be set to the loaded image handle
585 * @loaded_image_infop: pointer to be set to the loaded image protocol
586 * @path: dummy file path used to construct the device path
587 * set in the loaded image protocol
588 * @load_options_path: name of a U-Boot environment variable. Its value is
589 * set as load options in the loaded image protocol.
590 * Return: status code
Simon Glass93f25592018-11-25 20:14:37 -0700591 */
592static efi_status_t bootefi_test_prepare
593 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100594 struct efi_loaded_image **loaded_image_infop, const char *path,
595 const char *load_options_path)
Simon Glass93f25592018-11-25 20:14:37 -0700596{
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100597 efi_status_t ret;
598
Simon Glass93f25592018-11-25 20:14:37 -0700599 /* Construct a dummy device path */
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100600 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glass93f25592018-11-25 20:14:37 -0700601 if (!bootefi_device_path)
602 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100603
Heinrich Schuchardtff08eac2023-05-13 10:36:21 +0200604 bootefi_image_path = efi_dp_from_file(NULL, path);
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100605 if (!bootefi_image_path) {
606 ret = EFI_OUT_OF_RESOURCES;
607 goto failure;
608 }
609
610 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
611 bootefi_image_path, image_objp,
612 loaded_image_infop);
613 if (ret == EFI_SUCCESS)
614 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700615
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100616failure:
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100617 efi_clear_bootdev();
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100618 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700619}
620
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900621/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200622 * do_efi_selftest() - execute EFI selftest
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900623 *
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900624 * Return: status code
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900625 */
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200626static int do_efi_selftest(void)
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900627{
628 struct efi_loaded_image_obj *image_obj;
629 struct efi_loaded_image *loaded_image_info;
630 efi_status_t ret;
631
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900632 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
633 "\\selftest", "efi_selftest");
634 if (ret != EFI_SUCCESS)
635 return CMD_RET_FAILURE;
636
637 /* Execute the test */
638 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
Ilias Apalodimasb09ecf12023-07-24 13:17:36 +0300639 efi_restore_gd();
640 free(loaded_image_info->load_options);
641 if (ret != EFI_SUCCESS)
642 efi_delete_handle(&image_obj->header);
643 else
644 ret = efi_delete_handle(&image_obj->header);
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900645
646 return ret != EFI_SUCCESS;
647}
Simon Glass93f25592018-11-25 20:14:37 -0700648#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
649
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200650/**
651 * do_bootefi() - execute `bootefi` command
652 *
653 * @cmdtp: table entry describing command
654 * @flag: bitmap indicating how the command was invoked
655 * @argc: number of arguments
656 * @argv: command line arguments
657 * Return: status code
658 */
Simon Glassed38aef2020-05-10 11:40:03 -0600659static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc,
660 char *const argv[])
Alexander Grafe2b04f22016-03-10 00:27:20 +0100661{
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200662 efi_status_t ret;
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200663 char *img_addr, *img_size, *str_copy, *pos;
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100664 void *fdt;
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200665
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900666 if (argc < 2)
667 return CMD_RET_USAGE;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900668
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200669 /* Initialize EFI drivers */
670 ret = efi_init_obj_list();
671 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200672 log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n",
673 ret & ~EFI_ERROR_MASK);
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200674 return CMD_RET_FAILURE;
675 }
676
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200677 if (argc > 2) {
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100678 uintptr_t fdt_addr;
679
Simon Glass3ff49ec2021-07-24 09:03:29 -0600680 fdt_addr = hextoul(argv[2], NULL);
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100681 fdt = map_sysmem(fdt_addr, 0);
682 } else {
683 fdt = EFI_FDT_USE_INTERNAL;
684 }
685 ret = efi_install_fdt(fdt);
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200686 if (ret == EFI_INVALID_PARAMETER)
687 return CMD_RET_USAGE;
688 else if (ret != EFI_SUCCESS)
689 return CMD_RET_FAILURE;
690
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100691 if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR)) {
692 if (!strcmp(argv[1], "bootmgr"))
693 return do_efibootmgr();
694 }
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900695#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100696 if (!strcmp(argv[1], "selftest"))
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200697 return do_efi_selftest();
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900698#endif
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200699 str_copy = strdup(argv[1]);
700 if (!str_copy) {
701 log_err("Out of memory\n");
702 return CMD_RET_FAILURE;
703 }
704 pos = str_copy;
705 img_addr = strsep(&pos, ":");
706 img_size = strsep(&pos, ":");
707 ret = do_bootefi_image(img_addr, img_size);
708 free(str_copy);
Simon Glassfac4ced2016-11-07 08:47:08 -0700709
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200710 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100711}
712
Tom Rini03f146c2023-10-07 15:13:08 -0400713U_BOOT_LONGHELP(bootefi,
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200714 "<image address>[:<image size>] [<fdt address>]\n"
715 " - boot EFI payload\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700716#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200717 "bootefi hello\n"
718 " - boot a sample Hello World application stored within U-Boot\n"
719#endif
720#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100721 "bootefi selftest [fdt address]\n"
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200722 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200723 " Use environment variable efi_selftest to select a single test.\n"
724 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700725#endif
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100726#ifdef CONFIG_CMD_BOOTEFI_BOOTMGR
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900727 "bootefi bootmgr [fdt address]\n"
Rob Clarkc84c1102017-09-13 18:05:38 -0400728 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
729 "\n"
730 " If specified, the device tree located at <fdt address> gets\n"
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100731 " exposed as EFI configuration table.\n"
732#endif
Tom Rini03f146c2023-10-07 15:13:08 -0400733 );
Alexander Grafe2b04f22016-03-10 00:27:20 +0100734
735U_BOOT_CMD(
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500736 bootefi, 4, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700737 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100738 bootefi_help_text
739);