blob: 37ce659fa123f4b2db90216181f9d090f1fe85cb [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;
Simon Glass95c1d252022-01-29 14:58:37 -0700122 log_debug("- recorded device %ls\n", efi_dp_str(device));
123 if (image)
124 log_debug("- and image %ls\n", efi_dp_str(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 Schuchardtb23f9b72018-11-18 17:58:52 +0100207 /*
208 * Safe fdt location is at 127 MiB.
209 * On the sandbox convert from the sandbox address space.
210 */
211 new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 +
212 fdt_size, 0);
Simon Glass5d618df2018-08-08 03:54:30 -0600213 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Heinrich Schuchardte00764b2020-05-06 20:32:31 +0200214 EFI_ACPI_RECLAIM_MEMORY, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600215 &new_fdt_addr);
216 if (ret != EFI_SUCCESS) {
Alexander Graffdbae012016-04-11 23:51:01 +0200217 /* If we can't put it there, put it somewhere */
xypron.glpk@gmx.def6b99122017-08-11 21:19:25 +0200218 new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size);
Simon Glass5d618df2018-08-08 03:54:30 -0600219 ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS,
Heinrich Schuchardte00764b2020-05-06 20:32:31 +0200220 EFI_ACPI_RECLAIM_MEMORY, fdt_pages,
Simon Glass5d618df2018-08-08 03:54:30 -0600221 &new_fdt_addr);
222 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200223 log_err("ERROR: Failed to reserve space for FDT\n");
Simon Glass5d618df2018-08-08 03:54:30 -0600224 goto done;
Alexander Graf9b9b7162017-07-03 13:32:35 +0200225 }
Alexander Graffdbae012016-04-11 23:51:01 +0200226 }
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100227 new_fdt = (void *)(uintptr_t)new_fdt_addr;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200228 memcpy(new_fdt, fdt, fdt_totalsize(fdt));
229 fdt_set_totalsize(new_fdt, fdt_size);
230
Heinrich Schuchardtb23f9b72018-11-18 17:58:52 +0100231 *fdtp = (void *)(uintptr_t)new_fdt_addr;
Simon Glass5d618df2018-08-08 03:54:30 -0600232done:
233 return ret;
Alexander Graf2ff5cc32016-04-11 16:55:26 +0200234}
235
Heinrich Schuchardt928de7d2020-08-27 12:52:20 +0200236/**
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200237 * get_config_table() - get configuration table
238 *
239 * @guid: GUID of the configuration table
240 * Return: pointer to configuration table or NULL
241 */
242static void *get_config_table(const efi_guid_t *guid)
243{
244 size_t i;
245
246 for (i = 0; i < systab.nr_tables; i++) {
247 if (!guidcmp(guid, &systab.tables[i].guid))
248 return systab.tables[i].table;
249 }
250 return NULL;
Alexander Graf22c88bf2018-04-06 09:40:51 +0200251}
252
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200253#endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */
254
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900255/**
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100256 * efi_install_fdt() - install device tree
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200257 *
Heinrich Schuchardtb112ac22020-02-07 22:10:49 +0100258 * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory
259 * address will will be installed as configuration table, otherwise the device
260 * tree located at the address indicated by environment variable fdt_addr or as
261 * fallback fdtcontroladdr will be used.
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200262 *
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100263 * On architectures using ACPI tables device trees shall not be installed as
264 * configuration table.
Heinrich Schuchardta3086cd2019-05-12 20:16:25 +0200265 *
Heinrich Schuchardtb112ac22020-02-07 22:10:49 +0100266 * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100267 * the hardware device tree as indicated by environment variable
268 * fdt_addr or as fallback the internal device tree as indicated by
269 * the environment variable fdtcontroladdr
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900270 * Return: status code
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900271 */
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100272efi_status_t efi_install_fdt(void *fdt)
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900273{
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200274 /*
275 * The EBBR spec requires that we have either an FDT or an ACPI table
276 * but not both.
277 */
278#if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE)
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100279 if (fdt) {
Alexander Graf08994972022-02-27 13:18:56 +0100280 log_warning("WARNING: Can't have ACPI table and device tree - ignoring DT.\n");
281 return EFI_SUCCESS;
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200282 }
283#else
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900284 bootm_headers_t img = { 0 };
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900285 efi_status_t ret;
286
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100287 if (fdt == EFI_FDT_USE_INTERNAL) {
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100288 const char *fdt_opt;
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100289 uintptr_t fdt_addr;
Heinrich Schuchardt6fbb8ac2019-11-28 06:46:09 +0100290
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200291 /* Look for device tree that is already installed */
292 if (get_config_table(&efi_guid_fdt))
293 return EFI_SUCCESS;
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100294 /* Check if there is a hardware device tree */
295 fdt_opt = env_get("fdt_addr");
296 /* Use our own device tree as fallback */
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200297 if (!fdt_opt) {
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100298 fdt_opt = env_get("fdtcontroladdr");
299 if (!fdt_opt) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200300 log_err("ERROR: need device tree\n");
Heinrich Schuchardte478ad52019-12-04 12:31:12 +0100301 return EFI_NOT_FOUND;
302 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200303 }
Simon Glass3ff49ec2021-07-24 09:03:29 -0600304 fdt_addr = hextoul(fdt_opt, NULL);
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200305 if (!fdt_addr) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200306 log_err("ERROR: invalid $fdt_addr or $fdtcontroladdr\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200307 return EFI_LOAD_ERROR;
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900308 }
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100309 fdt = map_sysmem(fdt_addr, 0);
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200310 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900311
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200312 /* Install device tree */
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200313 if (fdt_check_header(fdt)) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200314 log_err("ERROR: invalid device tree\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200315 return EFI_LOAD_ERROR;
316 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900317
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200318 /* Prepare device tree for payload */
319 ret = copy_fdt(&fdt);
320 if (ret) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200321 log_err("ERROR: out of memory\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200322 return EFI_OUT_OF_RESOURCES;
323 }
AKASHI Takahiro451e9912019-04-19 12:22:30 +0900324
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200325 if (image_setup_libfdt(&img, fdt, 0, NULL)) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200326 log_err("ERROR: failed to process device tree\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200327 return EFI_LOAD_ERROR;
328 }
329
Heinrich Schuchardt74811c82020-03-14 10:59:34 +0100330 /* Create memory reservations as indicated by the device tree */
331 efi_carve_out_dt_rsv(fdt);
332
Ilias Apalodimase4e56602022-01-03 14:07:37 +0200333 efi_try_purge_kaslr_seed(fdt);
334
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200335 /* Install device tree as UEFI table */
336 ret = efi_install_configuration_table(&efi_guid_fdt, fdt);
337 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200338 log_err("ERROR: failed to install device tree\n");
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200339 return ret;
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900340 }
Heinrich Schuchardt4420a332019-04-20 13:33:55 +0200341#endif /* GENERATE_ACPI_TABLE */
AKASHI Takahirocc02f172019-04-19 12:22:29 +0900342
343 return EFI_SUCCESS;
344}
345
Simon Glass4d77ee62018-11-25 20:14:39 -0700346/**
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200347 * do_bootefi_exec() - execute EFI binary
348 *
Heinrich Schuchardtaa4a66c2020-08-15 23:10:22 +0200349 * The image indicated by @handle is started. When it returns the allocated
350 * memory for the @load_options is freed.
351 *
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900352 * @handle: handle of loaded image
Heinrich Schuchardtaa4a66c2020-08-15 23:10:22 +0200353 * @load_options: load options
Heinrich Schuchardt3c3a7352018-09-23 17:21:51 +0200354 * Return: status code
355 *
356 * Load the EFI binary into a newly assigned memory unwinding the relocation
357 * information, install the loaded image protocol, and call the binary.
Alexander Grafe2b04f22016-03-10 00:27:20 +0100358 */
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200359static efi_status_t do_bootefi_exec(efi_handle_t handle, void *load_options)
Alexander Grafe2b04f22016-03-10 00:27:20 +0100360{
Heinrich Schuchardt4b055a22018-03-03 15:29:01 +0100361 efi_status_t ret;
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200362 efi_uintn_t exit_data_size = 0;
363 u16 *exit_data = NULL;
Rob Clark18ceba72017-10-10 08:23:06 -0400364
Heinrich Schuchardtaf64c3e2021-01-24 14:34:12 +0000365 /* On ARM switch from EL3 or secure mode to EL2 or non-secure mode */
366 switch_to_non_secure_mode();
367
Masahisa Kojimad250a8f2022-02-22 09:58:30 +0900368 /*
369 * The UEFI standard requires that the watchdog timer is set to five
370 * minutes when invoking an EFI boot option.
371 *
372 * Unified Extensible Firmware Interface (UEFI), version 2.7 Errata A
373 * 7.5. Miscellaneous Boot Services - EFI_BOOT_SERVICES.SetWatchdogTimer
374 */
375 ret = efi_set_watchdog(300);
376 if (ret != EFI_SUCCESS) {
377 log_err("ERROR: Failed to set watchdog timer\n");
378 goto out;
379 }
380
Alexander Grafe2b04f22016-03-10 00:27:20 +0100381 /* Call our payload! */
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200382 ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data));
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200383 if (ret != EFI_SUCCESS) {
384 log_err("## Application failed, r = %lu\n",
385 ret & ~EFI_ERROR_MASK);
386 if (exit_data) {
387 log_err("## %ls\n", exit_data);
388 efi_free_pool(exit_data);
389 }
Heinrich Schuchardt3d445122019-04-30 17:57:30 +0200390 }
Rob Clarkf8db9222017-09-13 18:05:33 -0400391
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900392 efi_restore_gd();
Simon Glass4d77ee62018-11-25 20:14:39 -0700393
Masahisa Kojimad250a8f2022-02-22 09:58:30 +0900394out:
Heinrich Schuchardte6263952020-01-03 22:53:42 +0100395 free(load_options);
Rob Clarkf8db9222017-09-13 18:05:33 -0400396
Ilias Apalodimasb307e3d2021-03-17 21:55:00 +0200397 if (IS_ENABLED(CONFIG_EFI_LOAD_FILE2_INITRD))
398 efi_initrd_deregister();
399
Masahisa Kojimad250a8f2022-02-22 09:58:30 +0900400 /* Control is returned to U-Boot, disable EFI watchdog */
401 efi_set_watchdog(0);
402
Rob Clarkf8db9222017-09-13 18:05:33 -0400403 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100404}
405
AKASHI Takahirocf819832019-04-19 12:22:33 +0900406/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200407 * do_efibootmgr() - execute EFI boot manager
AKASHI Takahirocf819832019-04-19 12:22:33 +0900408 *
AKASHI Takahirocf819832019-04-19 12:22:33 +0900409 * Return: status code
AKASHI Takahirocf819832019-04-19 12:22:33 +0900410 */
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200411static int do_efibootmgr(void)
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900412{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900413 efi_handle_t handle;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900414 efi_status_t ret;
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200415 void *load_options;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900416
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200417 ret = efi_bootmgr_load(&handle, &load_options);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900418 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200419 log_notice("EFI boot manager: Cannot load any image\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900420 return CMD_RET_FAILURE;
421 }
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900422
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200423 ret = do_bootefi_exec(handle, load_options);
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900424
AKASHI Takahirocf819832019-04-19 12:22:33 +0900425 if (ret != EFI_SUCCESS)
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900426 return CMD_RET_FAILURE;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900427
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900428 return CMD_RET_SUCCESS;
AKASHI Takahiro758733d2019-04-19 12:22:32 +0900429}
430
Heinrich Schuchardt031ea8f2019-07-14 13:00:44 +0200431/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200432 * do_bootefi_image() - execute EFI binary
433 *
434 * Set up memory image for the binary to be loaded, prepare device path, and
435 * then call do_bootefi_exec() to execute it.
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900436 *
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500437 * @image_opt: string with image start address
438 * @size_opt: string with image size or NULL
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900439 * Return: status code
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900440 */
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500441static int do_bootefi_image(const char *image_opt, const char *size_opt)
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900442{
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900443 void *image_buf;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900444 unsigned long addr, size;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900445 efi_status_t ret;
446
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900447#ifdef CONFIG_CMD_BOOTEFI_HELLO
448 if (!strcmp(image_opt, "hello")) {
Heinrich Schuchardt6a7ae672021-01-12 17:44:08 +0100449 image_buf = __efi_helloworld_begin;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900450 size = __efi_helloworld_end - __efi_helloworld_begin;
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100451 efi_clear_bootdev();
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900452 } else
453#endif
454 {
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100455 addr = strtoul(image_opt, NULL, 16);
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900456 /* Check that a numeric value was passed */
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100457 if (!addr)
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900458 return CMD_RET_USAGE;
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100459 image_buf = map_sysmem(addr, 0);
460
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500461 if (size_opt) {
462 size = strtoul(size_opt, NULL, 16);
463 if (!size)
464 return CMD_RET_USAGE;
465 efi_clear_bootdev();
466 } else {
467 if (image_buf != image_addr) {
468 log_err("No UEFI binary known at %s\n",
469 image_opt);
470 return CMD_RET_FAILURE;
471 }
472 size = image_size;
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100473 }
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900474 }
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100475 ret = efi_run_image(image_buf, size);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900476
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100477 if (ret != EFI_SUCCESS)
478 return CMD_RET_FAILURE;
479
480 return CMD_RET_SUCCESS;
481}
482
483/**
484 * efi_run_image() - run loaded UEFI image
485 *
486 * @source_buffer: memory address of the UEFI image
487 * @source_size: size of the UEFI image
488 * Return: status code
489 */
490efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size)
491{
492 efi_handle_t mem_handle = NULL, handle;
493 struct efi_device_path *file_path = NULL;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000494 struct efi_device_path *msg_path;
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100495 efi_status_t ret;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000496 u16 *load_options;
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100497
498 if (!bootefi_device_path || !bootefi_image_path) {
Simon Glass95c1d252022-01-29 14:58:37 -0700499 log_debug("Not loaded from disk\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900500 /*
501 * Special case for efi payload not loaded from disk,
502 * such as 'bootefi hello' or for example payload
503 * loaded directly into memory via JTAG, etc:
504 */
505 file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE,
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100506 (uintptr_t)source_buffer,
507 source_size);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900508 /*
509 * Make sure that device for device_path exist
510 * in load_image(). Otherwise, shell and grub will fail.
511 */
512 ret = efi_create_handle(&mem_handle);
513 if (ret != EFI_SUCCESS)
514 goto out;
515
516 ret = efi_add_protocol(mem_handle, &efi_guid_device_path,
517 file_path);
518 if (ret != EFI_SUCCESS)
519 goto out;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000520 msg_path = file_path;
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900521 } else {
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100522 file_path = efi_dp_append(bootefi_device_path,
523 bootefi_image_path);
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000524 msg_path = bootefi_image_path;
Simon Glass95c1d252022-01-29 14:58:37 -0700525 log_debug("Loaded from disk\n");
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900526 }
527
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000528 log_info("Booting %pD\n", msg_path);
529
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100530 ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer,
531 source_size, &handle));
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000532 if (ret != EFI_SUCCESS) {
533 log_err("Loading image failed\n");
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900534 goto out;
Heinrich Schuchardtc3a9c9c2020-08-25 17:54:05 +0000535 }
Heinrich Schuchardta7647a72020-08-07 17:49:39 +0200536
537 /* Transfer environment variable as load options */
538 ret = efi_env_set_load_options(handle, "bootargs", &load_options);
539 if (ret != EFI_SUCCESS)
540 goto out;
541
542 ret = do_bootefi_exec(handle, load_options);
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900543
544out:
Heinrich Schuchardt6e35d3b2020-04-20 12:44:56 +0200545 efi_delete_handle(mem_handle);
546 efi_free_pool(file_path);
Heinrich Schuchardtffb90592019-12-07 20:51:06 +0100547 return ret;
AKASHI Takahirofbd3ba52019-04-19 12:22:34 +0900548}
549
Simon Glass93f25592018-11-25 20:14:37 -0700550#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900551static efi_status_t bootefi_run_prepare(const char *load_options_path,
552 struct efi_device_path *device_path,
553 struct efi_device_path *image_path,
554 struct efi_loaded_image_obj **image_objp,
555 struct efi_loaded_image **loaded_image_infop)
556{
557 efi_status_t ret;
Heinrich Schuchardte6263952020-01-03 22:53:42 +0100558 u16 *load_options;
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900559
560 ret = efi_setup_loaded_image(device_path, image_path, image_objp,
561 loaded_image_infop);
562 if (ret != EFI_SUCCESS)
563 return ret;
564
565 /* Transfer environment variable as load options */
Heinrich Schuchardt25c6be52020-08-07 17:47:13 +0200566 return efi_env_set_load_options((efi_handle_t)*image_objp,
567 load_options_path,
568 &load_options);
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900569}
570
Simon Glass93f25592018-11-25 20:14:37 -0700571/**
572 * bootefi_test_prepare() - prepare to run an EFI test
573 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100574 * Prepare to run a test as if it were provided by a loaded image.
Simon Glass93f25592018-11-25 20:14:37 -0700575 *
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100576 * @image_objp: pointer to be set to the loaded image handle
577 * @loaded_image_infop: pointer to be set to the loaded image protocol
578 * @path: dummy file path used to construct the device path
579 * set in the loaded image protocol
580 * @load_options_path: name of a U-Boot environment variable. Its value is
581 * set as load options in the loaded image protocol.
582 * Return: status code
Simon Glass93f25592018-11-25 20:14:37 -0700583 */
584static efi_status_t bootefi_test_prepare
585 (struct efi_loaded_image_obj **image_objp,
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100586 struct efi_loaded_image **loaded_image_infop, const char *path,
587 const char *load_options_path)
Simon Glass93f25592018-11-25 20:14:37 -0700588{
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100589 efi_status_t ret;
590
Simon Glass93f25592018-11-25 20:14:37 -0700591 /* Construct a dummy device path */
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100592 bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0);
Simon Glass93f25592018-11-25 20:14:37 -0700593 if (!bootefi_device_path)
594 return EFI_OUT_OF_RESOURCES;
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100595
Simon Glass93f25592018-11-25 20:14:37 -0700596 bootefi_image_path = efi_dp_from_file(NULL, 0, path);
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100597 if (!bootefi_image_path) {
598 ret = EFI_OUT_OF_RESOURCES;
599 goto failure;
600 }
601
602 ret = bootefi_run_prepare(load_options_path, bootefi_device_path,
603 bootefi_image_path, image_objp,
604 loaded_image_infop);
605 if (ret == EFI_SUCCESS)
606 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700607
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100608failure:
Heinrich Schuchardt6b821592021-01-12 12:46:24 +0100609 efi_clear_bootdev();
Heinrich Schuchardtfd9cbe32019-01-12 14:42:40 +0100610 return ret;
Simon Glass93f25592018-11-25 20:14:37 -0700611}
612
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900613/**
614 * bootefi_run_finish() - finish up after running an EFI test
615 *
616 * @loaded_image_info: Pointer to a struct which holds the loaded image info
617 * @image_obj: Pointer to a struct which holds the loaded image object
618 */
619static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj,
620 struct efi_loaded_image *loaded_image_info)
621{
622 efi_restore_gd();
623 free(loaded_image_info->load_options);
624 efi_delete_handle(&image_obj->header);
625}
626
627/**
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200628 * do_efi_selftest() - execute EFI selftest
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900629 *
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900630 * Return: status code
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900631 */
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200632static int do_efi_selftest(void)
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900633{
634 struct efi_loaded_image_obj *image_obj;
635 struct efi_loaded_image *loaded_image_info;
636 efi_status_t ret;
637
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900638 ret = bootefi_test_prepare(&image_obj, &loaded_image_info,
639 "\\selftest", "efi_selftest");
640 if (ret != EFI_SUCCESS)
641 return CMD_RET_FAILURE;
642
643 /* Execute the test */
644 ret = EFI_CALL(efi_selftest(&image_obj->header, &systab));
645 bootefi_run_finish(image_obj, loaded_image_info);
646
647 return ret != EFI_SUCCESS;
648}
Simon Glass93f25592018-11-25 20:14:37 -0700649#endif /* CONFIG_CMD_BOOTEFI_SELFTEST */
650
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200651/**
652 * do_bootefi() - execute `bootefi` command
653 *
654 * @cmdtp: table entry describing command
655 * @flag: bitmap indicating how the command was invoked
656 * @argc: number of arguments
657 * @argv: command line arguments
658 * Return: status code
659 */
Simon Glassed38aef2020-05-10 11:40:03 -0600660static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc,
661 char *const argv[])
Alexander Grafe2b04f22016-03-10 00:27:20 +0100662{
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200663 efi_status_t ret;
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200664 char *img_addr, *img_size, *str_copy, *pos;
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100665 void *fdt;
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200666
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900667 if (argc < 2)
668 return CMD_RET_USAGE;
AKASHI Takahirocf819832019-04-19 12:22:33 +0900669
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200670 /* Initialize EFI drivers */
671 ret = efi_init_obj_list();
672 if (ret != EFI_SUCCESS) {
Heinrich Schuchardtbb38a1f2020-07-17 20:21:00 +0200673 log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n",
674 ret & ~EFI_ERROR_MASK);
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200675 return CMD_RET_FAILURE;
676 }
677
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200678 if (argc > 2) {
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100679 uintptr_t fdt_addr;
680
Simon Glass3ff49ec2021-07-24 09:03:29 -0600681 fdt_addr = hextoul(argv[2], NULL);
Heinrich Schuchardt62467412019-12-08 01:07:01 +0100682 fdt = map_sysmem(fdt_addr, 0);
683 } else {
684 fdt = EFI_FDT_USE_INTERNAL;
685 }
686 ret = efi_install_fdt(fdt);
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200687 if (ret == EFI_INVALID_PARAMETER)
688 return CMD_RET_USAGE;
689 else if (ret != EFI_SUCCESS)
690 return CMD_RET_FAILURE;
691
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100692 if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR)) {
693 if (!strcmp(argv[1], "bootmgr"))
694 return do_efibootmgr();
695 }
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900696#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100697 if (!strcmp(argv[1], "selftest"))
Heinrich Schuchardt8fc56c62019-05-12 20:16:25 +0200698 return do_efi_selftest();
AKASHI Takahiro09a81c72019-04-19 12:22:31 +0900699#endif
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200700 str_copy = strdup(argv[1]);
701 if (!str_copy) {
702 log_err("Out of memory\n");
703 return CMD_RET_FAILURE;
704 }
705 pos = str_copy;
706 img_addr = strsep(&pos, ":");
707 img_size = strsep(&pos, ":");
708 ret = do_bootefi_image(img_addr, img_size);
709 free(str_copy);
Simon Glassfac4ced2016-11-07 08:47:08 -0700710
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200711 return ret;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100712}
713
714#ifdef CONFIG_SYS_LONGHELP
715static char bootefi_help_text[] =
Heinrich Schuchardt3ea20e72022-05-19 08:00:56 +0200716 "<image address>[:<image size>] [<fdt address>]\n"
717 " - boot EFI payload\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700718#ifdef CONFIG_CMD_BOOTEFI_HELLO
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200719 "bootefi hello\n"
720 " - boot a sample Hello World application stored within U-Boot\n"
721#endif
722#ifdef CONFIG_CMD_BOOTEFI_SELFTEST
Heinrich Schuchardt44ab21b2018-03-03 15:29:03 +0100723 "bootefi selftest [fdt address]\n"
Heinrich Schuchardtd33ae3e2017-09-15 10:06:11 +0200724 " - boot an EFI selftest application stored within U-Boot\n"
Heinrich Schuchardt02efd5d2017-10-18 18:13:13 +0200725 " Use environment variable efi_selftest to select a single test.\n"
726 " Use 'setenv efi_selftest list' to enumerate all tests.\n"
Simon Glassfac4ced2016-11-07 08:47:08 -0700727#endif
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100728#ifdef CONFIG_CMD_BOOTEFI_BOOTMGR
AKASHI Takahiro14ff23b2019-04-19 12:22:35 +0900729 "bootefi bootmgr [fdt address]\n"
Rob Clarkc84c1102017-09-13 18:05:38 -0400730 " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n"
731 "\n"
732 " If specified, the device tree located at <fdt address> gets\n"
Heinrich Schuchardtb2625e82021-01-15 19:02:50 +0100733 " exposed as EFI configuration table.\n"
734#endif
735 ;
Alexander Grafe2b04f22016-03-10 00:27:20 +0100736#endif
737
738U_BOOT_CMD(
Kyle Evans2c3bf4e2022-04-10 16:05:55 -0500739 bootefi, 4, 0, do_bootefi,
Sergey Kubushyn268f19e2016-06-07 11:14:31 -0700740 "Boots an EFI payload from memory",
Alexander Grafe2b04f22016-03-10 00:27:20 +0100741 bootefi_help_text
742);