Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 Semihalf |
| 3 | * |
| 4 | * (C) Copyright 2000-2006 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 8 | */ |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 9 | |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 10 | #ifndef USE_HOSTCC |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <watchdog.h> |
| 13 | |
| 14 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 15 | #include <status_led.h> |
| 16 | #endif |
| 17 | |
| 18 | #ifdef CONFIG_HAS_DATAFLASH |
| 19 | #include <dataflash.h> |
| 20 | #endif |
| 21 | |
Marian Balakowicz | 95d449a | 2008-05-13 15:53:29 +0200 | [diff] [blame] | 22 | #ifdef CONFIG_LOGBUFFER |
| 23 | #include <logbuff.h> |
| 24 | #endif |
| 25 | |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 26 | #include <rtc.h> |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 27 | |
Joe Hershberger | 1cf0a8b | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 28 | #include <environment.h> |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 29 | #include <image.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 30 | #include <mapmem.h> |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 31 | |
Simon Glass | aa34fbc | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 32 | #if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT |
Marian Balakowicz | fff888a1 | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 33 | #include <libfdt.h> |
| 34 | #include <fdt_support.h> |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 35 | #include <fpga.h> |
| 36 | #include <xilinx.h> |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 37 | #endif |
| 38 | |
Andy Fleming | 20a14a4 | 2008-04-02 16:19:07 -0500 | [diff] [blame] | 39 | #include <u-boot/md5.h> |
Jeroen Hofstee | 2b9912e | 2014-06-12 22:27:12 +0200 | [diff] [blame] | 40 | #include <u-boot/sha1.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 41 | #include <linux/errno.h> |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 42 | #include <asm/io.h> |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 43 | |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 44 | #ifdef CONFIG_CMD_BDI |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 45 | extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 46 | #endif |
| 47 | |
| 48 | DECLARE_GLOBAL_DATA_PTR; |
Marian Balakowicz | 8a5ea3e | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 49 | |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 50 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 51 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
Marian Balakowicz | d985c84 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 52 | int verify); |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 53 | #endif |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 54 | #else |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 55 | #include "mkimage.h" |
Andy Fleming | 20a14a4 | 2008-04-02 16:19:07 -0500 | [diff] [blame] | 56 | #include <u-boot/md5.h> |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 57 | #include <time.h> |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 58 | #include <image.h> |
Heiko Schocher | 80402f3 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 59 | |
| 60 | #ifndef __maybe_unused |
| 61 | # define __maybe_unused /* unimplemented */ |
| 62 | #endif |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 63 | #endif /* !USE_HOSTCC*/ |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 64 | |
Simon Glass | 0ccff50 | 2013-02-24 17:33:25 +0000 | [diff] [blame] | 65 | #include <u-boot/crc.h> |
| 66 | |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 67 | #ifndef CONFIG_SYS_BARGSIZE |
| 68 | #define CONFIG_SYS_BARGSIZE 512 |
| 69 | #endif |
| 70 | |
Mike Frysinger | 7edb186 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 71 | static const table_entry_t uimage_arch[] = { |
Simon Glass | 30495bf | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 72 | { IH_ARCH_INVALID, "invalid", "Invalid ARCH", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 73 | { IH_ARCH_ALPHA, "alpha", "Alpha", }, |
| 74 | { IH_ARCH_ARM, "arm", "ARM", }, |
| 75 | { IH_ARCH_I386, "x86", "Intel x86", }, |
| 76 | { IH_ARCH_IA64, "ia64", "IA64", }, |
| 77 | { IH_ARCH_M68K, "m68k", "M68K", }, |
| 78 | { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", }, |
| 79 | { IH_ARCH_MIPS, "mips", "MIPS", }, |
| 80 | { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 81 | { IH_ARCH_NIOS2, "nios2", "NIOS II", }, |
Grant Erickson | e419e12 | 2008-05-04 16:45:01 -0700 | [diff] [blame] | 82 | { IH_ARCH_PPC, "powerpc", "PowerPC", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 83 | { IH_ARCH_PPC, "ppc", "PowerPC", }, |
| 84 | { IH_ARCH_S390, "s390", "IBM S390", }, |
| 85 | { IH_ARCH_SH, "sh", "SuperH", }, |
| 86 | { IH_ARCH_SPARC, "sparc", "SPARC", }, |
| 87 | { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", }, |
| 88 | { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", }, |
| 89 | { IH_ARCH_AVR32, "avr32", "AVR32", }, |
Macpaul Lin | 64d6146 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 90 | { IH_ARCH_NDS32, "nds32", "NDS32", }, |
Stefan Kristiansson | 3ddcacc | 2011-11-26 19:04:50 +0000 | [diff] [blame] | 91 | { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",}, |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 92 | { IH_ARCH_SANDBOX, "sandbox", "Sandbox", }, |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 93 | { IH_ARCH_ARM64, "arm64", "AArch64", }, |
Alexey Brodkin | bc5d542 | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 94 | { IH_ARCH_ARC, "arc", "ARC", }, |
Simon Glass | 5bda35c | 2014-10-10 08:21:57 -0600 | [diff] [blame] | 95 | { IH_ARCH_X86_64, "x86_64", "AMD x86_64", }, |
Chris Zankel | de5e5ce | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 96 | { IH_ARCH_XTENSA, "xtensa", "Xtensa", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 97 | { -1, "", "", }, |
| 98 | }; |
| 99 | |
Mike Frysinger | 7edb186 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 100 | static const table_entry_t uimage_os[] = { |
Simon Glass | 30495bf | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 101 | { IH_OS_INVALID, "invalid", "Invalid OS", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 102 | { IH_OS_LINUX, "linux", "Linux", }, |
| 103 | #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC) |
| 104 | { IH_OS_LYNXOS, "lynxos", "LynxOS", }, |
| 105 | #endif |
| 106 | { IH_OS_NETBSD, "netbsd", "NetBSD", }, |
Torkel Lundgren | 3df6195 | 2010-09-28 11:05:36 +0200 | [diff] [blame] | 107 | { IH_OS_OSE, "ose", "Enea OSE", }, |
Steven Stallion | 04d4140 | 2013-03-20 06:31:35 +0000 | [diff] [blame] | 108 | { IH_OS_PLAN9, "plan9", "Plan 9", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 109 | { IH_OS_RTEMS, "rtems", "RTEMS", }, |
| 110 | { IH_OS_U_BOOT, "u-boot", "U-Boot", }, |
miao.yan@windriver.com | 68b15e8 | 2013-12-27 16:01:50 +0800 | [diff] [blame] | 111 | { IH_OS_VXWORKS, "vxworks", "VxWorks", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 112 | #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC) |
| 113 | { IH_OS_QNX, "qnx", "QNX", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 114 | #endif |
Peter Tyser | f5ed9e3 | 2008-09-08 14:56:49 -0500 | [diff] [blame] | 115 | #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC) |
| 116 | { IH_OS_INTEGRITY,"integrity", "INTEGRITY", }, |
| 117 | #endif |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 118 | #ifdef USE_HOSTCC |
| 119 | { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", }, |
| 120 | { IH_OS_DELL, "dell", "Dell", }, |
| 121 | { IH_OS_ESIX, "esix", "Esix", }, |
| 122 | { IH_OS_FREEBSD, "freebsd", "FreeBSD", }, |
| 123 | { IH_OS_IRIX, "irix", "Irix", }, |
| 124 | { IH_OS_NCR, "ncr", "NCR", }, |
| 125 | { IH_OS_OPENBSD, "openbsd", "OpenBSD", }, |
| 126 | { IH_OS_PSOS, "psos", "pSOS", }, |
| 127 | { IH_OS_SCO, "sco", "SCO", }, |
| 128 | { IH_OS_SOLARIS, "solaris", "Solaris", }, |
| 129 | { IH_OS_SVR4, "svr4", "SVR4", }, |
| 130 | #endif |
Marek Vasut | 67ddd95 | 2014-12-16 14:07:21 +0100 | [diff] [blame] | 131 | #if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC) |
| 132 | { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", }, |
| 133 | #endif |
| 134 | |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 135 | { -1, "", "", }, |
| 136 | }; |
| 137 | |
Mike Frysinger | 7edb186 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 138 | static const table_entry_t uimage_type[] = { |
Stefano Babic | 4962e38 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 139 | { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",}, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 140 | { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", }, |
| 141 | { IH_TYPE_FIRMWARE, "firmware", "Firmware", }, |
John Rigby | 3decb14 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 142 | { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", }, |
Karicheri, Muralidharan | bf411ea | 2014-04-04 13:16:48 -0400 | [diff] [blame] | 143 | { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",}, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 144 | { IH_TYPE_KERNEL, "kernel", "Kernel Image", }, |
Stephen Warren | b9b50e89 | 2011-11-10 13:17:53 -0700 | [diff] [blame] | 145 | { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, |
Stefano Babic | 4962e38 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 146 | { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, |
| 147 | { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, |
Simon Glass | 30495bf | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 148 | { IH_TYPE_INVALID, "invalid", "Invalid Image", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 149 | { IH_TYPE_MULTI, "multi", "Multi-File Image", }, |
Stefano Babic | 4962e38 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 150 | { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, |
Shaohui Xie | 5d898a0 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 151 | { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",}, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 152 | { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", }, |
| 153 | { IH_TYPE_SCRIPT, "script", "Script", }, |
Charles Manning | 832472a | 2014-03-06 15:40:50 +1300 | [diff] [blame] | 154 | { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",}, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 155 | { IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, |
Heiko Schocher | 7816f2c | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 156 | { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",}, |
Marek Vasut | bce8837 | 2013-08-26 20:43:33 +0200 | [diff] [blame] | 157 | { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",}, |
Andreas Bießmann | 7b1a411 | 2014-05-19 14:23:39 +0200 | [diff] [blame] | 158 | { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",}, |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 159 | { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", }, |
Albert ARIBAUD \(3ADEV\) | 39f520b | 2015-03-31 11:40:49 +0200 | [diff] [blame] | 160 | { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", }, |
Simon Glass | a131c1f | 2015-08-30 16:55:24 -0600 | [diff] [blame] | 161 | { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" }, |
Simon Glass | f9a3c27 | 2015-08-30 16:55:25 -0600 | [diff] [blame] | 162 | { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" }, |
Simon Glass | 10b84fe | 2015-08-30 16:55:26 -0600 | [diff] [blame] | 163 | { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" }, |
Albert ARIBAUD \(3ADEV\) | ed0c2c0 | 2016-09-26 09:08:06 +0200 | [diff] [blame] | 164 | { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", }, |
Nathan Rossi | 66eef1e | 2015-11-17 22:56:56 +1000 | [diff] [blame] | 165 | { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" }, |
Michal Simek | d9b58b3 | 2016-04-27 14:03:29 +0200 | [diff] [blame] | 166 | { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" }, |
Michal Simek | ed0cea7 | 2016-05-17 13:58:44 +0200 | [diff] [blame] | 167 | { IH_TYPE_FPGA, "fpga", "FPGA Image" }, |
Andrew F. Davis | 7e719ee | 2016-11-29 16:33:21 -0600 | [diff] [blame] | 168 | { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",}, |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 169 | { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" }, |
Andrew F. Davis | 6442c96 | 2017-07-31 10:58:20 -0500 | [diff] [blame] | 170 | { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",}, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 171 | { -1, "", "", }, |
| 172 | }; |
| 173 | |
Mike Frysinger | 7edb186 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 174 | static const table_entry_t uimage_comp[] = { |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 175 | { IH_COMP_NONE, "none", "uncompressed", }, |
| 176 | { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", }, |
| 177 | { IH_COMP_GZIP, "gzip", "gzip compressed", }, |
Luigi 'Comio' Mantellini | fc9c172 | 2008-09-08 02:46:13 +0200 | [diff] [blame] | 178 | { IH_COMP_LZMA, "lzma", "lzma compressed", }, |
Peter Korsgaard | 20dde48 | 2009-11-19 11:37:51 +0100 | [diff] [blame] | 179 | { IH_COMP_LZO, "lzo", "lzo compressed", }, |
Julius Werner | 027b728 | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 180 | { IH_COMP_LZ4, "lz4", "lz4 compressed", }, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 181 | { -1, "", "", }, |
| 182 | }; |
| 183 | |
Simon Glass | 56d7ab7 | 2016-06-30 10:52:14 -0600 | [diff] [blame] | 184 | struct table_info { |
| 185 | const char *desc; |
| 186 | int count; |
| 187 | const table_entry_t *table; |
| 188 | }; |
| 189 | |
| 190 | static const struct table_info table_info[IH_COUNT] = { |
| 191 | { "architecture", IH_ARCH_COUNT, uimage_arch }, |
| 192 | { "compression", IH_COMP_COUNT, uimage_comp }, |
| 193 | { "operating system", IH_OS_COUNT, uimage_os }, |
| 194 | { "image type", IH_TYPE_COUNT, uimage_type }, |
| 195 | }; |
| 196 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 197 | /*****************************************************************************/ |
| 198 | /* Legacy format routines */ |
| 199 | /*****************************************************************************/ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 200 | int image_check_hcrc(const image_header_t *hdr) |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 201 | { |
| 202 | ulong hcrc; |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 203 | ulong len = image_get_header_size(); |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 204 | image_header_t header; |
| 205 | |
| 206 | /* Copy header so we can blank CRC field for re-calculation */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 207 | memmove(&header, (char *)hdr, image_get_header_size()); |
| 208 | image_set_hcrc(&header, 0); |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 209 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 210 | hcrc = crc32(0, (unsigned char *)&header, len); |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 211 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 212 | return (hcrc == image_get_hcrc(hdr)); |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 213 | } |
| 214 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 215 | int image_check_dcrc(const image_header_t *hdr) |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 216 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 217 | ulong data = image_get_data(hdr); |
| 218 | ulong len = image_get_data_size(hdr); |
| 219 | ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32); |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 220 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 221 | return (dcrc == image_get_dcrc(hdr)); |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 222 | } |
| 223 | |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 224 | /** |
| 225 | * image_multi_count - get component (sub-image) count |
| 226 | * @hdr: pointer to the header of the multi component image |
| 227 | * |
| 228 | * image_multi_count() returns number of components in a multi |
| 229 | * component image. |
| 230 | * |
| 231 | * Note: no checking of the image type is done, caller must pass |
| 232 | * a valid multi component image. |
| 233 | * |
| 234 | * returns: |
| 235 | * number of components |
| 236 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 237 | ulong image_multi_count(const image_header_t *hdr) |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 238 | { |
| 239 | ulong i, count = 0; |
Marian Balakowicz | df6f1b8 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 240 | uint32_t *size; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 241 | |
| 242 | /* get start of the image payload, which in case of multi |
| 243 | * component images that points to a table of component sizes */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 244 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 245 | |
| 246 | /* count non empty slots */ |
| 247 | for (i = 0; size[i]; ++i) |
| 248 | count++; |
| 249 | |
| 250 | return count; |
| 251 | } |
| 252 | |
| 253 | /** |
| 254 | * image_multi_getimg - get component data address and size |
| 255 | * @hdr: pointer to the header of the multi component image |
| 256 | * @idx: index of the requested component |
| 257 | * @data: pointer to a ulong variable, will hold component data address |
| 258 | * @len: pointer to a ulong variable, will hold component size |
| 259 | * |
| 260 | * image_multi_getimg() returns size and data address for the requested |
| 261 | * component in a multi component image. |
| 262 | * |
| 263 | * Note: no checking of the image type is done, caller must pass |
| 264 | * a valid multi component image. |
| 265 | * |
| 266 | * returns: |
| 267 | * data address and size of the component, if idx is valid |
| 268 | * 0 in data and len, if idx is out of range |
| 269 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 270 | void image_multi_getimg(const image_header_t *hdr, ulong idx, |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 271 | ulong *data, ulong *len) |
| 272 | { |
| 273 | int i; |
Marian Balakowicz | df6f1b8 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 274 | uint32_t *size; |
Nick Spence | 02b9b22 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 275 | ulong offset, count, img_data; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 276 | |
| 277 | /* get number of component */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 278 | count = image_multi_count(hdr); |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 279 | |
| 280 | /* get start of the image payload, which in case of multi |
| 281 | * component images that points to a table of component sizes */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 282 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 283 | |
| 284 | /* get address of the proper component data start, which means |
| 285 | * skipping sizes table (add 1 for last, null entry) */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 286 | img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t); |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 287 | |
| 288 | if (idx < count) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 289 | *len = uimage_to_cpu(size[idx]); |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 290 | offset = 0; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 291 | |
| 292 | /* go over all indices preceding requested component idx */ |
| 293 | for (i = 0; i < idx; i++) { |
Nick Spence | 02b9b22 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 294 | /* add up i-th component size, rounding up to 4 bytes */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 295 | offset += (uimage_to_cpu(size[i]) + 3) & ~3 ; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | /* calculate idx-th component data address */ |
Nick Spence | 02b9b22 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 299 | *data = img_data + offset; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 300 | } else { |
| 301 | *len = 0; |
| 302 | *data = 0; |
| 303 | } |
| 304 | } |
Marian Balakowicz | 42b73e8 | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 305 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 306 | static void image_print_type(const image_header_t *hdr) |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 307 | { |
Heiko Schocher | 80402f3 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 308 | const char __maybe_unused *os, *arch, *type, *comp; |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 309 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 310 | os = genimg_get_os_name(image_get_os(hdr)); |
| 311 | arch = genimg_get_arch_name(image_get_arch(hdr)); |
| 312 | type = genimg_get_type_name(image_get_type(hdr)); |
| 313 | comp = genimg_get_comp_name(image_get_comp(hdr)); |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 314 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 315 | printf("%s %s %s (%s)\n", arch, os, type, comp); |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 316 | } |
| 317 | |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 318 | /** |
Bartlomiej Sieka | edbed24 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 319 | * image_print_contents - prints out the contents of the legacy format image |
Wolfgang Denk | 3a2003f | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 320 | * @ptr: pointer to the legacy format image header |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 321 | * @p: pointer to prefix string |
| 322 | * |
Bartlomiej Sieka | edbed24 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 323 | * image_print_contents() formats a multi line legacy image contents description. |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 324 | * The routine prints out all header fields followed by the size/offset data |
| 325 | * for MULTI/SCRIPT images. |
| 326 | * |
| 327 | * returns: |
| 328 | * no returned results |
| 329 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 330 | void image_print_contents(const void *ptr) |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 331 | { |
Wolfgang Denk | 3a2003f | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 332 | const image_header_t *hdr = (const image_header_t *)ptr; |
Heiko Schocher | 80402f3 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 333 | const char __maybe_unused *p; |
Bartlomiej Sieka | edbed24 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 334 | |
Simon Glass | 1fe7d93 | 2013-05-08 08:05:58 +0000 | [diff] [blame] | 335 | p = IMAGE_INDENT_STRING; |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 336 | printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr)); |
Simon Glass | 859e92b | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 337 | if (IMAGE_ENABLE_TIMESTAMP) { |
| 338 | printf("%sCreated: ", p); |
| 339 | genimg_print_time((time_t)image_get_time(hdr)); |
| 340 | } |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 341 | printf("%sImage Type: ", p); |
| 342 | image_print_type(hdr); |
| 343 | printf("%sData Size: ", p); |
| 344 | genimg_print_size(image_get_data_size(hdr)); |
| 345 | printf("%sLoad Address: %08x\n", p, image_get_load(hdr)); |
| 346 | printf("%sEntry Point: %08x\n", p, image_get_ep(hdr)); |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 347 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 348 | if (image_check_type(hdr, IH_TYPE_MULTI) || |
| 349 | image_check_type(hdr, IH_TYPE_SCRIPT)) { |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 350 | int i; |
| 351 | ulong data, len; |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 352 | ulong count = image_multi_count(hdr); |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 353 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 354 | printf("%sContents:\n", p); |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 355 | for (i = 0; i < count; i++) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 356 | image_multi_getimg(hdr, i, &data, &len); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 357 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 358 | printf("%s Image %d: ", p, i); |
| 359 | genimg_print_size(len); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 360 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 361 | if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) { |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 362 | /* |
| 363 | * the user may need to know offsets |
| 364 | * if planning to do something with |
| 365 | * multiple files |
| 366 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 367 | printf("%s Offset = 0x%08lx\n", p, data); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 368 | } |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 369 | } |
Sven Ebenfeld | d21bd69 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 370 | } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) { |
| 371 | printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n", |
| 372 | image_get_load(hdr) - image_get_header_size(), |
| 373 | image_get_size(hdr) + image_get_header_size() |
| 374 | - 0x1FE0); |
Marian Balakowicz | 2242f53 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 378 | |
| 379 | #ifndef USE_HOSTCC |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 380 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 381 | /** |
| 382 | * image_get_ramdisk - get and verify ramdisk image |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 383 | * @rd_addr: ramdisk image start address |
| 384 | * @arch: expected ramdisk architecture |
| 385 | * @verify: checksum verification flag |
| 386 | * |
| 387 | * image_get_ramdisk() returns a pointer to the verified ramdisk image |
| 388 | * header. Routine receives image start address and expected architecture |
| 389 | * flag. Verification done covers data and header integrity and os/type/arch |
| 390 | * fields checking. |
| 391 | * |
| 392 | * If dataflash support is enabled routine checks for dataflash addresses |
| 393 | * and handles required dataflash reads. |
| 394 | * |
| 395 | * returns: |
| 396 | * pointer to a ramdisk image header, if image was found and valid |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 397 | * otherwise, return NULL |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 398 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 399 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
Marian Balakowicz | d985c84 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 400 | int verify) |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 401 | { |
Wolfgang Denk | 3a2003f | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 402 | const image_header_t *rd_hdr = (const image_header_t *)rd_addr; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 403 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 404 | if (!image_check_magic(rd_hdr)) { |
| 405 | puts("Bad Magic Number\n"); |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 406 | bootstage_error(BOOTSTAGE_ID_RD_MAGIC); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 407 | return NULL; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 408 | } |
| 409 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 410 | if (!image_check_hcrc(rd_hdr)) { |
| 411 | puts("Bad Header Checksum\n"); |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 412 | bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 413 | return NULL; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 414 | } |
| 415 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 416 | bootstage_mark(BOOTSTAGE_ID_RD_MAGIC); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 417 | image_print_contents(rd_hdr); |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 418 | |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 419 | if (verify) { |
| 420 | puts(" Verifying Checksum ... "); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 421 | if (!image_check_dcrc(rd_hdr)) { |
| 422 | puts("Bad Data CRC\n"); |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 423 | bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 424 | return NULL; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 425 | } |
| 426 | puts("OK\n"); |
| 427 | } |
| 428 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 429 | bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 430 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 431 | if (!image_check_os(rd_hdr, IH_OS_LINUX) || |
| 432 | !image_check_arch(rd_hdr, arch) || |
| 433 | !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) { |
| 434 | printf("No Linux %s Ramdisk Image\n", |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 435 | genimg_get_arch_name(arch)); |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 436 | bootstage_error(BOOTSTAGE_ID_RAMDISK); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 437 | return NULL; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | return rd_hdr; |
| 441 | } |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 442 | #endif |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 443 | #endif /* !USE_HOSTCC */ |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 444 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 445 | /*****************************************************************************/ |
| 446 | /* Shared dual-format routines */ |
| 447 | /*****************************************************************************/ |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 448 | #ifndef USE_HOSTCC |
Joe Hershberger | 1cf0a8b | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 449 | ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */ |
| 450 | ulong save_addr; /* Default Save Address */ |
| 451 | ulong save_size; /* Default Save Size (in bytes) */ |
| 452 | |
| 453 | static int on_loadaddr(const char *name, const char *value, enum env_op op, |
| 454 | int flags) |
| 455 | { |
| 456 | switch (op) { |
| 457 | case env_op_create: |
| 458 | case env_op_overwrite: |
| 459 | load_addr = simple_strtoul(value, NULL, 16); |
| 460 | break; |
| 461 | default: |
| 462 | break; |
| 463 | } |
| 464 | |
| 465 | return 0; |
| 466 | } |
| 467 | U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr); |
| 468 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 469 | ulong env_get_bootm_low(void) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 470 | { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 471 | char *s = env_get("bootm_low"); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 472 | if (s) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 473 | ulong tmp = simple_strtoul(s, NULL, 16); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 474 | return tmp; |
| 475 | } |
| 476 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 477 | #if defined(CONFIG_SYS_SDRAM_BASE) |
| 478 | return CONFIG_SYS_SDRAM_BASE; |
Marian Balakowicz | afe45c8 | 2008-03-12 12:14:15 +0100 | [diff] [blame] | 479 | #elif defined(CONFIG_ARM) |
| 480 | return gd->bd->bi_dram[0].start; |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 481 | #else |
| 482 | return 0; |
| 483 | #endif |
| 484 | } |
| 485 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 486 | phys_size_t env_get_bootm_size(void) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 487 | { |
Masahiro Yamada | 0cb389d | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 488 | phys_size_t tmp, size; |
| 489 | phys_addr_t start; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 490 | char *s = env_get("bootm_size"); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 491 | if (s) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 492 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 493 | return tmp; |
| 494 | } |
Masahiro Yamada | 0cb389d | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 495 | |
| 496 | #if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS) |
| 497 | start = gd->bd->bi_dram[0].start; |
| 498 | size = gd->bd->bi_dram[0].size; |
| 499 | #else |
| 500 | start = gd->bd->bi_memstart; |
| 501 | size = gd->bd->bi_memsize; |
| 502 | #endif |
| 503 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 504 | s = env_get("bootm_low"); |
Matthew McClintock | c519fac | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 505 | if (s) |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 506 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Matthew McClintock | c519fac | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 507 | else |
Masahiro Yamada | 0cb389d | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 508 | tmp = start; |
Matthew McClintock | c519fac | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 509 | |
Masahiro Yamada | 0cb389d | 2016-02-05 16:12:50 +0900 | [diff] [blame] | 510 | return size - (tmp - start); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 511 | } |
| 512 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 513 | phys_size_t env_get_bootm_mapsize(void) |
Grant Likely | c3624e6 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 514 | { |
| 515 | phys_size_t tmp; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 516 | char *s = env_get("bootm_mapsize"); |
Grant Likely | c3624e6 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 517 | if (s) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 518 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Grant Likely | c3624e6 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 519 | return tmp; |
| 520 | } |
| 521 | |
| 522 | #if defined(CONFIG_SYS_BOOTMAPSZ) |
| 523 | return CONFIG_SYS_BOOTMAPSZ; |
| 524 | #else |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 525 | return env_get_bootm_size(); |
Grant Likely | c3624e6 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 526 | #endif |
| 527 | } |
| 528 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 529 | void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 530 | { |
Larry Johnson | 54fa2c5 | 2010-04-20 08:09:43 -0400 | [diff] [blame] | 531 | if (to == from) |
| 532 | return; |
| 533 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 534 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) |
Sonic Zhang | 22cfddc | 2014-12-10 18:20:53 +0800 | [diff] [blame] | 535 | if (to > from) { |
| 536 | from += len; |
| 537 | to += len; |
| 538 | } |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 539 | while (len > 0) { |
| 540 | size_t tail = (len > chunksz) ? chunksz : len; |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 541 | WATCHDOG_RESET(); |
Sonic Zhang | 22cfddc | 2014-12-10 18:20:53 +0800 | [diff] [blame] | 542 | if (to > from) { |
| 543 | to -= tail; |
| 544 | from -= tail; |
| 545 | } |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 546 | memmove(to, from, tail); |
Sonic Zhang | 22cfddc | 2014-12-10 18:20:53 +0800 | [diff] [blame] | 547 | if (to < from) { |
| 548 | to += tail; |
| 549 | from += tail; |
| 550 | } |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 551 | len -= tail; |
| 552 | } |
| 553 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 554 | memmove(to, from, len); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 555 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ |
| 556 | } |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 557 | #endif /* !USE_HOSTCC */ |
| 558 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 559 | void genimg_print_size(uint32_t size) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 560 | { |
| 561 | #ifndef USE_HOSTCC |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 562 | printf("%d Bytes = ", size); |
| 563 | print_size(size, "\n"); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 564 | #else |
xypron.glpk@gmx.de | cec85d4 | 2017-01-04 14:04:44 +0100 | [diff] [blame] | 565 | printf("%d Bytes = %.2f KiB = %.2f MiB\n", |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 566 | size, (double)size / 1.024e3, |
| 567 | (double)size / 1.048576e6); |
| 568 | #endif |
| 569 | } |
| 570 | |
Simon Glass | 859e92b | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 571 | #if IMAGE_ENABLE_TIMESTAMP |
| 572 | void genimg_print_time(time_t timestamp) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 573 | { |
| 574 | #ifndef USE_HOSTCC |
| 575 | struct rtc_time tm; |
| 576 | |
Simon Glass | 9f9276c | 2015-04-20 12:37:18 -0600 | [diff] [blame] | 577 | rtc_to_tm(timestamp, &tm); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 578 | printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n", |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 579 | tm.tm_year, tm.tm_mon, tm.tm_mday, |
| 580 | tm.tm_hour, tm.tm_min, tm.tm_sec); |
| 581 | #else |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 582 | printf("%s", ctime(×tamp)); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 583 | #endif |
| 584 | } |
Simon Glass | 859e92b | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 585 | #endif |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 586 | |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 587 | const table_entry_t *get_table_entry(const table_entry_t *table, int id) |
| 588 | { |
| 589 | for (; table->id >= 0; ++table) { |
| 590 | if (table->id == id) |
| 591 | return table; |
| 592 | } |
| 593 | return NULL; |
| 594 | } |
| 595 | |
Simon Glass | 1426220 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 596 | static const char *unknown_msg(enum ih_category category) |
| 597 | { |
Simon Glass | ae3de0d | 2016-10-31 10:21:09 -0600 | [diff] [blame] | 598 | static const char unknown_str[] = "Unknown "; |
Simon Glass | 1426220 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 599 | static char msg[30]; |
| 600 | |
Simon Glass | ae3de0d | 2016-10-31 10:21:09 -0600 | [diff] [blame] | 601 | strcpy(msg, unknown_str); |
| 602 | strncat(msg, table_info[category].desc, |
| 603 | sizeof(msg) - sizeof(unknown_str)); |
Simon Glass | 1426220 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 604 | |
| 605 | return msg; |
| 606 | } |
| 607 | |
| 608 | /** |
| 609 | * get_cat_table_entry_name - translate entry id to long name |
| 610 | * @category: category to look up (enum ih_category) |
| 611 | * @id: entry id to be translated |
| 612 | * |
| 613 | * This will scan the translation table trying to find the entry that matches |
| 614 | * the given id. |
| 615 | * |
| 616 | * @retur long entry name if translation succeeds; error string on failure |
| 617 | */ |
| 618 | const char *genimg_get_cat_name(enum ih_category category, uint id) |
| 619 | { |
| 620 | const table_entry_t *entry; |
| 621 | |
| 622 | entry = get_table_entry(table_info[category].table, id); |
| 623 | if (!entry) |
| 624 | return unknown_msg(category); |
| 625 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 626 | return entry->lname; |
| 627 | #else |
| 628 | return entry->lname + gd->reloc_off; |
| 629 | #endif |
| 630 | } |
| 631 | |
| 632 | /** |
| 633 | * get_cat_table_entry_short_name - translate entry id to short name |
| 634 | * @category: category to look up (enum ih_category) |
| 635 | * @id: entry id to be translated |
| 636 | * |
| 637 | * This will scan the translation table trying to find the entry that matches |
| 638 | * the given id. |
| 639 | * |
| 640 | * @retur short entry name if translation succeeds; error string on failure |
| 641 | */ |
| 642 | const char *genimg_get_cat_short_name(enum ih_category category, uint id) |
| 643 | { |
| 644 | const table_entry_t *entry; |
| 645 | |
| 646 | entry = get_table_entry(table_info[category].table, id); |
| 647 | if (!entry) |
| 648 | return unknown_msg(category); |
| 649 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 650 | return entry->sname; |
| 651 | #else |
| 652 | return entry->sname + gd->reloc_off; |
| 653 | #endif |
| 654 | } |
| 655 | |
| 656 | int genimg_get_cat_count(enum ih_category category) |
| 657 | { |
| 658 | return table_info[category].count; |
| 659 | } |
| 660 | |
| 661 | const char *genimg_get_cat_desc(enum ih_category category) |
| 662 | { |
| 663 | return table_info[category].desc; |
| 664 | } |
| 665 | |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 666 | /** |
| 667 | * get_table_entry_name - translate entry id to long name |
| 668 | * @table: pointer to a translation table for entries of a specific type |
| 669 | * @msg: message to be returned when translation fails |
| 670 | * @id: entry id to be translated |
| 671 | * |
| 672 | * get_table_entry_name() will go over translation table trying to find |
| 673 | * entry that matches given id. If matching entry is found, its long |
| 674 | * name is returned to the caller. |
| 675 | * |
| 676 | * returns: |
| 677 | * long entry name if translation succeeds |
| 678 | * msg otherwise |
| 679 | */ |
Mike Frysinger | 7edb186 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 680 | char *get_table_entry_name(const table_entry_t *table, char *msg, int id) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 681 | { |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 682 | table = get_table_entry(table, id); |
| 683 | if (!table) |
| 684 | return msg; |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 685 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 686 | return table->lname; |
Scott Wood | e3d1ac7 | 2009-04-02 16:15:10 -0500 | [diff] [blame] | 687 | #else |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 688 | return table->lname + gd->reloc_off; |
Scott Wood | e3d1ac7 | 2009-04-02 16:15:10 -0500 | [diff] [blame] | 689 | #endif |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 690 | } |
| 691 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 692 | const char *genimg_get_os_name(uint8_t os) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 693 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 694 | return (get_table_entry_name(uimage_os, "Unknown OS", os)); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 695 | } |
| 696 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 697 | const char *genimg_get_arch_name(uint8_t arch) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 698 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 699 | return (get_table_entry_name(uimage_arch, "Unknown Architecture", |
| 700 | arch)); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 701 | } |
| 702 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 703 | const char *genimg_get_type_name(uint8_t type) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 704 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 705 | return (get_table_entry_name(uimage_type, "Unknown Image", type)); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 706 | } |
| 707 | |
Simon Glass | cef2e51 | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 708 | static const char *genimg_get_short_name(const table_entry_t *table, int val) |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 709 | { |
Simon Glass | cef2e51 | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 710 | table = get_table_entry(table, val); |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 711 | if (!table) |
| 712 | return "unknown"; |
| 713 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 714 | return table->sname; |
| 715 | #else |
| 716 | return table->sname + gd->reloc_off; |
| 717 | #endif |
| 718 | } |
| 719 | |
Simon Glass | cef2e51 | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 720 | const char *genimg_get_type_short_name(uint8_t type) |
| 721 | { |
| 722 | return genimg_get_short_name(uimage_type, type); |
| 723 | } |
| 724 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 725 | const char *genimg_get_comp_name(uint8_t comp) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 726 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 727 | return (get_table_entry_name(uimage_comp, "Unknown Compression", |
| 728 | comp)); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 729 | } |
| 730 | |
Simon Glass | cef2e51 | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 731 | const char *genimg_get_comp_short_name(uint8_t comp) |
| 732 | { |
| 733 | return genimg_get_short_name(uimage_comp, comp); |
| 734 | } |
| 735 | |
| 736 | const char *genimg_get_os_short_name(uint8_t os) |
| 737 | { |
| 738 | return genimg_get_short_name(uimage_os, os); |
| 739 | } |
| 740 | |
| 741 | const char *genimg_get_arch_short_name(uint8_t arch) |
| 742 | { |
| 743 | return genimg_get_short_name(uimage_arch, arch); |
| 744 | } |
| 745 | |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 746 | /** |
| 747 | * get_table_entry_id - translate short entry name to id |
| 748 | * @table: pointer to a translation table for entries of a specific type |
| 749 | * @table_name: to be used in case of error |
| 750 | * @name: entry short name to be translated |
| 751 | * |
| 752 | * get_table_entry_id() will go over translation table trying to find |
| 753 | * entry that matches given short name. If matching entry is found, |
| 754 | * its id returned to the caller. |
| 755 | * |
| 756 | * returns: |
| 757 | * entry id if translation succeeds |
| 758 | * -1 otherwise |
| 759 | */ |
Mike Frysinger | 7edb186 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 760 | int get_table_entry_id(const table_entry_t *table, |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 761 | const char *table_name, const char *name) |
| 762 | { |
Mike Frysinger | 7edb186 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 763 | const table_entry_t *t; |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 764 | |
| 765 | for (t = table; t->id >= 0; ++t) { |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 766 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 767 | if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0) |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 768 | #else |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 769 | if (t->sname && strcasecmp(t->sname, name) == 0) |
Peter Tyser | 521af04 | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 770 | #endif |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 771 | return (t->id); |
| 772 | } |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 773 | debug("Invalid %s Type: %s\n", table_name, name); |
Simon Glass | 5b9d44d | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 774 | |
| 775 | return -1; |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 776 | } |
| 777 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 778 | int genimg_get_os_id(const char *name) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 779 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 780 | return (get_table_entry_id(uimage_os, "OS", name)); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 781 | } |
| 782 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 783 | int genimg_get_arch_id(const char *name) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 784 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 785 | return (get_table_entry_id(uimage_arch, "CPU", name)); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 786 | } |
| 787 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 788 | int genimg_get_type_id(const char *name) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 789 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 790 | return (get_table_entry_id(uimage_type, "Image", name)); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 791 | } |
| 792 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 793 | int genimg_get_comp_id(const char *name) |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 794 | { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 795 | return (get_table_entry_id(uimage_comp, "Compression", name)); |
Marian Balakowicz | 570abb0 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | #ifndef USE_HOSTCC |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 799 | /** |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 800 | * genimg_get_kernel_addr_fit - get the real kernel address and return 2 |
| 801 | * FIT strings |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 802 | * @img_addr: a string might contain real image address |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 803 | * @fit_uname_config: double pointer to a char, will hold pointer to a |
| 804 | * configuration unit name |
| 805 | * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage |
| 806 | * name |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 807 | * |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 808 | * genimg_get_kernel_addr_fit get the real kernel start address from a string |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 809 | * which is normally the first argv of bootm/bootz |
| 810 | * |
| 811 | * returns: |
| 812 | * kernel start address |
| 813 | */ |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 814 | ulong genimg_get_kernel_addr_fit(char * const img_addr, |
| 815 | const char **fit_uname_config, |
| 816 | const char **fit_uname_kernel) |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 817 | { |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 818 | ulong kernel_addr; |
| 819 | |
| 820 | /* find out kernel image address */ |
| 821 | if (!img_addr) { |
| 822 | kernel_addr = load_addr; |
| 823 | debug("* kernel: default image load address = 0x%08lx\n", |
| 824 | load_addr); |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 825 | #if CONFIG_IS_ENABLED(FIT) |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 826 | } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr, |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 827 | fit_uname_config)) { |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 828 | debug("* kernel: config '%s' from image at 0x%08lx\n", |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 829 | *fit_uname_config, kernel_addr); |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 830 | } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr, |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 831 | fit_uname_kernel)) { |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 832 | debug("* kernel: subimage '%s' from image at 0x%08lx\n", |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 833 | *fit_uname_kernel, kernel_addr); |
Bryan Wu | 0f64140 | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 834 | #endif |
| 835 | } else { |
| 836 | kernel_addr = simple_strtoul(img_addr, NULL, 16); |
| 837 | debug("* kernel: cmdline image address = 0x%08lx\n", |
| 838 | kernel_addr); |
| 839 | } |
| 840 | |
| 841 | return kernel_addr; |
| 842 | } |
| 843 | |
| 844 | /** |
Bryan Wu | 6c454fe | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 845 | * genimg_get_kernel_addr() is the simple version of |
| 846 | * genimg_get_kernel_addr_fit(). It ignores those return FIT strings |
| 847 | */ |
| 848 | ulong genimg_get_kernel_addr(char * const img_addr) |
| 849 | { |
| 850 | const char *fit_uname_config = NULL; |
| 851 | const char *fit_uname_kernel = NULL; |
| 852 | |
| 853 | return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config, |
| 854 | &fit_uname_kernel); |
| 855 | } |
| 856 | |
| 857 | /** |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 858 | * genimg_get_format - get image format type |
| 859 | * @img_addr: image start address |
| 860 | * |
| 861 | * genimg_get_format() checks whether provided address points to a valid |
| 862 | * legacy or FIT image. |
| 863 | * |
| 864 | * New uImage format and FDT blob are based on a libfdt. FDT blob |
| 865 | * may be passed directly or embedded in a FIT image. In both situations |
| 866 | * genimg_get_format() must be able to dectect libfdt header. |
| 867 | * |
| 868 | * returns: |
| 869 | * image format type or IMAGE_FORMAT_INVALID if no image is present |
| 870 | */ |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 871 | int genimg_get_format(const void *img_addr) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 872 | { |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 873 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
Wolfgang Denk | 3a2003f | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 874 | const image_header_t *hdr; |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 875 | |
Wolfgang Denk | 3a2003f | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 876 | hdr = (const image_header_t *)img_addr; |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 877 | if (image_check_magic(hdr)) |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 878 | return IMAGE_FORMAT_LEGACY; |
| 879 | #endif |
Simon Glass | aa34fbc | 2016-02-22 22:55:45 -0700 | [diff] [blame] | 880 | #if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 881 | if (fdt_check_header(img_addr) == 0) |
| 882 | return IMAGE_FORMAT_FIT; |
Sebastian Siewior | 9ace3fc | 2014-05-05 15:08:09 -0500 | [diff] [blame] | 883 | #endif |
| 884 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 885 | if (android_image_check_header(img_addr) == 0) |
| 886 | return IMAGE_FORMAT_ANDROID; |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 887 | #endif |
| 888 | |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 889 | return IMAGE_FORMAT_INVALID; |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 890 | } |
| 891 | |
| 892 | /** |
| 893 | * genimg_get_image - get image from special storage (if necessary) |
| 894 | * @img_addr: image start address |
| 895 | * |
Guilherme Maciel Ferreira | 067d156 | 2015-01-15 02:48:06 -0200 | [diff] [blame] | 896 | * genimg_get_image() checks if provided image start address is located |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 897 | * in a dataflash storage. If so, image is moved to a system RAM memory. |
| 898 | * |
| 899 | * returns: |
| 900 | * image start address after possible relocation from special storage |
| 901 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 902 | ulong genimg_get_image(ulong img_addr) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 903 | { |
| 904 | ulong ram_addr = img_addr; |
| 905 | |
| 906 | #ifdef CONFIG_HAS_DATAFLASH |
| 907 | ulong h_size, d_size; |
| 908 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 909 | if (addr_dataflash(img_addr)) { |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 910 | void *buf; |
| 911 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 912 | /* ger RAM address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 913 | ram_addr = CONFIG_SYS_LOAD_ADDR; |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 914 | |
| 915 | /* get header size */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 916 | h_size = image_get_header_size(); |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 917 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 918 | if (sizeof(struct fdt_header) > h_size) |
| 919 | h_size = sizeof(struct fdt_header); |
| 920 | #endif |
| 921 | |
| 922 | /* read in header */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 923 | debug(" Reading image header from dataflash address " |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 924 | "%08lx to RAM address %08lx\n", img_addr, ram_addr); |
| 925 | |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 926 | buf = map_sysmem(ram_addr, 0); |
| 927 | read_dataflash(img_addr, h_size, buf); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 928 | |
| 929 | /* get data size */ |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 930 | switch (genimg_get_format(buf)) { |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 931 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 932 | case IMAGE_FORMAT_LEGACY: |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 933 | d_size = image_get_data_size(buf); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 934 | debug(" Legacy format image found at 0x%08lx, " |
| 935 | "size 0x%08lx\n", |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 936 | ram_addr, d_size); |
| 937 | break; |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 938 | #endif |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 939 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 940 | case IMAGE_FORMAT_FIT: |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 941 | d_size = fit_get_size(buf) - h_size; |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 942 | debug(" FIT/FDT format image found at 0x%08lx, " |
| 943 | "size 0x%08lx\n", |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 944 | ram_addr, d_size); |
| 945 | break; |
| 946 | #endif |
| 947 | default: |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 948 | printf(" No valid image found at 0x%08lx\n", |
| 949 | img_addr); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 950 | return ram_addr; |
| 951 | } |
| 952 | |
| 953 | /* read in image data */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 954 | debug(" Reading image remaining data from dataflash address " |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 955 | "%08lx to RAM address %08lx\n", img_addr + h_size, |
| 956 | ram_addr + h_size); |
| 957 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 958 | read_dataflash(img_addr + h_size, d_size, |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 959 | (char *)(buf + h_size)); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 960 | |
| 961 | } |
| 962 | #endif /* CONFIG_HAS_DATAFLASH */ |
| 963 | |
| 964 | return ram_addr; |
| 965 | } |
| 966 | |
| 967 | /** |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 968 | * fit_has_config - check if there is a valid FIT configuration |
| 969 | * @images: pointer to the bootm command headers structure |
| 970 | * |
| 971 | * fit_has_config() checks if there is a FIT configuration in use |
| 972 | * (if FTI support is present). |
| 973 | * |
| 974 | * returns: |
| 975 | * 0, no FIT support or no configuration found |
| 976 | * 1, configuration found |
| 977 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 978 | int genimg_has_config(bootm_headers_t *images) |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 979 | { |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 980 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 981 | if (images->fit_uname_cfg) |
| 982 | return 1; |
| 983 | #endif |
| 984 | return 0; |
| 985 | } |
| 986 | |
| 987 | /** |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 988 | * boot_get_ramdisk - main ramdisk handling routine |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 989 | * @argc: command argument count |
| 990 | * @argv: command argument list |
Marian Balakowicz | 8a5ea3e | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 991 | * @images: pointer to the bootm images structure |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 992 | * @arch: expected ramdisk architecture |
| 993 | * @rd_start: pointer to a ulong variable, will hold ramdisk start address |
| 994 | * @rd_end: pointer to a ulong variable, will hold ramdisk end |
| 995 | * |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 996 | * boot_get_ramdisk() is responsible for finding a valid ramdisk image. |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 997 | * Curently supported are the following ramdisk sources: |
| 998 | * - multicomponent kernel/ramdisk image, |
| 999 | * - commandline provided address of decicated ramdisk image. |
| 1000 | * |
| 1001 | * returns: |
Marian Balakowicz | d985c84 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1002 | * 0, if ramdisk image was found and valid, or skiped |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1003 | * rd_start and rd_end are set to ramdisk start/end addresses if |
| 1004 | * ramdisk image is found and valid |
Marian Balakowicz | d985c84 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1005 | * |
Kumar Gala | ea86b9e | 2008-08-29 19:08:29 -0500 | [diff] [blame] | 1006 | * 1, if ramdisk image is found but corrupted, or invalid |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1007 | * rd_start and rd_end are set to 0 if no ramdisk exists |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1008 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1009 | int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, |
Marian Balakowicz | d985c84 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1010 | uint8_t arch, ulong *rd_start, ulong *rd_end) |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1011 | { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1012 | ulong rd_addr, rd_load; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1013 | ulong rd_data, rd_len; |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1014 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
Wolfgang Denk | 3a2003f | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 1015 | const image_header_t *rd_hdr; |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1016 | #endif |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 1017 | void *buf; |
Marek Vasut | 57d40ab | 2012-03-30 23:19:10 +0200 | [diff] [blame] | 1018 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
Marek Vasut | 017e1f3 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 1019 | char *end; |
Marek Vasut | 57d40ab | 2012-03-30 23:19:10 +0200 | [diff] [blame] | 1020 | #endif |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1021 | #if IMAGE_ENABLE_FIT |
Simon Glass | f320a4d | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 1022 | const char *fit_uname_config = images->fit_uname_cfg; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1023 | const char *fit_uname_ramdisk = NULL; |
| 1024 | ulong default_addr; |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1025 | int rd_noffset; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1026 | #endif |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1027 | const char *select = NULL; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1028 | |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1029 | *rd_start = 0; |
| 1030 | *rd_end = 0; |
| 1031 | |
Tom Rini | 1fec3c5 | 2015-08-27 15:42:41 -0400 | [diff] [blame] | 1032 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
| 1033 | /* |
| 1034 | * Look for an Android boot image. |
| 1035 | */ |
| 1036 | buf = map_sysmem(images->os.start, 0); |
Tom Rini | c139b5f | 2015-10-27 19:04:40 -0400 | [diff] [blame] | 1037 | if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) |
Tom Rini | 1fec3c5 | 2015-08-27 15:42:41 -0400 | [diff] [blame] | 1038 | select = argv[0]; |
| 1039 | #endif |
| 1040 | |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1041 | if (argc >= 2) |
| 1042 | select = argv[1]; |
Rob Herring | 2dd4632 | 2015-07-17 10:57:17 -0500 | [diff] [blame] | 1043 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1044 | /* |
| 1045 | * Look for a '-' which indicates to ignore the |
| 1046 | * ramdisk argument |
| 1047 | */ |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1048 | if (select && strcmp(select, "-") == 0) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1049 | debug("## Skipping init Ramdisk\n"); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1050 | rd_len = rd_data = 0; |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1051 | } else if (select || genimg_has_config(images)) { |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1052 | #if IMAGE_ENABLE_FIT |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1053 | if (select) { |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1054 | /* |
| 1055 | * If the init ramdisk comes from the FIT image and |
| 1056 | * the FIT image address is omitted in the command |
| 1057 | * line argument, try to use os FIT image address or |
| 1058 | * default load address. |
| 1059 | */ |
| 1060 | if (images->fit_uname_os) |
| 1061 | default_addr = (ulong)images->fit_hdr_os; |
| 1062 | else |
| 1063 | default_addr = load_addr; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1064 | |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1065 | if (fit_parse_conf(select, default_addr, |
| 1066 | &rd_addr, &fit_uname_config)) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1067 | debug("* ramdisk: config '%s' from image at " |
| 1068 | "0x%08lx\n", |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1069 | fit_uname_config, rd_addr); |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1070 | } else if (fit_parse_subimage(select, default_addr, |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1071 | &rd_addr, &fit_uname_ramdisk)) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1072 | debug("* ramdisk: subimage '%s' from image at " |
| 1073 | "0x%08lx\n", |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1074 | fit_uname_ramdisk, rd_addr); |
| 1075 | } else |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1076 | #endif |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1077 | { |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1078 | rd_addr = simple_strtoul(select, NULL, 16); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1079 | debug("* ramdisk: cmdline image address = " |
| 1080 | "0x%08lx\n", |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1081 | rd_addr); |
| 1082 | } |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1083 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1084 | } else { |
| 1085 | /* use FIT configuration provided in first bootm |
Simon Glass | a51ec63 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1086 | * command argument. If the property is not defined, |
| 1087 | * quit silently. |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1088 | */ |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 1089 | rd_addr = map_to_sysmem(images->fit_hdr_os); |
Simon Glass | a51ec63 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1090 | rd_noffset = fit_get_node_from_config(images, |
| 1091 | FIT_RAMDISK_PROP, rd_addr); |
Paul Burton | bd86ef1 | 2016-09-20 18:17:12 +0100 | [diff] [blame] | 1092 | if (rd_noffset == -ENOENT) |
Peter Tyser | 41266c9 | 2008-08-05 10:51:57 -0500 | [diff] [blame] | 1093 | return 0; |
Simon Glass | a51ec63 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1094 | else if (rd_noffset < 0) |
| 1095 | return 1; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1096 | } |
Marian Balakowicz | f773bea | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 1097 | #endif |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1098 | |
| 1099 | /* copy from dataflash if needed */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1100 | rd_addr = genimg_get_image(rd_addr); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1101 | |
| 1102 | /* |
| 1103 | * Check if there is an initrd image at the |
| 1104 | * address provided in the second bootm argument |
| 1105 | * check image type, for FIT images get FIT node. |
| 1106 | */ |
Simon Glass | 35e7b0f | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 1107 | buf = map_sysmem(rd_addr, 0); |
| 1108 | switch (genimg_get_format(buf)) { |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1109 | #if defined(CONFIG_IMAGE_FORMAT_LEGACY) |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1110 | case IMAGE_FORMAT_LEGACY: |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1111 | printf("## Loading init Ramdisk from Legacy " |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1112 | "Image at %08lx ...\n", rd_addr); |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1113 | |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1114 | bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1115 | rd_hdr = image_get_ramdisk(rd_addr, arch, |
Marian Balakowicz | d985c84 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 1116 | images->verify); |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1117 | |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1118 | if (rd_hdr == NULL) |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 1119 | return 1; |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 1120 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1121 | rd_data = image_get_data(rd_hdr); |
| 1122 | rd_len = image_get_data_size(rd_hdr); |
| 1123 | rd_load = image_get_load(rd_hdr); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1124 | break; |
Heiko Schocher | 21d29f7 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 1125 | #endif |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1126 | #if IMAGE_ENABLE_FIT |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1127 | case IMAGE_FORMAT_FIT: |
Simon Glass | 126cc86 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 1128 | rd_noffset = fit_image_load(images, |
Simon Glass | a51ec63 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1129 | rd_addr, &fit_uname_ramdisk, |
Simon Glass | f320a4d | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 1130 | &fit_uname_config, arch, |
Simon Glass | a51ec63 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1131 | IH_TYPE_RAMDISK, |
| 1132 | BOOTSTAGE_ID_FIT_RD_START, |
Simon Glass | fe20a81 | 2014-08-22 14:26:43 -0600 | [diff] [blame] | 1133 | FIT_LOAD_OPTIONAL_NON_ZERO, |
| 1134 | &rd_data, &rd_len); |
Simon Glass | a51ec63 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1135 | if (rd_noffset < 0) |
Michal Simek | c78fce6 | 2008-07-11 10:43:13 +0200 | [diff] [blame] | 1136 | return 1; |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1137 | |
Simon Glass | a51ec63 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 1138 | images->fit_hdr_rd = map_sysmem(rd_addr, 0); |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1139 | images->fit_uname_rd = fit_uname_ramdisk; |
Marian Balakowicz | 3dfe110 | 2008-03-12 10:32:59 +0100 | [diff] [blame] | 1140 | images->fit_noffset_rd = rd_noffset; |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1141 | break; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1142 | #endif |
Rob Herring | 2dd4632 | 2015-07-17 10:57:17 -0500 | [diff] [blame] | 1143 | #ifdef CONFIG_ANDROID_BOOT_IMAGE |
| 1144 | case IMAGE_FORMAT_ANDROID: |
| 1145 | android_image_get_ramdisk((void *)images->os.start, |
| 1146 | &rd_data, &rd_len); |
| 1147 | break; |
| 1148 | #endif |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1149 | default: |
Marek Vasut | 017e1f3 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 1150 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
Simon Glass | 983c72f | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 1151 | end = NULL; |
| 1152 | if (select) |
| 1153 | end = strchr(select, ':'); |
| 1154 | if (end) { |
Marek Vasut | 017e1f3 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 1155 | rd_len = simple_strtoul(++end, NULL, 16); |
| 1156 | rd_data = rd_addr; |
| 1157 | } else |
| 1158 | #endif |
| 1159 | { |
| 1160 | puts("Wrong Ramdisk Image Format\n"); |
| 1161 | rd_data = rd_len = rd_load = 0; |
| 1162 | return 1; |
| 1163 | } |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1164 | } |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1165 | } else if (images->legacy_hdr_valid && |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1166 | image_check_type(&images->legacy_hdr_os_copy, |
| 1167 | IH_TYPE_MULTI)) { |
| 1168 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1169 | /* |
| 1170 | * Now check if we have a legacy mult-component image, |
| 1171 | * get second entry data start address and len. |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1172 | */ |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1173 | bootstage_mark(BOOTSTAGE_ID_RAMDISK); |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1174 | printf("## Loading init Ramdisk from multi component " |
Marian Balakowicz | c877964 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 1175 | "Legacy Image at %08lx ...\n", |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1176 | (ulong)images->legacy_hdr_os); |
| 1177 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1178 | image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len); |
Rob Herring | 2dd4632 | 2015-07-17 10:57:17 -0500 | [diff] [blame] | 1179 | } else { |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1180 | /* |
| 1181 | * no initrd image |
| 1182 | */ |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1183 | bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK); |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1184 | rd_len = rd_data = 0; |
| 1185 | } |
| 1186 | |
| 1187 | if (!rd_data) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1188 | debug("## No init Ramdisk\n"); |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1189 | } else { |
| 1190 | *rd_start = rd_data; |
| 1191 | *rd_end = rd_data + rd_len; |
| 1192 | } |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1193 | debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n", |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1194 | *rd_start, *rd_end); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 1195 | |
| 1196 | return 0; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 1197 | } |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1198 | |
John Rigby | fca43cc | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1199 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1200 | /** |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1201 | * boot_ramdisk_high - relocate init ramdisk |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1202 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1203 | * @rd_data: ramdisk data start address |
| 1204 | * @rd_len: ramdisk data length |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1205 | * @initrd_start: pointer to a ulong variable, will hold final init ramdisk |
| 1206 | * start address (after possible relocation) |
| 1207 | * @initrd_end: pointer to a ulong variable, will hold final init ramdisk |
| 1208 | * end address (after possible relocation) |
| 1209 | * |
Robert P. J. Day | 1bce2ae | 2013-09-16 07:15:45 -0400 | [diff] [blame] | 1210 | * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1211 | * variable and if requested ramdisk data is moved to a specified location. |
| 1212 | * |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1213 | * Initrd_start and initrd_end are set to final (after relocation) ramdisk |
| 1214 | * start/end addresses if ramdisk image start and len were provided, |
| 1215 | * otherwise set initrd_start and initrd_end set to zeros. |
| 1216 | * |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1217 | * returns: |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1218 | * 0 - success |
| 1219 | * -1 - failure |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1220 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1221 | int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len, |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1222 | ulong *initrd_start, ulong *initrd_end) |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1223 | { |
| 1224 | char *s; |
| 1225 | ulong initrd_high; |
| 1226 | int initrd_copy_to_ram = 1; |
| 1227 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 1228 | s = env_get("initrd_high"); |
| 1229 | if (s) { |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1230 | /* a value of "no" or a similar string will act like 0, |
| 1231 | * turning the "load high" feature off. This is intentional. |
| 1232 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1233 | initrd_high = simple_strtoul(s, NULL, 16); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1234 | if (initrd_high == ~0) |
| 1235 | initrd_copy_to_ram = 0; |
| 1236 | } else { |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1237 | initrd_high = env_get_bootm_mapsize() + env_get_bootm_low(); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1238 | } |
| 1239 | |
Marian Balakowicz | 95d449a | 2008-05-13 15:53:29 +0200 | [diff] [blame] | 1240 | |
| 1241 | #ifdef CONFIG_LOGBUFFER |
| 1242 | /* Prevent initrd from overwriting logbuffer */ |
| 1243 | lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE); |
| 1244 | #endif |
| 1245 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1246 | debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n", |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1247 | initrd_high, initrd_copy_to_ram); |
| 1248 | |
| 1249 | if (rd_data) { |
| 1250 | if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1251 | debug(" in-place initrd\n"); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1252 | *initrd_start = rd_data; |
| 1253 | *initrd_end = rd_data + rd_len; |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1254 | lmb_reserve(lmb, rd_data, rd_len); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1255 | } else { |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1256 | if (initrd_high) |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1257 | *initrd_start = (ulong)lmb_alloc_base(lmb, |
| 1258 | rd_len, 0x1000, initrd_high); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1259 | else |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1260 | *initrd_start = (ulong)lmb_alloc(lmb, rd_len, |
| 1261 | 0x1000); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1262 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1263 | if (*initrd_start == 0) { |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1264 | puts("ramdisk - allocation error\n"); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1265 | goto error; |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1266 | } |
Simon Glass | 770605e | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1267 | bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1268 | |
| 1269 | *initrd_end = *initrd_start + rd_len; |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1270 | printf(" Loading Ramdisk to %08lx, end %08lx ... ", |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1271 | *initrd_start, *initrd_end); |
| 1272 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1273 | memmove_wd((void *)*initrd_start, |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1274 | (void *)rd_data, rd_len, CHUNKSZ); |
| 1275 | |
Kumar Gala | 3b20011 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 1276 | #ifdef CONFIG_MP |
| 1277 | /* |
| 1278 | * Ensure the image is flushed to memory to handle |
| 1279 | * AMP boot scenarios in which we might not be |
| 1280 | * HW cache coherent |
| 1281 | */ |
| 1282 | flush_cache((unsigned long)*initrd_start, rd_len); |
| 1283 | #endif |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1284 | puts("OK\n"); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1285 | } |
| 1286 | } else { |
| 1287 | *initrd_start = 0; |
| 1288 | *initrd_end = 0; |
| 1289 | } |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1290 | debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n", |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1291 | *initrd_start, *initrd_end); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1292 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1293 | return 0; |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1294 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1295 | error: |
| 1296 | return -1; |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1297 | } |
John Rigby | fca43cc | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1298 | #endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */ |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1299 | |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 1300 | int boot_get_setup(bootm_headers_t *images, uint8_t arch, |
| 1301 | ulong *setup_start, ulong *setup_len) |
| 1302 | { |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1303 | #if IMAGE_ENABLE_FIT |
Simon Glass | 90268b8 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 1304 | return boot_get_setup_fit(images, arch, setup_start, setup_len); |
| 1305 | #else |
| 1306 | return -ENOENT; |
| 1307 | #endif |
| 1308 | } |
| 1309 | |
Simon Glass | 73223f0 | 2016-02-22 22:55:43 -0700 | [diff] [blame] | 1310 | #if IMAGE_ENABLE_FIT |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1311 | #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_XILINX) |
| 1312 | int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images, |
| 1313 | uint8_t arch, const ulong *ld_start, ulong * const ld_len) |
| 1314 | { |
| 1315 | ulong tmp_img_addr, img_data, img_len; |
| 1316 | void *buf; |
| 1317 | int conf_noffset; |
| 1318 | int fit_img_result; |
Simon Glass | b02e404 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1319 | const char *uname, *name; |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1320 | int err; |
| 1321 | int devnum = 0; /* TODO support multi fpga platforms */ |
| 1322 | const fpga_desc * const desc = fpga_get_desc(devnum); |
| 1323 | xilinx_desc *desc_xilinx = desc->devdesc; |
| 1324 | |
| 1325 | /* Check to see if the images struct has a FIT configuration */ |
| 1326 | if (!genimg_has_config(images)) { |
| 1327 | debug("## FIT configuration was not specified\n"); |
| 1328 | return 0; |
| 1329 | } |
| 1330 | |
| 1331 | /* |
| 1332 | * Obtain the os FIT header from the images struct |
| 1333 | * copy from dataflash if needed |
| 1334 | */ |
| 1335 | tmp_img_addr = map_to_sysmem(images->fit_hdr_os); |
| 1336 | tmp_img_addr = genimg_get_image(tmp_img_addr); |
| 1337 | buf = map_sysmem(tmp_img_addr, 0); |
| 1338 | /* |
| 1339 | * Check image type. For FIT images get FIT node |
| 1340 | * and attempt to locate a generic binary. |
| 1341 | */ |
| 1342 | switch (genimg_get_format(buf)) { |
| 1343 | case IMAGE_FORMAT_FIT: |
| 1344 | conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg); |
| 1345 | |
Simon Glass | b02e404 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1346 | uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0, |
| 1347 | NULL); |
| 1348 | if (!uname) { |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1349 | debug("## FPGA image is not specified\n"); |
| 1350 | return 0; |
| 1351 | } |
| 1352 | fit_img_result = fit_image_load(images, |
| 1353 | tmp_img_addr, |
| 1354 | (const char **)&uname, |
| 1355 | &(images->fit_uname_cfg), |
| 1356 | arch, |
| 1357 | IH_TYPE_FPGA, |
| 1358 | BOOTSTAGE_ID_FPGA_INIT, |
| 1359 | FIT_LOAD_OPTIONAL_NON_ZERO, |
| 1360 | &img_data, &img_len); |
| 1361 | |
| 1362 | debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n", |
| 1363 | uname, img_data, img_len); |
| 1364 | |
| 1365 | if (fit_img_result < 0) { |
| 1366 | /* Something went wrong! */ |
| 1367 | return fit_img_result; |
| 1368 | } |
| 1369 | |
| 1370 | if (img_len >= desc_xilinx->size) { |
| 1371 | name = "full"; |
| 1372 | err = fpga_loadbitstream(devnum, (char *)img_data, |
| 1373 | img_len, BIT_FULL); |
| 1374 | if (err) |
| 1375 | err = fpga_load(devnum, (const void *)img_data, |
| 1376 | img_len, BIT_FULL); |
| 1377 | } else { |
| 1378 | name = "partial"; |
| 1379 | err = fpga_loadbitstream(devnum, (char *)img_data, |
| 1380 | img_len, BIT_PARTIAL); |
| 1381 | if (err) |
| 1382 | err = fpga_load(devnum, (const void *)img_data, |
| 1383 | img_len, BIT_PARTIAL); |
| 1384 | } |
| 1385 | |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1386 | if (err) |
Michal Simek | 611a942 | 2016-12-16 10:35:40 +0100 | [diff] [blame] | 1387 | return err; |
| 1388 | |
| 1389 | printf(" Programming %s bitstream... OK\n", name); |
Michal Simek | 62afc60 | 2016-05-17 14:03:50 +0200 | [diff] [blame] | 1390 | break; |
| 1391 | default: |
| 1392 | printf("The given image format is not supported (corrupt?)\n"); |
| 1393 | return 1; |
| 1394 | } |
| 1395 | |
| 1396 | return 0; |
| 1397 | } |
| 1398 | #endif |
| 1399 | |
Andrew F. Davis | d7be509 | 2016-11-29 16:33:20 -0600 | [diff] [blame] | 1400 | static void fit_loadable_process(uint8_t img_type, |
| 1401 | ulong img_data, |
| 1402 | ulong img_len) |
| 1403 | { |
| 1404 | int i; |
| 1405 | const unsigned int count = |
| 1406 | ll_entry_count(struct fit_loadable_tbl, fit_loadable); |
| 1407 | struct fit_loadable_tbl *fit_loadable_handler = |
| 1408 | ll_entry_start(struct fit_loadable_tbl, fit_loadable); |
| 1409 | /* For each loadable handler */ |
| 1410 | for (i = 0; i < count; i++, fit_loadable_handler++) |
| 1411 | /* matching this type */ |
| 1412 | if (fit_loadable_handler->type == img_type) |
| 1413 | /* call that handler with this image data */ |
| 1414 | fit_loadable_handler->handler(img_data, img_len); |
| 1415 | } |
| 1416 | |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1417 | int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images, |
| 1418 | uint8_t arch, const ulong *ld_start, ulong * const ld_len) |
| 1419 | { |
| 1420 | /* |
| 1421 | * These variables are used to hold the current image location |
| 1422 | * in system memory. |
| 1423 | */ |
| 1424 | ulong tmp_img_addr; |
| 1425 | /* |
| 1426 | * These two variables are requirements for fit_image_load, but |
| 1427 | * their values are not used |
| 1428 | */ |
| 1429 | ulong img_data, img_len; |
| 1430 | void *buf; |
| 1431 | int loadables_index; |
| 1432 | int conf_noffset; |
| 1433 | int fit_img_result; |
Simon Glass | b02e404 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1434 | const char *uname; |
Andrew F. Davis | d7be509 | 2016-11-29 16:33:20 -0600 | [diff] [blame] | 1435 | uint8_t img_type; |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1436 | |
| 1437 | /* Check to see if the images struct has a FIT configuration */ |
| 1438 | if (!genimg_has_config(images)) { |
| 1439 | debug("## FIT configuration was not specified\n"); |
| 1440 | return 0; |
| 1441 | } |
| 1442 | |
| 1443 | /* |
| 1444 | * Obtain the os FIT header from the images struct |
| 1445 | * copy from dataflash if needed |
| 1446 | */ |
| 1447 | tmp_img_addr = map_to_sysmem(images->fit_hdr_os); |
| 1448 | tmp_img_addr = genimg_get_image(tmp_img_addr); |
| 1449 | buf = map_sysmem(tmp_img_addr, 0); |
| 1450 | /* |
| 1451 | * Check image type. For FIT images get FIT node |
| 1452 | * and attempt to locate a generic binary. |
| 1453 | */ |
| 1454 | switch (genimg_get_format(buf)) { |
| 1455 | case IMAGE_FORMAT_FIT: |
| 1456 | conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg); |
| 1457 | |
| 1458 | for (loadables_index = 0; |
Simon Glass | b02e404 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1459 | uname = fdt_stringlist_get(buf, conf_noffset, |
| 1460 | FIT_LOADABLE_PROP, loadables_index, |
| 1461 | NULL), uname; |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1462 | loadables_index++) |
| 1463 | { |
| 1464 | fit_img_result = fit_image_load(images, |
| 1465 | tmp_img_addr, |
Simon Glass | b02e404 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 1466 | &uname, |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1467 | &(images->fit_uname_cfg), arch, |
| 1468 | IH_TYPE_LOADABLE, |
| 1469 | BOOTSTAGE_ID_FIT_LOADABLE_START, |
| 1470 | FIT_LOAD_OPTIONAL_NON_ZERO, |
| 1471 | &img_data, &img_len); |
| 1472 | if (fit_img_result < 0) { |
| 1473 | /* Something went wrong! */ |
| 1474 | return fit_img_result; |
| 1475 | } |
Andrew F. Davis | d7be509 | 2016-11-29 16:33:20 -0600 | [diff] [blame] | 1476 | |
| 1477 | fit_img_result = fit_image_get_node(buf, uname); |
| 1478 | if (fit_img_result < 0) { |
| 1479 | /* Something went wrong! */ |
| 1480 | return fit_img_result; |
| 1481 | } |
| 1482 | fit_img_result = fit_image_get_type(buf, |
| 1483 | fit_img_result, |
| 1484 | &img_type); |
| 1485 | if (fit_img_result < 0) { |
| 1486 | /* Something went wrong! */ |
| 1487 | return fit_img_result; |
| 1488 | } |
| 1489 | |
| 1490 | fit_loadable_process(img_type, img_data, img_len); |
Karl Apsite | 84a07db | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 1491 | } |
| 1492 | break; |
| 1493 | default: |
| 1494 | printf("The given image format is not supported (corrupt?)\n"); |
| 1495 | return 1; |
| 1496 | } |
| 1497 | |
| 1498 | return 0; |
| 1499 | } |
| 1500 | #endif |
| 1501 | |
John Rigby | fca43cc | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1502 | #ifdef CONFIG_SYS_BOOT_GET_CMDLINE |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1503 | /** |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1504 | * boot_get_cmdline - allocate and initialize kernel cmdline |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1505 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1506 | * @cmd_start: pointer to a ulong variable, will hold cmdline start |
| 1507 | * @cmd_end: pointer to a ulong variable, will hold cmdline end |
| 1508 | * |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1509 | * boot_get_cmdline() allocates space for kernel command line below |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1510 | * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environemnt |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1511 | * variable is present its contents is copied to allocated kernel |
| 1512 | * command line. |
| 1513 | * |
| 1514 | * returns: |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1515 | * 0 - success |
| 1516 | * -1 - failure |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1517 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1518 | int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end) |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1519 | { |
| 1520 | char *cmdline; |
| 1521 | char *s; |
| 1522 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1523 | cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf, |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1524 | env_get_bootm_mapsize() + env_get_bootm_low()); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1525 | |
| 1526 | if (cmdline == NULL) |
| 1527 | return -1; |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1528 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 1529 | s = env_get("bootargs"); |
| 1530 | if (!s) |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1531 | s = ""; |
| 1532 | |
| 1533 | strcpy(cmdline, s); |
| 1534 | |
| 1535 | *cmd_start = (ulong) & cmdline[0]; |
| 1536 | *cmd_end = *cmd_start + strlen(cmdline); |
| 1537 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1538 | debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end); |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1539 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1540 | return 0; |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1541 | } |
John Rigby | fca43cc | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1542 | #endif /* CONFIG_SYS_BOOT_GET_CMDLINE */ |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1543 | |
John Rigby | fca43cc | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1544 | #ifdef CONFIG_SYS_BOOT_GET_KBD |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1545 | /** |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1546 | * boot_get_kbd - allocate and initialize kernel copy of board info |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1547 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1548 | * @kbd: double pointer to board info data |
| 1549 | * |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1550 | * boot_get_kbd() allocates space for kernel copy of board info data below |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1551 | * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized |
Grant Likely | 590d3ca | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 1552 | * with the current u-boot board info data. |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1553 | * |
| 1554 | * returns: |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1555 | * 0 - success |
| 1556 | * -1 - failure |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1557 | */ |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1558 | int boot_get_kbd(struct lmb *lmb, bd_t **kbd) |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1559 | { |
Becky Bruce | 391fd93 | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 1560 | *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf, |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 1561 | env_get_bootm_mapsize() + env_get_bootm_low()); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1562 | if (*kbd == NULL) |
| 1563 | return -1; |
| 1564 | |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1565 | **kbd = *(gd->bd); |
| 1566 | |
Stephen Warren | 712fbcf | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1567 | debug("## kernel board info at 0x%08lx\n", (ulong)*kbd); |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1568 | |
| 1569 | #if defined(DEBUG) && defined(CONFIG_CMD_BDI) |
| 1570 | do_bdinfo(NULL, 0, 0, NULL); |
| 1571 | #endif |
| 1572 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1573 | return 0; |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1574 | } |
John Rigby | fca43cc | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1575 | #endif /* CONFIG_SYS_BOOT_GET_KBD */ |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1576 | |
| 1577 | #ifdef CONFIG_LMB |
| 1578 | int image_setup_linux(bootm_headers_t *images) |
| 1579 | { |
| 1580 | ulong of_size = images->ft_len; |
| 1581 | char **of_flat_tree = &images->ft_addr; |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1582 | struct lmb *lmb = &images->lmb; |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1583 | int ret; |
| 1584 | |
| 1585 | if (IMAGE_ENABLE_OF_LIBFDT) |
| 1586 | boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree); |
| 1587 | |
| 1588 | if (IMAGE_BOOT_GET_CMDLINE) { |
| 1589 | ret = boot_get_cmdline(lmb, &images->cmdline_start, |
| 1590 | &images->cmdline_end); |
| 1591 | if (ret) { |
| 1592 | puts("ERROR with allocation of cmdline\n"); |
| 1593 | return ret; |
| 1594 | } |
| 1595 | } |
Simon Glass | 13d0698 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1596 | |
| 1597 | if (IMAGE_ENABLE_OF_LIBFDT) { |
| 1598 | ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size); |
| 1599 | if (ret) |
| 1600 | return ret; |
| 1601 | } |
| 1602 | |
| 1603 | if (IMAGE_ENABLE_OF_LIBFDT && of_size) { |
| 1604 | ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb); |
| 1605 | if (ret) |
| 1606 | return ret; |
| 1607 | } |
| 1608 | |
| 1609 | return 0; |
| 1610 | } |
| 1611 | #endif /* CONFIG_LMB */ |
Marian Balakowicz | 5dfb521 | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1612 | #endif /* !USE_HOSTCC */ |