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