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