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