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