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