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