Tom Rini | f739fcd | 2018-05-07 17:02:21 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 2 | /* |
| 3 | * EFI application loader |
| 4 | * |
| 5 | * Copyright (c) 2016 Alexander Graf |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 8 | #include <charset.h> |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 9 | #include <common.h> |
| 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> |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 14 | #include <errno.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 15 | #include <linux/libfdt.h> |
| 16 | #include <linux/libfdt_env.h> |
Alexander Graf | 354264b | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 17 | #include <mapmem.h> |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 18 | #include <memalign.h> |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 19 | #include <asm/global_data.h> |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 20 | #include <asm-generic/sections.h> |
Heinrich Schuchardt | c3b11de | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 21 | #include <asm-generic/unaligned.h> |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 22 | #include <linux/linkage.h> |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 23 | |
Mark Kettenis | dc500c3 | 2018-06-15 23:47:12 +0200 | [diff] [blame] | 24 | #ifdef CONFIG_ARMV7_NONSEC |
| 25 | #include <asm/armv7.h> |
| 26 | #include <asm/secure.h> |
| 27 | #endif |
| 28 | |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 29 | DECLARE_GLOBAL_DATA_PTR; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 30 | |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 31 | #define OBJ_LIST_NOT_INITIALIZED 1 |
| 32 | |
| 33 | static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 34 | |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 35 | static struct efi_device_path *bootefi_image_path; |
| 36 | static struct efi_device_path *bootefi_device_path; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 37 | |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 38 | /* Initialize and populate EFI object list */ |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 39 | efi_status_t efi_init_obj_list(void) |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 40 | { |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 41 | efi_status_t ret = EFI_SUCCESS; |
| 42 | |
Heinrich Schuchardt | 1e1e1c2 | 2018-10-03 23:55:38 +0200 | [diff] [blame] | 43 | /* |
| 44 | * On the ARM architecture gd is mapped to a fixed register (r9 or x18). |
| 45 | * As this register may be overwritten by an EFI payload we save it here |
| 46 | * and restore it on every callback entered. |
| 47 | */ |
| 48 | efi_save_gd(); |
| 49 | |
Heinrich Schuchardt | 098a6cd | 2018-03-03 15:28:58 +0100 | [diff] [blame] | 50 | /* Initialize once only */ |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 51 | if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED) |
| 52 | return efi_obj_list_initialized; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 53 | |
Heinrich Schuchardt | 640adad | 2018-06-28 12:45:31 +0200 | [diff] [blame] | 54 | /* Initialize system table */ |
| 55 | ret = efi_initialize_system_table(); |
| 56 | if (ret != EFI_SUCCESS) |
| 57 | goto out; |
| 58 | |
Heinrich Schuchardt | 4e6b5d6 | 2018-09-20 21:58:23 +0200 | [diff] [blame] | 59 | /* Initialize root node */ |
| 60 | ret = efi_root_node_register(); |
| 61 | if (ret != EFI_SUCCESS) |
| 62 | goto out; |
| 63 | |
Heinrich Schuchardt | 05ef48a | 2018-01-21 19:29:30 +0100 | [diff] [blame] | 64 | /* Initialize EFI driver uclass */ |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 65 | ret = efi_driver_init(); |
| 66 | if (ret != EFI_SUCCESS) |
| 67 | goto out; |
Heinrich Schuchardt | 05ef48a | 2018-01-21 19:29:30 +0100 | [diff] [blame] | 68 | |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 69 | ret = efi_console_register(); |
| 70 | if (ret != EFI_SUCCESS) |
| 71 | goto out; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 72 | #ifdef CONFIG_PARTITIONS |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 73 | ret = efi_disk_register(); |
| 74 | if (ret != EFI_SUCCESS) |
| 75 | goto out; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 76 | #endif |
| 77 | #if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO) |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 78 | ret = efi_gop_register(); |
| 79 | if (ret != EFI_SUCCESS) |
| 80 | goto out; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 81 | #endif |
Joe Hershberger | 092f2f3 | 2018-04-13 15:26:39 -0500 | [diff] [blame] | 82 | #ifdef CONFIG_NET |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 83 | ret = efi_net_register(); |
| 84 | if (ret != EFI_SUCCESS) |
| 85 | goto out; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 86 | #endif |
Bin Meng | 86df34d | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 87 | #ifdef CONFIG_GENERATE_ACPI_TABLE |
| 88 | ret = efi_acpi_register(); |
| 89 | if (ret != EFI_SUCCESS) |
| 90 | goto out; |
| 91 | #endif |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 92 | #ifdef CONFIG_GENERATE_SMBIOS_TABLE |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 93 | ret = efi_smbios_register(); |
| 94 | if (ret != EFI_SUCCESS) |
| 95 | goto out; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 96 | #endif |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 97 | ret = efi_watchdog_register(); |
| 98 | if (ret != EFI_SUCCESS) |
| 99 | goto out; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 100 | |
| 101 | /* Initialize EFI runtime services */ |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 102 | ret = efi_reset_system_init(); |
| 103 | if (ret != EFI_SUCCESS) |
| 104 | goto out; |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 105 | |
| 106 | out: |
| 107 | efi_obj_list_initialized = ret; |
| 108 | return ret; |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 109 | } |
| 110 | |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 111 | /* |
Heinrich Schuchardt | c3b11de | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 112 | * Allow unaligned memory access. |
| 113 | * |
| 114 | * This routine is overridden by architectures providing this feature. |
| 115 | */ |
| 116 | void __weak allow_unaligned(void) |
| 117 | { |
| 118 | } |
| 119 | |
| 120 | /* |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 121 | * Set the load options of an image from an environment variable. |
| 122 | * |
| 123 | * @loaded_image_info: the image |
| 124 | * @env_var: name of the environment variable |
| 125 | */ |
| 126 | static void set_load_options(struct efi_loaded_image *loaded_image_info, |
| 127 | const char *env_var) |
| 128 | { |
| 129 | size_t size; |
| 130 | const char *env = env_get(env_var); |
Heinrich Schuchardt | 7086a71 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 131 | u16 *pos; |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 132 | |
| 133 | loaded_image_info->load_options = NULL; |
| 134 | loaded_image_info->load_options_size = 0; |
| 135 | if (!env) |
| 136 | return; |
Heinrich Schuchardt | 7086a71 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 137 | size = utf8_utf16_strlen(env) + 1; |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 138 | loaded_image_info->load_options = calloc(size, sizeof(u16)); |
| 139 | if (!loaded_image_info->load_options) { |
| 140 | printf("ERROR: Out of memory\n"); |
| 141 | return; |
| 142 | } |
Heinrich Schuchardt | 7086a71 | 2018-08-31 21:31:33 +0200 | [diff] [blame] | 143 | pos = loaded_image_info->load_options; |
| 144 | utf8_utf16_strcpy(&pos, env); |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 145 | loaded_image_info->load_options_size = size * 2; |
| 146 | } |
| 147 | |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 148 | /** |
| 149 | * copy_fdt() - Copy the device tree to a new location available to EFI |
| 150 | * |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 151 | * 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] | 152 | * 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] | 153 | * expanded later with fdt_open_into(). |
| 154 | * |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 155 | * @fdtp: On entry a pointer to the flattened device tree. |
| 156 | * On exit a pointer to the copy of the flattened device tree. |
Heinrich Schuchardt | 4574d1b | 2018-11-12 18:55:22 +0100 | [diff] [blame] | 157 | * FDT start |
| 158 | * Return: status code |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 159 | */ |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 160 | static efi_status_t copy_fdt(void **fdtp) |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 161 | { |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 162 | unsigned long fdt_ram_start = -1L, fdt_pages; |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 163 | efi_status_t ret = 0; |
| 164 | void *fdt, *new_fdt; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 165 | u64 new_fdt_addr; |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 166 | uint fdt_size; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 167 | int i; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 168 | |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 169 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 170 | u64 ram_start = gd->bd->bi_dram[i].start; |
| 171 | u64 ram_size = gd->bd->bi_dram[i].size; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 172 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 173 | if (!ram_size) |
| 174 | continue; |
| 175 | |
| 176 | if (ram_start < fdt_ram_start) |
| 177 | fdt_ram_start = ram_start; |
| 178 | } |
| 179 | |
Simon Glass | bc9a638 | 2018-06-18 08:08:25 -0600 | [diff] [blame] | 180 | /* |
Heinrich Schuchardt | c3772ca | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 181 | * Give us at least 12 KiB of breathing room in case the device tree |
| 182 | * needs to be expanded later. |
Simon Glass | bc9a638 | 2018-06-18 08:08:25 -0600 | [diff] [blame] | 183 | */ |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 184 | fdt = *fdtp; |
Heinrich Schuchardt | c3772ca | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 185 | fdt_pages = efi_size_in_pages(fdt_totalsize(fdt) + 0x3000); |
| 186 | fdt_size = fdt_pages << EFI_PAGE_SHIFT; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 187 | |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 188 | /* |
| 189 | * Safe fdt location is at 127 MiB. |
| 190 | * On the sandbox convert from the sandbox address space. |
| 191 | */ |
| 192 | new_fdt_addr = (uintptr_t)map_sysmem(fdt_ram_start + 0x7f00000 + |
| 193 | fdt_size, 0); |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 194 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
| 195 | EFI_RUNTIME_SERVICES_DATA, fdt_pages, |
| 196 | &new_fdt_addr); |
| 197 | if (ret != EFI_SUCCESS) { |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 198 | /* If we can't put it there, put it somewhere */ |
xypron.glpk@gmx.de | a44bffc | 2017-08-11 21:19:25 +0200 | [diff] [blame] | 199 | new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size); |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 200 | ret = efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
| 201 | EFI_RUNTIME_SERVICES_DATA, fdt_pages, |
| 202 | &new_fdt_addr); |
| 203 | if (ret != EFI_SUCCESS) { |
Alexander Graf | 85a6e9b | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 204 | printf("ERROR: Failed to reserve space for FDT\n"); |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 205 | goto done; |
Alexander Graf | 85a6e9b | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 206 | } |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 207 | } |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 208 | new_fdt = (void *)(uintptr_t)new_fdt_addr; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 209 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
| 210 | fdt_set_totalsize(new_fdt, fdt_size); |
| 211 | |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 212 | *fdtp = (void *)(uintptr_t)new_fdt_addr; |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 213 | done: |
| 214 | return ret; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 215 | } |
| 216 | |
Heinrich Schuchardt | 3eb0841 | 2017-10-18 18:13:08 +0200 | [diff] [blame] | 217 | static efi_status_t efi_do_enter( |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 218 | efi_handle_t image_handle, struct efi_system_table *st, |
Alexander Graf | c6fa5df | 2018-01-24 00:18:08 +0100 | [diff] [blame] | 219 | EFIAPI efi_status_t (*entry)( |
| 220 | efi_handle_t image_handle, |
| 221 | struct efi_system_table *st)) |
xypron.glpk@gmx.de | b06d8ac | 2017-07-04 23:15:21 +0200 | [diff] [blame] | 222 | { |
| 223 | efi_status_t ret = EFI_LOAD_ERROR; |
| 224 | |
| 225 | if (entry) |
| 226 | ret = entry(image_handle, st); |
| 227 | st->boottime->exit(image_handle, ret, 0, NULL); |
| 228 | return ret; |
| 229 | } |
| 230 | |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 231 | #ifdef CONFIG_ARM64 |
Alexander Graf | c6fa5df | 2018-01-24 00:18:08 +0100 | [diff] [blame] | 232 | static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)( |
Heinrich Schuchardt | 2074f70 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 233 | efi_handle_t image_handle, struct efi_system_table *st), |
| 234 | efi_handle_t image_handle, struct efi_system_table *st) |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 235 | { |
| 236 | /* Enable caches again */ |
| 237 | dcache_enable(); |
| 238 | |
xypron.glpk@gmx.de | b06d8ac | 2017-07-04 23:15:21 +0200 | [diff] [blame] | 239 | return efi_do_enter(image_handle, st, entry); |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 240 | } |
| 241 | #endif |
| 242 | |
Mark Kettenis | dc500c3 | 2018-06-15 23:47:12 +0200 | [diff] [blame] | 243 | #ifdef CONFIG_ARMV7_NONSEC |
Mark Kettenis | f17f200 | 2018-06-15 23:47:13 +0200 | [diff] [blame] | 244 | static bool is_nonsec; |
| 245 | |
Mark Kettenis | dc500c3 | 2018-06-15 23:47:12 +0200 | [diff] [blame] | 246 | static efi_status_t efi_run_in_hyp(EFIAPI efi_status_t (*entry)( |
| 247 | efi_handle_t image_handle, struct efi_system_table *st), |
| 248 | efi_handle_t image_handle, struct efi_system_table *st) |
| 249 | { |
| 250 | /* Enable caches again */ |
| 251 | dcache_enable(); |
| 252 | |
Mark Kettenis | f17f200 | 2018-06-15 23:47:13 +0200 | [diff] [blame] | 253 | is_nonsec = true; |
| 254 | |
Mark Kettenis | dc500c3 | 2018-06-15 23:47:12 +0200 | [diff] [blame] | 255 | return efi_do_enter(image_handle, st, entry); |
| 256 | } |
| 257 | #endif |
| 258 | |
Simon Glass | 416e07e | 2018-06-18 08:08:28 -0600 | [diff] [blame] | 259 | /* |
| 260 | * efi_carve_out_dt_rsv() - Carve out DT reserved memory ranges |
| 261 | * |
| 262 | * The mem_rsv entries of the FDT are added to the memory map. Any failures are |
| 263 | * ignored because this is not critical and we would rather continue to try to |
| 264 | * boot. |
| 265 | * |
| 266 | * @fdt: Pointer to device tree |
| 267 | */ |
| 268 | static void efi_carve_out_dt_rsv(void *fdt) |
Alexander Graf | 806d2fa | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 269 | { |
| 270 | int nr_rsv, i; |
| 271 | uint64_t addr, size, pages; |
| 272 | |
| 273 | nr_rsv = fdt_num_mem_rsv(fdt); |
| 274 | |
| 275 | /* Look for an existing entry and add it to the efi mem map. */ |
| 276 | for (i = 0; i < nr_rsv; i++) { |
| 277 | if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0) |
| 278 | continue; |
| 279 | |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 280 | /* Convert from sandbox address space. */ |
| 281 | addr = (uintptr_t)map_sysmem(addr, 0); |
| 282 | |
Heinrich Schuchardt | c3772ca | 2018-11-18 17:58:49 +0100 | [diff] [blame] | 283 | pages = efi_size_in_pages(size + (addr & EFI_PAGE_MASK)); |
Heinrich Schuchardt | 23fd84b | 2018-11-12 18:55:23 +0100 | [diff] [blame] | 284 | addr &= ~EFI_PAGE_MASK; |
Simon Glass | 416e07e | 2018-06-18 08:08:28 -0600 | [diff] [blame] | 285 | if (!efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE, |
| 286 | false)) |
| 287 | printf("FDT memrsv map %d: Failed to add to map\n", i); |
Alexander Graf | 806d2fa | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 288 | } |
Alexander Graf | 806d2fa | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 289 | } |
| 290 | |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 291 | static efi_status_t efi_install_fdt(ulong fdt_addr) |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 292 | { |
| 293 | bootm_headers_t img = { 0 }; |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 294 | efi_status_t ret; |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 295 | void *fdt; |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 296 | |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 297 | fdt = map_sysmem(fdt_addr, 0); |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 298 | if (fdt_check_header(fdt)) { |
| 299 | printf("ERROR: invalid device tree\n"); |
| 300 | return EFI_INVALID_PARAMETER; |
| 301 | } |
| 302 | |
Heinrich Schuchardt | 0c9ac06 | 2018-11-18 17:58:53 +0100 | [diff] [blame] | 303 | /* Create memory reservation as indicated by the device tree */ |
| 304 | efi_carve_out_dt_rsv(fdt); |
| 305 | |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 306 | /* Prepare fdt for payload */ |
Heinrich Schuchardt | 16b615d | 2018-11-18 17:58:52 +0100 | [diff] [blame] | 307 | ret = copy_fdt(&fdt); |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 308 | if (ret) |
| 309 | return ret; |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 310 | |
| 311 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
| 312 | printf("ERROR: failed to process device tree\n"); |
| 313 | return EFI_LOAD_ERROR; |
| 314 | } |
| 315 | |
| 316 | /* Link to it in the efi tables */ |
| 317 | ret = efi_install_configuration_table(&efi_guid_fdt, fdt); |
| 318 | if (ret != EFI_SUCCESS) |
| 319 | return EFI_OUT_OF_RESOURCES; |
| 320 | |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 321 | return ret; |
| 322 | } |
| 323 | |
Simon Glass | f4f0f7c | 2018-11-25 20:14:38 -0700 | [diff] [blame] | 324 | static efi_status_t bootefi_run_prepare(const char *load_options_path, |
| 325 | struct efi_device_path *device_path, |
| 326 | struct efi_device_path *image_path, |
| 327 | struct efi_loaded_image_obj **image_objp, |
| 328 | struct efi_loaded_image **loaded_image_infop) |
| 329 | { |
| 330 | efi_status_t ret; |
| 331 | |
| 332 | ret = efi_setup_loaded_image(device_path, image_path, image_objp, |
| 333 | loaded_image_infop); |
| 334 | if (ret != EFI_SUCCESS) |
| 335 | return ret; |
| 336 | |
| 337 | /* Transfer environment variable as load options */ |
| 338 | set_load_options(*loaded_image_infop, load_options_path); |
| 339 | |
| 340 | return 0; |
| 341 | } |
| 342 | |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 343 | /** |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 344 | * bootefi_run_finish() - finish up after running an EFI test |
| 345 | * |
| 346 | * @loaded_image_info: Pointer to a struct which holds the loaded image info |
| 347 | * @image_objj: Pointer to a struct which holds the loaded image object |
| 348 | */ |
| 349 | static void bootefi_run_finish(struct efi_loaded_image_obj *image_obj, |
| 350 | struct efi_loaded_image *loaded_image_info) |
| 351 | { |
| 352 | efi_restore_gd(); |
| 353 | free(loaded_image_info->load_options); |
| 354 | efi_delete_handle(&image_obj->header); |
| 355 | } |
| 356 | |
| 357 | /** |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 358 | * do_bootefi_exec() - execute EFI binary |
| 359 | * |
| 360 | * @efi: address of the binary |
| 361 | * @device_path: path of the device from which the binary was loaded |
| 362 | * @image_path: device path of the binary |
| 363 | * Return: status code |
| 364 | * |
| 365 | * Load the EFI binary into a newly assigned memory unwinding the relocation |
| 366 | * information, install the loaded image protocol, and call the binary. |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 367 | */ |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 368 | static efi_status_t do_bootefi_exec(void *efi, |
Heinrich Schuchardt | 3eb0841 | 2017-10-18 18:13:08 +0200 | [diff] [blame] | 369 | struct efi_device_path *device_path, |
| 370 | struct efi_device_path *image_path) |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 371 | { |
Heinrich Schuchardt | 8887acc | 2018-09-16 07:19:48 +0200 | [diff] [blame] | 372 | efi_handle_t mem_handle = NULL; |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 373 | struct efi_device_path *memdp = NULL; |
Heinrich Schuchardt | 45204b1 | 2018-03-03 15:29:01 +0100 | [diff] [blame] | 374 | efi_status_t ret; |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 375 | struct efi_loaded_image_obj *image_obj = NULL; |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 376 | struct efi_loaded_image *loaded_image_info = NULL; |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 377 | |
Alexander Graf | c6fa5df | 2018-01-24 00:18:08 +0100 | [diff] [blame] | 378 | EFIAPI efi_status_t (*entry)(efi_handle_t image_handle, |
| 379 | struct efi_system_table *st); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 380 | |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 381 | /* |
| 382 | * Special case for efi payload not loaded from disk, such as |
| 383 | * 'bootefi hello' or for example payload loaded directly into |
Heinrich Schuchardt | e1fec15 | 2018-10-18 21:51:38 +0200 | [diff] [blame] | 384 | * memory via JTAG, etc: |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 385 | */ |
| 386 | if (!device_path && !image_path) { |
| 387 | printf("WARNING: using memory device/image path, this may confuse some payloads!\n"); |
| 388 | /* actual addresses filled in after efi_load_pe() */ |
| 389 | memdp = efi_dp_from_mem(0, 0, 0); |
| 390 | device_path = image_path = memdp; |
Heinrich Schuchardt | 8887acc | 2018-09-16 07:19:48 +0200 | [diff] [blame] | 391 | /* |
| 392 | * Grub expects that the device path of the loaded image is |
| 393 | * installed on a handle. |
| 394 | */ |
| 395 | ret = efi_create_handle(&mem_handle); |
| 396 | if (ret != EFI_SUCCESS) |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 397 | return ret; /* TODO: leaks device_path */ |
Heinrich Schuchardt | 8887acc | 2018-09-16 07:19:48 +0200 | [diff] [blame] | 398 | ret = efi_add_protocol(mem_handle, &efi_guid_device_path, |
Alexander Graf | 58bc69d | 2018-06-12 10:21:16 +0200 | [diff] [blame] | 399 | device_path); |
| 400 | if (ret != EFI_SUCCESS) |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 401 | goto err_add_protocol; |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 402 | } else { |
| 403 | assert(device_path && image_path); |
| 404 | } |
| 405 | |
Simon Glass | f4f0f7c | 2018-11-25 20:14:38 -0700 | [diff] [blame] | 406 | ret = bootefi_run_prepare("bootargs", device_path, image_path, |
| 407 | &image_obj, &loaded_image_info); |
| 408 | if (ret) |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 409 | goto err_prepare; |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 410 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 411 | /* Load the EFI payload */ |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 412 | entry = efi_load_pe(image_obj, efi, loaded_image_info); |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 413 | if (!entry) { |
Heinrich Schuchardt | 45204b1 | 2018-03-03 15:29:01 +0100 | [diff] [blame] | 414 | ret = EFI_LOAD_ERROR; |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 415 | goto err_prepare; |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 416 | } |
Alexander Graf | 80a4800 | 2016-08-16 21:08:45 +0200 | [diff] [blame] | 417 | |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 418 | if (memdp) { |
| 419 | struct efi_device_path_memory *mdp = (void *)memdp; |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 420 | mdp->memory_type = loaded_image_info->image_code_type; |
| 421 | mdp->start_address = (uintptr_t)loaded_image_info->image_base; |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 422 | mdp->end_address = mdp->start_address + |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 423 | loaded_image_info->image_size; |
Rob Clark | bf19273 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 424 | } |
| 425 | |
Rob Clark | ad644e7 | 2017-09-13 18:05:37 -0400 | [diff] [blame] | 426 | /* we don't support much: */ |
| 427 | env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported", |
| 428 | "{ro,boot}(blob)0000000000000000"); |
| 429 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 430 | /* Call our payload! */ |
Alexander Graf | edcef3b | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 431 | debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry); |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 432 | |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 433 | if (setjmp(&image_obj->exit_jmp)) { |
| 434 | ret = image_obj->exit_status; |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 435 | goto err_prepare; |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 436 | } |
| 437 | |
Alexander Graf | 69bd459 | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 438 | #ifdef CONFIG_ARM64 |
| 439 | /* On AArch64 we need to make sure we call our payload in < EL3 */ |
| 440 | if (current_el() == 3) { |
| 441 | smp_kick_all_cpus(); |
| 442 | dcache_disable(); /* flush cache before switch to EL2 */ |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 443 | |
| 444 | /* Move into EL2 and keep running there */ |
Heinrich Schuchardt | ea54ad5 | 2017-11-26 14:05:22 +0100 | [diff] [blame] | 445 | armv8_switch_to_el2((ulong)entry, |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 446 | (ulong)&image_obj->header, |
Alison Wang | 7c5e1fe | 2017-01-17 09:39:17 +0800 | [diff] [blame] | 447 | (ulong)&systab, 0, (ulong)efi_run_in_el2, |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 448 | ES_TO_AARCH64); |
| 449 | |
| 450 | /* Should never reach here, efi exits with longjmp */ |
| 451 | while (1) { } |
Alexander Graf | 69bd459 | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 452 | } |
| 453 | #endif |
| 454 | |
Mark Kettenis | dc500c3 | 2018-06-15 23:47:12 +0200 | [diff] [blame] | 455 | #ifdef CONFIG_ARMV7_NONSEC |
Mark Kettenis | f17f200 | 2018-06-15 23:47:13 +0200 | [diff] [blame] | 456 | if (armv7_boot_nonsec() && !is_nonsec) { |
Mark Kettenis | dc500c3 | 2018-06-15 23:47:12 +0200 | [diff] [blame] | 457 | dcache_disable(); /* flush cache before switch to HYP */ |
| 458 | |
| 459 | armv7_init_nonsec(); |
| 460 | secure_ram_addr(_do_nonsec_entry)( |
| 461 | efi_run_in_hyp, |
| 462 | (uintptr_t)entry, |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 463 | (uintptr_t)&image_obj->header, |
Mark Kettenis | dc500c3 | 2018-06-15 23:47:12 +0200 | [diff] [blame] | 464 | (uintptr_t)&systab); |
| 465 | |
| 466 | /* Should never reach here, efi exits with longjmp */ |
| 467 | while (1) { } |
| 468 | } |
| 469 | #endif |
| 470 | |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 471 | ret = efi_do_enter(&image_obj->header, &systab, entry); |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 472 | |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 473 | err_prepare: |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 474 | /* image has returned, loaded-image obj goes *poof*: */ |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 475 | bootefi_run_finish(image_obj, loaded_image_info); |
| 476 | |
| 477 | err_add_protocol: |
Heinrich Schuchardt | 8887acc | 2018-09-16 07:19:48 +0200 | [diff] [blame] | 478 | if (mem_handle) |
| 479 | efi_delete_handle(mem_handle); |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 480 | |
| 481 | return ret; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 482 | } |
| 483 | |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 484 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
| 485 | /** |
| 486 | * bootefi_test_prepare() - prepare to run an EFI test |
| 487 | * |
| 488 | * This sets things up so we can call EFI functions. This involves preparing |
| 489 | * the 'gd' pointer and setting up the load ed image data structures. |
| 490 | * |
| 491 | * @image_objp: loaded_image_infop: Pointer to a struct which will hold the |
| 492 | * loaded image object. This struct will be inited by this function before |
| 493 | * use. |
| 494 | * @loaded_image_infop: Pointer to a struct which will hold the loaded image |
| 495 | * info. This struct will be inited by this function before use. |
| 496 | * @path: File path to the test being run (often just the test name with a |
| 497 | * backslash before it |
| 498 | * @test_func: Address of the test function that is being run |
Simon Glass | f4f0f7c | 2018-11-25 20:14:38 -0700 | [diff] [blame] | 499 | * @load_options_path: U-Boot environment variable to use as load options |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 500 | * @return 0 if OK, -ve on error |
| 501 | */ |
| 502 | static efi_status_t bootefi_test_prepare |
| 503 | (struct efi_loaded_image_obj **image_objp, |
Simon Glass | f4f0f7c | 2018-11-25 20:14:38 -0700 | [diff] [blame] | 504 | struct efi_loaded_image **loaded_image_infop, const char *path, |
| 505 | ulong test_func, const char *load_options_path) |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 506 | { |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 507 | /* Construct a dummy device path */ |
| 508 | bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, |
| 509 | (uintptr_t)test_func, |
| 510 | (uintptr_t)test_func); |
| 511 | if (!bootefi_device_path) |
| 512 | return EFI_OUT_OF_RESOURCES; |
| 513 | bootefi_image_path = efi_dp_from_file(NULL, 0, path); |
| 514 | if (!bootefi_image_path) |
| 515 | return EFI_OUT_OF_RESOURCES; |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 516 | |
Simon Glass | f4f0f7c | 2018-11-25 20:14:38 -0700 | [diff] [blame] | 517 | return bootefi_run_prepare(load_options_path, bootefi_device_path, |
| 518 | bootefi_image_path, image_objp, |
| 519 | loaded_image_infop); |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 520 | } |
| 521 | |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 522 | #endif /* CONFIG_CMD_BOOTEFI_SELFTEST */ |
| 523 | |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 524 | static int do_bootefi_bootmgr_exec(void) |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 525 | { |
| 526 | struct efi_device_path *device_path, *file_path; |
| 527 | void *addr; |
| 528 | efi_status_t r; |
| 529 | |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 530 | addr = efi_bootmgr_load(&device_path, &file_path); |
| 531 | if (!addr) |
| 532 | return 1; |
| 533 | |
| 534 | printf("## Starting EFI application at %p ...\n", addr); |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 535 | r = do_bootefi_exec(addr, device_path, file_path); |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 536 | printf("## Application terminated, r = %lu\n", |
| 537 | r & ~EFI_ERROR_MASK); |
| 538 | |
| 539 | if (r != EFI_SUCCESS) |
| 540 | return 1; |
| 541 | |
| 542 | return 0; |
| 543 | } |
| 544 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 545 | /* Interpreter command to boot an arbitrary EFI image from memory */ |
| 546 | static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 547 | { |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 548 | unsigned long addr; |
| 549 | char *saddr; |
Heinrich Schuchardt | 3eb0841 | 2017-10-18 18:13:08 +0200 | [diff] [blame] | 550 | efi_status_t r; |
Alexander Graf | 354264b | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 551 | unsigned long fdt_addr; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 552 | |
Heinrich Schuchardt | c3b11de | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 553 | /* Allow unaligned memory access */ |
| 554 | allow_unaligned(); |
| 555 | |
Heinrich Schuchardt | fc225e6 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 556 | /* Initialize EFI drivers */ |
| 557 | r = efi_init_obj_list(); |
| 558 | if (r != EFI_SUCCESS) { |
| 559 | printf("Error: Cannot set up EFI drivers, r = %lu\n", |
| 560 | r & ~EFI_ERROR_MASK); |
| 561 | return CMD_RET_FAILURE; |
| 562 | } |
| 563 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 564 | if (argc < 2) |
Bin Meng | 3c1dcef | 2016-08-13 04:02:06 -0700 | [diff] [blame] | 565 | return CMD_RET_USAGE; |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 566 | |
| 567 | if (argc > 2) { |
Alexander Graf | 354264b | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 568 | fdt_addr = simple_strtoul(argv[2], NULL, 16); |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 569 | if (!fdt_addr && *argv[2] != '0') |
| 570 | return CMD_RET_USAGE; |
| 571 | /* Install device tree */ |
Simon Glass | 9dff490 | 2018-08-08 03:54:30 -0600 | [diff] [blame] | 572 | r = efi_install_fdt(fdt_addr); |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 573 | if (r != EFI_SUCCESS) { |
| 574 | printf("ERROR: failed to install device tree\n"); |
| 575 | return CMD_RET_FAILURE; |
| 576 | } |
| 577 | } else { |
| 578 | /* Remove device tree. EFI_NOT_FOUND can be ignored here */ |
| 579 | efi_install_configuration_table(&efi_guid_fdt, NULL); |
| 580 | printf("WARNING: booting without device tree\n"); |
| 581 | } |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 582 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
| 583 | if (!strcmp(argv[1], "hello")) { |
Heinrich Schuchardt | 5e44489 | 2017-09-05 03:19:37 +0200 | [diff] [blame] | 584 | ulong size = __efi_helloworld_end - __efi_helloworld_begin; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 585 | |
Heinrich Schuchardt | 51c533f | 2017-08-28 18:54:30 +0200 | [diff] [blame] | 586 | saddr = env_get("loadaddr"); |
| 587 | if (saddr) |
| 588 | addr = simple_strtoul(saddr, NULL, 16); |
| 589 | else |
| 590 | addr = CONFIG_SYS_LOAD_ADDR; |
Alexander Graf | 354264b | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 591 | memcpy(map_sysmem(addr, size), __efi_helloworld_begin, size); |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 592 | } else |
| 593 | #endif |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 594 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
| 595 | if (!strcmp(argv[1], "selftest")) { |
Heinrich Schuchardt | faea104 | 2018-09-26 05:27:54 +0200 | [diff] [blame] | 596 | struct efi_loaded_image_obj *image_obj; |
Heinrich Schuchardt | c982874 | 2018-09-23 17:21:51 +0200 | [diff] [blame] | 597 | struct efi_loaded_image *loaded_image_info; |
Heinrich Schuchardt | 7aca68c | 2017-09-20 22:54:58 +0200 | [diff] [blame] | 598 | |
Simon Glass | d9717ea | 2018-11-25 20:14:37 -0700 | [diff] [blame] | 599 | if (bootefi_test_prepare(&image_obj, &loaded_image_info, |
Simon Glass | f4f0f7c | 2018-11-25 20:14:38 -0700 | [diff] [blame] | 600 | "\\selftest", (uintptr_t)&efi_selftest, |
| 601 | "efi_selftest")) |
Simon Glass | 2ab7ef7 | 2018-11-25 20:14:36 -0700 | [diff] [blame] | 602 | return CMD_RET_FAILURE; |
| 603 | |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 604 | /* Execute the test */ |
Heinrich Schuchardt | d39646a | 2018-09-26 05:27:56 +0200 | [diff] [blame] | 605 | r = efi_selftest(&image_obj->header, &systab); |
Simon Glass | 5e2f039 | 2018-11-25 20:14:39 -0700 | [diff] [blame] | 606 | bootefi_run_finish(image_obj, loaded_image_info); |
Heinrich Schuchardt | c2b5390 | 2017-10-18 18:13:14 +0200 | [diff] [blame] | 607 | return r != EFI_SUCCESS; |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 608 | } else |
| 609 | #endif |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 610 | if (!strcmp(argv[1], "bootmgr")) { |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 611 | return do_bootefi_bootmgr_exec(); |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 612 | } else { |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 613 | saddr = argv[1]; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 614 | |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 615 | addr = simple_strtoul(saddr, NULL, 16); |
Heinrich Schuchardt | 49db1cb | 2018-01-24 20:33:54 +0100 | [diff] [blame] | 616 | /* Check that a numeric value was passed */ |
| 617 | if (!addr && *saddr != '0') |
| 618 | return CMD_RET_USAGE; |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 619 | |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 620 | } |
| 621 | |
Simon Glass | 5ee31ba | 2016-11-07 08:47:05 -0700 | [diff] [blame] | 622 | printf("## Starting EFI application at %08lx ...\n", addr); |
Alexander Graf | 354264b | 2018-06-18 17:22:58 +0200 | [diff] [blame] | 623 | r = do_bootefi_exec(map_sysmem(addr, 0), bootefi_device_path, |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 624 | bootefi_image_path); |
xypron.glpk@gmx.de | 1da1bac | 2017-07-04 23:15:23 +0200 | [diff] [blame] | 625 | printf("## Application terminated, r = %lu\n", |
| 626 | r & ~EFI_ERROR_MASK); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 627 | |
xypron.glpk@gmx.de | 1da1bac | 2017-07-04 23:15:23 +0200 | [diff] [blame] | 628 | if (r != EFI_SUCCESS) |
| 629 | return 1; |
| 630 | else |
| 631 | return 0; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | #ifdef CONFIG_SYS_LONGHELP |
| 635 | static char bootefi_help_text[] = |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 636 | "<image address> [fdt address]\n" |
| 637 | " - boot EFI payload stored at address <image address>.\n" |
| 638 | " If specified, the device tree located at <fdt address> gets\n" |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 639 | " exposed as EFI configuration table.\n" |
| 640 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 641 | "bootefi hello\n" |
| 642 | " - boot a sample Hello World application stored within U-Boot\n" |
| 643 | #endif |
| 644 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
Heinrich Schuchardt | bc4f913 | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 645 | "bootefi selftest [fdt address]\n" |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 646 | " - boot an EFI selftest application stored within U-Boot\n" |
Heinrich Schuchardt | d78e40d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 647 | " Use environment variable efi_selftest to select a single test.\n" |
| 648 | " Use 'setenv efi_selftest list' to enumerate all tests.\n" |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 649 | #endif |
Heinrich Schuchardt | f623e07 | 2018-01-30 19:47:43 +0100 | [diff] [blame] | 650 | "bootefi bootmgr [fdt addr]\n" |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 651 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
| 652 | "\n" |
| 653 | " If specified, the device tree located at <fdt address> gets\n" |
| 654 | " exposed as EFI configuration table.\n"; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 655 | #endif |
| 656 | |
| 657 | U_BOOT_CMD( |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 658 | bootefi, 3, 0, do_bootefi, |
Sergey Kubushyn | 92dfd92 | 2016-06-07 11:14:31 -0700 | [diff] [blame] | 659 | "Boots an EFI payload from memory", |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 660 | bootefi_help_text |
| 661 | ); |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 662 | |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 663 | 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] | 664 | { |
AKASHI Takahiro | f1589ff | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 665 | struct efi_device_path *device, *image; |
| 666 | efi_status_t ret; |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 667 | |
Heinrich Schuchardt | 79276eb | 2018-09-16 07:20:21 +0200 | [diff] [blame] | 668 | /* efi_set_bootdev is typically called repeatedly, recover memory */ |
| 669 | efi_free_pool(bootefi_device_path); |
| 670 | efi_free_pool(bootefi_image_path); |
Heinrich Schuchardt | 79276eb | 2018-09-16 07:20:21 +0200 | [diff] [blame] | 671 | |
AKASHI Takahiro | f1589ff | 2018-10-17 16:32:03 +0900 | [diff] [blame] | 672 | ret = efi_dp_from_name(dev, devnr, path, &device, &image); |
| 673 | if (ret == EFI_SUCCESS) { |
| 674 | bootefi_device_path = device; |
| 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 | } |