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 | |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 23 | static uint8_t efi_obj_list_initalized; |
| 24 | |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 25 | static struct efi_device_path *bootefi_image_path; |
| 26 | static struct efi_device_path *bootefi_device_path; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 27 | |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 28 | /* Initialize and populate EFI object list */ |
| 29 | static void efi_init_obj_list(void) |
| 30 | { |
| 31 | efi_obj_list_initalized = 1; |
| 32 | |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 33 | efi_console_register(); |
| 34 | #ifdef CONFIG_PARTITIONS |
| 35 | efi_disk_register(); |
| 36 | #endif |
| 37 | #if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO) |
| 38 | efi_gop_register(); |
| 39 | #endif |
| 40 | #ifdef CONFIG_NET |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 41 | efi_net_register(); |
Heinrich Schuchardt | 7cbc124 | 2017-07-19 19:37:22 +0200 | [diff] [blame] | 42 | #endif |
| 43 | #ifdef CONFIG_GENERATE_SMBIOS_TABLE |
| 44 | efi_smbios_register(); |
| 45 | #endif |
| 46 | |
| 47 | /* Initialize EFI runtime services */ |
| 48 | efi_reset_system_init(); |
| 49 | efi_get_time_init(); |
| 50 | } |
| 51 | |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 52 | static void *copy_fdt(void *fdt) |
| 53 | { |
| 54 | u64 fdt_size = fdt_totalsize(fdt); |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 55 | unsigned long fdt_ram_start = -1L, fdt_pages; |
| 56 | u64 new_fdt_addr; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 57 | void *new_fdt; |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 58 | int i; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 59 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 60 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 61 | u64 ram_start = gd->bd->bi_dram[i].start; |
| 62 | u64 ram_size = gd->bd->bi_dram[i].size; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 63 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 64 | if (!ram_size) |
| 65 | continue; |
| 66 | |
| 67 | if (ram_start < fdt_ram_start) |
| 68 | fdt_ram_start = ram_start; |
| 69 | } |
| 70 | |
| 71 | /* Give us at least 4kb breathing room */ |
xypron.glpk@gmx.de | a44bffc | 2017-08-11 21:19:25 +0200 | [diff] [blame] | 72 | fdt_size = ALIGN(fdt_size + 4096, EFI_PAGE_SIZE); |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 73 | fdt_pages = fdt_size >> EFI_PAGE_SHIFT; |
| 74 | |
| 75 | /* Safe fdt location is at 128MB */ |
| 76 | new_fdt_addr = fdt_ram_start + (128 * 1024 * 1024) + fdt_size; |
| 77 | if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages, |
| 78 | &new_fdt_addr) != EFI_SUCCESS) { |
| 79 | /* If we can't put it there, put it somewhere */ |
xypron.glpk@gmx.de | a44bffc | 2017-08-11 21:19:25 +0200 | [diff] [blame] | 80 | new_fdt_addr = (ulong)memalign(EFI_PAGE_SIZE, fdt_size); |
Alexander Graf | 85a6e9b | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 81 | if (efi_allocate_pages(1, EFI_BOOT_SERVICES_DATA, fdt_pages, |
| 82 | &new_fdt_addr) != EFI_SUCCESS) { |
| 83 | printf("ERROR: Failed to reserve space for FDT\n"); |
| 84 | return NULL; |
| 85 | } |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 86 | } |
Alexander Graf | 85a6e9b | 2017-07-03 13:32:35 +0200 | [diff] [blame] | 87 | |
Alexander Graf | ad0c1a3 | 2016-04-11 23:51:01 +0200 | [diff] [blame] | 88 | new_fdt = (void*)(ulong)new_fdt_addr; |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 89 | memcpy(new_fdt, fdt, fdt_totalsize(fdt)); |
| 90 | fdt_set_totalsize(new_fdt, fdt_size); |
| 91 | |
| 92 | return new_fdt; |
| 93 | } |
| 94 | |
xypron.glpk@gmx.de | b06d8ac | 2017-07-04 23:15:21 +0200 | [diff] [blame] | 95 | static ulong efi_do_enter(void *image_handle, |
| 96 | struct efi_system_table *st, |
| 97 | asmlinkage ulong (*entry)(void *image_handle, |
| 98 | struct efi_system_table *st)) |
| 99 | { |
| 100 | efi_status_t ret = EFI_LOAD_ERROR; |
| 101 | |
| 102 | if (entry) |
| 103 | ret = entry(image_handle, st); |
| 104 | st->boottime->exit(image_handle, ret, 0, NULL); |
| 105 | return ret; |
| 106 | } |
| 107 | |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 108 | #ifdef CONFIG_ARM64 |
xypron.glpk@gmx.de | b06d8ac | 2017-07-04 23:15:21 +0200 | [diff] [blame] | 109 | static unsigned long efi_run_in_el2(asmlinkage ulong (*entry)( |
| 110 | void *image_handle, struct efi_system_table *st), |
| 111 | void *image_handle, struct efi_system_table *st) |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 112 | { |
| 113 | /* Enable caches again */ |
| 114 | dcache_enable(); |
| 115 | |
xypron.glpk@gmx.de | b06d8ac | 2017-07-04 23:15:21 +0200 | [diff] [blame] | 116 | return efi_do_enter(image_handle, st, entry); |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 117 | } |
| 118 | #endif |
| 119 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 120 | /* |
| 121 | * Load an EFI payload into a newly allocated piece of memory, register all |
| 122 | * EFI objects it would want to access and jump to it. |
| 123 | */ |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 124 | static unsigned long do_bootefi_exec(void *efi, void *fdt, |
| 125 | struct efi_device_path *device_path, |
| 126 | struct efi_device_path *image_path) |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 127 | { |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 128 | struct efi_loaded_image loaded_image_info = {}; |
| 129 | struct efi_object loaded_image_info_obj = {}; |
| 130 | ulong ret; |
| 131 | |
Simon Glass | e275458 | 2016-09-25 15:27:32 -0600 | [diff] [blame] | 132 | ulong (*entry)(void *image_handle, struct efi_system_table *st) |
| 133 | asmlinkage; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 134 | ulong fdt_pages, fdt_size, fdt_start, fdt_end; |
Alexander Graf | f4f9993 | 2017-07-26 13:41:05 +0200 | [diff] [blame] | 135 | const efi_guid_t fdt_guid = EFI_FDT_GUID; |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 136 | bootm_headers_t img = { 0 }; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 137 | |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 138 | /* Initialize and populate EFI object list */ |
| 139 | if (!efi_obj_list_initalized) |
| 140 | efi_init_obj_list(); |
| 141 | |
| 142 | efi_setup_loaded_image(&loaded_image_info, &loaded_image_info_obj, |
| 143 | device_path, image_path); |
| 144 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 145 | /* |
| 146 | * gd lives in a fixed register which may get clobbered while we execute |
| 147 | * the payload. So save it here and restore it on every callback entry |
| 148 | */ |
| 149 | efi_save_gd(); |
| 150 | |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 151 | if (fdt && !fdt_check_header(fdt)) { |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 152 | /* Prepare fdt for payload */ |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 153 | fdt = copy_fdt(fdt); |
| 154 | |
| 155 | if (image_setup_libfdt(&img, fdt, 0, NULL)) { |
Alexander Graf | dea2174 | 2016-03-04 01:10:13 +0100 | [diff] [blame] | 156 | printf("ERROR: Failed to process device tree\n"); |
| 157 | return -EINVAL; |
| 158 | } |
| 159 | |
| 160 | /* Link to it in the efi tables */ |
Alexander Graf | f4f9993 | 2017-07-26 13:41:05 +0200 | [diff] [blame] | 161 | efi_install_configuration_table(&fdt_guid, fdt); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 162 | |
| 163 | /* And reserve the space in the memory map */ |
Alexander Graf | 0d9d501 | 2016-04-11 16:55:26 +0200 | [diff] [blame] | 164 | fdt_start = ((ulong)fdt) & ~EFI_PAGE_MASK; |
| 165 | fdt_end = ((ulong)fdt) + fdt_totalsize(fdt); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 166 | fdt_size = (fdt_end - fdt_start) + EFI_PAGE_MASK; |
| 167 | fdt_pages = fdt_size >> EFI_PAGE_SHIFT; |
| 168 | /* Give a bootloader the chance to modify the device tree */ |
| 169 | fdt_pages += 2; |
| 170 | efi_add_memory_map(fdt_start, fdt_pages, |
| 171 | EFI_BOOT_SERVICES_DATA, true); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 172 | } else { |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 173 | printf("WARNING: Invalid device tree, expect boot to fail\n"); |
Alexander Graf | f4f9993 | 2017-07-26 13:41:05 +0200 | [diff] [blame] | 174 | efi_install_configuration_table(&fdt_guid, NULL); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | /* Load the EFI payload */ |
| 178 | entry = efi_load_pe(efi, &loaded_image_info); |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 179 | if (!entry) { |
| 180 | ret = -ENOENT; |
| 181 | goto exit; |
| 182 | } |
Alexander Graf | 80a4800 | 2016-08-16 21:08:45 +0200 | [diff] [blame] | 183 | |
Rob Clark | ad644e7 | 2017-09-13 18:05:37 -0400 | [diff] [blame] | 184 | /* we don't support much: */ |
| 185 | env_set("efi_8be4df61-93ca-11d2-aa0d-00e098032b8c_OsIndicationsSupported", |
| 186 | "{ro,boot}(blob)0000000000000000"); |
| 187 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 188 | /* Call our payload! */ |
Alexander Graf | edcef3b | 2016-06-02 11:38:27 +0200 | [diff] [blame] | 189 | debug("%s:%d Jumping to 0x%lx\n", __func__, __LINE__, (long)entry); |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 190 | |
| 191 | if (setjmp(&loaded_image_info.exit_jmp)) { |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 192 | ret = loaded_image_info.exit_status; |
| 193 | EFI_EXIT(ret); |
| 194 | goto exit; |
Alexander Graf | a86aeaf | 2016-05-20 23:28:23 +0200 | [diff] [blame] | 195 | } |
| 196 | |
Alexander Graf | 69bd459 | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 197 | #ifdef CONFIG_ARM64 |
| 198 | /* On AArch64 we need to make sure we call our payload in < EL3 */ |
| 199 | if (current_el() == 3) { |
| 200 | smp_kick_all_cpus(); |
| 201 | dcache_disable(); /* flush cache before switch to EL2 */ |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 202 | |
| 203 | /* Move into EL2 and keep running there */ |
| 204 | armv8_switch_to_el2((ulong)entry, (ulong)&loaded_image_info, |
Alison Wang | 7c5e1fe | 2017-01-17 09:39:17 +0800 | [diff] [blame] | 205 | (ulong)&systab, 0, (ulong)efi_run_in_el2, |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 206 | ES_TO_AARCH64); |
| 207 | |
| 208 | /* Should never reach here, efi exits with longjmp */ |
| 209 | while (1) { } |
Alexander Graf | 69bd459 | 2016-11-17 01:02:58 +0100 | [diff] [blame] | 210 | } |
| 211 | #endif |
| 212 | |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 213 | ret = efi_do_enter(&loaded_image_info, &systab, entry); |
| 214 | |
| 215 | exit: |
| 216 | /* image has returned, loaded-image obj goes *poof*: */ |
| 217 | list_del(&loaded_image_info_obj.link); |
| 218 | |
| 219 | return ret; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 220 | } |
| 221 | |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame^] | 222 | static int do_bootefi_bootmgr_exec(unsigned long fdt_addr) |
| 223 | { |
| 224 | struct efi_device_path *device_path, *file_path; |
| 225 | void *addr; |
| 226 | efi_status_t r; |
| 227 | |
| 228 | /* Initialize and populate EFI object list */ |
| 229 | if (!efi_obj_list_initalized) |
| 230 | efi_init_obj_list(); |
| 231 | |
| 232 | /* |
| 233 | * gd lives in a fixed register which may get clobbered while we execute |
| 234 | * the payload. So save it here and restore it on every callback entry |
| 235 | */ |
| 236 | efi_save_gd(); |
| 237 | |
| 238 | addr = efi_bootmgr_load(&device_path, &file_path); |
| 239 | if (!addr) |
| 240 | return 1; |
| 241 | |
| 242 | printf("## Starting EFI application at %p ...\n", addr); |
| 243 | r = do_bootefi_exec(addr, (void *)fdt_addr, device_path, file_path); |
| 244 | printf("## Application terminated, r = %lu\n", |
| 245 | r & ~EFI_ERROR_MASK); |
| 246 | |
| 247 | if (r != EFI_SUCCESS) |
| 248 | return 1; |
| 249 | |
| 250 | return 0; |
| 251 | } |
| 252 | |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 253 | /* Interpreter command to boot an arbitrary EFI image from memory */ |
| 254 | static int do_bootefi(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
| 255 | { |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 256 | char *saddr, *sfdt; |
| 257 | unsigned long addr, fdt_addr = 0; |
xypron.glpk@gmx.de | 1da1bac | 2017-07-04 23:15:23 +0200 | [diff] [blame] | 258 | unsigned long r; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 259 | |
| 260 | if (argc < 2) |
Bin Meng | 3c1dcef | 2016-08-13 04:02:06 -0700 | [diff] [blame] | 261 | return CMD_RET_USAGE; |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 262 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
| 263 | if (!strcmp(argv[1], "hello")) { |
Heinrich Schuchardt | 5e44489 | 2017-09-05 03:19:37 +0200 | [diff] [blame] | 264 | ulong size = __efi_helloworld_end - __efi_helloworld_begin; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 265 | |
Heinrich Schuchardt | 51c533f | 2017-08-28 18:54:30 +0200 | [diff] [blame] | 266 | saddr = env_get("loadaddr"); |
| 267 | if (saddr) |
| 268 | addr = simple_strtoul(saddr, NULL, 16); |
| 269 | else |
| 270 | addr = CONFIG_SYS_LOAD_ADDR; |
Heinrich Schuchardt | 5e44489 | 2017-09-05 03:19:37 +0200 | [diff] [blame] | 271 | memcpy((char *)addr, __efi_helloworld_begin, size); |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 272 | } else |
| 273 | #endif |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 274 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
| 275 | if (!strcmp(argv[1], "selftest")) { |
| 276 | /* |
| 277 | * gd lives in a fixed register which may get clobbered while we |
| 278 | * execute the payload. So save it here and restore it on every |
| 279 | * callback entry |
| 280 | */ |
| 281 | efi_save_gd(); |
| 282 | /* Initialize and populate EFI object list */ |
| 283 | if (!efi_obj_list_initalized) |
| 284 | efi_init_obj_list(); |
| 285 | loaded_image_info.device_handle = bootefi_device_path; |
| 286 | loaded_image_info.file_path = bootefi_image_path; |
| 287 | return efi_selftest(&loaded_image_info, &systab); |
| 288 | } else |
| 289 | #endif |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame^] | 290 | if (!strcmp(argv[1], "bootmgr")) { |
| 291 | unsigned long fdt_addr = 0; |
| 292 | |
| 293 | if (argc > 2) |
| 294 | fdt_addr = simple_strtoul(argv[2], NULL, 16); |
| 295 | |
| 296 | return do_bootefi_bootmgr_exec(fdt_addr); |
| 297 | } else { |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 298 | saddr = argv[1]; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 299 | |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 300 | addr = simple_strtoul(saddr, NULL, 16); |
| 301 | |
| 302 | if (argc > 2) { |
| 303 | sfdt = argv[2]; |
| 304 | fdt_addr = simple_strtoul(sfdt, NULL, 16); |
| 305 | } |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 306 | } |
| 307 | |
Simon Glass | 5ee31ba | 2016-11-07 08:47:05 -0700 | [diff] [blame] | 308 | printf("## Starting EFI application at %08lx ...\n", addr); |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 309 | r = do_bootefi_exec((void *)addr, (void *)fdt_addr, |
| 310 | bootefi_device_path, bootefi_image_path); |
xypron.glpk@gmx.de | 1da1bac | 2017-07-04 23:15:23 +0200 | [diff] [blame] | 311 | printf("## Application terminated, r = %lu\n", |
| 312 | r & ~EFI_ERROR_MASK); |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 313 | |
xypron.glpk@gmx.de | 1da1bac | 2017-07-04 23:15:23 +0200 | [diff] [blame] | 314 | if (r != EFI_SUCCESS) |
| 315 | return 1; |
| 316 | else |
| 317 | return 0; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | #ifdef CONFIG_SYS_LONGHELP |
| 321 | static char bootefi_help_text[] = |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 322 | "<image address> [fdt address]\n" |
| 323 | " - boot EFI payload stored at address <image address>.\n" |
| 324 | " If specified, the device tree located at <fdt address> gets\n" |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 325 | " exposed as EFI configuration table.\n" |
| 326 | #ifdef CONFIG_CMD_BOOTEFI_HELLO |
Heinrich Schuchardt | 623b3a5 | 2017-09-15 10:06:11 +0200 | [diff] [blame] | 327 | "bootefi hello\n" |
| 328 | " - boot a sample Hello World application stored within U-Boot\n" |
| 329 | #endif |
| 330 | #ifdef CONFIG_CMD_BOOTEFI_SELFTEST |
| 331 | "bootefi selftest\n" |
| 332 | " - boot an EFI selftest application stored within U-Boot\n" |
Simon Glass | c7ae3df | 2016-11-07 08:47:08 -0700 | [diff] [blame] | 333 | #endif |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame^] | 334 | "bootmgr [fdt addr]\n" |
| 335 | " - load and boot EFI payload based on BootOrder/BootXXXX variables.\n" |
| 336 | "\n" |
| 337 | " If specified, the device tree located at <fdt address> gets\n" |
| 338 | " exposed as EFI configuration table.\n"; |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 339 | #endif |
| 340 | |
| 341 | U_BOOT_CMD( |
Alexander Graf | 1c39809 | 2016-04-14 16:07:53 +0200 | [diff] [blame] | 342 | bootefi, 3, 0, do_bootefi, |
Sergey Kubushyn | 92dfd92 | 2016-06-07 11:14:31 -0700 | [diff] [blame] | 343 | "Boots an EFI payload from memory", |
Alexander Graf | b993933 | 2016-03-10 00:27:20 +0100 | [diff] [blame] | 344 | bootefi_help_text |
| 345 | ); |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 346 | |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 347 | static int parse_partnum(const char *devnr) |
| 348 | { |
| 349 | const char *str = strchr(devnr, ':'); |
| 350 | if (str) { |
| 351 | str++; |
| 352 | return simple_strtoul(str, NULL, 16); |
| 353 | } |
| 354 | return 0; |
| 355 | } |
| 356 | |
Alexander Graf | c07ad7c | 2016-04-11 16:16:19 +0200 | [diff] [blame] | 357 | 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] | 358 | { |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 359 | char filename[32] = { 0 }; /* dp->str is u16[32] long */ |
| 360 | char *s; |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 361 | |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 362 | if (strcmp(dev, "Net")) { |
| 363 | struct blk_desc *desc; |
| 364 | int part; |
| 365 | |
| 366 | desc = blk_get_dev(dev, simple_strtol(devnr, NULL, 10)); |
| 367 | part = parse_partnum(devnr); |
| 368 | |
| 369 | bootefi_device_path = efi_dp_from_part(desc, part); |
| 370 | } else { |
| 371 | #ifdef CONFIG_NET |
| 372 | bootefi_device_path = efi_dp_from_eth(); |
Alexander Graf | f9d334b | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 373 | #endif |
Alexander Graf | f9d334b | 2016-08-05 14:49:53 +0200 | [diff] [blame] | 374 | } |
| 375 | |
Rob Clark | 9975fe9 | 2017-09-13 18:05:38 -0400 | [diff] [blame^] | 376 | if (!path) |
| 377 | return; |
| 378 | |
Alexander Graf | 4927166 | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 379 | if (strcmp(dev, "Net")) { |
| 380 | /* Add leading / to fs paths, because they're absolute */ |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 381 | snprintf(filename, sizeof(filename), "/%s", path); |
Alexander Graf | 4927166 | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 382 | } else { |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 383 | snprintf(filename, sizeof(filename), "%s", path); |
Alexander Graf | 4927166 | 2016-07-21 01:44:46 +0200 | [diff] [blame] | 384 | } |
Rob Clark | 3e433e9 | 2017-07-24 07:59:09 -0400 | [diff] [blame] | 385 | /* DOS style file path: */ |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 386 | s = filename; |
Rob Clark | 3e433e9 | 2017-07-24 07:59:09 -0400 | [diff] [blame] | 387 | while ((s = strchr(s, '/'))) |
| 388 | *s++ = '\\'; |
Rob Clark | 95c5553 | 2017-09-13 18:05:33 -0400 | [diff] [blame] | 389 | bootefi_image_path = efi_dp_from_file(NULL, 0, filename); |
Alexander Graf | 0f4060e | 2016-03-04 01:10:14 +0100 | [diff] [blame] | 390 | } |