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 | |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 8 | #include <charset.h> |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 9 | #include <common.h> |
| 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 | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 17 | #include <memalign.h> |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 19 | #include <asm-generic/sections.h> |
Heinrich Schuchardt | 954e2b9 | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 20 | #include <asm-generic/unaligned.h> |
Simon Glass | c2194bf | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 21 | #include <linux/linkage.h> |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 22 | |
Mark Kettenis | 5eb68ed | 2018-06-15 23:47:12 +0200 | [diff] [blame^] | 23 | #ifdef CONFIG_ARMV7_NONSEC |
| 24 | #include <asm/armv7.h> |
| 25 | #include <asm/secure.h> |
| 26 | #endif |
| 27 | |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 28 | DECLARE_GLOBAL_DATA_PTR; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 29 | |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 30 | #define OBJ_LIST_NOT_INITIALIZED 1 |
| 31 | |
| 32 | static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 33 | |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 34 | static struct efi_device_path *bootefi_image_path; |
| 35 | static struct efi_device_path *bootefi_device_path; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 36 | |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 37 | /* Initialize and populate EFI object list */ |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 38 | efi_status_t efi_init_obj_list(void) |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 39 | { |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 40 | efi_status_t ret = EFI_SUCCESS; |
| 41 | |
Heinrich Schuchardt | d4b38f0 | 2018-03-03 15:28:58 +0100 | [diff] [blame] | 42 | /* Initialize once only */ |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 43 | if (efi_obj_list_initialized != OBJ_LIST_NOT_INITIALIZED) |
| 44 | return efi_obj_list_initialized; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 45 | |
Heinrich Schuchardt | 11206f4 | 2018-01-21 19:29:30 +0100 | [diff] [blame] | 46 | /* Initialize EFI driver uclass */ |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 47 | ret = efi_driver_init(); |
| 48 | if (ret != EFI_SUCCESS) |
| 49 | goto out; |
Heinrich Schuchardt | 11206f4 | 2018-01-21 19:29:30 +0100 | [diff] [blame] | 50 | |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 51 | ret = efi_console_register(); |
| 52 | if (ret != EFI_SUCCESS) |
| 53 | goto out; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 54 | #ifdef CONFIG_PARTITIONS |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 55 | ret = efi_disk_register(); |
| 56 | if (ret != EFI_SUCCESS) |
| 57 | goto out; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 58 | #endif |
| 59 | #if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO) |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 60 | ret = efi_gop_register(); |
| 61 | if (ret != EFI_SUCCESS) |
| 62 | goto out; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 63 | #endif |
Joe Hershberger | 5277a97 | 2018-04-13 15:26:39 -0500 | [diff] [blame] | 64 | #ifdef CONFIG_NET |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 65 | ret = efi_net_register(); |
| 66 | if (ret != EFI_SUCCESS) |
| 67 | goto out; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 68 | #endif |
Bin Meng | 2cfbdae | 2018-06-27 20:38:03 -0700 | [diff] [blame] | 69 | #ifdef CONFIG_GENERATE_ACPI_TABLE |
| 70 | ret = efi_acpi_register(); |
| 71 | if (ret != EFI_SUCCESS) |
| 72 | goto out; |
| 73 | #endif |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 74 | #ifdef CONFIG_GENERATE_SMBIOS_TABLE |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 75 | ret = efi_smbios_register(); |
| 76 | if (ret != EFI_SUCCESS) |
| 77 | goto out; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 78 | #endif |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 79 | ret = efi_watchdog_register(); |
| 80 | if (ret != EFI_SUCCESS) |
| 81 | goto out; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 82 | |
| 83 | /* Initialize EFI runtime services */ |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 84 | ret = efi_reset_system_init(); |
| 85 | if (ret != EFI_SUCCESS) |
| 86 | goto out; |
| 87 | ret = efi_get_time_init(); |
| 88 | if (ret != EFI_SUCCESS) |
| 89 | goto out; |
| 90 | |
| 91 | out: |
| 92 | efi_obj_list_initialized = ret; |
| 93 | return ret; |
Heinrich Schuchardt | 5e9900f | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 94 | } |
| 95 | |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 96 | /* |
Heinrich Schuchardt | 954e2b9 | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 97 | * Allow unaligned memory access. |
| 98 | * |
| 99 | * This routine is overridden by architectures providing this feature. |
| 100 | */ |
| 101 | void __weak allow_unaligned(void) |
| 102 | { |
| 103 | } |
| 104 | |
| 105 | /* |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 106 | * Set the load options of an image from an environment variable. |
| 107 | * |
| 108 | * @loaded_image_info: the image |
| 109 | * @env_var: name of the environment variable |
| 110 | */ |
| 111 | static void set_load_options(struct efi_loaded_image *loaded_image_info, |
| 112 | const char *env_var) |
| 113 | { |
| 114 | size_t size; |
| 115 | const char *env = env_get(env_var); |
| 116 | |
| 117 | loaded_image_info->load_options = NULL; |
| 118 | loaded_image_info->load_options_size = 0; |
| 119 | if (!env) |
| 120 | return; |
| 121 | size = strlen(env) + 1; |
| 122 | loaded_image_info->load_options = calloc(size, sizeof(u16)); |
| 123 | if (!loaded_image_info->load_options) { |
| 124 | printf("ERROR: Out of memory\n"); |
| 125 | return; |
| 126 | } |
| 127 | utf8_to_utf16(loaded_image_info->load_options, (u8 *)env, size); |
| 128 | loaded_image_info->load_options_size = size * 2; |
| 129 | } |
| 130 | |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 131 | static void *copy_fdt(void *fdt) |
| 132 | { |
| 133 | u64 fdt_size = fdt_totalsize(fdt); |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 134 | unsigned long fdt_ram_start = -1L, fdt_pages; |
| 135 | u64 new_fdt_addr; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 136 | void *new_fdt; |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 137 | int i; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 138 | |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 139 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 140 | u64 ram_start = gd->bd->bi_dram[i].start; |
| 141 | u64 ram_size = gd->bd->bi_dram[i].size; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 142 | |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 143 | if (!ram_size) |
| 144 | continue; |
| 145 | |
| 146 | if (ram_start < fdt_ram_start) |
| 147 | fdt_ram_start = ram_start; |
| 148 | } |
| 149 | |
| 150 | /* Give us at least 4kb breathing room */ |
xypron.glpk@gmx.de | f6b9912 | 2017-08-11 21:19:25 +0200 | [diff] [blame] | 151 | fdt_size = ALIGN(fdt_size + 4096, EFI_PAGE_SIZE); |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 152 | fdt_pages = fdt_size >> EFI_PAGE_SHIFT; |
| 153 | |
| 154 | /* Safe fdt location is at 128MB */ |
| 155 | new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size; |
Heinrich Schuchardt | 0f7186b | 2018-05-26 10:32:27 +0200 | [diff] [blame] | 156 | if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
| 157 | EFI_RUNTIME_SERVICES_DATA, fdt_pages, |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 158 | &new_fdt_addr) != EFI_SUCCESS) { |
| 159 | /* If we can't put it there, put it somewhere */ |
xypron.glpk@gmx.de | f6b9912 | 2017-08-11 21:19:25 +0200 | [diff] [blame] | 160 | new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size); |
Heinrich Schuchardt | 0f7186b | 2018-05-26 10:32:27 +0200 | [diff] [blame] | 161 | if (efi_allocate_pages(EFI_ALLOCATE_MAX_ADDRESS, |
| 162 | EFI_RUNTIME_SERVICES_DATA, fdt_pages, |
Alexander Graf | 9b9b716 | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 163 | &new_fdt_addr) != EFI_SUCCESS) { |
| 164 | printf("ERROR: Failed to reserve space for FDT\n"); |
| 165 | return NULL; |
| 166 | } |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 167 | } |
Alexander Graf | 9b9b716 | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 168 | |
Alexander Graf | fdbae01 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 169 | new_fdt = (void*)(ulong)new_fdt_addr; |
Alexander Graf | 2ff5cc3 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 170 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
| 171 | fdt_set_totalsize(new_fdt, fdt_size); |
| 172 | |
| 173 | return new_fdt; |
| 174 | } |
| 175 | |
Heinrich Schuchardt | 4e363a9 | 2017-10-18 18:13:08 +0200 | [diff] [blame] | 176 | static efi_status_t efi_do_enter( |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 177 | efi_handle_t image_handle, struct efi_system_table *st, |
Alexander Graf | 54d8cdf | 2018-01-24 00:18:08 +0100 | [diff] [blame] | 178 | EFIAPI efi_status_t (*entry)( |
| 179 | efi_handle_t image_handle, |
| 180 | struct efi_system_table *st)) |
xypron.glpk@gmx.de | 1e5afc6 | 2017-07-04 23:15:21 +0200 | [diff] [blame] | 181 | { |
| 182 | efi_status_t ret = EFI_LOAD_ERROR; |
| 183 | |
| 184 | if (entry) |
| 185 | ret = entry(image_handle, st); |
| 186 | st->boottime->exit(image_handle, ret, 0, NULL); |
| 187 | return ret; |
| 188 | } |
| 189 | |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 190 | #ifdef CONFIG_ARM64 |
Alexander Graf | 54d8cdf | 2018-01-24 00:18:08 +0100 | [diff] [blame] | 191 | static efi_status_t efi_run_in_el2(EFIAPI efi_status_t (*entry)( |
Heinrich Schuchardt | b7cb8b4 | 2018-01-11 08:16:09 +0100 | [diff] [blame] | 192 | efi_handle_t image_handle, struct efi_system_table *st), |
| 193 | efi_handle_t image_handle, struct efi_system_table *st) |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 194 | { |
| 195 | /* Enable caches again */ |
| 196 | dcache_enable(); |
| 197 | |
xypron.glpk@gmx.de | 1e5afc6 | 2017-07-04 23:15:21 +0200 | [diff] [blame] | 198 | return efi_do_enter(image_handle, st, entry); |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 199 | } |
| 200 | #endif |
| 201 | |
Mark Kettenis | 5eb68ed | 2018-06-15 23:47:12 +0200 | [diff] [blame^] | 202 | #ifdef CONFIG_ARMV7_NONSEC |
| 203 | static efi_status_t efi_run_in_hyp(EFIAPI efi_status_t (*entry)( |
| 204 | efi_handle_t image_handle, struct efi_system_table *st), |
| 205 | efi_handle_t image_handle, struct efi_system_table *st) |
| 206 | { |
| 207 | /* Enable caches again */ |
| 208 | dcache_enable(); |
| 209 | |
| 210 | return efi_do_enter(image_handle, st, entry); |
| 211 | } |
| 212 | #endif |
| 213 | |
Alexander Graf | 22c88bf | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 214 | /* Carve out DT reserved memory ranges */ |
| 215 | static efi_status_t efi_carve_out_dt_rsv(void *fdt) |
| 216 | { |
| 217 | int nr_rsv, i; |
| 218 | uint64_t addr, size, pages; |
| 219 | |
| 220 | nr_rsv = fdt_num_mem_rsv(fdt); |
| 221 | |
| 222 | /* Look for an existing entry and add it to the efi mem map. */ |
| 223 | for (i = 0; i < nr_rsv; i++) { |
| 224 | if (fdt_get_mem_rsv(fdt, i, &addr, &size) != 0) |
| 225 | continue; |
| 226 | |
| 227 | pages = ALIGN(size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT; |
| 228 | efi_add_memory_map(addr, pages, EFI_RESERVED_MEMORY_TYPE, |
| 229 | false); |
| 230 | } |
| 231 | |
| 232 | return EFI_SUCCESS; |
| 233 | } |
| 234 | |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 235 | static efi_status_t efi_install_fdt(void *fdt) |
| 236 | { |
| 237 | bootm_headers_t img = { 0 }; |
| 238 | ulong fdt_pages, fdt_size, fdt_start, fdt_end; |
| 239 | efi_status_t ret; |
| 240 | |
| 241 | if (fdt_check_header(fdt)) { |
| 242 | printf("ERROR: invalid device tree\n"); |
| 243 | return EFI_INVALID_PARAMETER; |
| 244 | } |
| 245 | |
| 246 | /* Prepare fdt for payload */ |
| 247 | fdt = copy_fdt(fdt); |
| 248 | if (!fdt) |
| 249 | return EFI_OUT_OF_RESOURCES; |
| 250 | |
| 251 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
| 252 | printf("ERROR: failed to process device tree\n"); |
| 253 | return EFI_LOAD_ERROR; |
| 254 | } |
| 255 | |
Alexander Graf | 22c88bf | 2018-04-06 09:40:51 +0200 | [diff] [blame] | 256 | if (efi_carve_out_dt_rsv(fdt) != EFI_SUCCESS) { |
| 257 | printf("ERROR: failed to carve out memory\n"); |
| 258 | return EFI_LOAD_ERROR; |
| 259 | } |
| 260 | |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 261 | /* Link to it in the efi tables */ |
| 262 | ret = efi_install_configuration_table(&efi_guid_fdt, fdt); |
| 263 | if (ret != EFI_SUCCESS) |
| 264 | return EFI_OUT_OF_RESOURCES; |
| 265 | |
| 266 | /* And reserve the space in the memory map */ |
| 267 | fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK; |
| 268 | fdt_end = ((ulong)fdt) + fdt_totalsize(fdt); |
| 269 | fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK; |
| 270 | fdt_pages = fdt_size >> EFI_PAGE_SHIFT; |
| 271 | /* Give a bootloader the chance to modify the device tree */ |
| 272 | fdt_pages += 2; |
| 273 | ret = efi_add_memory_map(fdt_start, fdt_pages, |
| 274 | EFI_BOOT_SERVICES_DATA, true); |
| 275 | return ret; |
| 276 | } |
| 277 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 278 | /* |
| 279 | * Load an EFI payload into a newly allocated piece of memory, register all |
| 280 | * EFI objects it would want to access and jump to it. |
| 281 | */ |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 282 | static efi_status_t do_bootefi_exec(void *efi, |
Heinrich Schuchardt | 4e363a9 | 2017-10-18 18:13:08 +0200 | [diff] [blame] | 283 | struct efi_device_path *device_path, |
| 284 | struct efi_device_path *image_path) |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 285 | { |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 286 | struct efi_loaded_image loaded_image_info = {}; |
| 287 | struct efi_object loaded_image_info_obj = {}; |
Alexander Graf | 2d00dbe | 2018-06-12 10:21:16 +0200 | [diff] [blame] | 288 | struct efi_object mem_obj = {}; |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 289 | struct efi_device_path *memdp = NULL; |
Heinrich Schuchardt | 4b055a2 | 2018-03-03 15:29:01 +0100 | [diff] [blame] | 290 | efi_status_t ret; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 291 | |
Alexander Graf | 54d8cdf | 2018-01-24 00:18:08 +0100 | [diff] [blame] | 292 | EFIAPI efi_status_t (*entry)(efi_handle_t image_handle, |
| 293 | struct efi_system_table *st); |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 294 | |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 295 | /* |
| 296 | * Special case for efi payload not loaded from disk, such as |
| 297 | * 'bootefi hello' or for example payload loaded directly into |
| 298 | * memory via jtag/etc: |
| 299 | */ |
| 300 | if (!device_path && !image_path) { |
| 301 | printf("WARNING: using memory device/image path, this may confuse some payloads!\n"); |
| 302 | /* actual addresses filled in after efi_load_pe() */ |
| 303 | memdp = efi_dp_from_mem(0, 0, 0); |
| 304 | device_path = image_path = memdp; |
Alexander Graf | 2d00dbe | 2018-06-12 10:21:16 +0200 | [diff] [blame] | 305 | efi_add_handle(&mem_obj); |
| 306 | |
| 307 | ret = efi_add_protocol(mem_obj.handle, &efi_guid_device_path, |
| 308 | device_path); |
| 309 | if (ret != EFI_SUCCESS) |
| 310 | goto exit; |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 311 | } else { |
| 312 | assert(device_path && image_path); |
| 313 | } |
| 314 | |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 315 | efi_setup_loaded_image(&loaded_image_info, &loaded_image_info_obj, |
| 316 | device_path, image_path); |
| 317 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 318 | /* |
| 319 | * gd lives in a fixed register which may get clobbered while we execute |
| 320 | * the payload. So save it here and restore it on every callback entry |
| 321 | */ |
| 322 | efi_save_gd(); |
| 323 | |
Heinrich Schuchardt | a4589e2 | 2017-10-18 18:13:15 +0200 | [diff] [blame] | 324 | /* Transfer environment variable bootargs as load options */ |
| 325 | set_load_options(&loaded_image_info, "bootargs"); |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 326 | /* Load the EFI payload */ |
| 327 | entry = efi_load_pe(efi, &loaded_image_info); |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 328 | if (!entry) { |
Heinrich Schuchardt | 4b055a2 | 2018-03-03 15:29:01 +0100 | [diff] [blame] | 329 | ret = EFI_LOAD_ERROR; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 330 | goto exit; |
| 331 | } |
Alexander Graf | 7725609 | 2016-08-16 21:08:45 +0200 | [diff] [blame] | 332 | |
Rob Clark | 18ceba7 | 2017-10-10 08:23:06 -0400 | [diff] [blame] | 333 | if (memdp) { |
| 334 | struct efi_device_path_memory *mdp = (void *)memdp; |
| 335 | mdp->memory_type = loaded_image_info.image_code_type; |
| 336 | mdp->start_address = (uintptr_t)loaded_image_info.image_base; |
| 337 | mdp->end_address = mdp->start_address + |
| 338 | loaded_image_info.image_size; |
| 339 | } |
| 340 | |
Rob Clark | 15f3d74 | 2017-09-13 18:05:37 -0400 | [diff] [blame] | 341 | /* we don't support much: */ |
| 342 | env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported", |
| 343 | "{ro,boot}(blob)0000000000000000"); |
| 344 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 345 | /* Call our payload! */ |
Alexander Graf | 62a6748 | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 346 | debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry); |
Alexander Graf | 988c066 | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 347 | |
| 348 | if (setjmp(&loaded_image_info.exit_jmp)) { |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 349 | ret = loaded_image_info.exit_status; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 350 | goto exit; |
Alexander Graf | 988c066 | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 351 | } |
| 352 | |
Alexander Graf | bfd199c | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 353 | #ifdef CONFIG_ARM64 |
| 354 | /* On AArch64 we need to make sure we call our payload in < EL3 */ |
| 355 | if (current_el() == 3) { |
| 356 | smp_kick_all_cpus(); |
| 357 | dcache_disable(); /* flush cache before switch to EL2 */ |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 358 | |
| 359 | /* Move into EL2 and keep running there */ |
Heinrich Schuchardt | 754d497 | 2017-11-26 14:05:22 +0100 | [diff] [blame] | 360 | armv8_switch_to_el2((ulong)entry, |
| 361 | (ulong)&loaded_image_info_obj.handle, |
Alison Wang | eb2088d | 2017-01-17 09:39:17 +0800 | [diff] [blame] | 362 | (ulong)&systab, 0, (ulong)efi_run_in_el2, |
Alison Wang | 73818d5 | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 363 | ES_TO_AARCH64); |
| 364 | |
| 365 | /* Should never reach here, efi exits with longjmp */ |
| 366 | while (1) { } |
Alexander Graf | bfd199c | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 367 | } |
| 368 | #endif |
| 369 | |
Mark Kettenis | 5eb68ed | 2018-06-15 23:47:12 +0200 | [diff] [blame^] | 370 | #ifdef CONFIG_ARMV7_NONSEC |
| 371 | if (armv7_boot_nonsec()) { |
| 372 | dcache_disable(); /* flush cache before switch to HYP */ |
| 373 | |
| 374 | armv7_init_nonsec(); |
| 375 | secure_ram_addr(_do_nonsec_entry)( |
| 376 | efi_run_in_hyp, |
| 377 | (uintptr_t)entry, |
| 378 | (uintptr_t)loaded_image_info_obj.handle, |
| 379 | (uintptr_t)&systab); |
| 380 | |
| 381 | /* Should never reach here, efi exits with longjmp */ |
| 382 | while (1) { } |
| 383 | } |
| 384 | #endif |
| 385 | |
Heinrich Schuchardt | 754d497 | 2017-11-26 14:05:22 +0100 | [diff] [blame] | 386 | ret = efi_do_enter(loaded_image_info_obj.handle, &systab, entry); |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 387 | |
| 388 | exit: |
| 389 | /* image has returned, loaded-image obj goes *poof*: */ |
| 390 | list_del(&loaded_image_info_obj.link); |
Alexander Graf | 2d00dbe | 2018-06-12 10:21:16 +0200 | [diff] [blame] | 391 | if (mem_obj.handle) |
| 392 | list_del(&mem_obj.link); |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 393 | |
| 394 | return ret; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 395 | } |
| 396 | |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 397 | static int do_bootefi_bootmgr_exec(void) |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 398 | { |
| 399 | struct efi_device_path *device_path, *file_path; |
| 400 | void *addr; |
| 401 | efi_status_t r; |
| 402 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 403 | /* |
| 404 | * gd lives in a fixed register which may get clobbered while we execute |
| 405 | * the payload. So save it here and restore it on every callback entry |
| 406 | */ |
| 407 | efi_save_gd(); |
| 408 | |
| 409 | addr = efi_bootmgr_load(&device_path, &file_path); |
| 410 | if (!addr) |
| 411 | return 1; |
| 412 | |
| 413 | printf("## Starting EFI application at %p ...\n", addr); |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 414 | r = do_bootefi_exec(addr, device_path, file_path); |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 415 | printf("## Application terminated, r = %lu\n", |
| 416 | r & ~EFI_ERROR_MASK); |
| 417 | |
| 418 | if (r != EFI_SUCCESS) |
| 419 | return 1; |
| 420 | |
| 421 | return 0; |
| 422 | } |
| 423 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 424 | /* Interpreter command to boot an arbitrary EFI image from memory */ |
| 425 | static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 426 | { |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 427 | unsigned long addr; |
| 428 | char *saddr; |
Heinrich Schuchardt | 4e363a9 | 2017-10-18 18:13:08 +0200 | [diff] [blame] | 429 | efi_status_t r; |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 430 | void *fdt_addr; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 431 | |
Heinrich Schuchardt | 954e2b9 | 2018-04-03 21:59:32 +0200 | [diff] [blame] | 432 | /* Allow unaligned memory access */ |
| 433 | allow_unaligned(); |
| 434 | |
Heinrich Schuchardt | 8c0dfc2 | 2018-03-03 15:29:02 +0100 | [diff] [blame] | 435 | /* Initialize EFI drivers */ |
| 436 | r = efi_init_obj_list(); |
| 437 | if (r != EFI_SUCCESS) { |
| 438 | printf("Error: Cannot set up EFI drivers, r = %lu\n", |
| 439 | r & ~EFI_ERROR_MASK); |
| 440 | return CMD_RET_FAILURE; |
| 441 | } |
| 442 | |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 443 | if (argc < 2) |
Bin Meng | da800ff | 2016-08-13 04:02:06 -0700 | [diff] [blame] | 444 | return CMD_RET_USAGE; |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 445 | |
| 446 | if (argc > 2) { |
| 447 | fdt_addr = (void *)simple_strtoul(argv[2], NULL, 16); |
| 448 | if (!fdt_addr && *argv[2] != '0') |
| 449 | return CMD_RET_USAGE; |
| 450 | /* Install device tree */ |
| 451 | r = efi_install_fdt(fdt_addr); |
| 452 | if (r != EFI_SUCCESS) { |
| 453 | printf("ERROR: failed to install device tree\n"); |
| 454 | return CMD_RET_FAILURE; |
| 455 | } |
| 456 | } else { |
| 457 | /* Remove device tree. EFI_NOT_FOUND can be ignored here */ |
| 458 | efi_install_configuration_table(&efi_guid_fdt, NULL); |
| 459 | printf("WARNING: booting without device tree\n"); |
| 460 | } |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 461 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
| 462 | if (!strcmp(argv[1], "hello")) { |
Heinrich Schuchardt | 7804ae9 | 2017-09-05 03:19:37 +0200 | [diff] [blame] | 463 | ulong size = __efi_helloworld_end - __efi_helloworld_begin; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 464 | |
Heinrich Schuchardt | e6a9ab5 | 2017-08-28 18:54:30 +0200 | [diff] [blame] | 465 | saddr = env_get("loadaddr"); |
| 466 | if (saddr) |
| 467 | addr = simple_strtoul(saddr, NULL, 16); |
| 468 | else |
| 469 | addr = CONFIG_SYS_LOAD_ADDR; |
Heinrich Schuchardt | 7804ae9 | 2017-09-05 03:19:37 +0200 | [diff] [blame] | 470 | memcpy((char *)addr, __efi_helloworld_begin, size); |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 471 | } else |
| 472 | #endif |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 473 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
| 474 | if (!strcmp(argv[1], "selftest")) { |
Heinrich Schuchardt | 389f251 | 2017-09-20 22:54:58 +0200 | [diff] [blame] | 475 | struct efi_loaded_image loaded_image_info = {}; |
| 476 | struct efi_object loaded_image_info_obj = {}; |
| 477 | |
Heinrich Schuchardt | a809bc2 | 2017-10-18 18:13:09 +0200 | [diff] [blame] | 478 | /* Construct a dummy device path. */ |
| 479 | bootefi_device_path = efi_dp_from_mem(EFI_RESERVED_MEMORY_TYPE, |
| 480 | (uintptr_t)&efi_selftest, |
| 481 | (uintptr_t)&efi_selftest); |
| 482 | bootefi_image_path = efi_dp_from_file(NULL, 0, "\\selftest"); |
| 483 | |
Heinrich Schuchardt | 389f251 | 2017-09-20 22:54:58 +0200 | [diff] [blame] | 484 | efi_setup_loaded_image(&loaded_image_info, |
| 485 | &loaded_image_info_obj, |
| 486 | bootefi_device_path, bootefi_image_path); |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 487 | /* |
| 488 | * gd lives in a fixed register which may get clobbered while we |
| 489 | * execute the payload. So save it here and restore it on every |
| 490 | * callback entry |
| 491 | */ |
| 492 | efi_save_gd(); |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 493 | /* Transfer environment variable efi_selftest as load options */ |
| 494 | set_load_options(&loaded_image_info, "efi_selftest"); |
| 495 | /* Execute the test */ |
Heinrich Schuchardt | 754d497 | 2017-11-26 14:05:22 +0100 | [diff] [blame] | 496 | r = efi_selftest(loaded_image_info_obj.handle, &systab); |
Heinrich Schuchardt | d2d90b4 | 2017-10-18 18:13:14 +0200 | [diff] [blame] | 497 | efi_restore_gd(); |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 498 | free(loaded_image_info.load_options); |
Heinrich Schuchardt | d2d90b4 | 2017-10-18 18:13:14 +0200 | [diff] [blame] | 499 | list_del(&loaded_image_info_obj.link); |
| 500 | return r != EFI_SUCCESS; |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 501 | } else |
| 502 | #endif |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 503 | if (!strcmp(argv[1], "bootmgr")) { |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 504 | return do_bootefi_bootmgr_exec(); |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 505 | } else { |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 506 | saddr = argv[1]; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 507 | |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 508 | addr = simple_strtoul(saddr, NULL, 16); |
Heinrich Schuchardt | aa6fd9a | 2018-01-24 20:33:54 +0100 | [diff] [blame] | 509 | /* Check that a numeric value was passed */ |
| 510 | if (!addr && *saddr != '0') |
| 511 | return CMD_RET_USAGE; |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 512 | |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 513 | } |
| 514 | |
Simon Glass | 1a5490e | 2016-11-07 08:47:05 -0700 | [diff] [blame] | 515 | printf("## Starting EFI application at %08lx ...\n", addr); |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 516 | r = do_bootefi_exec((void *)addr, bootefi_device_path, |
| 517 | bootefi_image_path); |
xypron.glpk@gmx.de | 5eadbfa | 2017-07-04 23:15:23 +0200 | [diff] [blame] | 518 | printf("## Application terminated, r = %lu\n", |
| 519 | r & ~EFI_ERROR_MASK); |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 520 | |
xypron.glpk@gmx.de | 5eadbfa | 2017-07-04 23:15:23 +0200 | [diff] [blame] | 521 | if (r != EFI_SUCCESS) |
| 522 | return 1; |
| 523 | else |
| 524 | return 0; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 525 | } |
| 526 | |
| 527 | #ifdef CONFIG_SYS_LONGHELP |
| 528 | static char bootefi_help_text[] = |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 529 | "<image address> [fdt address]\n" |
| 530 | " - boot EFI payload stored at address <image address>.\n" |
| 531 | " If specified, the device tree located at <fdt address> gets\n" |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 532 | " exposed as EFI configuration table.\n" |
| 533 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 534 | "bootefi hello\n" |
| 535 | " - boot a sample Hello World application stored within U-Boot\n" |
| 536 | #endif |
| 537 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
Heinrich Schuchardt | 44ab21b | 2018-03-03 15:29:03 +0100 | [diff] [blame] | 538 | "bootefi selftest [fdt address]\n" |
Heinrich Schuchardt | d33ae3e | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 539 | " - boot an EFI selftest application stored within U-Boot\n" |
Heinrich Schuchardt | 02efd5d | 2017-10-18 18:13:13 +0200 | [diff] [blame] | 540 | " Use environment variable efi_selftest to select a single test.\n" |
| 541 | " Use 'setenv efi_selftest list' to enumerate all tests.\n" |
Simon Glass | fac4ced | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 542 | #endif |
Heinrich Schuchardt | 1b2320f | 2018-01-30 19:47:43 +0100 | [diff] [blame] | 543 | "bootefi bootmgr [fdt addr]\n" |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 544 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
| 545 | "\n" |
| 546 | " If specified, the device tree located at <fdt address> gets\n" |
| 547 | " exposed as EFI configuration table.\n"; |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 548 | #endif |
| 549 | |
| 550 | U_BOOT_CMD( |
Alexander Graf | 54c1e83 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 551 | bootefi, 3, 0, do_bootefi, |
Sergey Kubushyn | 268f19e | 2016-06-07 11:14:31 -0700 | [diff] [blame] | 552 | "Boots an EFI payload from memory", |
Alexander Graf | e2b04f2 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 553 | bootefi_help_text |
| 554 | ); |
Alexander Graf | 8f19f26 | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 555 | |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 556 | void efi_set_bootdev(const char *dev, const char *devnr, const char *path) |
| 557 | { |
| 558 | char filename[32] = { 0 }; /* dp->str is u16[32] long */ |
| 559 | char *s; |
Alexander Graf | 34118e7 | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 560 | |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 561 | if (strcmp(dev, "Net")) { |
| 562 | struct blk_desc *desc; |
Heinrich Schuchardt | 7e262a7 | 2018-04-03 22:40:55 +0200 | [diff] [blame] | 563 | disk_partition_t fs_partition; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 564 | int part; |
Alexander Graf | eb8d82c | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 565 | |
Heinrich Schuchardt | 7e262a7 | 2018-04-03 22:40:55 +0200 | [diff] [blame] | 566 | part = blk_get_device_part_str(dev, devnr, &desc, &fs_partition, |
| 567 | 1); |
| 568 | if (part < 0) |
Stefan Roese | df76976 | 2017-11-17 08:47:09 +0100 | [diff] [blame] | 569 | return; |
Alexander Graf | 8f19f26 | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 570 | |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 571 | bootefi_device_path = efi_dp_from_part(desc, part); |
| 572 | } else { |
Joe Hershberger | 5277a97 | 2018-04-13 15:26:39 -0500 | [diff] [blame] | 573 | #ifdef CONFIG_NET |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 574 | bootefi_device_path = efi_dp_from_eth(); |
| 575 | #endif |
| 576 | } |
Alexander Graf | c49a1b8 | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 577 | |
Rob Clark | c84c110 | 2017-09-13 18:05:38 -0400 | [diff] [blame] | 578 | if (!path) |
| 579 | return; |
| 580 | |
Alexander Graf | 45e437d | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 581 | if (strcmp(dev, "Net")) { |
| 582 | /* Add leading / to fs paths, because they're absolute */ |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 583 | snprintf(filename, sizeof(filename), "/%s", path); |
Alexander Graf | 45e437d | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 584 | } else { |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 585 | snprintf(filename, sizeof(filename), "%s", path); |
Alexander Graf | 45e437d | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 586 | } |
Rob Clark | 6533652 | 2017-07-24 07:59:09 -0400 | [diff] [blame] | 587 | /* DOS style file path: */ |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 588 | s = filename; |
Rob Clark | 6533652 | 2017-07-24 07:59:09 -0400 | [diff] [blame] | 589 | while ((s = strchr(s, '/'))) |
| 590 | *s++ = '\\'; |
Rob Clark | f8db922 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 591 | bootefi_image_path = efi_dp_from_file(NULL, 0, filename); |
Alexander Graf | 8f19f26 | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 592 | } |