Marian Balakowicz | 41d71ed | 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 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 25 | |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 26 | #ifndef USE_HOSTCC |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 27 | #include <common.h> |
| 28 | #include <watchdog.h> |
| 29 | |
| 30 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 31 | #include <status_led.h> |
| 32 | #endif |
| 33 | |
| 34 | #ifdef CONFIG_HAS_DATAFLASH |
| 35 | #include <dataflash.h> |
| 36 | #endif |
| 37 | |
Marian Balakowicz | 902ce70 | 2008-05-13 15:53:29 +0200 | [diff] [blame] | 38 | #ifdef CONFIG_LOGBUFFER |
| 39 | #include <logbuff.h> |
| 40 | #endif |
| 41 | |
Marian Balakowicz | a1cc147 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 42 | #include <rtc.h> |
Marian Balakowicz | a1cc147 | 2008-02-21 17:27:41 +0100 | [diff] [blame] | 43 | |
Joe Hershberger | d1f5ae9 | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 44 | #include <environment.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 45 | #include <image.h> |
| 46 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 47 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 48 | #include <libfdt.h> |
| 49 | #include <fdt_support.h> |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 50 | #endif |
| 51 | |
Andy Fleming | 72c23be | 2008-04-02 16:19:07 -0500 | [diff] [blame] | 52 | #include <u-boot/md5.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 53 | #include <sha1.h> |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 54 | #include <asm/errno.h> |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 55 | #include <asm/io.h> |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 56 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 57 | #ifdef CONFIG_CMD_BDI |
Wolfgang Denk | 6262d021 | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 58 | extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 59 | #endif |
| 60 | |
| 61 | DECLARE_GLOBAL_DATA_PTR; |
Marian Balakowicz | 61fde55 | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 62 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 63 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 64 | int verify); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 65 | #else |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 66 | #include "mkimage.h" |
Andy Fleming | 72c23be | 2008-04-02 16:19:07 -0500 | [diff] [blame] | 67 | #include <u-boot/md5.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 68 | #include <time.h> |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 69 | #include <image.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 70 | #endif /* !USE_HOSTCC*/ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 71 | |
Simon Glass | 9adb686 | 2013-02-24 17:33:25 +0000 | [diff] [blame] | 72 | #include <u-boot/crc.h> |
| 73 | |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 74 | #ifndef CONFIG_SYS_BARGSIZE |
| 75 | #define CONFIG_SYS_BARGSIZE 512 |
| 76 | #endif |
| 77 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 78 | static const table_entry_t uimage_arch[] = { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 79 | { IH_ARCH_INVALID, NULL, "Invalid ARCH", }, |
| 80 | { IH_ARCH_ALPHA, "alpha", "Alpha", }, |
| 81 | { IH_ARCH_ARM, "arm", "ARM", }, |
| 82 | { IH_ARCH_I386, "x86", "Intel x86", }, |
| 83 | { IH_ARCH_IA64, "ia64", "IA64", }, |
| 84 | { IH_ARCH_M68K, "m68k", "M68K", }, |
| 85 | { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", }, |
| 86 | { IH_ARCH_MIPS, "mips", "MIPS", }, |
| 87 | { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 88 | { IH_ARCH_NIOS2, "nios2", "NIOS II", }, |
Grant Erickson | 80f51b8 | 2008-05-04 16:45:01 -0700 | [diff] [blame] | 89 | { IH_ARCH_PPC, "powerpc", "PowerPC", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 90 | { IH_ARCH_PPC, "ppc", "PowerPC", }, |
| 91 | { IH_ARCH_S390, "s390", "IBM S390", }, |
| 92 | { IH_ARCH_SH, "sh", "SuperH", }, |
| 93 | { IH_ARCH_SPARC, "sparc", "SPARC", }, |
| 94 | { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", }, |
| 95 | { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", }, |
| 96 | { IH_ARCH_AVR32, "avr32", "AVR32", }, |
Macpaul Lin | 354b4e3 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 97 | { IH_ARCH_NDS32, "nds32", "NDS32", }, |
Stefan Kristiansson | 15c669c | 2011-11-26 19:04:50 +0000 | [diff] [blame] | 98 | { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",}, |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 99 | { IH_ARCH_SANDBOX, "sandbox", "Sandbox", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 100 | { -1, "", "", }, |
| 101 | }; |
| 102 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 103 | static const table_entry_t uimage_os[] = { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 104 | { IH_OS_INVALID, NULL, "Invalid OS", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 105 | { IH_OS_LINUX, "linux", "Linux", }, |
| 106 | #if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC) |
| 107 | { IH_OS_LYNXOS, "lynxos", "LynxOS", }, |
| 108 | #endif |
| 109 | { IH_OS_NETBSD, "netbsd", "NetBSD", }, |
Torkel Lundgren | 29a5866 | 2010-09-28 11:05:36 +0200 | [diff] [blame] | 110 | { IH_OS_OSE, "ose", "Enea OSE", }, |
Steven Stallion | 36ec8ac | 2013-03-20 06:31:35 +0000 | [diff] [blame] | 111 | { IH_OS_PLAN9, "plan9", "Plan 9", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 112 | { IH_OS_RTEMS, "rtems", "RTEMS", }, |
| 113 | { IH_OS_U_BOOT, "u-boot", "U-Boot", }, |
| 114 | #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC) |
| 115 | { IH_OS_QNX, "qnx", "QNX", }, |
| 116 | { IH_OS_VXWORKS, "vxworks", "VxWorks", }, |
| 117 | #endif |
Peter Tyser | 56b8dd1 | 2008-09-08 14:56:49 -0500 | [diff] [blame] | 118 | #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC) |
| 119 | { IH_OS_INTEGRITY,"integrity", "INTEGRITY", }, |
| 120 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 121 | #ifdef USE_HOSTCC |
| 122 | { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", }, |
| 123 | { IH_OS_DELL, "dell", "Dell", }, |
| 124 | { IH_OS_ESIX, "esix", "Esix", }, |
| 125 | { IH_OS_FREEBSD, "freebsd", "FreeBSD", }, |
| 126 | { IH_OS_IRIX, "irix", "Irix", }, |
| 127 | { IH_OS_NCR, "ncr", "NCR", }, |
| 128 | { IH_OS_OPENBSD, "openbsd", "OpenBSD", }, |
| 129 | { IH_OS_PSOS, "psos", "pSOS", }, |
| 130 | { IH_OS_SCO, "sco", "SCO", }, |
| 131 | { IH_OS_SOLARIS, "solaris", "Solaris", }, |
| 132 | { IH_OS_SVR4, "svr4", "SVR4", }, |
| 133 | #endif |
| 134 | { -1, "", "", }, |
| 135 | }; |
| 136 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 137 | static const table_entry_t uimage_type[] = { |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 138 | { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 139 | { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", }, |
| 140 | { IH_TYPE_FIRMWARE, "firmware", "Firmware", }, |
John Rigby | 34d12a1 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 141 | { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 142 | { IH_TYPE_KERNEL, "kernel", "Kernel Image", }, |
Stephen Warren | 8c87eba | 2011-11-10 13:17:53 -0700 | [diff] [blame] | 143 | { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 144 | { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, |
| 145 | { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, |
| 146 | { IH_TYPE_INVALID, NULL, "Invalid Image", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 147 | { IH_TYPE_MULTI, "multi", "Multi-File Image", }, |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 148 | { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, |
Shaohui Xie | ea65fd8 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 149 | { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 150 | { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", }, |
| 151 | { IH_TYPE_SCRIPT, "script", "Script", }, |
| 152 | { IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, |
Heiko Schocher | 58cb84d | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 153 | { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 154 | { -1, "", "", }, |
| 155 | }; |
| 156 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 157 | static const table_entry_t uimage_comp[] = { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 158 | { IH_COMP_NONE, "none", "uncompressed", }, |
| 159 | { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", }, |
| 160 | { IH_COMP_GZIP, "gzip", "gzip compressed", }, |
Luigi 'Comio' Mantellini | 35afc06 | 2008-09-08 02:46:13 +0200 | [diff] [blame] | 161 | { IH_COMP_LZMA, "lzma", "lzma compressed", }, |
Peter Korsgaard | f7440cd | 2009-11-19 11:37:51 +0100 | [diff] [blame] | 162 | { IH_COMP_LZO, "lzo", "lzo compressed", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 163 | { -1, "", "", }, |
| 164 | }; |
| 165 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 166 | /*****************************************************************************/ |
| 167 | /* Legacy format routines */ |
| 168 | /*****************************************************************************/ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 169 | int image_check_hcrc(const image_header_t *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 170 | { |
| 171 | ulong hcrc; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 172 | ulong len = image_get_header_size(); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 173 | image_header_t header; |
| 174 | |
| 175 | /* Copy header so we can blank CRC field for re-calculation */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 176 | memmove(&header, (char *)hdr, image_get_header_size()); |
| 177 | image_set_hcrc(&header, 0); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 178 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 179 | hcrc = crc32(0, (unsigned char *)&header, len); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 180 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 181 | return (hcrc == image_get_hcrc(hdr)); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 182 | } |
| 183 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 184 | int image_check_dcrc(const image_header_t *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 185 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 186 | ulong data = image_get_data(hdr); |
| 187 | ulong len = image_get_data_size(hdr); |
| 188 | ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 189 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 190 | return (dcrc == image_get_dcrc(hdr)); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 191 | } |
| 192 | |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 193 | /** |
| 194 | * image_multi_count - get component (sub-image) count |
| 195 | * @hdr: pointer to the header of the multi component image |
| 196 | * |
| 197 | * image_multi_count() returns number of components in a multi |
| 198 | * component image. |
| 199 | * |
| 200 | * Note: no checking of the image type is done, caller must pass |
| 201 | * a valid multi component image. |
| 202 | * |
| 203 | * returns: |
| 204 | * number of components |
| 205 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 206 | ulong image_multi_count(const image_header_t *hdr) |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 207 | { |
| 208 | ulong i, count = 0; |
Marian Balakowicz | a147421 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 209 | uint32_t *size; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 210 | |
| 211 | /* get start of the image payload, which in case of multi |
| 212 | * component images that points to a table of component sizes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 213 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 214 | |
| 215 | /* count non empty slots */ |
| 216 | for (i = 0; size[i]; ++i) |
| 217 | count++; |
| 218 | |
| 219 | return count; |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * image_multi_getimg - get component data address and size |
| 224 | * @hdr: pointer to the header of the multi component image |
| 225 | * @idx: index of the requested component |
| 226 | * @data: pointer to a ulong variable, will hold component data address |
| 227 | * @len: pointer to a ulong variable, will hold component size |
| 228 | * |
| 229 | * image_multi_getimg() returns size and data address for the requested |
| 230 | * component in a multi component image. |
| 231 | * |
| 232 | * Note: no checking of the image type is done, caller must pass |
| 233 | * a valid multi component image. |
| 234 | * |
| 235 | * returns: |
| 236 | * data address and size of the component, if idx is valid |
| 237 | * 0 in data and len, if idx is out of range |
| 238 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 239 | void image_multi_getimg(const image_header_t *hdr, ulong idx, |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 240 | ulong *data, ulong *len) |
| 241 | { |
| 242 | int i; |
Marian Balakowicz | a147421 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 243 | uint32_t *size; |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 244 | ulong offset, count, img_data; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 245 | |
| 246 | /* get number of component */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 247 | count = image_multi_count(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 248 | |
| 249 | /* get start of the image payload, which in case of multi |
| 250 | * component images that points to a table of component sizes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 251 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 252 | |
| 253 | /* get address of the proper component data start, which means |
| 254 | * skipping sizes table (add 1 for last, null entry) */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 255 | img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 256 | |
| 257 | if (idx < count) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 258 | *len = uimage_to_cpu(size[idx]); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 259 | offset = 0; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 260 | |
| 261 | /* go over all indices preceding requested component idx */ |
| 262 | for (i = 0; i < idx; i++) { |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 263 | /* add up i-th component size, rounding up to 4 bytes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 264 | offset += (uimage_to_cpu(size[i]) + 3) & ~3 ; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | /* calculate idx-th component data address */ |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 268 | *data = img_data + offset; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 269 | } else { |
| 270 | *len = 0; |
| 271 | *data = 0; |
| 272 | } |
| 273 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 274 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 275 | static void image_print_type(const image_header_t *hdr) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 276 | { |
| 277 | const char *os, *arch, *type, *comp; |
| 278 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 279 | os = genimg_get_os_name(image_get_os(hdr)); |
| 280 | arch = genimg_get_arch_name(image_get_arch(hdr)); |
| 281 | type = genimg_get_type_name(image_get_type(hdr)); |
| 282 | comp = genimg_get_comp_name(image_get_comp(hdr)); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 283 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 284 | printf("%s %s %s (%s)\n", arch, os, type, comp); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 285 | } |
| 286 | |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 287 | /** |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 288 | * image_print_contents - prints out the contents of the legacy format image |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 289 | * @ptr: pointer to the legacy format image header |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 290 | * @p: pointer to prefix string |
| 291 | * |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 292 | * image_print_contents() formats a multi line legacy image contents description. |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 293 | * The routine prints out all header fields followed by the size/offset data |
| 294 | * for MULTI/SCRIPT images. |
| 295 | * |
| 296 | * returns: |
| 297 | * no returned results |
| 298 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 299 | void image_print_contents(const void *ptr) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 300 | { |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 301 | const image_header_t *hdr = (const image_header_t *)ptr; |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 302 | const char *p; |
| 303 | |
Simon Glass | 1030f16 | 2013-05-08 08:05:58 +0000 | [diff] [blame] | 304 | p = IMAGE_INDENT_STRING; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 305 | printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr)); |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 306 | if (IMAGE_ENABLE_TIMESTAMP) { |
| 307 | printf("%sCreated: ", p); |
| 308 | genimg_print_time((time_t)image_get_time(hdr)); |
| 309 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 310 | printf("%sImage Type: ", p); |
| 311 | image_print_type(hdr); |
| 312 | printf("%sData Size: ", p); |
| 313 | genimg_print_size(image_get_data_size(hdr)); |
| 314 | printf("%sLoad Address: %08x\n", p, image_get_load(hdr)); |
| 315 | printf("%sEntry Point: %08x\n", p, image_get_ep(hdr)); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 316 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 317 | if (image_check_type(hdr, IH_TYPE_MULTI) || |
| 318 | image_check_type(hdr, IH_TYPE_SCRIPT)) { |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 319 | int i; |
| 320 | ulong data, len; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 321 | ulong count = image_multi_count(hdr); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 322 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 323 | printf("%sContents:\n", p); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 324 | for (i = 0; i < count; i++) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 325 | image_multi_getimg(hdr, i, &data, &len); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 326 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 327 | printf("%s Image %d: ", p, i); |
| 328 | genimg_print_size(len); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 329 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 330 | if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 331 | /* |
| 332 | * the user may need to know offsets |
| 333 | * if planning to do something with |
| 334 | * multiple files |
| 335 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 336 | printf("%s Offset = 0x%08lx\n", p, data); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 337 | } |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 338 | } |
| 339 | } |
| 340 | } |
| 341 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 342 | |
| 343 | #ifndef USE_HOSTCC |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 344 | /** |
| 345 | * image_get_ramdisk - get and verify ramdisk image |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 346 | * @rd_addr: ramdisk image start address |
| 347 | * @arch: expected ramdisk architecture |
| 348 | * @verify: checksum verification flag |
| 349 | * |
| 350 | * image_get_ramdisk() returns a pointer to the verified ramdisk image |
| 351 | * header. Routine receives image start address and expected architecture |
| 352 | * flag. Verification done covers data and header integrity and os/type/arch |
| 353 | * fields checking. |
| 354 | * |
| 355 | * If dataflash support is enabled routine checks for dataflash addresses |
| 356 | * and handles required dataflash reads. |
| 357 | * |
| 358 | * returns: |
| 359 | * pointer to a ramdisk image header, if image was found and valid |
| 360 | * otherwise, return NULL |
| 361 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 362 | static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 363 | int verify) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 364 | { |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 365 | const image_header_t *rd_hdr = (const image_header_t *)rd_addr; |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 366 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 367 | if (!image_check_magic(rd_hdr)) { |
| 368 | puts("Bad Magic Number\n"); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 369 | bootstage_error(BOOTSTAGE_ID_RD_MAGIC); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 370 | return NULL; |
| 371 | } |
| 372 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 373 | if (!image_check_hcrc(rd_hdr)) { |
| 374 | puts("Bad Header Checksum\n"); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 375 | bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 376 | return NULL; |
| 377 | } |
| 378 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 379 | bootstage_mark(BOOTSTAGE_ID_RD_MAGIC); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 380 | image_print_contents(rd_hdr); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 381 | |
| 382 | if (verify) { |
| 383 | puts(" Verifying Checksum ... "); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 384 | if (!image_check_dcrc(rd_hdr)) { |
| 385 | puts("Bad Data CRC\n"); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 386 | bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 387 | return NULL; |
| 388 | } |
| 389 | puts("OK\n"); |
| 390 | } |
| 391 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 392 | bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 393 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 394 | if (!image_check_os(rd_hdr, IH_OS_LINUX) || |
| 395 | !image_check_arch(rd_hdr, arch) || |
| 396 | !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) { |
| 397 | printf("No Linux %s Ramdisk Image\n", |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 398 | genimg_get_arch_name(arch)); |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 399 | bootstage_error(BOOTSTAGE_ID_RAMDISK); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 400 | return NULL; |
| 401 | } |
| 402 | |
| 403 | return rd_hdr; |
| 404 | } |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 405 | #endif /* !USE_HOSTCC */ |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 406 | |
| 407 | /*****************************************************************************/ |
| 408 | /* Shared dual-format routines */ |
| 409 | /*****************************************************************************/ |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 410 | #ifndef USE_HOSTCC |
Joe Hershberger | d1f5ae9 | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 411 | ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */ |
| 412 | ulong save_addr; /* Default Save Address */ |
| 413 | ulong save_size; /* Default Save Size (in bytes) */ |
| 414 | |
| 415 | static int on_loadaddr(const char *name, const char *value, enum env_op op, |
| 416 | int flags) |
| 417 | { |
| 418 | switch (op) { |
| 419 | case env_op_create: |
| 420 | case env_op_overwrite: |
| 421 | load_addr = simple_strtoul(value, NULL, 16); |
| 422 | break; |
| 423 | default: |
| 424 | break; |
| 425 | } |
| 426 | |
| 427 | return 0; |
| 428 | } |
| 429 | U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr); |
| 430 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 431 | ulong getenv_bootm_low(void) |
| 432 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 433 | char *s = getenv("bootm_low"); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 434 | if (s) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 435 | ulong tmp = simple_strtoul(s, NULL, 16); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 436 | return tmp; |
| 437 | } |
| 438 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 439 | #if defined(CONFIG_SYS_SDRAM_BASE) |
| 440 | return CONFIG_SYS_SDRAM_BASE; |
Marian Balakowicz | 2499b04 | 2008-03-12 12:14:15 +0100 | [diff] [blame] | 441 | #elif defined(CONFIG_ARM) |
| 442 | return gd->bd->bi_dram[0].start; |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 443 | #else |
| 444 | return 0; |
| 445 | #endif |
| 446 | } |
| 447 | |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 448 | phys_size_t getenv_bootm_size(void) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 449 | { |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 450 | phys_size_t tmp; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 451 | char *s = getenv("bootm_size"); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 452 | if (s) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 453 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 454 | return tmp; |
| 455 | } |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 456 | s = getenv("bootm_low"); |
| 457 | if (s) |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 458 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 459 | else |
| 460 | tmp = 0; |
| 461 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 462 | |
Marian Balakowicz | 2499b04 | 2008-03-12 12:14:15 +0100 | [diff] [blame] | 463 | #if defined(CONFIG_ARM) |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 464 | return gd->bd->bi_dram[0].size - tmp; |
Marian Balakowicz | 2499b04 | 2008-03-12 12:14:15 +0100 | [diff] [blame] | 465 | #else |
Matthew McClintock | 6fc7d3a | 2010-07-08 10:11:08 -0500 | [diff] [blame] | 466 | return gd->bd->bi_memsize - tmp; |
Marian Balakowicz | 2499b04 | 2008-03-12 12:14:15 +0100 | [diff] [blame] | 467 | #endif |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 468 | } |
| 469 | |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 470 | phys_size_t getenv_bootm_mapsize(void) |
| 471 | { |
| 472 | phys_size_t tmp; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 473 | char *s = getenv("bootm_mapsize"); |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 474 | if (s) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 475 | tmp = (phys_size_t)simple_strtoull(s, NULL, 16); |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 476 | return tmp; |
| 477 | } |
| 478 | |
| 479 | #if defined(CONFIG_SYS_BOOTMAPSZ) |
| 480 | return CONFIG_SYS_BOOTMAPSZ; |
| 481 | #else |
| 482 | return getenv_bootm_size(); |
| 483 | #endif |
| 484 | } |
| 485 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 486 | void memmove_wd(void *to, void *from, size_t len, ulong chunksz) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 487 | { |
Larry Johnson | e455100 | 2010-04-20 08:09:43 -0400 | [diff] [blame] | 488 | if (to == from) |
| 489 | return; |
| 490 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 491 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) |
| 492 | while (len > 0) { |
| 493 | size_t tail = (len > chunksz) ? chunksz : len; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 494 | WATCHDOG_RESET(); |
| 495 | memmove(to, from, tail); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 496 | to += tail; |
| 497 | from += tail; |
| 498 | len -= tail; |
| 499 | } |
| 500 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 501 | memmove(to, from, len); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 502 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ |
| 503 | } |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 504 | #endif /* !USE_HOSTCC */ |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 505 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 506 | void genimg_print_size(uint32_t size) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 507 | { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 508 | #ifndef USE_HOSTCC |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 509 | printf("%d Bytes = ", size); |
| 510 | print_size(size, "\n"); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 511 | #else |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 512 | printf("%d Bytes = %.2f kB = %.2f MB\n", |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 513 | size, (double)size / 1.024e3, |
| 514 | (double)size / 1.048576e6); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 515 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 516 | } |
| 517 | |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 518 | #if IMAGE_ENABLE_TIMESTAMP |
| 519 | void genimg_print_time(time_t timestamp) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 520 | { |
| 521 | #ifndef USE_HOSTCC |
| 522 | struct rtc_time tm; |
| 523 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 524 | to_tm(timestamp, &tm); |
| 525 | printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n", |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 526 | tm.tm_year, tm.tm_mon, tm.tm_mday, |
| 527 | tm.tm_hour, tm.tm_min, tm.tm_sec); |
| 528 | #else |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 529 | printf("%s", ctime(×tamp)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 530 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 531 | } |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 532 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 533 | |
| 534 | /** |
| 535 | * get_table_entry_name - translate entry id to long name |
| 536 | * @table: pointer to a translation table for entries of a specific type |
| 537 | * @msg: message to be returned when translation fails |
| 538 | * @id: entry id to be translated |
| 539 | * |
| 540 | * get_table_entry_name() will go over translation table trying to find |
| 541 | * entry that matches given id. If matching entry is found, its long |
| 542 | * name is returned to the caller. |
| 543 | * |
| 544 | * returns: |
| 545 | * long entry name if translation succeeds |
| 546 | * msg otherwise |
| 547 | */ |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 548 | char *get_table_entry_name(const table_entry_t *table, char *msg, int id) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 549 | { |
| 550 | for (; table->id >= 0; ++table) { |
| 551 | if (table->id == id) |
Wolfgang Denk | d0813e5 | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 552 | #if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC) |
Scott Wood | 68498ab | 2009-04-02 16:15:10 -0500 | [diff] [blame] | 553 | return table->lname; |
| 554 | #else |
| 555 | return table->lname + gd->reloc_off; |
| 556 | #endif |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 557 | } |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 558 | return (msg); |
| 559 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 560 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 561 | const char *genimg_get_os_name(uint8_t os) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 562 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 563 | return (get_table_entry_name(uimage_os, "Unknown OS", os)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 564 | } |
| 565 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 566 | const char *genimg_get_arch_name(uint8_t arch) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 567 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 568 | return (get_table_entry_name(uimage_arch, "Unknown Architecture", |
| 569 | arch)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 570 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 571 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 572 | const char *genimg_get_type_name(uint8_t type) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 573 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 574 | return (get_table_entry_name(uimage_type, "Unknown Image", type)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 575 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 576 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 577 | const char *genimg_get_comp_name(uint8_t comp) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 578 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 579 | return (get_table_entry_name(uimage_comp, "Unknown Compression", |
| 580 | comp)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 581 | } |
| 582 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 583 | /** |
| 584 | * get_table_entry_id - translate short entry name to id |
| 585 | * @table: pointer to a translation table for entries of a specific type |
| 586 | * @table_name: to be used in case of error |
| 587 | * @name: entry short name to be translated |
| 588 | * |
| 589 | * get_table_entry_id() will go over translation table trying to find |
| 590 | * entry that matches given short name. If matching entry is found, |
| 591 | * its id returned to the caller. |
| 592 | * |
| 593 | * returns: |
| 594 | * entry id if translation succeeds |
| 595 | * -1 otherwise |
| 596 | */ |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 597 | int get_table_entry_id(const table_entry_t *table, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 598 | const char *table_name, const char *name) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 599 | { |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 600 | const table_entry_t *t; |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 601 | #ifdef USE_HOSTCC |
| 602 | int first = 1; |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 603 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 604 | for (t = table; t->id >= 0; ++t) { |
| 605 | if (t->sname && strcasecmp(t->sname, name) == 0) |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 606 | return(t->id); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 607 | } |
| 608 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 609 | fprintf(stderr, "\nInvalid %s Type - valid names are", table_name); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 610 | for (t = table; t->id >= 0; ++t) { |
| 611 | if (t->sname == NULL) |
| 612 | continue; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 613 | fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 614 | first = 0; |
| 615 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 616 | fprintf(stderr, "\n"); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 617 | #else |
| 618 | for (t = table; t->id >= 0; ++t) { |
Wolfgang Denk | d0813e5 | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 619 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
Scott Wood | 68498ab | 2009-04-02 16:15:10 -0500 | [diff] [blame] | 620 | if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0) |
Wolfgang Denk | d0813e5 | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 621 | #else |
| 622 | if (t->sname && strcmp(t->sname, name) == 0) |
Peter Tyser | 9057cbf | 2009-09-21 11:20:36 -0500 | [diff] [blame] | 623 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 624 | return (t->id); |
| 625 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 626 | debug("Invalid %s Type: %s\n", table_name, name); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 627 | #endif /* USE_HOSTCC */ |
| 628 | return (-1); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 629 | } |
| 630 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 631 | int genimg_get_os_id(const char *name) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 632 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 633 | return (get_table_entry_id(uimage_os, "OS", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 634 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 635 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 636 | int genimg_get_arch_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 637 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 638 | return (get_table_entry_id(uimage_arch, "CPU", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 639 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 640 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 641 | int genimg_get_type_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 642 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 643 | return (get_table_entry_id(uimage_type, "Image", name)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 644 | } |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 645 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 646 | int genimg_get_comp_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 647 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 648 | return (get_table_entry_id(uimage_comp, "Compression", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | #ifndef USE_HOSTCC |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 652 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 653 | * genimg_get_format - get image format type |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 654 | * @img_addr: image start address |
| 655 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 656 | * genimg_get_format() checks whether provided address points to a valid |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 657 | * legacy or FIT image. |
| 658 | * |
Marian Balakowicz | 1256068 | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 659 | * New uImage format and FDT blob are based on a libfdt. FDT blob |
| 660 | * may be passed directly or embedded in a FIT image. In both situations |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 661 | * genimg_get_format() must be able to dectect libfdt header. |
Marian Balakowicz | 1256068 | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 662 | * |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 663 | * returns: |
| 664 | * image format type or IMAGE_FORMAT_INVALID if no image is present |
| 665 | */ |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 666 | int genimg_get_format(const void *img_addr) |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 667 | { |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 668 | ulong format = IMAGE_FORMAT_INVALID; |
| 669 | const image_header_t *hdr; |
Marian Balakowicz | 1256068 | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 670 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 671 | char *fit_hdr; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 672 | #endif |
| 673 | |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 674 | hdr = (const image_header_t *)img_addr; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 675 | if (image_check_magic(hdr)) |
| 676 | format = IMAGE_FORMAT_LEGACY; |
Marian Balakowicz | 1256068 | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 677 | #if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT) |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 678 | else { |
| 679 | fit_hdr = (char *)img_addr; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 680 | if (fdt_check_header(fit_hdr) == 0) |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 681 | format = IMAGE_FORMAT_FIT; |
| 682 | } |
| 683 | #endif |
| 684 | |
| 685 | return format; |
| 686 | } |
| 687 | |
| 688 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 689 | * genimg_get_image - get image from special storage (if necessary) |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 690 | * @img_addr: image start address |
| 691 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 692 | * genimg_get_image() checks if provided image start adddress is located |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 693 | * in a dataflash storage. If so, image is moved to a system RAM memory. |
| 694 | * |
| 695 | * returns: |
| 696 | * image start address after possible relocation from special storage |
| 697 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 698 | ulong genimg_get_image(ulong img_addr) |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 699 | { |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 700 | ulong ram_addr = img_addr; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 701 | |
| 702 | #ifdef CONFIG_HAS_DATAFLASH |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 703 | ulong h_size, d_size; |
| 704 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 705 | if (addr_dataflash(img_addr)) { |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 706 | void *buf; |
| 707 | |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 708 | /* ger RAM address */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 709 | ram_addr = CONFIG_SYS_LOAD_ADDR; |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 710 | |
| 711 | /* get header size */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 712 | h_size = image_get_header_size(); |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 713 | #if defined(CONFIG_FIT) |
| 714 | if (sizeof(struct fdt_header) > h_size) |
| 715 | h_size = sizeof(struct fdt_header); |
| 716 | #endif |
| 717 | |
| 718 | /* read in header */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 719 | debug(" Reading image header from dataflash address " |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 720 | "%08lx to RAM address %08lx\n", img_addr, ram_addr); |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 721 | |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 722 | buf = map_sysmem(ram_addr, 0); |
| 723 | read_dataflash(img_addr, h_size, buf); |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 724 | |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 725 | /* get data size */ |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 726 | switch (genimg_get_format(buf)) { |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 727 | case IMAGE_FORMAT_LEGACY: |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 728 | d_size = image_get_data_size(buf); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 729 | debug(" Legacy format image found at 0x%08lx, " |
| 730 | "size 0x%08lx\n", |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 731 | ram_addr, d_size); |
| 732 | break; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 733 | #if defined(CONFIG_FIT) |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 734 | case IMAGE_FORMAT_FIT: |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 735 | d_size = fit_get_size(buf) - h_size; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 736 | debug(" FIT/FDT format image found at 0x%08lx, " |
| 737 | "size 0x%08lx\n", |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 738 | ram_addr, d_size); |
| 739 | break; |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 740 | #endif |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 741 | default: |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 742 | printf(" No valid image found at 0x%08lx\n", |
| 743 | img_addr); |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 744 | return ram_addr; |
| 745 | } |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 746 | |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 747 | /* read in image data */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 748 | debug(" Reading image remaining data from dataflash address " |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 749 | "%08lx to RAM address %08lx\n", img_addr + h_size, |
| 750 | ram_addr + h_size); |
| 751 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 752 | read_dataflash(img_addr + h_size, d_size, |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 753 | (char *)(buf + h_size)); |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 754 | |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 755 | } |
Marian Balakowicz | 535b910 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 756 | #endif /* CONFIG_HAS_DATAFLASH */ |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 757 | |
| 758 | return ram_addr; |
| 759 | } |
| 760 | |
| 761 | /** |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 762 | * fit_has_config - check if there is a valid FIT configuration |
| 763 | * @images: pointer to the bootm command headers structure |
| 764 | * |
| 765 | * fit_has_config() checks if there is a FIT configuration in use |
| 766 | * (if FTI support is present). |
| 767 | * |
| 768 | * returns: |
| 769 | * 0, no FIT support or no configuration found |
| 770 | * 1, configuration found |
| 771 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 772 | int genimg_has_config(bootm_headers_t *images) |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 773 | { |
| 774 | #if defined(CONFIG_FIT) |
| 775 | if (images->fit_uname_cfg) |
| 776 | return 1; |
| 777 | #endif |
| 778 | return 0; |
| 779 | } |
| 780 | |
| 781 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 782 | * boot_get_ramdisk - main ramdisk handling routine |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 783 | * @argc: command argument count |
| 784 | * @argv: command argument list |
Marian Balakowicz | 61fde55 | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 785 | * @images: pointer to the bootm images structure |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 786 | * @arch: expected ramdisk architecture |
| 787 | * @rd_start: pointer to a ulong variable, will hold ramdisk start address |
| 788 | * @rd_end: pointer to a ulong variable, will hold ramdisk end |
| 789 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 790 | * boot_get_ramdisk() is responsible for finding a valid ramdisk image. |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 791 | * Curently supported are the following ramdisk sources: |
| 792 | * - multicomponent kernel/ramdisk image, |
| 793 | * - commandline provided address of decicated ramdisk image. |
| 794 | * |
| 795 | * returns: |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 796 | * 0, if ramdisk image was found and valid, or skiped |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 797 | * rd_start and rd_end are set to ramdisk start/end addresses if |
| 798 | * ramdisk image is found and valid |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 799 | * |
Kumar Gala | b8ca734 | 2008-08-29 19:08:29 -0500 | [diff] [blame] | 800 | * 1, if ramdisk image is found but corrupted, or invalid |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 801 | * rd_start and rd_end are set to 0 if no ramdisk exists |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 802 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 803 | int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 804 | uint8_t arch, ulong *rd_start, ulong *rd_end) |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 805 | { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 806 | ulong rd_addr, rd_load; |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 807 | ulong rd_data, rd_len; |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 808 | const image_header_t *rd_hdr; |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 809 | void *buf; |
Marek Vasut | 6988d13 | 2012-03-30 23:19:10 +0200 | [diff] [blame] | 810 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
Marek Vasut | 28850d0 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 811 | char *end; |
Marek Vasut | 6988d13 | 2012-03-30 23:19:10 +0200 | [diff] [blame] | 812 | #endif |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 813 | #if defined(CONFIG_FIT) |
Simon Glass | ad68fc3 | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 814 | const char *fit_uname_config = images->fit_uname_cfg; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 815 | const char *fit_uname_ramdisk = NULL; |
| 816 | ulong default_addr; |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 817 | int rd_noffset; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 818 | #endif |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 819 | const char *select = NULL; |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 820 | |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 821 | *rd_start = 0; |
| 822 | *rd_end = 0; |
| 823 | |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 824 | if (argc >= 2) |
| 825 | select = argv[1]; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 826 | /* |
| 827 | * Look for a '-' which indicates to ignore the |
| 828 | * ramdisk argument |
| 829 | */ |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 830 | if (select && strcmp(select, "-") == 0) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 831 | debug("## Skipping init Ramdisk\n"); |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 832 | rd_len = rd_data = 0; |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 833 | } else if (select || genimg_has_config(images)) { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 834 | #if defined(CONFIG_FIT) |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 835 | if (select) { |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 836 | /* |
| 837 | * If the init ramdisk comes from the FIT image and |
| 838 | * the FIT image address is omitted in the command |
| 839 | * line argument, try to use os FIT image address or |
| 840 | * default load address. |
| 841 | */ |
| 842 | if (images->fit_uname_os) |
| 843 | default_addr = (ulong)images->fit_hdr_os; |
| 844 | else |
| 845 | default_addr = load_addr; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 846 | |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 847 | if (fit_parse_conf(select, default_addr, |
| 848 | &rd_addr, &fit_uname_config)) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 849 | debug("* ramdisk: config '%s' from image at " |
| 850 | "0x%08lx\n", |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 851 | fit_uname_config, rd_addr); |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 852 | } else if (fit_parse_subimage(select, default_addr, |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 853 | &rd_addr, &fit_uname_ramdisk)) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 854 | debug("* ramdisk: subimage '%s' from image at " |
| 855 | "0x%08lx\n", |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 856 | fit_uname_ramdisk, rd_addr); |
| 857 | } else |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 858 | #endif |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 859 | { |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 860 | rd_addr = simple_strtoul(select, NULL, 16); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 861 | debug("* ramdisk: cmdline image address = " |
| 862 | "0x%08lx\n", |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 863 | rd_addr); |
| 864 | } |
| 865 | #if defined(CONFIG_FIT) |
| 866 | } else { |
| 867 | /* use FIT configuration provided in first bootm |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 868 | * command argument. If the property is not defined, |
| 869 | * quit silently. |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 870 | */ |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 871 | rd_addr = map_to_sysmem(images->fit_hdr_os); |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 872 | rd_noffset = fit_get_node_from_config(images, |
| 873 | FIT_RAMDISK_PROP, rd_addr); |
| 874 | if (rd_noffset == -ENOLINK) |
Peter Tyser | 190ee48 | 2008-08-05 10:51:57 -0500 | [diff] [blame] | 875 | return 0; |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 876 | else if (rd_noffset < 0) |
| 877 | return 1; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 878 | } |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 879 | #endif |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 880 | |
| 881 | /* copy from dataflash if needed */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 882 | rd_addr = genimg_get_image(rd_addr); |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 883 | |
| 884 | /* |
| 885 | * Check if there is an initrd image at the |
| 886 | * address provided in the second bootm argument |
| 887 | * check image type, for FIT images get FIT node. |
| 888 | */ |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 889 | buf = map_sysmem(rd_addr, 0); |
| 890 | switch (genimg_get_format(buf)) { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 891 | case IMAGE_FORMAT_LEGACY: |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 892 | printf("## Loading init Ramdisk from Legacy " |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 893 | "Image at %08lx ...\n", rd_addr); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 894 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 895 | bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 896 | rd_hdr = image_get_ramdisk(rd_addr, arch, |
Marian Balakowicz | a0ffb42 | 2008-03-12 10:14:38 +0100 | [diff] [blame] | 897 | images->verify); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 898 | |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 899 | if (rd_hdr == NULL) |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 900 | return 1; |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 901 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 902 | rd_data = image_get_data(rd_hdr); |
| 903 | rd_len = image_get_data_size(rd_hdr); |
| 904 | rd_load = image_get_load(rd_hdr); |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 905 | break; |
| 906 | #if defined(CONFIG_FIT) |
| 907 | case IMAGE_FORMAT_FIT: |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 908 | rd_noffset = fit_image_load(images, FIT_RAMDISK_PROP, |
| 909 | rd_addr, &fit_uname_ramdisk, |
Simon Glass | ad68fc3 | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 910 | &fit_uname_config, arch, |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 911 | IH_TYPE_RAMDISK, |
| 912 | BOOTSTAGE_ID_FIT_RD_START, |
Stefano Babic | 6376752 | 2013-07-12 15:09:23 +0200 | [diff] [blame] | 913 | FIT_LOAD_IGNORED, &rd_data, &rd_len); |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 914 | if (rd_noffset < 0) |
Michal Simek | b247400 | 2008-07-11 10:43:13 +0200 | [diff] [blame] | 915 | return 1; |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 916 | |
Simon Glass | 65817a6 | 2013-05-16 13:53:22 +0000 | [diff] [blame] | 917 | images->fit_hdr_rd = map_sysmem(rd_addr, 0); |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 918 | images->fit_uname_rd = fit_uname_ramdisk; |
Marian Balakowicz | 61c1ad5 | 2008-03-12 10:32:59 +0100 | [diff] [blame] | 919 | images->fit_noffset_rd = rd_noffset; |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 920 | break; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 921 | #endif |
| 922 | default: |
Marek Vasut | 28850d0 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 923 | #ifdef CONFIG_SUPPORT_RAW_INITRD |
Simon Glass | 794a921 | 2013-06-11 11:14:46 -0700 | [diff] [blame] | 924 | end = NULL; |
| 925 | if (select) |
| 926 | end = strchr(select, ':'); |
| 927 | if (end) { |
Marek Vasut | 28850d0 | 2012-03-18 11:47:58 +0000 | [diff] [blame] | 928 | rd_len = simple_strtoul(++end, NULL, 16); |
| 929 | rd_data = rd_addr; |
| 930 | } else |
| 931 | #endif |
| 932 | { |
| 933 | puts("Wrong Ramdisk Image Format\n"); |
| 934 | rd_data = rd_len = rd_load = 0; |
| 935 | return 1; |
| 936 | } |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 937 | } |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 938 | } else if (images->legacy_hdr_valid && |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 939 | image_check_type(&images->legacy_hdr_os_copy, |
| 940 | IH_TYPE_MULTI)) { |
| 941 | |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 942 | /* |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 943 | * Now check if we have a legacy mult-component image, |
| 944 | * get second entry data start address and len. |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 945 | */ |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 946 | bootstage_mark(BOOTSTAGE_ID_RAMDISK); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 947 | printf("## Loading init Ramdisk from multi component " |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 948 | "Legacy Image at %08lx ...\n", |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 949 | (ulong)images->legacy_hdr_os); |
| 950 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 951 | image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 952 | } else { |
| 953 | /* |
| 954 | * no initrd image |
| 955 | */ |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 956 | bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 957 | rd_len = rd_data = 0; |
| 958 | } |
| 959 | |
| 960 | if (!rd_data) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 961 | debug("## No init Ramdisk\n"); |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 962 | } else { |
| 963 | *rd_start = rd_data; |
| 964 | *rd_end = rd_data + rd_len; |
| 965 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 966 | debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n", |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 967 | *rd_start, *rd_end); |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 968 | |
| 969 | return 0; |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 970 | } |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 971 | |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 972 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 973 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 974 | * boot_ramdisk_high - relocate init ramdisk |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 975 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 976 | * @rd_data: ramdisk data start address |
| 977 | * @rd_len: ramdisk data length |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 978 | * @initrd_start: pointer to a ulong variable, will hold final init ramdisk |
| 979 | * start address (after possible relocation) |
| 980 | * @initrd_end: pointer to a ulong variable, will hold final init ramdisk |
| 981 | * end address (after possible relocation) |
| 982 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 983 | * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 984 | * variable and if requested ramdisk data is moved to a specified location. |
| 985 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 986 | * Initrd_start and initrd_end are set to final (after relocation) ramdisk |
| 987 | * start/end addresses if ramdisk image start and len were provided, |
| 988 | * otherwise set initrd_start and initrd_end set to zeros. |
| 989 | * |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 990 | * returns: |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 991 | * 0 - success |
| 992 | * -1 - failure |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 993 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 994 | int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len, |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 995 | ulong *initrd_start, ulong *initrd_end) |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 996 | { |
| 997 | char *s; |
| 998 | ulong initrd_high; |
| 999 | int initrd_copy_to_ram = 1; |
| 1000 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1001 | if ((s = getenv("initrd_high")) != NULL) { |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1002 | /* a value of "no" or a similar string will act like 0, |
| 1003 | * turning the "load high" feature off. This is intentional. |
| 1004 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1005 | initrd_high = simple_strtoul(s, NULL, 16); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1006 | if (initrd_high == ~0) |
| 1007 | initrd_copy_to_ram = 0; |
| 1008 | } else { |
| 1009 | /* not set, no restrictions to load high */ |
| 1010 | initrd_high = ~0; |
| 1011 | } |
| 1012 | |
Marian Balakowicz | 902ce70 | 2008-05-13 15:53:29 +0200 | [diff] [blame] | 1013 | |
| 1014 | #ifdef CONFIG_LOGBUFFER |
| 1015 | /* Prevent initrd from overwriting logbuffer */ |
| 1016 | lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE); |
| 1017 | #endif |
| 1018 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1019 | debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n", |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1020 | initrd_high, initrd_copy_to_ram); |
| 1021 | |
| 1022 | if (rd_data) { |
| 1023 | if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1024 | debug(" in-place initrd\n"); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1025 | *initrd_start = rd_data; |
| 1026 | *initrd_end = rd_data + rd_len; |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1027 | lmb_reserve(lmb, rd_data, rd_len); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1028 | } else { |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1029 | if (initrd_high) |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1030 | *initrd_start = (ulong)lmb_alloc_base(lmb, |
| 1031 | rd_len, 0x1000, initrd_high); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1032 | else |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1033 | *initrd_start = (ulong)lmb_alloc(lmb, rd_len, |
| 1034 | 0x1000); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1035 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1036 | if (*initrd_start == 0) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1037 | puts("ramdisk - allocation error\n"); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1038 | goto error; |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1039 | } |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 1040 | bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1041 | |
| 1042 | *initrd_end = *initrd_start + rd_len; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1043 | printf(" Loading Ramdisk to %08lx, end %08lx ... ", |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1044 | *initrd_start, *initrd_end); |
| 1045 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1046 | memmove_wd((void *)*initrd_start, |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1047 | (void *)rd_data, rd_len, CHUNKSZ); |
| 1048 | |
Kumar Gala | 180c581 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 1049 | #ifdef CONFIG_MP |
| 1050 | /* |
| 1051 | * Ensure the image is flushed to memory to handle |
| 1052 | * AMP boot scenarios in which we might not be |
| 1053 | * HW cache coherent |
| 1054 | */ |
| 1055 | flush_cache((unsigned long)*initrd_start, rd_len); |
| 1056 | #endif |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1057 | puts("OK\n"); |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1058 | } |
| 1059 | } else { |
| 1060 | *initrd_start = 0; |
| 1061 | *initrd_end = 0; |
| 1062 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1063 | debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n", |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1064 | *initrd_start, *initrd_end); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1065 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1066 | return 0; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1067 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1068 | error: |
| 1069 | return -1; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1070 | } |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1071 | #endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */ |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1072 | |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1073 | #ifdef CONFIG_SYS_BOOT_GET_CMDLINE |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1074 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1075 | * boot_get_cmdline - allocate and initialize kernel cmdline |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1076 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1077 | * @cmd_start: pointer to a ulong variable, will hold cmdline start |
| 1078 | * @cmd_end: pointer to a ulong variable, will hold cmdline end |
| 1079 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1080 | * boot_get_cmdline() allocates space for kernel command line below |
Grant Likely | dfff7a2 | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 1081 | * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1082 | * variable is present its contents is copied to allocated kernel |
| 1083 | * command line. |
| 1084 | * |
| 1085 | * returns: |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1086 | * 0 - success |
| 1087 | * -1 - failure |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1088 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1089 | int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end) |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1090 | { |
| 1091 | char *cmdline; |
| 1092 | char *s; |
| 1093 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 1094 | cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf, |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 1095 | getenv_bootm_mapsize() + getenv_bootm_low()); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1096 | |
| 1097 | if (cmdline == NULL) |
| 1098 | return -1; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1099 | |
| 1100 | if ((s = getenv("bootargs")) == NULL) |
| 1101 | s = ""; |
| 1102 | |
| 1103 | strcpy(cmdline, s); |
| 1104 | |
| 1105 | *cmd_start = (ulong) & cmdline[0]; |
| 1106 | *cmd_end = *cmd_start + strlen(cmdline); |
| 1107 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1108 | debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end); |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1109 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1110 | return 0; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1111 | } |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1112 | #endif /* CONFIG_SYS_BOOT_GET_CMDLINE */ |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1113 | |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1114 | #ifdef CONFIG_SYS_BOOT_GET_KBD |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1115 | /** |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1116 | * boot_get_kbd - allocate and initialize kernel copy of board info |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1117 | * @lmb: pointer to lmb handle, will be used for memory mgmt |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1118 | * @kbd: double pointer to board info data |
| 1119 | * |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 1120 | * boot_get_kbd() allocates space for kernel copy of board info data below |
Grant Likely | dfff7a2 | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 1121 | * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized |
| 1122 | * with the current u-boot board info data. |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1123 | * |
| 1124 | * returns: |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1125 | * 0 - success |
| 1126 | * -1 - failure |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1127 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1128 | int boot_get_kbd(struct lmb *lmb, bd_t **kbd) |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1129 | { |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 1130 | *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf, |
Grant Likely | 2639638 | 2011-03-28 09:58:43 +0000 | [diff] [blame] | 1131 | getenv_bootm_mapsize() + getenv_bootm_low()); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1132 | if (*kbd == NULL) |
| 1133 | return -1; |
| 1134 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1135 | **kbd = *(gd->bd); |
| 1136 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1137 | debug("## kernel board info at 0x%08lx\n", (ulong)*kbd); |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 1138 | |
| 1139 | #if defined(DEBUG) && defined(CONFIG_CMD_BDI) |
| 1140 | do_bdinfo(NULL, 0, 0, NULL); |
| 1141 | #endif |
| 1142 | |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 1143 | return 0; |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 1144 | } |
John Rigby | eea8e69 | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 1145 | #endif /* CONFIG_SYS_BOOT_GET_KBD */ |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 1146 | |
| 1147 | #ifdef CONFIG_LMB |
| 1148 | int image_setup_linux(bootm_headers_t *images) |
| 1149 | { |
| 1150 | ulong of_size = images->ft_len; |
| 1151 | char **of_flat_tree = &images->ft_addr; |
| 1152 | ulong *initrd_start = &images->initrd_start; |
| 1153 | ulong *initrd_end = &images->initrd_end; |
| 1154 | struct lmb *lmb = &images->lmb; |
| 1155 | ulong rd_len; |
| 1156 | int ret; |
| 1157 | |
| 1158 | if (IMAGE_ENABLE_OF_LIBFDT) |
| 1159 | boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree); |
| 1160 | |
| 1161 | if (IMAGE_BOOT_GET_CMDLINE) { |
| 1162 | ret = boot_get_cmdline(lmb, &images->cmdline_start, |
| 1163 | &images->cmdline_end); |
| 1164 | if (ret) { |
| 1165 | puts("ERROR with allocation of cmdline\n"); |
| 1166 | return ret; |
| 1167 | } |
| 1168 | } |
| 1169 | if (IMAGE_ENABLE_RAMDISK_HIGH) { |
| 1170 | rd_len = images->rd_end - images->rd_start; |
| 1171 | ret = boot_ramdisk_high(lmb, images->rd_start, rd_len, |
| 1172 | initrd_start, initrd_end); |
| 1173 | if (ret) |
| 1174 | return ret; |
| 1175 | } |
| 1176 | |
| 1177 | if (IMAGE_ENABLE_OF_LIBFDT) { |
| 1178 | ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size); |
| 1179 | if (ret) |
| 1180 | return ret; |
| 1181 | } |
| 1182 | |
| 1183 | if (IMAGE_ENABLE_OF_LIBFDT && of_size) { |
| 1184 | ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb); |
| 1185 | if (ret) |
| 1186 | return ret; |
| 1187 | } |
| 1188 | |
| 1189 | return 0; |
| 1190 | } |
| 1191 | #endif /* CONFIG_LMB */ |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1192 | #endif /* !USE_HOSTCC */ |