Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 1 | /* |
| 2 | * EFI application loader |
| 3 | * |
| 4 | * Copyright (c) 2016 Alexander Graf |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0+ |
| 7 | */ |
| 8 | |
| 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> |
| 13 | #include <errno.h> |
| 14 | #include <libfdt.h> |
| 15 | #include <libfdt_env.h> |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 16 | #include <memalign.h> |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 18 | #include <asm-generic/sections.h> |
| 19 | #include <linux/linkage.h> |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 22 | |
| 23 | /* |
| 24 | * When booting using the "bootefi" command, we don't know which |
| 25 | * physical device the file came from. So we create a pseudo-device |
| 26 | * called "bootefi" with the device path /bootefi. |
| 27 | * |
| 28 | * In addition to the originating device we also declare the file path |
| 29 | * of "bootefi" based loads to be /bootefi. |
| 30 | */ |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 31 | static struct efi_device_path_file_path bootefi_image_path[] = { |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 32 | { |
| 33 | .dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE, |
| 34 | .dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH, |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 35 | .dp.length = sizeof(bootefi_image_path[0]), |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 36 | .str = { 'b','o','o','t','e','f','i' }, |
| 37 | }, { |
| 38 | .dp.type = DEVICE_PATH_TYPE_END, |
| 39 | .dp.sub_type = DEVICE_PATH_SUB_TYPE_END, |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 40 | .dp.length = sizeof(bootefi_image_path[0]), |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 41 | } |
| 42 | }; |
| 43 | |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 44 | static struct efi_device_path_file_path bootefi_device_path[] = { |
| 45 | { |
| 46 | .dp.type = DEVICE_PATH_TYPE_MEDIA_DEVICE, |
| 47 | .dp.sub_type = DEVICE_PATH_SUB_TYPE_FILE_PATH, |
| 48 | .dp.length = sizeof(bootefi_image_path[0]), |
| 49 | .str = { 'b','o','o','t','e','f','i' }, |
| 50 | }, { |
| 51 | .dp.type = DEVICE_PATH_TYPE_END, |
| 52 | .dp.sub_type = DEVICE_PATH_SUB_TYPE_END, |
| 53 | .dp.length = sizeof(bootefi_image_path[0]), |
| 54 | } |
| 55 | }; |
| 56 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 57 | /* The EFI loaded_image interface for the image executed via "bootefi" */ |
| 58 | static struct efi_loaded_image loaded_image_info = { |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 59 | .device_handle = bootefi_device_path, |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 60 | .file_path = bootefi_image_path, |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 61 | }; |
| 62 | |
| 63 | /* The EFI object struct for the image executed via "bootefi" */ |
| 64 | static struct efi_object loaded_image_info_obj = { |
| 65 | .handle = &loaded_image_info, |
| 66 | .protocols = { |
| 67 | { |
| 68 | /* |
| 69 | * When asking for the loaded_image interface, just |
| 70 | * return handle which points to loaded_image_info |
| 71 | */ |
| 72 | .guid = &efi_guid_loaded_image, |
xypron.glpk@gmx.de | b5349f7 | 2017-07-11 22:06:14 +0200 | [diff] [blame^] | 73 | .protocol_interface = &loaded_image_info, |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 74 | }, |
| 75 | { |
| 76 | /* |
| 77 | * When asking for the device path interface, return |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 78 | * bootefi_device_path |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 79 | */ |
| 80 | .guid = &efi_guid_device_path, |
xypron.glpk@gmx.de | b5349f7 | 2017-07-11 22:06:14 +0200 | [diff] [blame^] | 81 | .protocol_interface = bootefi_device_path, |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 82 | }, |
| 83 | }, |
| 84 | }; |
| 85 | |
| 86 | /* The EFI object struct for the device the "bootefi" image was loaded from */ |
| 87 | static struct efi_object bootefi_device_obj = { |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 88 | .handle = bootefi_device_path, |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 89 | .protocols = { |
| 90 | { |
| 91 | /* When asking for the device path interface, return |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 92 | * bootefi_device_path */ |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 93 | .guid = &efi_guid_device_path, |
xypron.glpk@gmx.de | b5349f7 | 2017-07-11 22:06:14 +0200 | [diff] [blame^] | 94 | .protocol_interface = bootefi_device_path |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 95 | } |
| 96 | }, |
| 97 | }; |
| 98 | |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 99 | static void *copy_fdt(void *fdt) |
| 100 | { |
| 101 | u64 fdt_size = fdt_totalsize(fdt); |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 102 | unsigned long fdt_ram_start = -1L, fdt_pages; |
| 103 | u64 new_fdt_addr; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 104 | void *new_fdt; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 105 | int i; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 106 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 107 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 108 | u64 ram_start = gd->bd->bi_dram[i].start; |
| 109 | u64 ram_size = gd->bd->bi_dram[i].size; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 110 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 111 | if (!ram_size) |
| 112 | continue; |
| 113 | |
| 114 | if (ram_start < fdt_ram_start) |
| 115 | fdt_ram_start = ram_start; |
| 116 | } |
| 117 | |
| 118 | /* Give us at least 4kb breathing room */ |
| 119 | fdt_size = ALIGN(fdt_size + 4096, 4096); |
| 120 | fdt_pages = fdt_size >> EFI_PAGE_SHIFT; |
| 121 | |
| 122 | /* Safe fdt location is at 128MB */ |
| 123 | new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size; |
| 124 | if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages, |
| 125 | &new_fdt_addr) != EFI_SUCCESS) { |
| 126 | /* If we can't put it there, put it somewhere */ |
| 127 | new_fdt_addr = (ulong)memalign(4096, fdt_size); |
Alexander Graf | 85a6e9b | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 128 | if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages, |
| 129 | &new_fdt_addr) != EFI_SUCCESS) { |
| 130 | printf("ERROR: Failed to reserve space for FDT\n"); |
| 131 | return NULL; |
| 132 | } |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 133 | } |
Alexander Graf | 85a6e9b | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 134 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 135 | new_fdt = (void*)(ulong)new_fdt_addr; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 136 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
| 137 | fdt_set_totalsize(new_fdt, fdt_size); |
| 138 | |
| 139 | return new_fdt; |
| 140 | } |
| 141 | |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 142 | #ifdef CONFIG_ARM64 |
| 143 | static unsigned long efi_run_in_el2(ulong (*entry)(void *image_handle, |
| 144 | struct efi_system_table *st), void *image_handle, |
| 145 | struct efi_system_table *st) |
| 146 | { |
| 147 | /* Enable caches again */ |
| 148 | dcache_enable(); |
| 149 | |
| 150 | return entry(image_handle, st); |
| 151 | } |
| 152 | #endif |
| 153 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 154 | /* |
| 155 | * Load an EFI payload into a newly allocated piece of memory, register all |
| 156 | * EFI objects it would want to access and jump to it. |
| 157 | */ |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 158 | static unsigned long do_bootefi_exec(void *efi, void *fdt) |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 159 | { |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 160 | ulong (*entry)(void *image_handle, struct efi_system_table *st) |
| 161 | asmlinkage; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 162 | ulong fdt_pages, fdt_size, fdt_start, fdt_end; |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 163 | bootm_headers_t img = { 0 }; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 164 | |
| 165 | /* |
| 166 | * gd lives in a fixed register which may get clobbered while we execute |
| 167 | * the payload. So save it here and restore it on every callback entry |
| 168 | */ |
| 169 | efi_save_gd(); |
| 170 | |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 171 | if (fdt && !fdt_check_header(fdt)) { |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 172 | /* Prepare fdt for payload */ |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 173 | fdt = copy_fdt(fdt); |
| 174 | |
| 175 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 176 | printf("ERROR: Failed to process device tree\n"); |
| 177 | return -EINVAL; |
| 178 | } |
| 179 | |
| 180 | /* Link to it in the efi tables */ |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 181 | systab.tables[0].guid = EFI_FDT_GUID; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 182 | systab.tables[0].table = fdt; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 183 | systab.nr_tables = 1; |
| 184 | |
| 185 | /* And reserve the space in the memory map */ |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 186 | fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK; |
| 187 | fdt_end = ((ulong)fdt) + fdt_totalsize(fdt); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 188 | fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK; |
| 189 | fdt_pages = fdt_size >> EFI_PAGE_SHIFT; |
| 190 | /* Give a bootloader the chance to modify the device tree */ |
| 191 | fdt_pages += 2; |
| 192 | efi_add_memory_map(fdt_start, fdt_pages, |
| 193 | EFI_BOOT_SERVICES_DATA, true); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 194 | } else { |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 195 | printf("WARNING: Invalid device tree, expect boot to fail\n"); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 196 | systab.nr_tables = 0; |
| 197 | } |
| 198 | |
| 199 | /* Load the EFI payload */ |
| 200 | entry = efi_load_pe(efi, &loaded_image_info); |
| 201 | if (!entry) |
| 202 | return -ENOENT; |
| 203 | |
| 204 | /* Initialize and populate EFI object list */ |
| 205 | INIT_LIST_HEAD(&efi_obj_list); |
| 206 | list_add_tail(&loaded_image_info_obj.link, &efi_obj_list); |
| 207 | list_add_tail(&bootefi_device_obj.link, &efi_obj_list); |
| 208 | #ifdef CONFIG_PARTITIONS |
| 209 | efi_disk_register(); |
| 210 | #endif |
Alexander Graf | be8d324 | 2016-03-15 18:38:21 +0100 | [diff] [blame] | 211 | #ifdef CONFIG_LCD |
| 212 | efi_gop_register(); |
| 213 | #endif |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 214 | #ifdef CONFIG_NET |
| 215 | void *nethandle = loaded_image_info.device_handle; |
| 216 | efi_net_register(&nethandle); |
| 217 | |
| 218 | if (!memcmp(bootefi_device_path[0].str, "N\0e\0t", 6)) |
| 219 | loaded_image_info.device_handle = nethandle; |
Alexander Graf | 3fb97e2 | 2016-10-18 15:49:40 +0200 | [diff] [blame] | 220 | else |
| 221 | loaded_image_info.device_handle = bootefi_device_path; |
Alexander Graf | 0efe1bc | 2016-05-06 21:01:01 +0200 | [diff] [blame] | 222 | #endif |
Alexander Graf | e663b35 | 2016-08-19 01:23:29 +0200 | [diff] [blame] | 223 | #ifdef CONFIG_GENERATE_SMBIOS_TABLE |
| 224 | efi_smbios_register(); |
| 225 | #endif |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 226 | |
Alexander Graf | 80a4800 | 2016-08-16 21:08:45 +0200 | [diff] [blame] | 227 | /* Initialize EFI runtime services */ |
| 228 | efi_reset_system_init(); |
| 229 | efi_get_time_init(); |
| 230 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 231 | /* Call our payload! */ |
Alexander Graf | edcef3b | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 232 | debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry); |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 233 | |
| 234 | if (setjmp(&loaded_image_info.exit_jmp)) { |
| 235 | efi_status_t status = loaded_image_info.exit_status; |
| 236 | return status == EFI_SUCCESS ? 0 : -EINVAL; |
| 237 | } |
| 238 | |
Alexander Graf | 69bd459 | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 239 | #ifdef CONFIG_ARM64 |
| 240 | /* On AArch64 we need to make sure we call our payload in < EL3 */ |
| 241 | if (current_el() == 3) { |
| 242 | smp_kick_all_cpus(); |
| 243 | dcache_disable(); /* flush cache before switch to EL2 */ |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 244 | |
| 245 | /* Move into EL2 and keep running there */ |
| 246 | armv8_switch_to_el2((ulong)entry, (ulong)&loaded_image_info, |
Alison Wang | 7c5e1fe | 2017-01-17 09:39:17 +0800 | [diff] [blame] | 247 | (ulong)&systab, 0, (ulong)efi_run_in_el2, |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 248 | ES_TO_AARCH64); |
| 249 | |
| 250 | /* Should never reach here, efi exits with longjmp */ |
| 251 | while (1) { } |
Alexander Graf | 69bd459 | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 252 | } |
| 253 | #endif |
| 254 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 255 | return entry(&loaded_image_info, &systab); |
| 256 | } |
| 257 | |
| 258 | |
| 259 | /* Interpreter command to boot an arbitrary EFI image from memory */ |
| 260 | static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 261 | { |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 262 | char *saddr, *sfdt; |
| 263 | unsigned long addr, fdt_addr = 0; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 264 | int r = 0; |
| 265 | |
| 266 | if (argc < 2) |
Bin Meng | 3c1dcef | 2016-08-13 04:02:06 -0700 | [diff] [blame] | 267 | return CMD_RET_USAGE; |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 268 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
| 269 | if (!strcmp(argv[1], "hello")) { |
| 270 | ulong size = __efi_hello_world_end - __efi_hello_world_begin; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 271 | |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 272 | addr = CONFIG_SYS_LOAD_ADDR; |
| 273 | memcpy((char *)addr, __efi_hello_world_begin, size); |
| 274 | } else |
| 275 | #endif |
| 276 | { |
| 277 | saddr = argv[1]; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 278 | |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 279 | addr = simple_strtoul(saddr, NULL, 16); |
| 280 | |
| 281 | if (argc > 2) { |
| 282 | sfdt = argv[2]; |
| 283 | fdt_addr = simple_strtoul(sfdt, NULL, 16); |
| 284 | } |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 285 | } |
| 286 | |
Simon Glass | 5ee31ba | 2016-11-07 08:47:05 -0700 | [diff] [blame] | 287 | printf("## Starting EFI application at %08lx ...\n", addr); |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 288 | r = do_bootefi_exec((void *)addr, (void*)fdt_addr); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 289 | printf("## Application terminated, r = %d\n", r); |
| 290 | |
| 291 | if (r != 0) |
| 292 | r = 1; |
| 293 | |
| 294 | return r; |
| 295 | } |
| 296 | |
| 297 | #ifdef CONFIG_SYS_LONGHELP |
| 298 | static char bootefi_help_text[] = |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 299 | "<image address> [fdt address]\n" |
| 300 | " - boot EFI payload stored at address <image address>.\n" |
| 301 | " If specified, the device tree located at <fdt address> gets\n" |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 302 | " exposed as EFI configuration table.\n" |
| 303 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
| 304 | "hello\n" |
| 305 | " - boot a sample Hello World application stored within U-Boot" |
| 306 | #endif |
| 307 | ; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 308 | #endif |
| 309 | |
| 310 | U_BOOT_CMD( |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 311 | bootefi, 3, 0, do_bootefi, |
Sergey Kubushyn | 92dfd92 | 2016-06-07 11:14:31 -0700 | [diff] [blame] | 312 | "Boots an EFI payload from memory", |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 313 | bootefi_help_text |
| 314 | ); |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 315 | |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 316 | 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] | 317 | { |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 318 | __maybe_unused struct blk_desc *desc; |
Alexander Graf | ecbe1a0 | 2016-04-11 16:16:20 +0200 | [diff] [blame] | 319 | char devname[32] = { 0 }; /* dp->str is u16[32] long */ |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 320 | char *colon; |
| 321 | |
Patrick Delaunay | 1acc008 | 2017-01-27 11:00:38 +0100 | [diff] [blame] | 322 | #if defined(CONFIG_BLK) || CONFIG_IS_ENABLED(ISO_PARTITION) |
Alexander Graf | f9d334b | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 323 | desc = blk_get_dev(dev, simple_strtol(devnr, NULL, 10)); |
| 324 | #endif |
| 325 | |
| 326 | #ifdef CONFIG_BLK |
| 327 | if (desc) { |
| 328 | snprintf(devname, sizeof(devname), "%s", desc->bdev->name); |
| 329 | } else |
| 330 | #endif |
| 331 | |
| 332 | { |
| 333 | /* Assemble the condensed device name we use in efi_disk.c */ |
| 334 | snprintf(devname, sizeof(devname), "%s%s", dev, devnr); |
| 335 | } |
| 336 | |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 337 | colon = strchr(devname, ':'); |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 338 | |
Patrick Delaunay | 1acc008 | 2017-01-27 11:00:38 +0100 | [diff] [blame] | 339 | #if CONFIG_IS_ENABLED(ISO_PARTITION) |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 340 | /* For ISOs we create partition block devices */ |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 341 | if (desc && (desc->type != DEV_TYPE_UNKNOWN) && |
| 342 | (desc->part_type == PART_TYPE_ISO)) { |
| 343 | if (!colon) |
Alexander Graf | f9d334b | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 344 | snprintf(devname, sizeof(devname), "%s:1", devname); |
| 345 | |
Alexander Graf | 8c3df0b | 2016-04-11 16:16:18 +0200 | [diff] [blame] | 346 | colon = NULL; |
| 347 | } |
| 348 | #endif |
| 349 | |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 350 | if (colon) |
| 351 | *colon = '\0'; |
| 352 | |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 353 | /* Patch bootefi_device_path to the target device */ |
| 354 | memset(bootefi_device_path[0].str, 0, sizeof(bootefi_device_path[0].str)); |
| 355 | ascii2unicode(bootefi_device_path[0].str, devname); |
| 356 | |
| 357 | /* Patch bootefi_image_path to the target file path */ |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 358 | memset(bootefi_image_path[0].str, 0, sizeof(bootefi_image_path[0].str)); |
Alexander Graf | 4927166 | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 359 | if (strcmp(dev, "Net")) { |
| 360 | /* Add leading / to fs paths, because they're absolute */ |
| 361 | snprintf(devname, sizeof(devname), "/%s", path); |
| 362 | } else { |
| 363 | snprintf(devname, sizeof(devname), "%s", path); |
| 364 | } |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 365 | ascii2unicode(bootefi_image_path[0].str, devname); |
| 366 | } |