Tom Rini | 70df9d6 | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI application loader |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Heinrich Schuchardt | aa0b11b | 2019-01-08 18:13:06 +0100 | [diff] [blame] | 9 | #include <bootm.h> |
| 10 | #include <charset.h> |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 11 | #include <command.h> |
Simon Glass | 11c89f3 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 12 | #include <dm.h> |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 13 | #include <efi_loader.h> |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 14 | #include <efi_selftest.h> |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 15 | #include <errno.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 16 | #include <linux/libfdt.h> |
| 17 | #include <linux/libfdt_env.h> |
Alexander Graf | a241451 | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 18 | #include <mapmem.h> |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 19 | #include <memalign.h> |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 20 | #include <asm/global_data.h> |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 21 | #include <asm-generic/sections.h> |
Heinrich Schuchardt | 954e2b9 | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 22 | #include <asm-generic/unaligned.h> |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 23 | #include <linux/linkage.h> |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 26 | |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 27 | static struct efi_device_path *bootefi_image_path; |
| 28 | static struct efi_device_path *bootefi_device_path; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 29 | |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 30 | /* |
Heinrich Schuchardt | 954e2b9 | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 31 | * Allow unaligned memory access. |
| 32 | * |
| 33 | * This routine is overridden by architectures providing this feature. |
| 34 | */ |
| 35 | void __weak allow_unaligned(void) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | /* |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 40 | * Set the load options of an image from an environment variable. |
| 41 | * |
AKASHI Takahiro | e25a7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 42 | * @handle: the image handle |
| 43 | * @env_var: name of the environment variable |
| 44 | * Return: status code |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 45 | */ |
AKASHI Takahiro | e25a7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 46 | static efi_status_t set_load_options(efi_handle_t handle, const char *env_var) |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 47 | { |
AKASHI Takahiro | e25a7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 48 | struct efi_loaded_image *loaded_image_info; |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 49 | size_t size; |
| 50 | const char *env = env_get(env_var); |
Heinrich Schuchardt | de52780 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 51 | u16 *pos; |
AKASHI Takahiro | e25a7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 52 | efi_status_t ret; |
| 53 | |
| 54 | ret = EFI_CALL(systab.boottime->open_protocol( |
| 55 | handle, |
| 56 | &efi_guid_loaded_image, |
| 57 | (void **)&loaded_image_info, |
| 58 | efi_root, NULL, |
| 59 | EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL)); |
| 60 | if (ret != EFI_SUCCESS) |
| 61 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 62 | |
| 63 | loaded_image_info->load_options = NULL; |
| 64 | loaded_image_info->load_options_size = 0; |
| 65 | if (!env) |
AKASHI Takahiro | e25a7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 66 | goto out; |
| 67 | |
Heinrich Schuchardt | de52780 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 68 | size = utf8_utf16_strlen(env) + 1; |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 69 | loaded_image_info->load_options = calloc(size, sizeof(u16)); |
| 70 | if (!loaded_image_info->load_options) { |
| 71 | printf("ERROR: Out of memory\n"); |
AKASHI Takahiro | e25a7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 72 | EFI_CALL(systab.boottime->close_protocol(handle, |
| 73 | &efi_guid_loaded_image, |
| 74 | efi_root, NULL)); |
| 75 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 76 | } |
Heinrich Schuchardt | de52780 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 77 | pos = loaded_image_info->load_options; |
| 78 | utf8_utf16_strcpy(&pos, env); |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 79 | loaded_image_info->load_options_size = size * 2; |
AKASHI Takahiro | e25a7b8 | 2019-04-19 12:22:28 +0900 | [diff] [blame] | 80 | |
| 81 | out: |
| 82 | return EFI_CALL(systab.boottime->close_protocol(handle, |
| 83 | &efi_guid_loaded_image, |
| 84 | efi_root, NULL)); |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 85 | } |
| 86 | |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 87 | #if !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) |
| 88 | |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 89 | /** |
| 90 | * copy_fdt() - Copy the device tree to a new location available to EFI |
| 91 | * |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 92 | * The FDT is copied to a suitable location within the EFI memory map. |
Heinrich Schuchardt | dcdca29 | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 93 | * Additional 12 KiB are added to the space in case the device tree needs to be |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 94 | * expanded later with fdt_open_into(). |
| 95 | * |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 96 | * @fdtp: On entry a pointer to the flattened device tree. |
| 97 | * On exit a pointer to the copy of the flattened device tree. |
Heinrich Schuchardt | 96af56e | 2018-11-12 18:55:22 +0100 | [diff] [blame] | 98 | * FDT start |
| 99 | * Return: status code |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 100 | */ |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 101 | static efi_status_t copy_fdt(void **fdtp) |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 102 | { |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 103 | unsigned long fdt_ram_start = -1L, fdt_pages; |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 104 | efi_status_t ret = 0; |
| 105 | void *fdt, *new_fdt; |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 106 | u64 new_fdt_addr; |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 107 | uint fdt_size; |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 108 | int i; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 109 | |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 110 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 111 | u64 ram_start = gd->bd->bi_dram[i].start; |
| 112 | u64 ram_size = gd->bd->bi_dram[i].size; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 113 | |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 114 | if (!ram_size) |
| 115 | continue; |
| 116 | |
| 117 | if (ram_start < fdt_ram_start) |
| 118 | fdt_ram_start = ram_start; |
| 119 | } |
| 120 | |
Simon Glass | 56bbcc1 | 2018-06-18 08:08:25 -0600 | [diff] [blame] | 121 | /* |
Heinrich Schuchardt | dcdca29 | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 122 | * Give us at least 12 KiB of breathing room in case the device tree |
| 123 | * needs to be expanded later. |
Simon Glass | 56bbcc1 | 2018-06-18 08:08:25 -0600 | [diff] [blame] | 124 | */ |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 125 | fdt = *fdtp; |
Heinrich Schuchardt | dcdca29 | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 126 | fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000); |
| 127 | fdt_size = fdt_pages << EFI_PAGE_SHIFT; |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 128 | |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 129 | /* |
| 130 | * Safe fdt location is at 127 MiB. |
| 131 | * On the sandbox convert from the sandbox address space. |
| 132 | */ |
| 133 | new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 + |
| 134 | fdt_size, 0); |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 135 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
Ilias Apalodimas | 0468b8e | 2019-04-12 21:26:28 +0300 | [diff] [blame] | 136 | EFI_BOOT_SERVICES_DATA, fdt_pages, |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 137 | &new_fdt_addr); |
| 138 | if (ret != EFI_SUCCESS) { |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 139 | /* If we can't put it there, put it somewhere */ |
xypron.glpk@gmx.de | f6b9912 | 2017-08-11 21:19:25 +0200 | [diff] [blame] | 140 | new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size); |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 141 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
Ilias Apalodimas | 0468b8e | 2019-04-12 21:26:28 +0300 | [diff] [blame] | 142 | EFI_BOOT_SERVICES_DATA, fdt_pages, |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 143 | &new_fdt_addr); |
| 144 | if (ret != EFI_SUCCESS) { |
Alexander Graf | 9b9b716 | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 145 | printf("ERROR: Failed to reserve space for FDT\n"); |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 146 | goto done; |
Alexander Graf | 9b9b716 | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 147 | } |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 148 | } |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 149 | new_fdt = (void *)(uintptr_t)new_fdt_addr; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 150 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
| 151 | fdt_set_totalsize(new_fdt, fdt_size); |
| 152 | |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 153 | *fdtp = (void *)(uintptr_t)new_fdt_addr; |
Simon Glass | 5d618df | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 154 | done: |
| 155 | return ret; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 156 | } |
| 157 | |
Simon Glass | 54b9b6e | 2018-06-18 08:08:28 -0600 | [diff] [blame] | 158 | /* |
| 159 | * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges |
| 160 | * |
| 161 | * The mem_rsv entries of the FDT are added to the memory map. Any failures are |
| 162 | * ignored because this is not critical and we would rather continue to try to |
| 163 | * boot. |
| 164 | * |
| 165 | * @fdt: Pointer to device tree |
| 166 | */ |
| 167 | static void efi_carve_out_dt_rsv(void *fdt) |
Alexander Graf | 22c88bf | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 168 | { |
| 169 | int nr_rsv, i; |
| 170 | uint64_t addr, size, pages; |
| 171 | |
| 172 | nr_rsv = fdt_num_mem_rsv(fdt); |
| 173 | |
| 174 | /* Look for an existing entry and add it to the efi mem map. */ |
| 175 | for (i = 0; i < nr_rsv; i++) { |
| 176 | if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0) |
| 177 | continue; |
| 178 | |
Heinrich Schuchardt | b23f9b7 | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 179 | /* Convert from sandbox address space. */ |
| 180 | addr = (uintptr_t)map_sysmem(addr, 0); |
| 181 | |
Heinrich Schuchardt | dcdca29 | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 182 | pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK)); |
Heinrich Schuchardt | 3d92fc8 | 2018-11-12 18:55:23 +0100 | [diff] [blame] | 183 | addr &= ~EFI_PAGE_MASK; |
Simon Glass | 54b9b6e | 2018-06-18 08:08:28 -0600 | [diff] [blame] | 184 | if (!efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE, |
| 185 | false)) |
| 186 | printf("FDT memrsv map %d: Failed to add to map\n", i); |
Alexander Graf | 22c88bf | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 187 | } |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 188 | } |
| 189 | |
| 190 | /** |
| 191 | * get_config_table() - get configuration table |
| 192 | * |
| 193 | * @guid: GUID of the configuration table |
| 194 | * Return: pointer to configuration table or NULL |
| 195 | */ |
| 196 | static void *get_config_table(const efi_guid_t *guid) |
| 197 | { |
| 198 | size_t i; |
| 199 | |
| 200 | for (i = 0; i < systab.nr_tables; i++) { |
| 201 | if (!guidcmp(guid, &systab.tables[i].guid)) |
| 202 | return systab.tables[i].table; |
| 203 | } |
| 204 | return NULL; |
Alexander Graf | 22c88bf | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 205 | } |
| 206 | |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 207 | #endif /* !CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) */ |
| 208 | |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 209 | /** |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 210 | * efi_install_fdt() - install fdt passed by a command argument |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 211 | * @fdt_opt: pointer to argument |
| 212 | * Return: status code |
| 213 | * |
| 214 | * If specified, fdt will be installed as configuration table, |
| 215 | * otherwise no fdt will be passed. |
| 216 | */ |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 217 | static efi_status_t efi_install_fdt(const char *fdt_opt) |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 218 | { |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 219 | /* |
| 220 | * The EBBR spec requires that we have either an FDT or an ACPI table |
| 221 | * but not both. |
| 222 | */ |
| 223 | #if CONFIG_IS_ENABLED(GENERATE_ACPI_TABLE) |
| 224 | if (fdt_opt) { |
| 225 | printf("ERROR: can't have ACPI table and device tree.\n"); |
| 226 | return EFI_LOAD_ERROR; |
| 227 | } |
| 228 | #else |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 229 | unsigned long fdt_addr; |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 230 | void *fdt; |
| 231 | bootm_headers_t img = { 0 }; |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 232 | efi_status_t ret; |
| 233 | |
| 234 | if (fdt_opt) { |
| 235 | fdt_addr = simple_strtoul(fdt_opt, NULL, 16); |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 236 | if (!fdt_addr) |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 237 | return EFI_INVALID_PARAMETER; |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 238 | } else { |
| 239 | /* Look for device tree that is already installed */ |
| 240 | if (get_config_table(&efi_guid_fdt)) |
| 241 | return EFI_SUCCESS; |
| 242 | /* Use our own device tree as default */ |
| 243 | fdt_opt = env_get("fdtcontroladdr"); |
| 244 | if (!fdt_opt) { |
| 245 | printf("ERROR: need device tree\n"); |
| 246 | return EFI_NOT_FOUND; |
| 247 | } |
| 248 | fdt_addr = simple_strtoul(fdt_opt, NULL, 16); |
| 249 | if (!fdt_addr) { |
| 250 | printf("ERROR: invalid $fdtcontroladdr\n"); |
| 251 | return EFI_LOAD_ERROR; |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 252 | } |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 253 | } |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 254 | |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 255 | /* Install device tree */ |
| 256 | fdt = map_sysmem(fdt_addr, 0); |
| 257 | if (fdt_check_header(fdt)) { |
| 258 | printf("ERROR: invalid device tree\n"); |
| 259 | return EFI_LOAD_ERROR; |
| 260 | } |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 261 | |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 262 | /* Create memory reservations as indicated by the device tree */ |
| 263 | efi_carve_out_dt_rsv(fdt); |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 264 | |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 265 | /* Prepare device tree for payload */ |
| 266 | ret = copy_fdt(&fdt); |
| 267 | if (ret) { |
| 268 | printf("ERROR: out of memory\n"); |
| 269 | return EFI_OUT_OF_RESOURCES; |
| 270 | } |
AKASHI Takahiro | 451e991 | 2019-04-19 12:22:30 +0900 | [diff] [blame] | 271 | |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 272 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
| 273 | printf("ERROR: failed to process device tree\n"); |
| 274 | return EFI_LOAD_ERROR; |
| 275 | } |
| 276 | |
| 277 | /* Install device tree as UEFI table */ |
| 278 | ret = efi_install_configuration_table(&efi_guid_fdt, fdt); |
| 279 | if (ret != EFI_SUCCESS) { |
| 280 | printf("ERROR: failed to install device tree\n"); |
| 281 | return ret; |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 282 | } |
Heinrich Schuchardt | 4420a33 | 2019-04-20 13:33:55 +0200 | [diff] [blame^] | 283 | #endif /* GENERATE_ACPI_TABLE */ |
AKASHI Takahiro | cc02f17 | 2019-04-19 12:22:29 +0900 | [diff] [blame] | 284 | |
| 285 | return EFI_SUCCESS; |
| 286 | } |
| 287 | |
Simon Glass | 4d77ee6 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 288 | /** |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 289 | * do_bootefi_exec() - execute EFI binary |
| 290 | * |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 291 | * @handle: handle of loaded image |
Heinrich Schuchardt | 3c3a735 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 292 | * Return: status code |
| 293 | * |
| 294 | * Load the EFI binary into a newly assigned memory unwinding the relocation |
| 295 | * information, install the loaded image protocol, and call the binary. |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 296 | */ |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 297 | static efi_status_t do_bootefi_exec(efi_handle_t handle) |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 298 | { |
Heinrich Schuchardt | 4b055a2 | 2018-03-03 15:29:01 +0100 | [diff] [blame] | 299 | efi_status_t ret; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 300 | |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 301 | /* Transfer environment variable as load options */ |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 302 | ret = set_load_options(handle, "bootargs"); |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 303 | if (ret != EFI_SUCCESS) |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 304 | return ret; |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 305 | |
Rob Clark | 15f3d74 | 2017-09-13 18:05:37 -0400 | [diff] [blame] | 306 | /* we don't support much: */ |
| 307 | env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported", |
| 308 | "{ro,boot}(blob)0000000000000000"); |
| 309 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 310 | /* Call our payload! */ |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 311 | ret = EFI_CALL(efi_start_image(handle, NULL, NULL)); |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 312 | |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 313 | efi_restore_gd(); |
Simon Glass | 4d77ee6 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 314 | |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 315 | /* |
| 316 | * FIXME: Who is responsible for |
| 317 | * free(loaded_image_info->load_options); |
| 318 | * Once efi_exit() is implemented correctly, |
| 319 | * handle itself doesn't exist here. |
| 320 | */ |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 321 | |
| 322 | return ret; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 323 | } |
| 324 | |
AKASHI Takahiro | cf81983 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 325 | /** |
| 326 | * do_efibootmgr() - execute EFI Boot Manager |
| 327 | * |
| 328 | * @fdt_opt: string of fdt start address |
| 329 | * Return: status code |
| 330 | * |
| 331 | * Execute EFI Boot Manager |
| 332 | */ |
| 333 | static int do_efibootmgr(const char *fdt_opt) |
AKASHI Takahiro | 758733d | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 334 | { |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 335 | efi_handle_t handle; |
AKASHI Takahiro | cf81983 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 336 | efi_status_t ret; |
| 337 | |
| 338 | /* Allow unaligned memory access */ |
| 339 | allow_unaligned(); |
| 340 | |
| 341 | switch_to_non_secure_mode(); |
| 342 | |
| 343 | /* Initialize EFI drivers */ |
| 344 | ret = efi_init_obj_list(); |
| 345 | if (ret != EFI_SUCCESS) { |
| 346 | printf("Error: Cannot initialize UEFI sub-system, r = %lu\n", |
| 347 | ret & ~EFI_ERROR_MASK); |
| 348 | return CMD_RET_FAILURE; |
| 349 | } |
| 350 | |
| 351 | ret = efi_install_fdt(fdt_opt); |
| 352 | if (ret == EFI_INVALID_PARAMETER) |
| 353 | return CMD_RET_USAGE; |
| 354 | else if (ret != EFI_SUCCESS) |
| 355 | return CMD_RET_FAILURE; |
AKASHI Takahiro | 758733d | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 356 | |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 357 | ret = efi_bootmgr_load(&handle); |
| 358 | if (ret != EFI_SUCCESS) { |
| 359 | printf("EFI boot manager: Cannot load any image\n"); |
| 360 | return CMD_RET_FAILURE; |
| 361 | } |
AKASHI Takahiro | 758733d | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 362 | |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 363 | ret = do_bootefi_exec(handle); |
| 364 | printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK); |
AKASHI Takahiro | 758733d | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 365 | |
AKASHI Takahiro | cf81983 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 366 | if (ret != EFI_SUCCESS) |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 367 | return CMD_RET_FAILURE; |
AKASHI Takahiro | 758733d | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 368 | |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 369 | return CMD_RET_SUCCESS; |
AKASHI Takahiro | 758733d | 2019-04-19 12:22:32 +0900 | [diff] [blame] | 370 | } |
| 371 | |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 372 | /* |
| 373 | * do_bootefi_image() - execute EFI binary from command line |
| 374 | * |
| 375 | * @image_opt: string of image start address |
| 376 | * @fdt_opt: string of fdt start address |
| 377 | * Return: status code |
| 378 | * |
| 379 | * Set up memory image for the binary to be loaded, prepare |
| 380 | * device path and then call do_bootefi_exec() to execute it. |
| 381 | */ |
| 382 | static int do_bootefi_image(const char *image_opt, const char *fdt_opt) |
| 383 | { |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 384 | void *image_buf; |
| 385 | struct efi_device_path *device_path, *image_path; |
| 386 | struct efi_device_path *file_path = NULL; |
| 387 | unsigned long addr, size; |
| 388 | const char *size_str; |
| 389 | efi_handle_t mem_handle = NULL, handle; |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 390 | efi_status_t ret; |
| 391 | |
| 392 | /* Allow unaligned memory access */ |
| 393 | allow_unaligned(); |
| 394 | |
| 395 | switch_to_non_secure_mode(); |
| 396 | |
| 397 | /* Initialize EFI drivers */ |
| 398 | ret = efi_init_obj_list(); |
| 399 | if (ret != EFI_SUCCESS) { |
| 400 | printf("Error: Cannot initialize UEFI sub-system, r = %lu\n", |
| 401 | ret & ~EFI_ERROR_MASK); |
| 402 | return CMD_RET_FAILURE; |
| 403 | } |
| 404 | |
| 405 | ret = efi_install_fdt(fdt_opt); |
| 406 | if (ret == EFI_INVALID_PARAMETER) |
| 407 | return CMD_RET_USAGE; |
| 408 | else if (ret != EFI_SUCCESS) |
| 409 | return CMD_RET_FAILURE; |
| 410 | |
| 411 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
| 412 | if (!strcmp(image_opt, "hello")) { |
| 413 | char *saddr; |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 414 | |
| 415 | saddr = env_get("loadaddr"); |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 416 | size = __efi_helloworld_end - __efi_helloworld_begin; |
| 417 | |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 418 | if (saddr) |
| 419 | addr = simple_strtoul(saddr, NULL, 16); |
| 420 | else |
| 421 | addr = CONFIG_SYS_LOAD_ADDR; |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 422 | |
| 423 | image_buf = map_sysmem(addr, size); |
| 424 | memcpy(image_buf, __efi_helloworld_begin, size); |
| 425 | |
| 426 | device_path = NULL; |
| 427 | image_path = NULL; |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 428 | } else |
| 429 | #endif |
| 430 | { |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 431 | size_str = env_get("filesize"); |
| 432 | if (size_str) |
| 433 | size = simple_strtoul(size_str, NULL, 16); |
| 434 | else |
| 435 | size = 0; |
| 436 | |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 437 | addr = simple_strtoul(image_opt, NULL, 16); |
| 438 | /* Check that a numeric value was passed */ |
| 439 | if (!addr && *image_opt != '0') |
| 440 | return CMD_RET_USAGE; |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 441 | |
| 442 | image_buf = map_sysmem(addr, size); |
| 443 | |
| 444 | device_path = bootefi_device_path; |
| 445 | image_path = bootefi_image_path; |
| 446 | } |
| 447 | |
| 448 | if (!device_path && !image_path) { |
| 449 | /* |
| 450 | * Special case for efi payload not loaded from disk, |
| 451 | * such as 'bootefi hello' or for example payload |
| 452 | * loaded directly into memory via JTAG, etc: |
| 453 | */ |
| 454 | file_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, |
| 455 | (uintptr_t)image_buf, size); |
| 456 | /* |
| 457 | * Make sure that device for device_path exist |
| 458 | * in load_image(). Otherwise, shell and grub will fail. |
| 459 | */ |
| 460 | ret = efi_create_handle(&mem_handle); |
| 461 | if (ret != EFI_SUCCESS) |
| 462 | goto out; |
| 463 | |
| 464 | ret = efi_add_protocol(mem_handle, &efi_guid_device_path, |
| 465 | file_path); |
| 466 | if (ret != EFI_SUCCESS) |
| 467 | goto out; |
| 468 | } else { |
| 469 | assert(device_path && image_path); |
| 470 | file_path = efi_dp_append(device_path, image_path); |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 471 | } |
| 472 | |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 473 | ret = EFI_CALL(efi_load_image(false, efi_root, |
| 474 | file_path, image_buf, size, &handle)); |
| 475 | if (ret != EFI_SUCCESS) |
| 476 | goto out; |
| 477 | |
| 478 | ret = do_bootefi_exec(handle); |
| 479 | printf("## Application terminated, r = %lu\n", ret & ~EFI_ERROR_MASK); |
| 480 | |
| 481 | out: |
| 482 | if (mem_handle) |
| 483 | efi_delete_handle(mem_handle); |
| 484 | if (file_path) |
| 485 | efi_free_pool(file_path); |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 486 | |
| 487 | if (ret != EFI_SUCCESS) |
| 488 | return CMD_RET_FAILURE; |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 489 | |
| 490 | return CMD_RET_SUCCESS; |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 491 | } |
| 492 | |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 493 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
AKASHI Takahiro | 09a81c7 | 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; |
| 501 | |
| 502 | ret = efi_setup_loaded_image(device_path, image_path, image_objp, |
| 503 | loaded_image_infop); |
| 504 | if (ret != EFI_SUCCESS) |
| 505 | return ret; |
| 506 | |
| 507 | /* Transfer environment variable as load options */ |
| 508 | return set_load_options((efi_handle_t)*image_objp, load_options_path); |
| 509 | } |
| 510 | |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 511 | /** |
| 512 | * bootefi_test_prepare() - prepare to run an EFI test |
| 513 | * |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 514 | * Prepare to run a test as if it were provided by a loaded image. |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 515 | * |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 516 | * @image_objp: pointer to be set to the loaded image handle |
| 517 | * @loaded_image_infop: pointer to be set to the loaded image protocol |
| 518 | * @path: dummy file path used to construct the device path |
| 519 | * set in the loaded image protocol |
| 520 | * @load_options_path: name of a U-Boot environment variable. Its value is |
| 521 | * set as load options in the loaded image protocol. |
| 522 | * Return: status code |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 523 | */ |
| 524 | static efi_status_t bootefi_test_prepare |
| 525 | (struct efi_loaded_image_obj **image_objp, |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 526 | struct efi_loaded_image **loaded_image_infop, const char *path, |
| 527 | const char *load_options_path) |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 528 | { |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 529 | efi_status_t ret; |
| 530 | |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 531 | /* Construct a dummy device path */ |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 532 | bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, 0, 0); |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 533 | if (!bootefi_device_path) |
| 534 | return EFI_OUT_OF_RESOURCES; |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 535 | |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 536 | bootefi_image_path = efi_dp_from_file(NULL, 0, path); |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 537 | if (!bootefi_image_path) { |
| 538 | ret = EFI_OUT_OF_RESOURCES; |
| 539 | goto failure; |
| 540 | } |
| 541 | |
| 542 | ret = bootefi_run_prepare(load_options_path, bootefi_device_path, |
| 543 | bootefi_image_path, image_objp, |
| 544 | loaded_image_infop); |
| 545 | if (ret == EFI_SUCCESS) |
| 546 | return ret; |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 547 | |
Heinrich Schuchardt | fd9cbe3 | 2019-01-12 14:42:40 +0100 | [diff] [blame] | 548 | efi_free_pool(bootefi_image_path); |
| 549 | bootefi_image_path = NULL; |
| 550 | failure: |
| 551 | efi_free_pool(bootefi_device_path); |
| 552 | bootefi_device_path = NULL; |
| 553 | return ret; |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 554 | } |
| 555 | |
AKASHI Takahiro | 09a81c7 | 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 | /** |
| 571 | * do_efi_selftest() - execute EFI Selftest |
| 572 | * |
| 573 | * @fdt_opt: string of fdt start address |
| 574 | * Return: status code |
| 575 | * |
| 576 | * Execute EFI Selftest |
| 577 | */ |
| 578 | static int do_efi_selftest(const char *fdt_opt) |
| 579 | { |
| 580 | struct efi_loaded_image_obj *image_obj; |
| 581 | struct efi_loaded_image *loaded_image_info; |
| 582 | efi_status_t ret; |
| 583 | |
| 584 | /* Allow unaligned memory access */ |
| 585 | allow_unaligned(); |
| 586 | |
| 587 | switch_to_non_secure_mode(); |
| 588 | |
| 589 | /* Initialize EFI drivers */ |
| 590 | ret = efi_init_obj_list(); |
| 591 | if (ret != EFI_SUCCESS) { |
| 592 | printf("Error: Cannot initialize UEFI sub-system, r = %lu\n", |
| 593 | ret & ~EFI_ERROR_MASK); |
| 594 | return CMD_RET_FAILURE; |
| 595 | } |
| 596 | |
| 597 | ret = efi_install_fdt(fdt_opt); |
| 598 | if (ret == EFI_INVALID_PARAMETER) |
| 599 | return CMD_RET_USAGE; |
| 600 | else if (ret != EFI_SUCCESS) |
| 601 | return CMD_RET_FAILURE; |
| 602 | |
| 603 | ret = bootefi_test_prepare(&image_obj, &loaded_image_info, |
| 604 | "\\selftest", "efi_selftest"); |
| 605 | if (ret != EFI_SUCCESS) |
| 606 | return CMD_RET_FAILURE; |
| 607 | |
| 608 | /* Execute the test */ |
| 609 | ret = EFI_CALL(efi_selftest(&image_obj->header, &systab)); |
| 610 | bootefi_run_finish(image_obj, loaded_image_info); |
| 611 | |
| 612 | return ret != EFI_SUCCESS; |
| 613 | } |
Simon Glass | 93f2559 | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 614 | #endif /* CONFIG_CMD_BOOTEFI_SELFTEST */ |
| 615 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 616 | /* Interpreter command to boot an arbitrary EFI image from memory */ |
| 617 | static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 618 | { |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 619 | if (argc < 2) |
| 620 | return CMD_RET_USAGE; |
AKASHI Takahiro | cf81983 | 2019-04-19 12:22:33 +0900 | [diff] [blame] | 621 | |
| 622 | if (!strcmp(argv[1], "bootmgr")) |
| 623 | return do_efibootmgr(argc > 2 ? argv[2] : NULL); |
AKASHI Takahiro | 09a81c7 | 2019-04-19 12:22:31 +0900 | [diff] [blame] | 624 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
| 625 | else if (!strcmp(argv[1], "selftest")) |
| 626 | return do_efi_selftest(argc > 2 ? argv[2] : NULL); |
| 627 | #endif |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 628 | |
AKASHI Takahiro | fbd3ba5 | 2019-04-19 12:22:34 +0900 | [diff] [blame] | 629 | return do_bootefi_image(argv[1], argc > 2 ? argv[2] : NULL); |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | #ifdef CONFIG_SYS_LONGHELP |
| 633 | static char bootefi_help_text[] = |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 634 | "<image address> [fdt address]\n" |
| 635 | " - boot EFI payload stored at address <image address>.\n" |
| 636 | " If specified, the device tree located at <fdt address> gets\n" |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 637 | " exposed as EFI configuration table.\n" |
| 638 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 639 | "bootefi hello\n" |
| 640 | " - boot a sample Hello World application stored within U-Boot\n" |
| 641 | #endif |
| 642 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 643 | "bootefi selftest [fdt address]\n" |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 644 | " - boot an EFI selftest application stored within U-Boot\n" |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 645 | " Use environment variable efi_selftest to select a single test.\n" |
| 646 | " Use 'setenv efi_selftest list' to enumerate all tests.\n" |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 647 | #endif |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 648 | "bootefi bootmgr [fdt address]\n" |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 649 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
| 650 | "\n" |
| 651 | " If specified, the device tree located at <fdt address> gets\n" |
| 652 | " exposed as EFI configuration table.\n"; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 653 | #endif |
| 654 | |
| 655 | U_BOOT_CMD( |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 656 | bootefi, 3, 0, do_bootefi, |
Sergey Kubushyn | 268f19e | 2016-06-07 11:14:31 -0700 | [diff] [blame] | 657 | "Boots an EFI payload from memory", |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 658 | bootefi_help_text |
| 659 | ); |
Alexander Graf | 8f19f26 | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 660 | |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 661 | void efi_set_bootdev(const char *dev, const char *devnr, const char *path) |
| 662 | { |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 663 | struct efi_device_path *device, *image; |
| 664 | efi_status_t ret; |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 665 | |
Heinrich Schuchardt | 761ecc8 | 2018-09-16 07:20:21 +0200 | [diff] [blame] | 666 | /* efi_set_bootdev is typically called repeatedly, recover memory */ |
| 667 | efi_free_pool(bootefi_device_path); |
| 668 | efi_free_pool(bootefi_image_path); |
Heinrich Schuchardt | 761ecc8 | 2018-09-16 07:20:21 +0200 | [diff] [blame] | 669 | |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 670 | ret = efi_dp_from_name(dev, devnr, path, &device, &image); |
| 671 | if (ret == EFI_SUCCESS) { |
| 672 | bootefi_device_path = device; |
AKASHI Takahiro | 14ff23b | 2019-04-19 12:22:35 +0900 | [diff] [blame] | 673 | if (image) { |
| 674 | /* FIXME: image should not contain device */ |
| 675 | struct efi_device_path *image_tmp = image; |
| 676 | |
| 677 | efi_dp_split_file_path(image, &device, &image); |
| 678 | efi_free_pool(image_tmp); |
| 679 | } |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 680 | bootefi_image_path = image; |
Alexander Graf | 45e437d | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 681 | } else { |
AKASHI Takahiro | 035fb01 | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 682 | bootefi_device_path = NULL; |
| 683 | bootefi_image_path = NULL; |
Alexander Graf | 45e437d | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 684 | } |
Alexander Graf | 8f19f26 | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 685 | } |