Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000-2009 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
Simon Glass | ea51a62 | 2014-06-12 07:24:51 -0600 | [diff] [blame] | 7 | #ifndef USE_HOSTCC |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 8 | #include <common.h> |
Simon Glass | ea51a62 | 2014-06-12 07:24:51 -0600 | [diff] [blame] | 9 | #include <bootstage.h> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 10 | #include <cpu_func.h> |
Simon Glass | c7694dd | 2019-08-01 09:46:46 -0600 | [diff] [blame] | 11 | #include <env.h> |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 12 | #include <errno.h> |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 13 | #include <fdt_support.h> |
Simon Glass | 36bf446 | 2019-11-14 12:57:42 -0700 | [diff] [blame] | 14 | #include <irq_func.h> |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 15 | #include <lmb.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 16 | #include <log.h> |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 17 | #include <malloc.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 18 | #include <mapmem.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 19 | #include <net.h> |
| 20 | #include <asm/cache.h> |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 21 | #include <asm/io.h> |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 22 | #if defined(CONFIG_CMD_USB) |
| 23 | #include <usb.h> |
| 24 | #endif |
Simon Glass | ea51a62 | 2014-06-12 07:24:51 -0600 | [diff] [blame] | 25 | #else |
| 26 | #include "mkimage.h" |
| 27 | #endif |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 28 | |
Simon Glass | ea51a62 | 2014-06-12 07:24:51 -0600 | [diff] [blame] | 29 | #include <command.h> |
| 30 | #include <bootm.h> |
| 31 | #include <image.h> |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 32 | |
| 33 | #ifndef CONFIG_SYS_BOOTM_LEN |
| 34 | /* use 8MByte as default max gunzip size */ |
| 35 | #define CONFIG_SYS_BOOTM_LEN 0x800000 |
| 36 | #endif |
| 37 | |
| 38 | #define IH_INITRD_ARCH IH_ARCH_DEFAULT |
| 39 | |
Simon Glass | ea51a62 | 2014-06-12 07:24:51 -0600 | [diff] [blame] | 40 | #ifndef USE_HOSTCC |
| 41 | |
| 42 | DECLARE_GLOBAL_DATA_PTR; |
| 43 | |
Tom Rini | 5db2890 | 2016-08-12 08:31:15 -0400 | [diff] [blame] | 44 | bootm_headers_t images; /* pointers to os/initrd/fdt images */ |
| 45 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 46 | static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc, |
| 47 | char *const argv[], bootm_headers_t *images, |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 48 | ulong *os_data, ulong *os_len); |
| 49 | |
Simon Glass | 329da48 | 2018-05-16 09:42:25 -0600 | [diff] [blame] | 50 | __weak void board_quiesce_devices(void) |
| 51 | { |
| 52 | } |
| 53 | |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 54 | #ifdef CONFIG_LMB |
| 55 | static void boot_start_lmb(bootm_headers_t *images) |
| 56 | { |
| 57 | ulong mem_start; |
| 58 | phys_size_t mem_size; |
| 59 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 60 | mem_start = env_get_bootm_low(); |
| 61 | mem_size = env_get_bootm_size(); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 62 | |
Simon Goldschmidt | 9cc2323 | 2019-01-26 22:13:04 +0100 | [diff] [blame] | 63 | lmb_init_and_reserve_range(&images->lmb, (phys_addr_t)mem_start, |
| 64 | mem_size, NULL); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 65 | } |
| 66 | #else |
| 67 | #define lmb_reserve(lmb, base, size) |
| 68 | static inline void boot_start_lmb(bootm_headers_t *images) { } |
| 69 | #endif |
| 70 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 71 | static int bootm_start(struct cmd_tbl *cmdtp, int flag, int argc, |
| 72 | char *const argv[]) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 73 | { |
| 74 | memset((void *)&images, 0, sizeof(images)); |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 75 | images.verify = env_get_yesno("verify"); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 76 | |
| 77 | boot_start_lmb(&images); |
| 78 | |
| 79 | bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start"); |
| 80 | images.state = BOOTM_STATE_START; |
| 81 | |
| 82 | return 0; |
| 83 | } |
| 84 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 85 | static int bootm_find_os(struct cmd_tbl *cmdtp, int flag, int argc, |
| 86 | char *const argv[]) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 87 | { |
| 88 | const void *os_hdr; |
| 89 | bool ep_found = false; |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 90 | int ret; |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 91 | |
| 92 | /* get kernel image header, start address and length */ |
| 93 | os_hdr = boot_get_kernel(cmdtp, flag, argc, argv, |
| 94 | &images, &images.os.image_start, &images.os.image_len); |
| 95 | if (images.os.image_len == 0) { |
| 96 | puts("ERROR: can't get kernel image!\n"); |
| 97 | return 1; |
| 98 | } |
| 99 | |
| 100 | /* get image parameters */ |
| 101 | switch (genimg_get_format(os_hdr)) { |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 102 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 103 | case IMAGE_FORMAT_LEGACY: |
| 104 | images.os.type = image_get_type(os_hdr); |
| 105 | images.os.comp = image_get_comp(os_hdr); |
| 106 | images.os.os = image_get_os(os_hdr); |
| 107 | |
| 108 | images.os.end = image_get_image_end(os_hdr); |
| 109 | images.os.load = image_get_load(os_hdr); |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 110 | images.os.arch = image_get_arch(os_hdr); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 111 | break; |
| 112 | #endif |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 113 | #if IMAGE_ENABLE_FIT |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 114 | case IMAGE_FORMAT_FIT: |
| 115 | if (fit_image_get_type(images.fit_hdr_os, |
| 116 | images.fit_noffset_os, |
| 117 | &images.os.type)) { |
| 118 | puts("Can't get image type!\n"); |
| 119 | bootstage_error(BOOTSTAGE_ID_FIT_TYPE); |
| 120 | return 1; |
| 121 | } |
| 122 | |
| 123 | if (fit_image_get_comp(images.fit_hdr_os, |
| 124 | images.fit_noffset_os, |
| 125 | &images.os.comp)) { |
| 126 | puts("Can't get image compression!\n"); |
| 127 | bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION); |
| 128 | return 1; |
| 129 | } |
| 130 | |
| 131 | if (fit_image_get_os(images.fit_hdr_os, images.fit_noffset_os, |
| 132 | &images.os.os)) { |
| 133 | puts("Can't get image OS!\n"); |
| 134 | bootstage_error(BOOTSTAGE_ID_FIT_OS); |
| 135 | return 1; |
| 136 | } |
| 137 | |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 138 | if (fit_image_get_arch(images.fit_hdr_os, |
| 139 | images.fit_noffset_os, |
| 140 | &images.os.arch)) { |
| 141 | puts("Can't get image ARCH!\n"); |
| 142 | return 1; |
| 143 | } |
| 144 | |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 145 | images.os.end = fit_get_end(images.fit_hdr_os); |
| 146 | |
| 147 | if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os, |
| 148 | &images.os.load)) { |
| 149 | puts("Can't get image load address!\n"); |
| 150 | bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR); |
| 151 | return 1; |
| 152 | } |
| 153 | break; |
| 154 | #endif |
| 155 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
| 156 | case IMAGE_FORMAT_ANDROID: |
| 157 | images.os.type = IH_TYPE_KERNEL; |
Eugeniu Rosca | 829ceb2 | 2019-04-08 17:35:27 +0200 | [diff] [blame] | 158 | images.os.comp = android_image_get_kcomp(os_hdr); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 159 | images.os.os = IH_OS_LINUX; |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 160 | |
| 161 | images.os.end = android_image_get_end(os_hdr); |
| 162 | images.os.load = android_image_get_kload(os_hdr); |
Ahmad Draidi | 86f4695 | 2014-10-23 20:50:07 +0300 | [diff] [blame] | 163 | images.ep = images.os.load; |
| 164 | ep_found = true; |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 165 | break; |
| 166 | #endif |
| 167 | default: |
| 168 | puts("ERROR: unknown image format type!\n"); |
| 169 | return 1; |
| 170 | } |
| 171 | |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 172 | /* If we have a valid setup.bin, we will use that for entry (x86) */ |
Simon Glass | 5bda35c | 2014-10-10 08:21:57 -0600 | [diff] [blame] | 173 | if (images.os.arch == IH_ARCH_I386 || |
| 174 | images.os.arch == IH_ARCH_X86_64) { |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 175 | ulong len; |
| 176 | |
| 177 | ret = boot_get_setup(&images, IH_ARCH_I386, &images.ep, &len); |
| 178 | if (ret < 0 && ret != -ENOENT) { |
| 179 | puts("Could not find a valid setup.bin for x86\n"); |
| 180 | return 1; |
| 181 | } |
| 182 | /* Kernel entry point is the setup.bin */ |
| 183 | } else if (images.legacy_hdr_valid) { |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 184 | images.ep = image_get_ep(&images.legacy_hdr_os_copy); |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 185 | #if IMAGE_ENABLE_FIT |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 186 | } else if (images.fit_uname_os) { |
| 187 | int ret; |
| 188 | |
| 189 | ret = fit_image_get_entry(images.fit_hdr_os, |
| 190 | images.fit_noffset_os, &images.ep); |
| 191 | if (ret) { |
| 192 | puts("Can't get entry point property!\n"); |
| 193 | return 1; |
| 194 | } |
| 195 | #endif |
| 196 | } else if (!ep_found) { |
| 197 | puts("Could not find kernel entry point!\n"); |
| 198 | return 1; |
| 199 | } |
| 200 | |
| 201 | if (images.os.type == IH_TYPE_KERNEL_NOLOAD) { |
Marek Vasut | 487b5fa | 2018-06-13 06:13:33 +0200 | [diff] [blame] | 202 | if (CONFIG_IS_ENABLED(CMD_BOOTI) && |
| 203 | images.os.arch == IH_ARCH_ARM64) { |
| 204 | ulong image_addr; |
| 205 | ulong image_size; |
| 206 | |
| 207 | ret = booti_setup(images.os.image_start, &image_addr, |
| 208 | &image_size, true); |
| 209 | if (ret != 0) |
| 210 | return 1; |
| 211 | |
| 212 | images.os.type = IH_TYPE_KERNEL; |
| 213 | images.os.load = image_addr; |
| 214 | images.ep = image_addr; |
| 215 | } else { |
| 216 | images.os.load = images.os.image_start; |
| 217 | images.ep += images.os.image_start; |
| 218 | } |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 219 | } |
| 220 | |
Simon Glass | 7a80de4 | 2016-02-24 09:14:42 -0700 | [diff] [blame] | 221 | images.os.start = map_to_sysmem(os_hdr); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 222 | |
| 223 | return 0; |
| 224 | } |
| 225 | |
Karl Apsite | d52e857 | 2015-05-21 09:52:49 -0400 | [diff] [blame] | 226 | /** |
| 227 | * bootm_find_images - wrapper to find and locate various images |
| 228 | * @flag: Ignored Argument |
| 229 | * @argc: command argument count |
| 230 | * @argv: command argument list |
Tero Kristo | fbde758 | 2020-06-12 15:41:20 +0300 | [diff] [blame] | 231 | * @start: OS image start address |
| 232 | * @size: OS image size |
Karl Apsite | d52e857 | 2015-05-21 09:52:49 -0400 | [diff] [blame] | 233 | * |
| 234 | * boot_find_images() will attempt to load an available ramdisk, |
| 235 | * flattened device tree, as well as specifically marked |
| 236 | * "loadable" images (loadables are FIT only) |
| 237 | * |
| 238 | * Note: bootm_find_images will skip an image if it is not found |
| 239 | * |
| 240 | * @return: |
| 241 | * 0, if all existing images were loaded correctly |
| 242 | * 1, if an image is found but corrupted, or invalid |
| 243 | */ |
Tero Kristo | fbde758 | 2020-06-12 15:41:20 +0300 | [diff] [blame] | 244 | int bootm_find_images(int flag, int argc, char *const argv[], ulong start, |
| 245 | ulong size) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 246 | { |
| 247 | int ret; |
| 248 | |
| 249 | /* find ramdisk */ |
| 250 | ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH, |
| 251 | &images.rd_start, &images.rd_end); |
| 252 | if (ret) { |
| 253 | puts("Ramdisk image is corrupt or invalid\n"); |
| 254 | return 1; |
| 255 | } |
| 256 | |
Tero Kristo | fbde758 | 2020-06-12 15:41:20 +0300 | [diff] [blame] | 257 | /* check if ramdisk overlaps OS image */ |
| 258 | if (images.rd_start && (((ulong)images.rd_start >= start && |
| 259 | (ulong)images.rd_start <= start + size) || |
| 260 | ((ulong)images.rd_end >= start && |
| 261 | (ulong)images.rd_end <= start + size))) { |
| 262 | printf("ERROR: RD image overlaps OS image (OS=0x%lx..0x%lx)\n", |
| 263 | start, start + size); |
| 264 | return 1; |
| 265 | } |
| 266 | |
Simon Glass | aa34fbc | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 267 | #if IMAGE_ENABLE_OF_LIBFDT |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 268 | /* find flattened device tree */ |
| 269 | ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images, |
| 270 | &images.ft_addr, &images.ft_len); |
| 271 | if (ret) { |
| 272 | puts("Could not find a valid device tree\n"); |
| 273 | return 1; |
| 274 | } |
Tero Kristo | fbde758 | 2020-06-12 15:41:20 +0300 | [diff] [blame] | 275 | |
| 276 | /* check if FDT overlaps OS image */ |
| 277 | if (images.ft_addr && |
| 278 | (((ulong)images.ft_addr >= start && |
| 279 | (ulong)images.ft_addr <= start + size) || |
| 280 | ((ulong)images.ft_addr + images.ft_len >= start && |
| 281 | (ulong)images.ft_addr + images.ft_len <= start + size))) { |
| 282 | printf("ERROR: FDT image overlaps OS image (OS=0x%lx..0x%lx)\n", |
| 283 | start, start + size); |
| 284 | return 1; |
| 285 | } |
| 286 | |
Simon Goldschmidt | 596be5f | 2018-12-17 20:14:42 +0100 | [diff] [blame] | 287 | if (CONFIG_IS_ENABLED(CMD_FDT)) |
| 288 | set_working_fdt_addr(map_to_sysmem(images.ft_addr)); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 289 | #endif |
| 290 | |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 291 | #if IMAGE_ENABLE_FIT |
Goldschmidt Simon | 8b93a92 | 2017-11-10 14:17:41 +0000 | [diff] [blame] | 292 | #if defined(CONFIG_FPGA) |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 293 | /* find bitstreams */ |
| 294 | ret = boot_get_fpga(argc, argv, &images, IH_ARCH_DEFAULT, |
| 295 | NULL, NULL); |
| 296 | if (ret) { |
| 297 | printf("FPGA image is corrupted or invalid\n"); |
| 298 | return 1; |
| 299 | } |
| 300 | #endif |
| 301 | |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 302 | /* find all of the loadables */ |
| 303 | ret = boot_get_loadable(argc, argv, &images, IH_ARCH_DEFAULT, |
| 304 | NULL, NULL); |
| 305 | if (ret) { |
| 306 | printf("Loadable(s) is corrupt or invalid\n"); |
| 307 | return 1; |
| 308 | } |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 309 | #endif |
| 310 | |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 311 | return 0; |
| 312 | } |
| 313 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 314 | static int bootm_find_other(struct cmd_tbl *cmdtp, int flag, int argc, |
| 315 | char *const argv[]) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 316 | { |
| 317 | if (((images.os.type == IH_TYPE_KERNEL) || |
| 318 | (images.os.type == IH_TYPE_KERNEL_NOLOAD) || |
| 319 | (images.os.type == IH_TYPE_MULTI)) && |
| 320 | (images.os.os == IH_OS_LINUX || |
| 321 | images.os.os == IH_OS_VXWORKS)) |
Tero Kristo | fbde758 | 2020-06-12 15:41:20 +0300 | [diff] [blame] | 322 | return bootm_find_images(flag, argc, argv, 0, 0); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 323 | |
| 324 | return 0; |
| 325 | } |
Simon Glass | 40e5975 | 2014-12-02 13:17:30 -0700 | [diff] [blame] | 326 | #endif /* USE_HOSTC */ |
| 327 | |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 328 | #if !defined(USE_HOSTCC) || defined(CONFIG_FIT_SIGNATURE) |
Simon Glass | 3086c05 | 2014-12-02 13:17:37 -0700 | [diff] [blame] | 329 | /** |
| 330 | * handle_decomp_error() - display a decompression error |
| 331 | * |
| 332 | * This function tries to produce a useful message. In the case where the |
| 333 | * uncompressed size is the same as the available space, we can assume that |
| 334 | * the image is too large for the buffer. |
| 335 | * |
| 336 | * @comp_type: Compression type being used (IH_COMP_...) |
| 337 | * @uncomp_size: Number of bytes uncompressed |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 338 | * @ret: errno error code received from compression library |
| 339 | * @return Appropriate BOOTM_ERR_ error code |
Simon Glass | 3086c05 | 2014-12-02 13:17:37 -0700 | [diff] [blame] | 340 | */ |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 341 | static int handle_decomp_error(int comp_type, size_t uncomp_size, int ret) |
Simon Glass | 40e5975 | 2014-12-02 13:17:30 -0700 | [diff] [blame] | 342 | { |
Simon Glass | 3086c05 | 2014-12-02 13:17:37 -0700 | [diff] [blame] | 343 | const char *name = genimg_get_comp_name(comp_type); |
| 344 | |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 345 | /* ENOSYS means unimplemented compression type, don't reset. */ |
| 346 | if (ret == -ENOSYS) |
| 347 | return BOOTM_ERR_UNIMPLEMENTED; |
| 348 | |
| 349 | if (uncomp_size >= CONFIG_SYS_BOOTM_LEN) |
Simon Glass | 3086c05 | 2014-12-02 13:17:37 -0700 | [diff] [blame] | 350 | printf("Image too large: increase CONFIG_SYS_BOOTM_LEN\n"); |
Simon Glass | 40e5975 | 2014-12-02 13:17:30 -0700 | [diff] [blame] | 351 | else |
Simon Glass | 3086c05 | 2014-12-02 13:17:37 -0700 | [diff] [blame] | 352 | printf("%s: uncompress error %d\n", name, ret); |
| 353 | |
| 354 | /* |
| 355 | * The decompression routines are now safe, so will not write beyond |
| 356 | * their bounds. Probably it is not necessary to reset, but maintain |
| 357 | * the current behaviour for now. |
| 358 | */ |
| 359 | printf("Must RESET board to recover\n"); |
Simon Glass | 40e5975 | 2014-12-02 13:17:30 -0700 | [diff] [blame] | 360 | #ifndef USE_HOSTCC |
| 361 | bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE); |
| 362 | #endif |
| 363 | |
| 364 | return BOOTM_ERR_RESET; |
| 365 | } |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 366 | #endif |
Simon Glass | 2b164f1 | 2014-06-12 07:24:52 -0600 | [diff] [blame] | 367 | |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 368 | #ifndef USE_HOSTCC |
Tom Rini | cc95535 | 2018-05-01 12:32:37 -0400 | [diff] [blame] | 369 | static int bootm_load_os(bootm_headers_t *images, int boot_progress) |
Simon Glass | 2b164f1 | 2014-06-12 07:24:52 -0600 | [diff] [blame] | 370 | { |
| 371 | image_info_t os = images->os; |
| 372 | ulong load = os.load; |
Tom Rini | cc95535 | 2018-05-01 12:32:37 -0400 | [diff] [blame] | 373 | ulong load_end; |
Simon Glass | 2b164f1 | 2014-06-12 07:24:52 -0600 | [diff] [blame] | 374 | ulong blob_start = os.start; |
| 375 | ulong blob_end = os.end; |
| 376 | ulong image_start = os.image_start; |
| 377 | ulong image_len = os.image_len; |
Bryan O'Donoghue | bbac922 | 2018-04-15 11:48:17 +0100 | [diff] [blame] | 378 | ulong flush_start = ALIGN_DOWN(load, ARCH_DMA_MINALIGN); |
Simon Glass | 2b164f1 | 2014-06-12 07:24:52 -0600 | [diff] [blame] | 379 | bool no_overlap; |
| 380 | void *load_buf, *image_buf; |
| 381 | int err; |
| 382 | |
| 383 | load_buf = map_sysmem(load, 0); |
| 384 | image_buf = map_sysmem(os.image_start, image_len); |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 385 | err = image_decomp(os.comp, load, os.image_start, os.type, |
| 386 | load_buf, image_buf, image_len, |
| 387 | CONFIG_SYS_BOOTM_LEN, &load_end); |
Simon Glass | 2b164f1 | 2014-06-12 07:24:52 -0600 | [diff] [blame] | 388 | if (err) { |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 389 | err = handle_decomp_error(os.comp, load_end - load, err); |
Simon Glass | 2b164f1 | 2014-06-12 07:24:52 -0600 | [diff] [blame] | 390 | bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE); |
| 391 | return err; |
| 392 | } |
Heinrich Schuchardt | 21d3946 | 2020-08-30 11:34:12 +0200 | [diff] [blame] | 393 | /* We need the decompressed image size in the next steps */ |
| 394 | images->os.image_len = load_end - load; |
Bryan O'Donoghue | bbac922 | 2018-04-15 11:48:17 +0100 | [diff] [blame] | 395 | |
Trent Piepho | b4353b3 | 2019-03-27 23:50:09 +0000 | [diff] [blame] | 396 | flush_cache(flush_start, ALIGN(load_end, ARCH_DMA_MINALIGN) - flush_start); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 397 | |
Tom Rini | cc95535 | 2018-05-01 12:32:37 -0400 | [diff] [blame] | 398 | debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, load_end); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 399 | bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED); |
| 400 | |
Simon Glass | 2b164f1 | 2014-06-12 07:24:52 -0600 | [diff] [blame] | 401 | no_overlap = (os.comp == IH_COMP_NONE && load == image_start); |
| 402 | |
Tom Rini | cc95535 | 2018-05-01 12:32:37 -0400 | [diff] [blame] | 403 | if (!no_overlap && load < blob_end && load_end > blob_start) { |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 404 | debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n", |
| 405 | blob_start, blob_end); |
| 406 | debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load, |
Tom Rini | cc95535 | 2018-05-01 12:32:37 -0400 | [diff] [blame] | 407 | load_end); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 408 | |
| 409 | /* Check what type of image this is. */ |
| 410 | if (images->legacy_hdr_valid) { |
| 411 | if (image_get_type(&images->legacy_hdr_os_copy) |
| 412 | == IH_TYPE_MULTI) |
| 413 | puts("WARNING: legacy format multi component image overwritten\n"); |
| 414 | return BOOTM_ERR_OVERLAP; |
| 415 | } else { |
| 416 | puts("ERROR: new format image overwritten - must RESET the board to recover\n"); |
| 417 | bootstage_error(BOOTSTAGE_ID_OVERWRITTEN); |
| 418 | return BOOTM_ERR_RESET; |
| 419 | } |
| 420 | } |
| 421 | |
Tom Rini | cc95535 | 2018-05-01 12:32:37 -0400 | [diff] [blame] | 422 | lmb_reserve(&images->lmb, images->os.load, (load_end - |
| 423 | images->os.load)); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 424 | return 0; |
| 425 | } |
| 426 | |
| 427 | /** |
| 428 | * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot |
| 429 | * |
| 430 | * @return interrupt flag (0 if interrupts were disabled, non-zero if they were |
| 431 | * enabled) |
| 432 | */ |
| 433 | ulong bootm_disable_interrupts(void) |
| 434 | { |
| 435 | ulong iflag; |
| 436 | |
| 437 | /* |
| 438 | * We have reached the point of no return: we are going to |
| 439 | * overwrite all exception vector code, so we cannot easily |
| 440 | * recover from any failures any more... |
| 441 | */ |
| 442 | iflag = disable_interrupts(); |
| 443 | #ifdef CONFIG_NETCONSOLE |
| 444 | /* Stop the ethernet stack if NetConsole could have left it up */ |
| 445 | eth_halt(); |
Bernhard Nortmann | 4917c06 | 2015-09-14 15:29:45 +0200 | [diff] [blame] | 446 | # ifndef CONFIG_DM_ETH |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 447 | eth_unregister(eth_get_dev()); |
Bernhard Nortmann | 4917c06 | 2015-09-14 15:29:45 +0200 | [diff] [blame] | 448 | # endif |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 449 | #endif |
| 450 | |
| 451 | #if defined(CONFIG_CMD_USB) |
| 452 | /* |
| 453 | * turn off USB to prevent the host controller from writing to the |
| 454 | * SDRAM while Linux is booting. This could happen (at least for OHCI |
| 455 | * controller), because the HCCA (Host Controller Communication Area) |
| 456 | * lies within the SDRAM and the host controller writes continously to |
| 457 | * this area (as busmaster!). The HccaFrameNumber is for example |
| 458 | * updated every 1 ms within the HCCA structure in SDRAM! For more |
| 459 | * details see the OpenHCI specification. |
| 460 | */ |
| 461 | usb_stop(); |
| 462 | #endif |
| 463 | return iflag; |
| 464 | } |
| 465 | |
| 466 | #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY) |
| 467 | |
| 468 | #define CONSOLE_ARG "console=" |
| 469 | #define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1) |
| 470 | |
| 471 | static void fixup_silent_linux(void) |
| 472 | { |
| 473 | char *buf; |
| 474 | const char *env_val; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 475 | char *cmdline = env_get("bootargs"); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 476 | int want_silent; |
| 477 | |
| 478 | /* |
| 479 | * Only fix cmdline when requested. The environment variable can be: |
| 480 | * |
| 481 | * no - we never fixup |
| 482 | * yes - we always fixup |
| 483 | * unset - we rely on the console silent flag |
| 484 | */ |
Simon Glass | bfebc8c | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 485 | want_silent = env_get_yesno("silent_linux"); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 486 | if (want_silent == 0) |
| 487 | return; |
| 488 | else if (want_silent == -1 && !(gd->flags & GD_FLG_SILENT)) |
| 489 | return; |
| 490 | |
| 491 | debug("before silent fix-up: %s\n", cmdline); |
| 492 | if (cmdline && (cmdline[0] != '\0')) { |
| 493 | char *start = strstr(cmdline, CONSOLE_ARG); |
| 494 | |
| 495 | /* Allocate space for maximum possible new command line */ |
| 496 | buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1); |
| 497 | if (!buf) { |
| 498 | debug("%s: out of memory\n", __func__); |
| 499 | return; |
| 500 | } |
| 501 | |
| 502 | if (start) { |
| 503 | char *end = strchr(start, ' '); |
| 504 | int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN; |
| 505 | |
| 506 | strncpy(buf, cmdline, num_start_bytes); |
| 507 | if (end) |
| 508 | strcpy(buf + num_start_bytes, end); |
| 509 | else |
| 510 | buf[num_start_bytes] = '\0'; |
| 511 | } else { |
| 512 | sprintf(buf, "%s %s", cmdline, CONSOLE_ARG); |
| 513 | } |
| 514 | env_val = buf; |
| 515 | } else { |
| 516 | buf = NULL; |
| 517 | env_val = CONSOLE_ARG; |
| 518 | } |
| 519 | |
Simon Glass | 382bee5 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 520 | env_set("bootargs", env_val); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 521 | debug("after silent fix-up: %s\n", env_val); |
| 522 | free(buf); |
| 523 | } |
| 524 | #endif /* CONFIG_SILENT_CONSOLE */ |
| 525 | |
| 526 | /** |
| 527 | * Execute selected states of the bootm command. |
| 528 | * |
| 529 | * Note the arguments to this state must be the first argument, Any 'bootm' |
| 530 | * or sub-command arguments must have already been taken. |
| 531 | * |
| 532 | * Note that if states contains more than one flag it MUST contain |
| 533 | * BOOTM_STATE_START, since this handles and consumes the command line args. |
| 534 | * |
| 535 | * Also note that aside from boot_os_fn functions and bootm_load_os no other |
| 536 | * functions we store the return value of in 'ret' may use a negative return |
| 537 | * value, without special handling. |
| 538 | * |
| 539 | * @param cmdtp Pointer to bootm command table entry |
| 540 | * @param flag Command flags (CMD_FLAG_...) |
| 541 | * @param argc Number of subcommand arguments (0 = no arguments) |
| 542 | * @param argv Arguments |
| 543 | * @param states Mask containing states to run (BOOTM_STATE_...) |
| 544 | * @param images Image header information |
| 545 | * @param boot_progress 1 to show boot progress, 0 to not do this |
| 546 | * @return 0 if ok, something else on error. Some errors will cause this |
| 547 | * function to perform a reboot! If states contains BOOTM_STATE_OS_GO |
| 548 | * then the intent is to boot an OS, so this function will not return |
| 549 | * unless the image type is standalone. |
| 550 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 551 | int do_bootm_states(struct cmd_tbl *cmdtp, int flag, int argc, |
| 552 | char *const argv[], int states, bootm_headers_t *images, |
| 553 | int boot_progress) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 554 | { |
| 555 | boot_os_fn *boot_fn; |
| 556 | ulong iflag = 0; |
| 557 | int ret = 0, need_boot_fn; |
| 558 | |
| 559 | images->state |= states; |
| 560 | |
| 561 | /* |
| 562 | * Work through the states and see how far we get. We stop on |
| 563 | * any error. |
| 564 | */ |
| 565 | if (states & BOOTM_STATE_START) |
| 566 | ret = bootm_start(cmdtp, flag, argc, argv); |
| 567 | |
| 568 | if (!ret && (states & BOOTM_STATE_FINDOS)) |
| 569 | ret = bootm_find_os(cmdtp, flag, argc, argv); |
| 570 | |
Zubair Lutfullah Kakakhel | ba07984 | 2016-09-09 09:18:58 +0100 | [diff] [blame] | 571 | if (!ret && (states & BOOTM_STATE_FINDOTHER)) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 572 | ret = bootm_find_other(cmdtp, flag, argc, argv); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 573 | |
| 574 | /* Load the OS */ |
| 575 | if (!ret && (states & BOOTM_STATE_LOADOS)) { |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 576 | iflag = bootm_disable_interrupts(); |
Tom Rini | cc95535 | 2018-05-01 12:32:37 -0400 | [diff] [blame] | 577 | ret = bootm_load_os(images, 0); |
| 578 | if (ret && ret != BOOTM_ERR_OVERLAP) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 579 | goto err; |
| 580 | else if (ret == BOOTM_ERR_OVERLAP) |
| 581 | ret = 0; |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | /* Relocate the ramdisk */ |
| 585 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
| 586 | if (!ret && (states & BOOTM_STATE_RAMDISK)) { |
| 587 | ulong rd_len = images->rd_end - images->rd_start; |
| 588 | |
| 589 | ret = boot_ramdisk_high(&images->lmb, images->rd_start, |
| 590 | rd_len, &images->initrd_start, &images->initrd_end); |
| 591 | if (!ret) { |
Simon Glass | 018f530 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 592 | env_set_hex("initrd_start", images->initrd_start); |
| 593 | env_set_hex("initrd_end", images->initrd_end); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 594 | } |
| 595 | } |
| 596 | #endif |
Simon Glass | aa34fbc | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 597 | #if IMAGE_ENABLE_OF_LIBFDT && defined(CONFIG_LMB) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 598 | if (!ret && (states & BOOTM_STATE_FDT)) { |
| 599 | boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr); |
| 600 | ret = boot_relocate_fdt(&images->lmb, &images->ft_addr, |
| 601 | &images->ft_len); |
| 602 | } |
| 603 | #endif |
| 604 | |
| 605 | /* From now on, we need the OS boot function */ |
| 606 | if (ret) |
| 607 | return ret; |
| 608 | boot_fn = bootm_os_get_boot_func(images->os.os); |
| 609 | need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE | |
| 610 | BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP | |
| 611 | BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO); |
| 612 | if (boot_fn == NULL && need_boot_fn) { |
| 613 | if (iflag) |
| 614 | enable_interrupts(); |
| 615 | printf("ERROR: booting os '%s' (%d) is not supported\n", |
| 616 | genimg_get_os_name(images->os.os), images->os.os); |
| 617 | bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS); |
| 618 | return 1; |
| 619 | } |
| 620 | |
Hector Palacios | 19e8649 | 2016-07-11 12:34:37 +0200 | [diff] [blame] | 621 | |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 622 | /* Call various other states that are not generally used */ |
| 623 | if (!ret && (states & BOOTM_STATE_OS_CMDLINE)) |
| 624 | ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images); |
| 625 | if (!ret && (states & BOOTM_STATE_OS_BD_T)) |
| 626 | ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images); |
Hector Palacios | 19e8649 | 2016-07-11 12:34:37 +0200 | [diff] [blame] | 627 | if (!ret && (states & BOOTM_STATE_OS_PREP)) { |
| 628 | #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY) |
| 629 | if (images->os.os == IH_OS_LINUX) |
| 630 | fixup_silent_linux(); |
| 631 | #endif |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 632 | ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images); |
Hector Palacios | 19e8649 | 2016-07-11 12:34:37 +0200 | [diff] [blame] | 633 | } |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 634 | |
| 635 | #ifdef CONFIG_TRACE |
| 636 | /* Pretend to run the OS, then run a user command */ |
| 637 | if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 638 | char *cmd_list = env_get("fakegocmd"); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 639 | |
| 640 | ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO, |
| 641 | images, boot_fn); |
| 642 | if (!ret && cmd_list) |
| 643 | ret = run_command_list(cmd_list, -1, flag); |
| 644 | } |
| 645 | #endif |
| 646 | |
| 647 | /* Check for unsupported subcommand. */ |
| 648 | if (ret) { |
| 649 | puts("subcommand not supported\n"); |
| 650 | return ret; |
| 651 | } |
| 652 | |
| 653 | /* Now run the OS! We hope this doesn't return */ |
| 654 | if (!ret && (states & BOOTM_STATE_OS_GO)) |
| 655 | ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO, |
| 656 | images, boot_fn); |
| 657 | |
| 658 | /* Deal with any fallout */ |
| 659 | err: |
| 660 | if (iflag) |
| 661 | enable_interrupts(); |
| 662 | |
| 663 | if (ret == BOOTM_ERR_UNIMPLEMENTED) |
| 664 | bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL); |
| 665 | else if (ret == BOOTM_ERR_RESET) |
| 666 | do_reset(cmdtp, flag, argc, argv); |
| 667 | |
| 668 | return ret; |
| 669 | } |
| 670 | |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 671 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 672 | /** |
| 673 | * image_get_kernel - verify legacy format kernel image |
| 674 | * @img_addr: in RAM address of the legacy format image to be verified |
| 675 | * @verify: data CRC verification flag |
| 676 | * |
| 677 | * image_get_kernel() verifies legacy image integrity and returns pointer to |
| 678 | * legacy image header if image verification was completed successfully. |
| 679 | * |
| 680 | * returns: |
| 681 | * pointer to a legacy image header if valid image was found |
| 682 | * otherwise return NULL |
| 683 | */ |
| 684 | static image_header_t *image_get_kernel(ulong img_addr, int verify) |
| 685 | { |
| 686 | image_header_t *hdr = (image_header_t *)img_addr; |
| 687 | |
| 688 | if (!image_check_magic(hdr)) { |
| 689 | puts("Bad Magic Number\n"); |
| 690 | bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC); |
| 691 | return NULL; |
| 692 | } |
| 693 | bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER); |
| 694 | |
| 695 | if (!image_check_hcrc(hdr)) { |
| 696 | puts("Bad Header Checksum\n"); |
| 697 | bootstage_error(BOOTSTAGE_ID_CHECK_HEADER); |
| 698 | return NULL; |
| 699 | } |
| 700 | |
| 701 | bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM); |
| 702 | image_print_contents(hdr); |
| 703 | |
| 704 | if (verify) { |
| 705 | puts(" Verifying Checksum ... "); |
| 706 | if (!image_check_dcrc(hdr)) { |
| 707 | printf("Bad Data CRC\n"); |
| 708 | bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM); |
| 709 | return NULL; |
| 710 | } |
| 711 | puts("OK\n"); |
| 712 | } |
| 713 | bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH); |
| 714 | |
| 715 | if (!image_check_target_arch(hdr)) { |
| 716 | printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr)); |
| 717 | bootstage_error(BOOTSTAGE_ID_CHECK_ARCH); |
| 718 | return NULL; |
| 719 | } |
| 720 | return hdr; |
| 721 | } |
| 722 | #endif |
| 723 | |
| 724 | /** |
| 725 | * boot_get_kernel - find kernel image |
| 726 | * @os_data: pointer to a ulong variable, will hold os data start address |
| 727 | * @os_len: pointer to a ulong variable, will hold os data length |
| 728 | * |
| 729 | * boot_get_kernel() tries to find a kernel image, verifies its integrity |
| 730 | * and locates kernel data. |
| 731 | * |
| 732 | * returns: |
| 733 | * pointer to image header if valid image was found, plus kernel start |
| 734 | * address and length, otherwise NULL |
| 735 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 736 | static const void *boot_get_kernel(struct cmd_tbl *cmdtp, int flag, int argc, |
| 737 | char *const argv[], bootm_headers_t *images, |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 738 | ulong *os_data, ulong *os_len) |
| 739 | { |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 740 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 741 | image_header_t *hdr; |
| 742 | #endif |
| 743 | ulong img_addr; |
| 744 | const void *buf; |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 745 | const char *fit_uname_config = NULL; |
| 746 | const char *fit_uname_kernel = NULL; |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 747 | #if IMAGE_ENABLE_FIT |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 748 | int os_noffset; |
| 749 | #endif |
| 750 | |
Bryan Wu | e6c88a6 | 2014-08-15 16:51:39 -0700 | [diff] [blame] | 751 | img_addr = genimg_get_kernel_addr_fit(argc < 1 ? NULL : argv[0], |
| 752 | &fit_uname_config, |
| 753 | &fit_uname_kernel); |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 754 | |
| 755 | bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC); |
| 756 | |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 757 | /* check image type, for FIT images get FIT kernel node */ |
| 758 | *os_data = *os_len = 0; |
| 759 | buf = map_sysmem(img_addr, 0); |
| 760 | switch (genimg_get_format(buf)) { |
Tom Rini | c76c93a | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 761 | #if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT) |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 762 | case IMAGE_FORMAT_LEGACY: |
| 763 | printf("## Booting kernel from Legacy Image at %08lx ...\n", |
| 764 | img_addr); |
| 765 | hdr = image_get_kernel(img_addr, images->verify); |
| 766 | if (!hdr) |
| 767 | return NULL; |
| 768 | bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE); |
| 769 | |
| 770 | /* get os_data and os_len */ |
| 771 | switch (image_get_type(hdr)) { |
| 772 | case IH_TYPE_KERNEL: |
| 773 | case IH_TYPE_KERNEL_NOLOAD: |
| 774 | *os_data = image_get_data(hdr); |
| 775 | *os_len = image_get_data_size(hdr); |
| 776 | break; |
| 777 | case IH_TYPE_MULTI: |
| 778 | image_multi_getimg(hdr, 0, os_data, os_len); |
| 779 | break; |
| 780 | case IH_TYPE_STANDALONE: |
| 781 | *os_data = image_get_data(hdr); |
| 782 | *os_len = image_get_data_size(hdr); |
| 783 | break; |
| 784 | default: |
| 785 | printf("Wrong Image Type for %s command\n", |
| 786 | cmdtp->name); |
| 787 | bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE); |
| 788 | return NULL; |
| 789 | } |
| 790 | |
| 791 | /* |
| 792 | * copy image header to allow for image overwrites during |
| 793 | * kernel decompression. |
| 794 | */ |
| 795 | memmove(&images->legacy_hdr_os_copy, hdr, |
| 796 | sizeof(image_header_t)); |
| 797 | |
| 798 | /* save pointer to image header */ |
| 799 | images->legacy_hdr_os = hdr; |
| 800 | |
| 801 | images->legacy_hdr_valid = 1; |
| 802 | bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE); |
| 803 | break; |
| 804 | #endif |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 805 | #if IMAGE_ENABLE_FIT |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 806 | case IMAGE_FORMAT_FIT: |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 807 | os_noffset = fit_image_load(images, img_addr, |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 808 | &fit_uname_kernel, &fit_uname_config, |
| 809 | IH_ARCH_DEFAULT, IH_TYPE_KERNEL, |
| 810 | BOOTSTAGE_ID_FIT_KERNEL_START, |
| 811 | FIT_LOAD_IGNORED, os_data, os_len); |
| 812 | if (os_noffset < 0) |
| 813 | return NULL; |
| 814 | |
| 815 | images->fit_hdr_os = map_sysmem(img_addr, 0); |
| 816 | images->fit_uname_os = fit_uname_kernel; |
| 817 | images->fit_uname_cfg = fit_uname_config; |
| 818 | images->fit_noffset_os = os_noffset; |
| 819 | break; |
| 820 | #endif |
| 821 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
| 822 | case IMAGE_FORMAT_ANDROID: |
| 823 | printf("## Booting Android Image at 0x%08lx ...\n", img_addr); |
Simon Glass | 07c0cd7 | 2014-06-12 07:24:48 -0600 | [diff] [blame] | 824 | if (android_image_get_kernel(buf, images->verify, |
Simon Glass | b639640 | 2014-06-12 07:24:46 -0600 | [diff] [blame] | 825 | os_data, os_len)) |
| 826 | return NULL; |
| 827 | break; |
| 828 | #endif |
| 829 | default: |
| 830 | printf("Wrong Image Format for %s command\n", cmdtp->name); |
| 831 | bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO); |
| 832 | return NULL; |
| 833 | } |
| 834 | |
| 835 | debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n", |
| 836 | *os_data, *os_len, *os_len); |
| 837 | |
| 838 | return buf; |
| 839 | } |
Heinrich Schuchardt | f6c6df7 | 2019-01-08 18:13:06 +0100 | [diff] [blame] | 840 | |
| 841 | /** |
| 842 | * switch_to_non_secure_mode() - switch to non-secure mode |
| 843 | * |
| 844 | * This routine is overridden by architectures requiring this feature. |
| 845 | */ |
| 846 | void __weak switch_to_non_secure_mode(void) |
| 847 | { |
| 848 | } |
| 849 | |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 850 | #else /* USE_HOSTCC */ |
| 851 | |
Fabrice Fontaine | 93e0788 | 2019-05-03 22:37:05 +0200 | [diff] [blame] | 852 | #if defined(CONFIG_FIT_SIGNATURE) |
Simon Glass | 8a9d037 | 2020-03-18 11:44:02 -0600 | [diff] [blame] | 853 | static int bootm_host_load_image(const void *fit, int req_image_type, |
| 854 | int cfg_noffset) |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 855 | { |
| 856 | const char *fit_uname_config = NULL; |
| 857 | ulong data, len; |
| 858 | bootm_headers_t images; |
| 859 | int noffset; |
| 860 | ulong load_end; |
| 861 | uint8_t image_type; |
| 862 | uint8_t imape_comp; |
| 863 | void *load_buf; |
| 864 | int ret; |
| 865 | |
Simon Glass | 8a9d037 | 2020-03-18 11:44:02 -0600 | [diff] [blame] | 866 | fit_uname_config = fdt_get_name(fit, cfg_noffset, NULL); |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 867 | memset(&images, '\0', sizeof(images)); |
| 868 | images.verify = 1; |
| 869 | noffset = fit_image_load(&images, (ulong)fit, |
| 870 | NULL, &fit_uname_config, |
| 871 | IH_ARCH_DEFAULT, req_image_type, -1, |
| 872 | FIT_LOAD_IGNORED, &data, &len); |
| 873 | if (noffset < 0) |
| 874 | return noffset; |
| 875 | if (fit_image_get_type(fit, noffset, &image_type)) { |
| 876 | puts("Can't get image type!\n"); |
| 877 | return -EINVAL; |
| 878 | } |
| 879 | |
| 880 | if (fit_image_get_comp(fit, noffset, &imape_comp)) { |
| 881 | puts("Can't get image compression!\n"); |
| 882 | return -EINVAL; |
| 883 | } |
| 884 | |
| 885 | /* Allow the image to expand by a factor of 4, should be safe */ |
| 886 | load_buf = malloc((1 << 20) + len * 4); |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 887 | ret = image_decomp(imape_comp, 0, data, image_type, load_buf, |
| 888 | (void *)data, len, CONFIG_SYS_BOOTM_LEN, |
| 889 | &load_end); |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 890 | free(load_buf); |
Simon Glass | 081cc19 | 2014-12-02 13:17:33 -0700 | [diff] [blame] | 891 | |
Julius Werner | 2090854 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 892 | if (ret) { |
| 893 | ret = handle_decomp_error(imape_comp, load_end - 0, ret); |
| 894 | if (ret != BOOTM_ERR_UNIMPLEMENTED) |
| 895 | return ret; |
| 896 | } |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 897 | |
| 898 | return 0; |
| 899 | } |
| 900 | |
| 901 | int bootm_host_load_images(const void *fit, int cfg_noffset) |
| 902 | { |
| 903 | static uint8_t image_types[] = { |
| 904 | IH_TYPE_KERNEL, |
| 905 | IH_TYPE_FLATDT, |
| 906 | IH_TYPE_RAMDISK, |
| 907 | }; |
| 908 | int err = 0; |
| 909 | int i; |
| 910 | |
| 911 | for (i = 0; i < ARRAY_SIZE(image_types); i++) { |
| 912 | int ret; |
| 913 | |
Simon Glass | 8a9d037 | 2020-03-18 11:44:02 -0600 | [diff] [blame] | 914 | ret = bootm_host_load_image(fit, image_types[i], cfg_noffset); |
Simon Glass | ce1400f | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 915 | if (!err && ret && ret != -ENOENT) |
| 916 | err = ret; |
| 917 | } |
| 918 | |
| 919 | /* Return the first error we found */ |
| 920 | return err; |
| 921 | } |
Fabrice Fontaine | 93e0788 | 2019-05-03 22:37:05 +0200 | [diff] [blame] | 922 | #endif |
Simon Glass | ea51a62 | 2014-06-12 07:24:51 -0600 | [diff] [blame] | 923 | |
| 924 | #endif /* ndef USE_HOSTCC */ |