blob: 640e83b7bdf8013d02416615faf796c483a12d0f [file] [log] [blame]
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001/*
2 * (C) Copyright 2008 Semihalf
3 *
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01008 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01009
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010010#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010011#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 Balakowicz95d449a2008-05-13 15:53:29 +020022#ifdef CONFIG_LOGBUFFER
23#include <logbuff.h>
24#endif
25
Marian Balakowicz2242f532008-02-21 17:27:41 +010026#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010027
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060028#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010029#include <image.h>
30
Stephen Warren712fbcf2011-10-18 11:11:49 +000031#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Marian Balakowiczfff888a12008-02-21 17:20:19 +010032#include <libfdt.h>
33#include <fdt_support.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010034#endif
35
Andy Fleming20a14a42008-04-02 16:19:07 -050036#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020037#include <u-boot/sha1.h>
Simon Glassa51ec632013-05-16 13:53:22 +000038#include <asm/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000039#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010040
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010041#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020042extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010043#endif
44
45DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010046
Heiko Schocher21d29f72014-05-28 11:33:33 +020047#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren712fbcf2011-10-18 11:11:49 +000048static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010049 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020050#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010051#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010052#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050053#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010054#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055#include <image.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010056#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010057
Simon Glass0ccff502013-02-24 17:33:25 +000058#include <u-boot/crc.h>
59
Simon Glass13d06982013-05-08 08:06:01 +000060#ifndef CONFIG_SYS_BARGSIZE
61#define CONFIG_SYS_BARGSIZE 512
62#endif
63
Mike Frysinger7edb1862010-10-20 07:17:39 -040064static const table_entry_t uimage_arch[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010065 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
66 { IH_ARCH_ALPHA, "alpha", "Alpha", },
67 { IH_ARCH_ARM, "arm", "ARM", },
68 { IH_ARCH_I386, "x86", "Intel x86", },
69 { IH_ARCH_IA64, "ia64", "IA64", },
70 { IH_ARCH_M68K, "m68k", "M68K", },
71 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
72 { IH_ARCH_MIPS, "mips", "MIPS", },
73 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010074 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070075 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010076 { IH_ARCH_PPC, "ppc", "PowerPC", },
77 { IH_ARCH_S390, "s390", "IBM S390", },
78 { IH_ARCH_SH, "sh", "SuperH", },
79 { IH_ARCH_SPARC, "sparc", "SPARC", },
80 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
81 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
82 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000083 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000084 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000085 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080086 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040087 { IH_ARCH_ARC, "arc", "ARC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010088 { -1, "", "", },
89};
90
Mike Frysinger7edb1862010-10-20 07:17:39 -040091static const table_entry_t uimage_os[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010092 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010093 { IH_OS_LINUX, "linux", "Linux", },
94#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
95 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
96#endif
97 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +020098 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +000099 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100100 { IH_OS_RTEMS, "rtems", "RTEMS", },
101 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800102 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100103#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
104 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100105#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500106#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
107 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
108#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100109#ifdef USE_HOSTCC
110 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
111 { IH_OS_DELL, "dell", "Dell", },
112 { IH_OS_ESIX, "esix", "Esix", },
113 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
114 { IH_OS_IRIX, "irix", "Irix", },
115 { IH_OS_NCR, "ncr", "NCR", },
116 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
117 { IH_OS_PSOS, "psos", "pSOS", },
118 { IH_OS_SCO, "sco", "SCO", },
119 { IH_OS_SOLARIS, "solaris", "Solaris", },
120 { IH_OS_SVR4, "svr4", "SVR4", },
121#endif
122 { -1, "", "", },
123};
124
Mike Frysinger7edb1862010-10-20 07:17:39 -0400125static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000126 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100127 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
128 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400129 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400130 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100131 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700132 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000133 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
134 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
135 { IH_TYPE_INVALID, NULL, "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100136 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000137 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000138 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100139 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
140 { IH_TYPE_SCRIPT, "script", "Script", },
Charles Manning832472a2014-03-06 15:40:50 +1300141 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100142 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000143 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200144 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200145 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600146 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100147 { -1, "", "", },
148};
149
Mike Frysinger7edb1862010-10-20 07:17:39 -0400150static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100151 { IH_COMP_NONE, "none", "uncompressed", },
152 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
153 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200154 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100155 { IH_COMP_LZO, "lzo", "lzo compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100156 { -1, "", "", },
157};
158
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100159/*****************************************************************************/
160/* Legacy format routines */
161/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000162int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100163{
164 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000165 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100166 image_header_t header;
167
168 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000169 memmove(&header, (char *)hdr, image_get_header_size());
170 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100171
Stephen Warren712fbcf2011-10-18 11:11:49 +0000172 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100173
Stephen Warren712fbcf2011-10-18 11:11:49 +0000174 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100175}
176
Stephen Warren712fbcf2011-10-18 11:11:49 +0000177int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100178{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000179 ulong data = image_get_data(hdr);
180 ulong len = image_get_data_size(hdr);
181 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100182
Stephen Warren712fbcf2011-10-18 11:11:49 +0000183 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100184}
185
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100186/**
187 * image_multi_count - get component (sub-image) count
188 * @hdr: pointer to the header of the multi component image
189 *
190 * image_multi_count() returns number of components in a multi
191 * component image.
192 *
193 * Note: no checking of the image type is done, caller must pass
194 * a valid multi component image.
195 *
196 * returns:
197 * number of components
198 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000199ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100200{
201 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100202 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100203
204 /* get start of the image payload, which in case of multi
205 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000206 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100207
208 /* count non empty slots */
209 for (i = 0; size[i]; ++i)
210 count++;
211
212 return count;
213}
214
215/**
216 * image_multi_getimg - get component data address and size
217 * @hdr: pointer to the header of the multi component image
218 * @idx: index of the requested component
219 * @data: pointer to a ulong variable, will hold component data address
220 * @len: pointer to a ulong variable, will hold component size
221 *
222 * image_multi_getimg() returns size and data address for the requested
223 * component in a multi component image.
224 *
225 * Note: no checking of the image type is done, caller must pass
226 * a valid multi component image.
227 *
228 * returns:
229 * data address and size of the component, if idx is valid
230 * 0 in data and len, if idx is out of range
231 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000232void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100233 ulong *data, ulong *len)
234{
235 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100236 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700237 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100238
239 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000240 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100241
242 /* get start of the image payload, which in case of multi
243 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000244 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100245
246 /* get address of the proper component data start, which means
247 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000248 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100249
250 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000251 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100252 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100253
254 /* go over all indices preceding requested component idx */
255 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700256 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000257 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100258 }
259
260 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700261 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100262 } else {
263 *len = 0;
264 *data = 0;
265 }
266}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100267
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100269{
270 const char *os, *arch, *type, *comp;
271
Stephen Warren712fbcf2011-10-18 11:11:49 +0000272 os = genimg_get_os_name(image_get_os(hdr));
273 arch = genimg_get_arch_name(image_get_arch(hdr));
274 type = genimg_get_type_name(image_get_type(hdr));
275 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100276
Stephen Warren712fbcf2011-10-18 11:11:49 +0000277 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100278}
279
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100280/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200281 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200282 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100283 * @p: pointer to prefix string
284 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200285 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100286 * The routine prints out all header fields followed by the size/offset data
287 * for MULTI/SCRIPT images.
288 *
289 * returns:
290 * no returned results
291 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000292void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100293{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200294 const image_header_t *hdr = (const image_header_t *)ptr;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200295 const char *p;
296
Simon Glass1fe7d932013-05-08 08:05:58 +0000297 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000298 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000299 if (IMAGE_ENABLE_TIMESTAMP) {
300 printf("%sCreated: ", p);
301 genimg_print_time((time_t)image_get_time(hdr));
302 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000303 printf("%sImage Type: ", p);
304 image_print_type(hdr);
305 printf("%sData Size: ", p);
306 genimg_print_size(image_get_data_size(hdr));
307 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
308 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100309
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 if (image_check_type(hdr, IH_TYPE_MULTI) ||
311 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100312 int i;
313 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000314 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100315
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100317 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000318 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100319
Stephen Warren712fbcf2011-10-18 11:11:49 +0000320 printf("%s Image %d: ", p, i);
321 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100322
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100324 /*
325 * the user may need to know offsets
326 * if planning to do something with
327 * multiple files
328 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000329 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100330 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100331 }
332 }
333}
334
Marian Balakowicz570abb02008-02-29 15:59:59 +0100335
336#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200337#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100338/**
339 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100340 * @rd_addr: ramdisk image start address
341 * @arch: expected ramdisk architecture
342 * @verify: checksum verification flag
343 *
344 * image_get_ramdisk() returns a pointer to the verified ramdisk image
345 * header. Routine receives image start address and expected architecture
346 * flag. Verification done covers data and header integrity and os/type/arch
347 * fields checking.
348 *
349 * If dataflash support is enabled routine checks for dataflash addresses
350 * and handles required dataflash reads.
351 *
352 * returns:
353 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600354 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100355 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000356static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100357 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100358{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200359 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100360
Stephen Warren712fbcf2011-10-18 11:11:49 +0000361 if (!image_check_magic(rd_hdr)) {
362 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000363 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600364 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100365 }
366
Stephen Warren712fbcf2011-10-18 11:11:49 +0000367 if (!image_check_hcrc(rd_hdr)) {
368 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000369 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600370 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100371 }
372
Simon Glass770605e2012-02-13 13:51:18 +0000373 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000374 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100375
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100376 if (verify) {
377 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000378 if (!image_check_dcrc(rd_hdr)) {
379 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000380 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600381 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100382 }
383 puts("OK\n");
384 }
385
Simon Glass770605e2012-02-13 13:51:18 +0000386 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100387
Stephen Warren712fbcf2011-10-18 11:11:49 +0000388 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
389 !image_check_arch(rd_hdr, arch) ||
390 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
391 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100392 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000393 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600394 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100395 }
396
397 return rd_hdr;
398}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200399#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100400#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100401
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100402/*****************************************************************************/
403/* Shared dual-format routines */
404/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100405#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600406ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
407ulong save_addr; /* Default Save Address */
408ulong save_size; /* Default Save Size (in bytes) */
409
410static int on_loadaddr(const char *name, const char *value, enum env_op op,
411 int flags)
412{
413 switch (op) {
414 case env_op_create:
415 case env_op_overwrite:
416 load_addr = simple_strtoul(value, NULL, 16);
417 break;
418 default:
419 break;
420 }
421
422 return 0;
423}
424U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
425
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100426ulong getenv_bootm_low(void)
427{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000428 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100429 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000430 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100431 return tmp;
432 }
433
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200434#if defined(CONFIG_SYS_SDRAM_BASE)
435 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100436#elif defined(CONFIG_ARM)
437 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100438#else
439 return 0;
440#endif
441}
442
Becky Bruce391fd932008-06-09 20:37:18 -0500443phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100444{
Matthew McClintockc519fac2010-07-08 10:11:08 -0500445 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000446 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100447 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000448 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100449 return tmp;
450 }
Matthew McClintockc519fac2010-07-08 10:11:08 -0500451 s = getenv("bootm_low");
452 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000453 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500454 else
455 tmp = 0;
456
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100457
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100458#if defined(CONFIG_ARM)
Matthew McClintockc519fac2010-07-08 10:11:08 -0500459 return gd->bd->bi_dram[0].size - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100460#else
Matthew McClintockc519fac2010-07-08 10:11:08 -0500461 return gd->bd->bi_memsize - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100462#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100463}
464
Grant Likelyc3624e62011-03-28 09:58:43 +0000465phys_size_t getenv_bootm_mapsize(void)
466{
467 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000468 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000469 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000470 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000471 return tmp;
472 }
473
474#if defined(CONFIG_SYS_BOOTMAPSZ)
475 return CONFIG_SYS_BOOTMAPSZ;
476#else
477 return getenv_bootm_size();
478#endif
479}
480
Stephen Warren712fbcf2011-10-18 11:11:49 +0000481void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100482{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400483 if (to == from)
484 return;
485
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100486#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
487 while (len > 0) {
488 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000489 WATCHDOG_RESET();
490 memmove(to, from, tail);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100491 to += tail;
492 from += tail;
493 len -= tail;
494 }
495#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000496 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100497#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
498}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100499#endif /* !USE_HOSTCC */
500
Stephen Warren712fbcf2011-10-18 11:11:49 +0000501void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100502{
503#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000504 printf("%d Bytes = ", size);
505 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100506#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000507 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100508 size, (double)size / 1.024e3,
509 (double)size / 1.048576e6);
510#endif
511}
512
Simon Glass859e92b2013-05-07 06:11:51 +0000513#if IMAGE_ENABLE_TIMESTAMP
514void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100515{
516#ifndef USE_HOSTCC
517 struct rtc_time tm;
518
Stephen Warren712fbcf2011-10-18 11:11:49 +0000519 to_tm(timestamp, &tm);
520 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100521 tm.tm_year, tm.tm_mon, tm.tm_mday,
522 tm.tm_hour, tm.tm_min, tm.tm_sec);
523#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000524 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100525#endif
526}
Simon Glass859e92b2013-05-07 06:11:51 +0000527#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100528
529/**
530 * get_table_entry_name - translate entry id to long name
531 * @table: pointer to a translation table for entries of a specific type
532 * @msg: message to be returned when translation fails
533 * @id: entry id to be translated
534 *
535 * get_table_entry_name() will go over translation table trying to find
536 * entry that matches given id. If matching entry is found, its long
537 * name is returned to the caller.
538 *
539 * returns:
540 * long entry name if translation succeeds
541 * msg otherwise
542 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400543char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100544{
545 for (; table->id >= 0; ++table) {
546 if (table->id == id)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200547#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Scott Woode3d1ac72009-04-02 16:15:10 -0500548 return table->lname;
549#else
550 return table->lname + gd->reloc_off;
551#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100552 }
553 return (msg);
554}
555
Stephen Warren712fbcf2011-10-18 11:11:49 +0000556const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100557{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000558 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559}
560
Stephen Warren712fbcf2011-10-18 11:11:49 +0000561const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100562{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000563 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
564 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100565}
566
Stephen Warren712fbcf2011-10-18 11:11:49 +0000567const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100568{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000569 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100570}
571
Stephen Warren712fbcf2011-10-18 11:11:49 +0000572const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100573{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000574 return (get_table_entry_name(uimage_comp, "Unknown Compression",
575 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100576}
577
578/**
579 * get_table_entry_id - translate short entry name to id
580 * @table: pointer to a translation table for entries of a specific type
581 * @table_name: to be used in case of error
582 * @name: entry short name to be translated
583 *
584 * get_table_entry_id() will go over translation table trying to find
585 * entry that matches given short name. If matching entry is found,
586 * its id returned to the caller.
587 *
588 * returns:
589 * entry id if translation succeeds
590 * -1 otherwise
591 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400592int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100593 const char *table_name, const char *name)
594{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400595 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100596#ifdef USE_HOSTCC
597 int first = 1;
598
599 for (t = table; t->id >= 0; ++t) {
600 if (t->sname && strcasecmp(t->sname, name) == 0)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000601 return(t->id);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100602 }
603
Stephen Warren712fbcf2011-10-18 11:11:49 +0000604 fprintf(stderr, "\nInvalid %s Type - valid names are", table_name);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100605 for (t = table; t->id >= 0; ++t) {
606 if (t->sname == NULL)
607 continue;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000608 fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100609 first = 0;
610 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000611 fprintf(stderr, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100612#else
613 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200614#ifdef CONFIG_NEEDS_MANUAL_RELOC
Scott Woode3d1ac72009-04-02 16:15:10 -0500615 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200616#else
617 if (t->sname && strcmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500618#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100619 return (t->id);
620 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000621 debug("Invalid %s Type: %s\n", table_name, name);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100622#endif /* USE_HOSTCC */
Marian Balakowicz570abb02008-02-29 15:59:59 +0100623 return (-1);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100624}
625
Stephen Warren712fbcf2011-10-18 11:11:49 +0000626int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100627{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000628 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100629}
630
Stephen Warren712fbcf2011-10-18 11:11:49 +0000631int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100632{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000633 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100634}
635
Stephen Warren712fbcf2011-10-18 11:11:49 +0000636int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100637{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000638 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100639}
640
Stephen Warren712fbcf2011-10-18 11:11:49 +0000641int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100642{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000643 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100644}
645
646#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100647/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700648 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
649 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700650 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700651 * @fit_uname_config: double pointer to a char, will hold pointer to a
652 * configuration unit name
653 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
654 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700655 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700656 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700657 * which is normally the first argv of bootm/bootz
658 *
659 * returns:
660 * kernel start address
661 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700662ulong genimg_get_kernel_addr_fit(char * const img_addr,
663 const char **fit_uname_config,
664 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700665{
Bryan Wu0f641402014-07-31 17:39:58 -0700666 ulong kernel_addr;
667
668 /* find out kernel image address */
669 if (!img_addr) {
670 kernel_addr = load_addr;
671 debug("* kernel: default image load address = 0x%08lx\n",
672 load_addr);
673#if defined(CONFIG_FIT)
674 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700675 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700676 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700677 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700678 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700679 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700680 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700681 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700682#endif
683 } else {
684 kernel_addr = simple_strtoul(img_addr, NULL, 16);
685 debug("* kernel: cmdline image address = 0x%08lx\n",
686 kernel_addr);
687 }
688
689 return kernel_addr;
690}
691
692/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700693 * genimg_get_kernel_addr() is the simple version of
694 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
695 */
696ulong genimg_get_kernel_addr(char * const img_addr)
697{
698 const char *fit_uname_config = NULL;
699 const char *fit_uname_kernel = NULL;
700
701 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
702 &fit_uname_kernel);
703}
704
705/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100706 * genimg_get_format - get image format type
707 * @img_addr: image start address
708 *
709 * genimg_get_format() checks whether provided address points to a valid
710 * legacy or FIT image.
711 *
712 * New uImage format and FDT blob are based on a libfdt. FDT blob
713 * may be passed directly or embedded in a FIT image. In both situations
714 * genimg_get_format() must be able to dectect libfdt header.
715 *
716 * returns:
717 * image format type or IMAGE_FORMAT_INVALID if no image is present
718 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000719int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100720{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200721#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200722 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100723
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200724 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100725 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200726 return IMAGE_FORMAT_LEGACY;
727#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100728#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Heiko Schocher21d29f72014-05-28 11:33:33 +0200729 if (fdt_check_header(img_addr) == 0)
730 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500731#endif
732#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200733 if (android_image_check_header(img_addr) == 0)
734 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100735#endif
736
Heiko Schocher21d29f72014-05-28 11:33:33 +0200737 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100738}
739
740/**
741 * genimg_get_image - get image from special storage (if necessary)
742 * @img_addr: image start address
743 *
744 * genimg_get_image() checks if provided image start adddress is located
745 * in a dataflash storage. If so, image is moved to a system RAM memory.
746 *
747 * returns:
748 * image start address after possible relocation from special storage
749 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000750ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100751{
752 ulong ram_addr = img_addr;
753
754#ifdef CONFIG_HAS_DATAFLASH
755 ulong h_size, d_size;
756
Stephen Warren712fbcf2011-10-18 11:11:49 +0000757 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000758 void *buf;
759
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100760 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200761 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100762
763 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000764 h_size = image_get_header_size();
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100765#if defined(CONFIG_FIT)
766 if (sizeof(struct fdt_header) > h_size)
767 h_size = sizeof(struct fdt_header);
768#endif
769
770 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000771 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100772 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
773
Simon Glass35e7b0f2013-05-07 06:12:03 +0000774 buf = map_sysmem(ram_addr, 0);
775 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100776
777 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000778 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200779#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100780 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000781 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000782 debug(" Legacy format image found at 0x%08lx, "
783 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100784 ram_addr, d_size);
785 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200786#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100787#if defined(CONFIG_FIT)
788 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000789 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000790 debug(" FIT/FDT format image found at 0x%08lx, "
791 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100792 ram_addr, d_size);
793 break;
794#endif
795 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000796 printf(" No valid image found at 0x%08lx\n",
797 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100798 return ram_addr;
799 }
800
801 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000802 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100803 "%08lx to RAM address %08lx\n", img_addr + h_size,
804 ram_addr + h_size);
805
Stephen Warren712fbcf2011-10-18 11:11:49 +0000806 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000807 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100808
809 }
810#endif /* CONFIG_HAS_DATAFLASH */
811
812 return ram_addr;
813}
814
815/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100816 * fit_has_config - check if there is a valid FIT configuration
817 * @images: pointer to the bootm command headers structure
818 *
819 * fit_has_config() checks if there is a FIT configuration in use
820 * (if FTI support is present).
821 *
822 * returns:
823 * 0, no FIT support or no configuration found
824 * 1, configuration found
825 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000826int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100827{
828#if defined(CONFIG_FIT)
829 if (images->fit_uname_cfg)
830 return 1;
831#endif
832 return 0;
833}
834
835/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100836 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100837 * @argc: command argument count
838 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100839 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100840 * @arch: expected ramdisk architecture
841 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
842 * @rd_end: pointer to a ulong variable, will hold ramdisk end
843 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100844 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100845 * Curently supported are the following ramdisk sources:
846 * - multicomponent kernel/ramdisk image,
847 * - commandline provided address of decicated ramdisk image.
848 *
849 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100850 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100851 * rd_start and rd_end are set to ramdisk start/end addresses if
852 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100853 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500854 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100855 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100856 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000857int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100858 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100859{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100860 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100861 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200862#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200863 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200864#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +0000865 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200866#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000867 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200868#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100869#if defined(CONFIG_FIT)
Simon Glassf320a4d2013-07-10 23:08:10 -0700870 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100871 const char *fit_uname_ramdisk = NULL;
872 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100873 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100874#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700875 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100876
Marian Balakowiczc8779642008-03-12 10:12:37 +0100877 *rd_start = 0;
878 *rd_end = 0;
879
Simon Glass983c72f2013-06-11 11:14:46 -0700880 if (argc >= 2)
881 select = argv[1];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100882 /*
883 * Look for a '-' which indicates to ignore the
884 * ramdisk argument
885 */
Simon Glass983c72f2013-06-11 11:14:46 -0700886 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000887 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100888 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700889 } else if (select || genimg_has_config(images)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100890#if defined(CONFIG_FIT)
Simon Glass983c72f2013-06-11 11:14:46 -0700891 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100892 /*
893 * If the init ramdisk comes from the FIT image and
894 * the FIT image address is omitted in the command
895 * line argument, try to use os FIT image address or
896 * default load address.
897 */
898 if (images->fit_uname_os)
899 default_addr = (ulong)images->fit_hdr_os;
900 else
901 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100902
Simon Glass983c72f2013-06-11 11:14:46 -0700903 if (fit_parse_conf(select, default_addr,
904 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000905 debug("* ramdisk: config '%s' from image at "
906 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100907 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700908 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100909 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000910 debug("* ramdisk: subimage '%s' from image at "
911 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100912 fit_uname_ramdisk, rd_addr);
913 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100914#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100915 {
Simon Glass983c72f2013-06-11 11:14:46 -0700916 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000917 debug("* ramdisk: cmdline image address = "
918 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100919 rd_addr);
920 }
921#if defined(CONFIG_FIT)
922 } else {
923 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +0000924 * command argument. If the property is not defined,
925 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100926 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000927 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +0000928 rd_noffset = fit_get_node_from_config(images,
929 FIT_RAMDISK_PROP, rd_addr);
930 if (rd_noffset == -ENOLINK)
Peter Tyser41266c92008-08-05 10:51:57 -0500931 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +0000932 else if (rd_noffset < 0)
933 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100934 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100935#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100936
937 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000938 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100939
940 /*
941 * Check if there is an initrd image at the
942 * address provided in the second bootm argument
943 * check image type, for FIT images get FIT node.
944 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000945 buf = map_sysmem(rd_addr, 0);
946 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200947#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100948 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000949 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100950 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100951
Simon Glass770605e2012-02-13 13:51:18 +0000952 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000953 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100954 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100955
Marian Balakowiczc8779642008-03-12 10:12:37 +0100956 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -0600957 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -0600958
Stephen Warren712fbcf2011-10-18 11:11:49 +0000959 rd_data = image_get_data(rd_hdr);
960 rd_len = image_get_data_size(rd_hdr);
961 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100962 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200963#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100964#if defined(CONFIG_FIT)
965 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -0600966 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +0000967 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -0700968 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +0000969 IH_TYPE_RAMDISK,
970 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -0600971 FIT_LOAD_OPTIONAL_NON_ZERO,
972 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +0000973 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +0200974 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100975
Simon Glassa51ec632013-05-16 13:53:22 +0000976 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100977 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100978 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100979 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100980#endif
981 default:
Marek Vasut017e1f32012-03-18 11:47:58 +0000982#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -0700983 end = NULL;
984 if (select)
985 end = strchr(select, ':');
986 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +0000987 rd_len = simple_strtoul(++end, NULL, 16);
988 rd_data = rd_addr;
989 } else
990#endif
991 {
992 puts("Wrong Ramdisk Image Format\n");
993 rd_data = rd_len = rd_load = 0;
994 return 1;
995 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100996 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100997 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +0000998 image_check_type(&images->legacy_hdr_os_copy,
999 IH_TYPE_MULTI)) {
1000
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001001 /*
1002 * Now check if we have a legacy mult-component image,
1003 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001004 */
Simon Glass770605e2012-02-13 13:51:18 +00001005 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001006 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001007 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001008 (ulong)images->legacy_hdr_os);
1009
Stephen Warren712fbcf2011-10-18 11:11:49 +00001010 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001011 }
1012#ifdef CONFIG_ANDROID_BOOT_IMAGE
1013 else if ((genimg_get_format(images) == IMAGE_FORMAT_ANDROID) &&
1014 (!android_image_get_ramdisk((void *)images->os.start,
1015 &rd_data, &rd_len))) {
1016 /* empty */
1017 }
1018#endif
1019 else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001020 /*
1021 * no initrd image
1022 */
Simon Glass770605e2012-02-13 13:51:18 +00001023 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001024 rd_len = rd_data = 0;
1025 }
1026
1027 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001028 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001029 } else {
1030 *rd_start = rd_data;
1031 *rd_end = rd_data + rd_len;
1032 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001033 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001034 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001035
1036 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001037}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001038
John Rigbyfca43cc2010-10-13 13:57:35 -06001039#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001040/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001041 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001042 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001043 * @rd_data: ramdisk data start address
1044 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001045 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1046 * start address (after possible relocation)
1047 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1048 * end address (after possible relocation)
1049 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001050 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001051 * variable and if requested ramdisk data is moved to a specified location.
1052 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001053 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1054 * start/end addresses if ramdisk image start and len were provided,
1055 * otherwise set initrd_start and initrd_end set to zeros.
1056 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001057 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001058 * 0 - success
1059 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001060 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001061int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001062 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001063{
1064 char *s;
1065 ulong initrd_high;
1066 int initrd_copy_to_ram = 1;
1067
Stephen Warren712fbcf2011-10-18 11:11:49 +00001068 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001069 /* a value of "no" or a similar string will act like 0,
1070 * turning the "load high" feature off. This is intentional.
1071 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001072 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001073 if (initrd_high == ~0)
1074 initrd_copy_to_ram = 0;
1075 } else {
1076 /* not set, no restrictions to load high */
1077 initrd_high = ~0;
1078 }
1079
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001080
1081#ifdef CONFIG_LOGBUFFER
1082 /* Prevent initrd from overwriting logbuffer */
1083 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1084#endif
1085
Stephen Warren712fbcf2011-10-18 11:11:49 +00001086 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001087 initrd_high, initrd_copy_to_ram);
1088
1089 if (rd_data) {
1090 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001091 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001092 *initrd_start = rd_data;
1093 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001094 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001095 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001096 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001097 *initrd_start = (ulong)lmb_alloc_base(lmb,
1098 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001099 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001100 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1101 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001102
Kumar Galae822d7f2008-02-27 21:51:49 -06001103 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001104 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001105 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001106 }
Simon Glass770605e2012-02-13 13:51:18 +00001107 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001108
1109 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001110 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001111 *initrd_start, *initrd_end);
1112
Stephen Warren712fbcf2011-10-18 11:11:49 +00001113 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001114 (void *)rd_data, rd_len, CHUNKSZ);
1115
Kumar Gala3b200112011-12-07 04:42:58 +00001116#ifdef CONFIG_MP
1117 /*
1118 * Ensure the image is flushed to memory to handle
1119 * AMP boot scenarios in which we might not be
1120 * HW cache coherent
1121 */
1122 flush_cache((unsigned long)*initrd_start, rd_len);
1123#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001124 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001125 }
1126 } else {
1127 *initrd_start = 0;
1128 *initrd_end = 0;
1129 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001130 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001131 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001132
Kumar Galae822d7f2008-02-27 21:51:49 -06001133 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001134
Kumar Galae822d7f2008-02-27 21:51:49 -06001135error:
1136 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001137}
John Rigbyfca43cc2010-10-13 13:57:35 -06001138#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001139
Simon Glass90268b82014-10-19 21:11:24 -06001140int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1141 ulong *setup_start, ulong *setup_len)
1142{
1143#if defined(CONFIG_FIT)
1144 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1145#else
1146 return -ENOENT;
1147#endif
1148}
1149
John Rigbyfca43cc2010-10-13 13:57:35 -06001150#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001151/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001152 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001153 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001154 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1155 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1156 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001157 * boot_get_cmdline() allocates space for kernel command line below
Grant Likely590d3ca2011-03-28 09:58:34 +00001158 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001159 * variable is present its contents is copied to allocated kernel
1160 * command line.
1161 *
1162 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001163 * 0 - success
1164 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001165 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001166int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001167{
1168 char *cmdline;
1169 char *s;
1170
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001171 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001172 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001173
1174 if (cmdline == NULL)
1175 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001176
1177 if ((s = getenv("bootargs")) == NULL)
1178 s = "";
1179
1180 strcpy(cmdline, s);
1181
1182 *cmd_start = (ulong) & cmdline[0];
1183 *cmd_end = *cmd_start + strlen(cmdline);
1184
Stephen Warren712fbcf2011-10-18 11:11:49 +00001185 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001186
Kumar Galae822d7f2008-02-27 21:51:49 -06001187 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001188}
John Rigbyfca43cc2010-10-13 13:57:35 -06001189#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001190
John Rigbyfca43cc2010-10-13 13:57:35 -06001191#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001192/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001193 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001194 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001195 * @kbd: double pointer to board info data
1196 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001197 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001198 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1199 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001200 *
1201 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001202 * 0 - success
1203 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001204 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001205int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001206{
Becky Bruce391fd932008-06-09 20:37:18 -05001207 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001208 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001209 if (*kbd == NULL)
1210 return -1;
1211
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001212 **kbd = *(gd->bd);
1213
Stephen Warren712fbcf2011-10-18 11:11:49 +00001214 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001215
1216#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1217 do_bdinfo(NULL, 0, 0, NULL);
1218#endif
1219
Kumar Galae822d7f2008-02-27 21:51:49 -06001220 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001221}
John Rigbyfca43cc2010-10-13 13:57:35 -06001222#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001223
1224#ifdef CONFIG_LMB
1225int image_setup_linux(bootm_headers_t *images)
1226{
1227 ulong of_size = images->ft_len;
1228 char **of_flat_tree = &images->ft_addr;
1229 ulong *initrd_start = &images->initrd_start;
1230 ulong *initrd_end = &images->initrd_end;
1231 struct lmb *lmb = &images->lmb;
1232 ulong rd_len;
1233 int ret;
1234
1235 if (IMAGE_ENABLE_OF_LIBFDT)
1236 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1237
1238 if (IMAGE_BOOT_GET_CMDLINE) {
1239 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1240 &images->cmdline_end);
1241 if (ret) {
1242 puts("ERROR with allocation of cmdline\n");
1243 return ret;
1244 }
1245 }
1246 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1247 rd_len = images->rd_end - images->rd_start;
1248 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1249 initrd_start, initrd_end);
1250 if (ret)
1251 return ret;
1252 }
1253
1254 if (IMAGE_ENABLE_OF_LIBFDT) {
1255 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1256 if (ret)
1257 return ret;
1258 }
1259
1260 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1261 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1262 if (ret)
1263 return ret;
1264 }
1265
1266 return 0;
1267}
1268#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001269#endif /* !USE_HOSTCC */