Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI application loader |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 8 | #define LOG_CATEGORY LOGC_EFI |
| 9 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 10 | #include <common.h> |
Heinrich Schuchardt | f6c6df7 | 2019-01-08 18:13:06 +0100 | [diff] [blame] | 11 | #include <charset.h> |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 12 | #include <command.h> |
Simon Glass | 9d92245 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 13 | #include <dm.h> |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 14 | #include <efi_loader.h> |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 15 | #include <efi_selftest.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 16 | #include <env.h> |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 17 | #include <errno.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 18 | #include <image.h> |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 19 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 20 | #include <malloc.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 21 | #include <linux/libfdt.h> |
| 22 | #include <linux/libfdt_env.h> |
Alexander Graf | 354264b | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 23 | #include <mapmem.h> |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 24 | #include <memalign.h> |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 25 | #include <asm-generic/sections.h> |
| 26 | #include <linux/linkage.h> |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 27 | |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 29 | |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 30 | static struct efi_device_path *bootefi_image_path; |
| 31 | static struct efi_device_path *bootefi_device_path; |
Heinrich Schuchardt | 5f59518 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 32 | static void *image_addr; |
| 33 | static size_t image_size; |
| 34 | |
| 35 | /** |
| 36 | * efi_clear_bootdev() - clear boot device |
| 37 | */ |
| 38 | static void efi_clear_bootdev(void) |
| 39 | { |
| 40 | efi_free_pool(bootefi_device_path); |
| 41 | efi_free_pool(bootefi_image_path); |
| 42 | bootefi_device_path = NULL; |
| 43 | bootefi_image_path = NULL; |
| 44 | image_addr = NULL; |
| 45 | image_size = 0; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * efi_set_bootdev() - set boot device |
| 50 | * |
| 51 | * This function is called when a file is loaded, e.g. via the 'load' command. |
| 52 | * We use the path to this file to inform the UEFI binary about the boot device. |
| 53 | * |
| 54 | * @dev: device, e.g. "MMC" |
| 55 | * @devnr: number of the device, e.g. "1:2" |
| 56 | * @path: path to file loaded |
| 57 | * @buffer: buffer with file loaded |
| 58 | * @buffer_size: size of file loaded |
| 59 | */ |
| 60 | void efi_set_bootdev(const char *dev, const char *devnr, const char *path, |
| 61 | void *buffer, size_t buffer_size) |
| 62 | { |
| 63 | struct efi_device_path *device, *image; |
| 64 | efi_status_t ret; |
| 65 | |
| 66 | /* Forget overwritten image */ |
| 67 | if (buffer + buffer_size >= image_addr && |
| 68 | image_addr + image_size >= buffer) |
| 69 | efi_clear_bootdev(); |
| 70 | |
| 71 | /* Remember only PE-COFF and FIT images */ |
| 72 | if (efi_check_pe(buffer, buffer_size, NULL) != EFI_SUCCESS) { |
| 73 | #ifdef CONFIG_FIT |
| 74 | if (!fit_check_format(buffer)) |
| 75 | return; |
| 76 | /* |
| 77 | * FIT images of type EFI_OS are started via command bootm. |
| 78 | * We should not use their boot device with the bootefi command. |
| 79 | */ |
| 80 | buffer = 0; |
| 81 | buffer_size = 0; |
| 82 | #else |
| 83 | return; |
| 84 | #endif |
| 85 | } |
| 86 | |
| 87 | /* efi_set_bootdev() is typically called repeatedly, recover memory */ |
| 88 | efi_clear_bootdev(); |
| 89 | |
| 90 | image_addr = buffer; |
| 91 | image_size = buffer_size; |
| 92 | |
| 93 | ret = efi_dp_from_name(dev, devnr, path, &device, &image); |
| 94 | if (ret == EFI_SUCCESS) { |
| 95 | bootefi_device_path = device; |
| 96 | if (image) { |
| 97 | /* FIXME: image should not contain device */ |
| 98 | struct efi_device_path *image_tmp = image; |
| 99 | |
| 100 | efi_dp_split_file_path(image, &device, &image); |
| 101 | efi_free_pool(image_tmp); |
| 102 | } |
| 103 | bootefi_image_path = image; |
| 104 | } else { |
| 105 | efi_clear_bootdev(); |
| 106 | } |
| 107 | } |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 108 | |
Heinrich Schuchardt | 810371a | 2019-07-14 13:00:44 +0200 | [diff] [blame] | 109 | /** |
Heinrich Schuchardt | 1064d04 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 110 | * efi_env_set_load_options() - set load options from environment variable |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 111 | * |
Heinrich Schuchardt | a3850e4 | 2020-01-03 22:53:42 +0100 | [diff] [blame] | 112 | * @handle: the image handle |
| 113 | * @env_var: name of the environment variable |
| 114 | * @load_options: pointer to load options (output) |
| 115 | * Return: status code |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 116 | */ |
Heinrich Schuchardt | 1064d04 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 117 | static efi_status_t efi_env_set_load_options(efi_handle_t handle, |
| 118 | const char *env_var, |
| 119 | u16 **load_options) |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 120 | { |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 121 | const char *env = env_get(env_var); |
Heinrich Schuchardt | 1064d04 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 122 | size_t size; |
Heinrich Schuchardt | 7086a71 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 123 | u16 *pos; |
AKASHI Takahiro | defa7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 124 | efi_status_t ret; |
| 125 | |
Heinrich Schuchardt | a3850e4 | 2020-01-03 22:53:42 +0100 | [diff] [blame] | 126 | *load_options = NULL; |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 127 | if (!env) |
Heinrich Schuchardt | 1064d04 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 128 | return EFI_SUCCESS; |
| 129 | size = sizeof(u16) * (utf8_utf16_strlen(env) + 1); |
| 130 | pos = calloc(size, 1); |
| 131 | if (!pos) |
AKASHI Takahiro | defa7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 132 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | a3850e4 | 2020-01-03 22:53:42 +0100 | [diff] [blame] | 133 | *load_options = pos; |
Heinrich Schuchardt | 7086a71 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 134 | utf8_utf16_strcpy(&pos, env); |
Heinrich Schuchardt | 1064d04 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 135 | ret = efi_set_load_options(handle, size, *load_options); |
| 136 | if (ret != EFI_SUCCESS) { |
| 137 | free(*load_options); |
| 138 | *load_options = NULL; |
| 139 | } |
| 140 | return ret; |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 141 | } |
| 142 | |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 143 | #if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) |
| 144 | |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 145 | /** |
| 146 | * copy_fdt() - Copy the device tree to a new location available to EFI |
| 147 | * |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 148 | * The FDT is copied to a suitable location within the EFI memory map. |
Heinrich Schuchardt | c3772ca | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 149 | * Additional 12 KiB are added to the space in case the device tree needs to be |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 150 | * expanded later with fdt_open_into(). |
| 151 | * |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 152 | * @fdtp: On entry a pointer to the flattened device tree. |
| 153 | * On exit a pointer to the copy of the flattened device tree. |
Heinrich Schuchardt | 4574d1b | 2018-11-12 18:55:22 +0100 | [diff] [blame] | 154 | * FDT start |
| 155 | * Return: status code |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 156 | */ |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 157 | static efi_status_t copy_fdt(void **fdtp) |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 158 | { |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 159 | unsigned long fdt_ram_start = -1L, fdt_pages; |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 160 | efi_status_t ret = 0; |
| 161 | void *fdt, *new_fdt; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 162 | u64 new_fdt_addr; |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 163 | uint fdt_size; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 164 | int i; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 165 | |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 166 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 167 | u64 ram_start = gd->bd->bi_dram[i].start; |
| 168 | u64 ram_size = gd->bd->bi_dram[i].size; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 169 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 170 | if (!ram_size) |
| 171 | continue; |
| 172 | |
| 173 | if (ram_start < fdt_ram_start) |
| 174 | fdt_ram_start = ram_start; |
| 175 | } |
| 176 | |
Simon Glass | bc9a638 | 2018-06-18 08:08:25 -0600 | [diff] [blame] | 177 | /* |
Heinrich Schuchardt | c3772ca | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 178 | * Give us at least 12 KiB of breathing room in case the device tree |
| 179 | * needs to be expanded later. |
Simon Glass | bc9a638 | 2018-06-18 08:08:25 -0600 | [diff] [blame] | 180 | */ |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 181 | fdt = *fdtp; |
Heinrich Schuchardt | c3772ca | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 182 | fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000); |
| 183 | fdt_size = fdt_pages << EFI_PAGE_SHIFT; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 184 | |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 185 | /* |
| 186 | * Safe fdt location is at 127 MiB. |
| 187 | * On the sandbox convert from the sandbox address space. |
| 188 | */ |
| 189 | new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 + |
| 190 | fdt_size, 0); |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 191 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
Heinrich Schuchardt | 42a426e | 2020-05-06 20:32:31 +0200 | [diff] [blame] | 192 | EFI_ACPI_RECLAIM_MEMORY, fdt_pages, |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 193 | &new_fdt_addr); |
| 194 | if (ret != EFI_SUCCESS) { |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 195 | /* If we can't put it there, put it somewhere */ |
xypron.glpk@gmx.de | a44bffc | 2017-08-11 21:19:25 +0200 | [diff] [blame] | 196 | new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size); |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 197 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
Heinrich Schuchardt | 42a426e | 2020-05-06 20:32:31 +0200 | [diff] [blame] | 198 | EFI_ACPI_RECLAIM_MEMORY, fdt_pages, |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 199 | &new_fdt_addr); |
| 200 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 201 | log_err("ERROR: Failed to reserve space for FDT\n"); |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 202 | goto done; |
Alexander Graf | 85a6e9b | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 203 | } |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 204 | } |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 205 | new_fdt = (void *)(uintptr_t)new_fdt_addr; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 206 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
| 207 | fdt_set_totalsize(new_fdt, fdt_size); |
| 208 | |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 209 | *fdtp = (void *)(uintptr_t)new_fdt_addr; |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 210 | done: |
| 211 | return ret; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 212 | } |
| 213 | |
Heinrich Schuchardt | 4cbb293 | 2020-08-27 12:52:20 +0200 | [diff] [blame] | 214 | /** |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 215 | * get_config_table() - get configuration table |
| 216 | * |
| 217 | * @guid: GUID of the configuration table |
| 218 | * Return: pointer to configuration table or NULL |
| 219 | */ |
| 220 | static void *get_config_table(const efi_guid_t *guid) |
| 221 | { |
| 222 | size_t i; |
| 223 | |
| 224 | for (i = 0; i < systab.nr_tables; i++) { |
| 225 | if (!guidcmp(guid, &systab.tables[i].guid)) |
| 226 | return systab.tables[i].table; |
| 227 | } |
| 228 | return NULL; |
| 229 | } |
| 230 | |
| 231 | #endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */ |
| 232 | |
| 233 | /** |
Heinrich Schuchardt | 7a59725 | 2019-11-28 06:46:09 +0100 | [diff] [blame] | 234 | * efi_install_fdt() - install device tree |
Heinrich Schuchardt | e2d82f8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 235 | * |
Heinrich Schuchardt | 7d4d551 | 2020-02-07 22:10:49 +0100 | [diff] [blame] | 236 | * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory |
| 237 | * address will will be installed as configuration table, otherwise the device |
| 238 | * tree located at the address indicated by environment variable fdt_addr or as |
| 239 | * fallback fdtcontroladdr will be used. |
Heinrich Schuchardt | e2d82f8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 240 | * |
Heinrich Schuchardt | 7a59725 | 2019-11-28 06:46:09 +0100 | [diff] [blame] | 241 | * On architectures using ACPI tables device trees shall not be installed as |
| 242 | * configuration table. |
Heinrich Schuchardt | e2d82f8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 243 | * |
Heinrich Schuchardt | 7d4d551 | 2020-02-07 22:10:49 +0100 | [diff] [blame] | 244 | * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the |
Heinrich Schuchardt | 753aa18 | 2019-12-04 12:31:12 +0100 | [diff] [blame] | 245 | * the hardware device tree as indicated by environment variable |
| 246 | * fdt_addr or as fallback the internal device tree as indicated by |
| 247 | * the environment variable fdtcontroladdr |
AKASHI Takahiro | e878e6a | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 248 | * Return: status code |
AKASHI Takahiro | e878e6a | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 249 | */ |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 250 | efi_status_t efi_install_fdt(void *fdt) |
AKASHI Takahiro | e878e6a | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 251 | { |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 252 | /* |
| 253 | * The EBBR spec requires that we have either an FDT or an ACPI table |
| 254 | * but not both. |
| 255 | */ |
| 256 | #if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 257 | if (fdt) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 258 | log_err("ERROR: can't have ACPI table and device tree.\n"); |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 259 | return EFI_LOAD_ERROR; |
| 260 | } |
| 261 | #else |
AKASHI Takahiro | 3ffc52f | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 262 | bootm_headers_t img = { 0 }; |
AKASHI Takahiro | e878e6a | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 263 | efi_status_t ret; |
| 264 | |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 265 | if (fdt == EFI_FDT_USE_INTERNAL) { |
Heinrich Schuchardt | 7a59725 | 2019-11-28 06:46:09 +0100 | [diff] [blame] | 266 | const char *fdt_opt; |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 267 | uintptr_t fdt_addr; |
Heinrich Schuchardt | 7a59725 | 2019-11-28 06:46:09 +0100 | [diff] [blame] | 268 | |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 269 | /* Look for device tree that is already installed */ |
| 270 | if (get_config_table(&efi_guid_fdt)) |
| 271 | return EFI_SUCCESS; |
Heinrich Schuchardt | 753aa18 | 2019-12-04 12:31:12 +0100 | [diff] [blame] | 272 | /* Check if there is a hardware device tree */ |
| 273 | fdt_opt = env_get("fdt_addr"); |
| 274 | /* Use our own device tree as fallback */ |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 275 | if (!fdt_opt) { |
Heinrich Schuchardt | 753aa18 | 2019-12-04 12:31:12 +0100 | [diff] [blame] | 276 | fdt_opt = env_get("fdtcontroladdr"); |
| 277 | if (!fdt_opt) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 278 | log_err("ERROR: need device tree\n"); |
Heinrich Schuchardt | 753aa18 | 2019-12-04 12:31:12 +0100 | [diff] [blame] | 279 | return EFI_NOT_FOUND; |
| 280 | } |
AKASHI Takahiro | 3ffc52f | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 281 | } |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 282 | fdt_addr = simple_strtoul(fdt_opt, NULL, 16); |
| 283 | if (!fdt_addr) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 284 | log_err("ERROR: invalid $fdt_addr or $fdtcontroladdr\n"); |
AKASHI Takahiro | 3ffc52f | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 285 | return EFI_LOAD_ERROR; |
| 286 | } |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 287 | fdt = map_sysmem(fdt_addr, 0); |
AKASHI Takahiro | e878e6a | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 288 | } |
| 289 | |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 290 | /* Install device tree */ |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 291 | if (fdt_check_header(fdt)) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 292 | log_err("ERROR: invalid device tree\n"); |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 293 | return EFI_LOAD_ERROR; |
| 294 | } |
| 295 | |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 296 | /* Prepare device tree for payload */ |
| 297 | ret = copy_fdt(&fdt); |
| 298 | if (ret) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 299 | log_err("ERROR: out of memory\n"); |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 300 | return EFI_OUT_OF_RESOURCES; |
| 301 | } |
| 302 | |
| 303 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 304 | log_err("ERROR: failed to process device tree\n"); |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 305 | return EFI_LOAD_ERROR; |
| 306 | } |
| 307 | |
Heinrich Schuchardt | fef907b | 2020-03-14 10:59:34 +0100 | [diff] [blame] | 308 | /* Create memory reservations as indicated by the device tree */ |
| 309 | efi_carve_out_dt_rsv(fdt); |
| 310 | |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 311 | /* Install device tree as UEFI table */ |
| 312 | ret = efi_install_configuration_table(&efi_guid_fdt, fdt); |
| 313 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 314 | log_err("ERROR: failed to install device tree\n"); |
Heinrich Schuchardt | 6182495 | 2019-04-20 13:33:55 +0200 | [diff] [blame] | 315 | return ret; |
| 316 | } |
| 317 | #endif /* GENERATE_ACPI_TABLE */ |
| 318 | |
AKASHI Takahiro | e878e6a | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 319 | return EFI_SUCCESS; |
| 320 | } |
| 321 | |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 322 | /** |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 323 | * do_bootefi_exec() - execute EFI binary |
| 324 | * |
Heinrich Schuchardt | 72e1fca | 2020-08-15 23:10:22 +0200 | [diff] [blame] | 325 | * The image indicated by @handle is started. When it returns the allocated |
| 326 | * memory for the @load_options is freed. |
| 327 | * |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 328 | * @handle: handle of loaded image |
Heinrich Schuchardt | 72e1fca | 2020-08-15 23:10:22 +0200 | [diff] [blame] | 329 | * @load_options: load options |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 330 | * Return: status code |
| 331 | * |
| 332 | * Load the EFI binary into a newly assigned memory unwinding the relocation |
| 333 | * information, install the loaded image protocol, and call the binary. |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 334 | */ |
Heinrich Schuchardt | 0ad6400 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 335 | static efi_status_t do_bootefi_exec(efi_handle_t handle, void *load_options) |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 336 | { |
Heinrich Schuchardt | 45204b1 | 2018-03-03 15:29:01 +0100 | [diff] [blame] | 337 | efi_status_t ret; |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 338 | efi_uintn_t exit_data_size = 0; |
| 339 | u16 *exit_data = NULL; |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 340 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 341 | /* Call our payload! */ |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 342 | ret = EFI_CALL(efi_start_image(handle, &exit_data_size, &exit_data)); |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 343 | if (ret != EFI_SUCCESS) { |
| 344 | log_err("## Application failed, r = %lu\n", |
| 345 | ret & ~EFI_ERROR_MASK); |
| 346 | if (exit_data) { |
| 347 | log_err("## %ls\n", exit_data); |
| 348 | efi_free_pool(exit_data); |
| 349 | } |
Heinrich Schuchardt | 556d8dc | 2019-04-30 17:57:30 +0200 | [diff] [blame] | 350 | } |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 351 | |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 352 | efi_restore_gd(); |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 353 | |
Heinrich Schuchardt | a3850e4 | 2020-01-03 22:53:42 +0100 | [diff] [blame] | 354 | free(load_options); |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 355 | |
| 356 | return ret; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 357 | } |
| 358 | |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 359 | /** |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 360 | * do_efibootmgr() - execute EFI boot manager |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 361 | * |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 362 | * Return: status code |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 363 | */ |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 364 | static int do_efibootmgr(void) |
AKASHI Takahiro | cc999d5 | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 365 | { |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 366 | efi_handle_t handle; |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 367 | efi_status_t ret; |
Heinrich Schuchardt | 0ad6400 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 368 | void *load_options; |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 369 | |
Heinrich Schuchardt | 0ad6400 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 370 | ret = efi_bootmgr_load(&handle, &load_options); |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 371 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 372 | log_notice("EFI boot manager: Cannot load any image\n"); |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 373 | return CMD_RET_FAILURE; |
| 374 | } |
AKASHI Takahiro | cc999d5 | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 375 | |
Heinrich Schuchardt | 0ad6400 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 376 | ret = do_bootefi_exec(handle, load_options); |
AKASHI Takahiro | cc999d5 | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 377 | |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 378 | if (ret != EFI_SUCCESS) |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 379 | return CMD_RET_FAILURE; |
AKASHI Takahiro | cc999d5 | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 380 | |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 381 | return CMD_RET_SUCCESS; |
AKASHI Takahiro | cc999d5 | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 382 | } |
| 383 | |
Heinrich Schuchardt | 810371a | 2019-07-14 13:00:44 +0200 | [diff] [blame] | 384 | /** |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 385 | * do_bootefi_image() - execute EFI binary |
| 386 | * |
| 387 | * Set up memory image for the binary to be loaded, prepare device path, and |
| 388 | * then call do_bootefi_exec() to execute it. |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 389 | * |
| 390 | * @image_opt: string of image start address |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 391 | * Return: status code |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 392 | */ |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 393 | static int do_bootefi_image(const char *image_opt) |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 394 | { |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 395 | void *image_buf; |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 396 | unsigned long addr, size; |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 397 | efi_status_t ret; |
| 398 | |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 399 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
| 400 | if (!strcmp(image_opt, "hello")) { |
Heinrich Schuchardt | bb33c79 | 2021-01-12 17:44:08 +0100 | [diff] [blame] | 401 | image_buf = __efi_helloworld_begin; |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 402 | size = __efi_helloworld_end - __efi_helloworld_begin; |
Heinrich Schuchardt | 5f59518 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 403 | efi_clear_bootdev(); |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 404 | } else |
| 405 | #endif |
| 406 | { |
Heinrich Schuchardt | 5f59518 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 407 | addr = strtoul(image_opt, NULL, 16); |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 408 | /* Check that a numeric value was passed */ |
Heinrich Schuchardt | 5f59518 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 409 | if (!addr) |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 410 | return CMD_RET_USAGE; |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 411 | |
Heinrich Schuchardt | 5f59518 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 412 | image_buf = map_sysmem(addr, 0); |
| 413 | |
| 414 | if (image_buf != image_addr) { |
| 415 | log_err("No UEFI binary known at %s\n", image_opt); |
| 416 | return CMD_RET_FAILURE; |
| 417 | } |
| 418 | size = image_size; |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 419 | } |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 420 | ret = efi_run_image(image_buf, size); |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 421 | |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 422 | if (ret != EFI_SUCCESS) |
| 423 | return CMD_RET_FAILURE; |
| 424 | |
| 425 | return CMD_RET_SUCCESS; |
| 426 | } |
| 427 | |
| 428 | /** |
| 429 | * efi_run_image() - run loaded UEFI image |
| 430 | * |
| 431 | * @source_buffer: memory address of the UEFI image |
| 432 | * @source_size: size of the UEFI image |
| 433 | * Return: status code |
| 434 | */ |
| 435 | efi_status_t efi_run_image(void *source_buffer, efi_uintn_t source_size) |
| 436 | { |
| 437 | efi_handle_t mem_handle = NULL, handle; |
| 438 | struct efi_device_path *file_path = NULL; |
Heinrich Schuchardt | c2f0103 | 2020-08-25 17:54:05 +0000 | [diff] [blame] | 439 | struct efi_device_path *msg_path; |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 440 | efi_status_t ret; |
Heinrich Schuchardt | c2f0103 | 2020-08-25 17:54:05 +0000 | [diff] [blame] | 441 | u16 *load_options; |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 442 | |
| 443 | if (!bootefi_device_path || !bootefi_image_path) { |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 444 | /* |
| 445 | * Special case for efi payload not loaded from disk, |
| 446 | * such as 'bootefi hello' or for example payload |
| 447 | * loaded directly into memory via JTAG, etc: |
| 448 | */ |
| 449 | file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 450 | (uintptr_t)source_buffer, |
| 451 | source_size); |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 452 | /* |
| 453 | * Make sure that device for device_path exist |
| 454 | * in load_image(). Otherwise, shell and grub will fail. |
| 455 | */ |
| 456 | ret = efi_create_handle(&mem_handle); |
| 457 | if (ret != EFI_SUCCESS) |
| 458 | goto out; |
| 459 | |
| 460 | ret = efi_add_protocol(mem_handle, &efi_guid_device_path, |
| 461 | file_path); |
| 462 | if (ret != EFI_SUCCESS) |
| 463 | goto out; |
Heinrich Schuchardt | c2f0103 | 2020-08-25 17:54:05 +0000 | [diff] [blame] | 464 | msg_path = file_path; |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 465 | } else { |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 466 | file_path = efi_dp_append(bootefi_device_path, |
| 467 | bootefi_image_path); |
Heinrich Schuchardt | c2f0103 | 2020-08-25 17:54:05 +0000 | [diff] [blame] | 468 | msg_path = bootefi_image_path; |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 469 | } |
| 470 | |
Heinrich Schuchardt | c2f0103 | 2020-08-25 17:54:05 +0000 | [diff] [blame] | 471 | log_info("Booting %pD\n", msg_path); |
| 472 | |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 473 | ret = EFI_CALL(efi_load_image(false, efi_root, file_path, source_buffer, |
| 474 | source_size, &handle)); |
Heinrich Schuchardt | c2f0103 | 2020-08-25 17:54:05 +0000 | [diff] [blame] | 475 | if (ret != EFI_SUCCESS) { |
| 476 | log_err("Loading image failed\n"); |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 477 | goto out; |
Heinrich Schuchardt | c2f0103 | 2020-08-25 17:54:05 +0000 | [diff] [blame] | 478 | } |
Heinrich Schuchardt | 0ad6400 | 2020-08-07 17:49:39 +0200 | [diff] [blame] | 479 | |
| 480 | /* Transfer environment variable as load options */ |
| 481 | ret = efi_env_set_load_options(handle, "bootargs", &load_options); |
| 482 | if (ret != EFI_SUCCESS) |
| 483 | goto out; |
| 484 | |
| 485 | ret = do_bootefi_exec(handle, load_options); |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 486 | |
| 487 | out: |
Heinrich Schuchardt | 4fe050e | 2020-04-20 12:44:56 +0200 | [diff] [blame] | 488 | efi_delete_handle(mem_handle); |
| 489 | efi_free_pool(file_path); |
Heinrich Schuchardt | f9ceb6a | 2019-12-07 20:51:06 +0100 | [diff] [blame] | 490 | return ret; |
AKASHI Takahiro | e2e4098 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 491 | } |
| 492 | |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 493 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 494 | static efi_status_t bootefi_run_prepare(const char *load_options_path, |
| 495 | struct efi_device_path *device_path, |
| 496 | struct efi_device_path *image_path, |
| 497 | struct efi_loaded_image_obj **image_objp, |
| 498 | struct efi_loaded_image **loaded_image_infop) |
| 499 | { |
| 500 | efi_status_t ret; |
Heinrich Schuchardt | a3850e4 | 2020-01-03 22:53:42 +0100 | [diff] [blame] | 501 | u16 *load_options; |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 502 | |
| 503 | ret = efi_setup_loaded_image(device_path, image_path, image_objp, |
| 504 | loaded_image_infop); |
| 505 | if (ret != EFI_SUCCESS) |
| 506 | return ret; |
| 507 | |
| 508 | /* Transfer environment variable as load options */ |
Heinrich Schuchardt | 1064d04 | 2020-08-07 17:47:13 +0200 | [diff] [blame] | 509 | return efi_env_set_load_options((efi_handle_t)*image_objp, |
| 510 | load_options_path, |
| 511 | &load_options); |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 512 | } |
| 513 | |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 514 | /** |
| 515 | * bootefi_test_prepare() - prepare to run an EFI test |
| 516 | * |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 517 | * Prepare to run a test as if it were provided by a loaded image. |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 518 | * |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 519 | * @image_objp: pointer to be set to the loaded image handle |
| 520 | * @loaded_image_infop: pointer to be set to the loaded image protocol |
| 521 | * @path: dummy file path used to construct the device path |
| 522 | * set in the loaded image protocol |
| 523 | * @load_options_path: name of a U-Boot environment variable. Its value is |
| 524 | * set as load options in the loaded image protocol. |
| 525 | * Return: status code |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 526 | */ |
| 527 | static efi_status_t bootefi_test_prepare |
| 528 | (struct efi_loaded_image_obj **image_objp, |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 529 | struct efi_loaded_image **loaded_image_infop, const char *path, |
| 530 | const char *load_options_path) |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 531 | { |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 532 | efi_status_t ret; |
| 533 | |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 534 | /* Construct a dummy device path */ |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 535 | bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0); |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 536 | if (!bootefi_device_path) |
| 537 | return EFI_OUT_OF_RESOURCES; |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 538 | |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 539 | bootefi_image_path = efi_dp_from_file(NULL, 0, path); |
| 540 | if (!bootefi_image_path) { |
| 541 | ret = EFI_OUT_OF_RESOURCES; |
| 542 | goto failure; |
| 543 | } |
| 544 | |
| 545 | ret = bootefi_run_prepare(load_options_path, bootefi_device_path, |
| 546 | bootefi_image_path, image_objp, |
| 547 | loaded_image_infop); |
| 548 | if (ret == EFI_SUCCESS) |
| 549 | return ret; |
| 550 | |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 551 | failure: |
Heinrich Schuchardt | 5f59518 | 2021-01-12 12:46:24 +0100 | [diff] [blame] | 552 | efi_clear_bootdev(); |
Heinrich Schuchardt | 1504bb0 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 553 | return ret; |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 554 | } |
| 555 | |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 556 | /** |
| 557 | * bootefi_run_finish() - finish up after running an EFI test |
| 558 | * |
| 559 | * @loaded_image_info: Pointer to a struct which holds the loaded image info |
| 560 | * @image_obj: Pointer to a struct which holds the loaded image object |
| 561 | */ |
| 562 | static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj, |
| 563 | struct efi_loaded_image *loaded_image_info) |
| 564 | { |
| 565 | efi_restore_gd(); |
| 566 | free(loaded_image_info->load_options); |
| 567 | efi_delete_handle(&image_obj->header); |
| 568 | } |
| 569 | |
| 570 | /** |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 571 | * do_efi_selftest() - execute EFI selftest |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 572 | * |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 573 | * Return: status code |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 574 | */ |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 575 | static int do_efi_selftest(void) |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 576 | { |
| 577 | struct efi_loaded_image_obj *image_obj; |
| 578 | struct efi_loaded_image *loaded_image_info; |
| 579 | efi_status_t ret; |
| 580 | |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 581 | ret = bootefi_test_prepare(&image_obj, &loaded_image_info, |
| 582 | "\\selftest", "efi_selftest"); |
| 583 | if (ret != EFI_SUCCESS) |
| 584 | return CMD_RET_FAILURE; |
| 585 | |
| 586 | /* Execute the test */ |
| 587 | ret = EFI_CALL(efi_selftest(&image_obj->header, &systab)); |
| 588 | bootefi_run_finish(image_obj, loaded_image_info); |
| 589 | |
| 590 | return ret != EFI_SUCCESS; |
| 591 | } |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 592 | #endif /* CONFIG_CMD_BOOTEFI_SELFTEST */ |
| 593 | |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 594 | /** |
| 595 | * do_bootefi() - execute `bootefi` command |
| 596 | * |
| 597 | * @cmdtp: table entry describing command |
| 598 | * @flag: bitmap indicating how the command was invoked |
| 599 | * @argc: number of arguments |
| 600 | * @argv: command line arguments |
| 601 | * Return: status code |
| 602 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 603 | static int do_bootefi(struct cmd_tbl *cmdtp, int flag, int argc, |
| 604 | char *const argv[]) |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 605 | { |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 606 | efi_status_t ret; |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 607 | void *fdt; |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 608 | |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 609 | if (argc < 2) |
| 610 | return CMD_RET_USAGE; |
AKASHI Takahiro | d6b2189 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 611 | |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 612 | /* Initialize EFI drivers */ |
| 613 | ret = efi_init_obj_list(); |
| 614 | if (ret != EFI_SUCCESS) { |
Heinrich Schuchardt | c001837 | 2020-07-17 20:21:00 +0200 | [diff] [blame] | 615 | log_err("Error: Cannot initialize UEFI sub-system, r = %lu\n", |
| 616 | ret & ~EFI_ERROR_MASK); |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 617 | return CMD_RET_FAILURE; |
| 618 | } |
| 619 | |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 620 | if (argc > 2) { |
| 621 | uintptr_t fdt_addr; |
| 622 | |
Heinrich Schuchardt | 7a59725 | 2019-11-28 06:46:09 +0100 | [diff] [blame] | 623 | fdt_addr = simple_strtoul(argv[2], NULL, 16); |
Heinrich Schuchardt | f64f223 | 2019-12-08 01:07:01 +0100 | [diff] [blame] | 624 | fdt = map_sysmem(fdt_addr, 0); |
| 625 | } else { |
| 626 | fdt = EFI_FDT_USE_INTERNAL; |
| 627 | } |
| 628 | ret = efi_install_fdt(fdt); |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 629 | if (ret == EFI_INVALID_PARAMETER) |
| 630 | return CMD_RET_USAGE; |
| 631 | else if (ret != EFI_SUCCESS) |
| 632 | return CMD_RET_FAILURE; |
| 633 | |
Heinrich Schuchardt | ff2f532 | 2021-01-15 19:02:50 +0100 | [diff] [blame^] | 634 | if (IS_ENABLED(CONFIG_CMD_BOOTEFI_BOOTMGR)) { |
| 635 | if (!strcmp(argv[1], "bootmgr")) |
| 636 | return do_efibootmgr(); |
| 637 | } |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 638 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
Heinrich Schuchardt | ff2f532 | 2021-01-15 19:02:50 +0100 | [diff] [blame^] | 639 | if (!strcmp(argv[1], "selftest")) |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 640 | return do_efi_selftest(); |
AKASHI Takahiro | 3fc2b16 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 641 | #endif |
| 642 | |
Heinrich Schuchardt | 7e92db8 | 2019-05-12 20:16:25 +0200 | [diff] [blame] | 643 | return do_bootefi_image(argv[1]); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | #ifdef CONFIG_SYS_LONGHELP |
| 647 | static char bootefi_help_text[] = |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 648 | "<image address> [fdt address]\n" |
| 649 | " - boot EFI payload stored at address <image address>.\n" |
| 650 | " If specified, the device tree located at <fdt address> gets\n" |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 651 | " exposed as EFI configuration table.\n" |
| 652 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 653 | "bootefi hello\n" |
| 654 | " - boot a sample Hello World application stored within U-Boot\n" |
| 655 | #endif |
| 656 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 657 | "bootefi selftest [fdt address]\n" |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 658 | " - boot an EFI selftest application stored within U-Boot\n" |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 659 | " Use environment variable efi_selftest to select a single test.\n" |
| 660 | " Use 'setenv efi_selftest list' to enumerate all tests.\n" |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 661 | #endif |
Heinrich Schuchardt | ff2f532 | 2021-01-15 19:02:50 +0100 | [diff] [blame^] | 662 | #ifdef CONFIG_CMD_BOOTEFI_BOOTMGR |
AKASHI Takahiro | 6b95b38 | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 663 | "bootefi bootmgr [fdt address]\n" |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 664 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
| 665 | "\n" |
| 666 | " If specified, the device tree located at <fdt address> gets\n" |
Heinrich Schuchardt | ff2f532 | 2021-01-15 19:02:50 +0100 | [diff] [blame^] | 667 | " exposed as EFI configuration table.\n" |
| 668 | #endif |
| 669 | ; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 670 | #endif |
| 671 | |
| 672 | U_BOOT_CMD( |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 673 | bootefi, 3, 0, do_bootefi, |
Sergey Kubushyn | 92dfd92 | 2016-06-07 11:14:31 -0700 | [diff] [blame] | 674 | "Boots an EFI payload from memory", |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 675 | bootefi_help_text |
| 676 | ); |