blob: 26eb89a2b29b56875736f78acdaccae4c3ebf883 [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>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010037#include <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
Stephen Warren712fbcf2011-10-18 11:11:49 +000047static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010048 int verify);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010049#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010050#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050051#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010052#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010053#include <image.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010054#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055
Simon Glass0ccff502013-02-24 17:33:25 +000056#include <u-boot/crc.h>
57
Simon Glass13d06982013-05-08 08:06:01 +000058#ifndef CONFIG_SYS_BARGSIZE
59#define CONFIG_SYS_BARGSIZE 512
60#endif
61
Mike Frysinger7edb1862010-10-20 07:17:39 -040062static const table_entry_t uimage_arch[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010063 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
64 { IH_ARCH_ALPHA, "alpha", "Alpha", },
65 { IH_ARCH_ARM, "arm", "ARM", },
66 { IH_ARCH_I386, "x86", "Intel x86", },
67 { IH_ARCH_IA64, "ia64", "IA64", },
68 { IH_ARCH_M68K, "m68k", "M68K", },
69 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
70 { IH_ARCH_MIPS, "mips", "MIPS", },
71 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010072 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070073 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010074 { IH_ARCH_PPC, "ppc", "PowerPC", },
75 { IH_ARCH_S390, "s390", "IBM S390", },
76 { IH_ARCH_SH, "sh", "SuperH", },
77 { IH_ARCH_SPARC, "sparc", "SPARC", },
78 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
79 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
80 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000081 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000082 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000083 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080084 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040085 { IH_ARCH_ARC, "arc", "ARC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010086 { -1, "", "", },
87};
88
Mike Frysinger7edb1862010-10-20 07:17:39 -040089static const table_entry_t uimage_os[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010090 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010091 { IH_OS_LINUX, "linux", "Linux", },
92#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
93 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
94#endif
95 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +020096 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +000097 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010098 { IH_OS_RTEMS, "rtems", "RTEMS", },
99 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800100 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100101#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
102 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100103#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500104#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
105 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
106#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100107#ifdef USE_HOSTCC
108 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
109 { IH_OS_DELL, "dell", "Dell", },
110 { IH_OS_ESIX, "esix", "Esix", },
111 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
112 { IH_OS_IRIX, "irix", "Irix", },
113 { IH_OS_NCR, "ncr", "NCR", },
114 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
115 { IH_OS_PSOS, "psos", "pSOS", },
116 { IH_OS_SCO, "sco", "SCO", },
117 { IH_OS_SOLARIS, "solaris", "Solaris", },
118 { IH_OS_SVR4, "svr4", "SVR4", },
119#endif
120 { -1, "", "", },
121};
122
Mike Frysinger7edb1862010-10-20 07:17:39 -0400123static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000124 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100125 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
126 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400127 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400128 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100129 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700130 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000131 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
132 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
133 { IH_TYPE_INVALID, NULL, "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100134 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000135 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000136 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100137 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
138 { IH_TYPE_SCRIPT, "script", "Script", },
139 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000140 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200141 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200142 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100143 { -1, "", "", },
144};
145
Mike Frysinger7edb1862010-10-20 07:17:39 -0400146static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100147 { IH_COMP_NONE, "none", "uncompressed", },
148 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
149 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200150 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100151 { IH_COMP_LZO, "lzo", "lzo compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100152 { -1, "", "", },
153};
154
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100155/*****************************************************************************/
156/* Legacy format routines */
157/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000158int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100159{
160 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000161 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100162 image_header_t header;
163
164 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000165 memmove(&header, (char *)hdr, image_get_header_size());
166 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100167
Stephen Warren712fbcf2011-10-18 11:11:49 +0000168 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100169
Stephen Warren712fbcf2011-10-18 11:11:49 +0000170 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100171}
172
Stephen Warren712fbcf2011-10-18 11:11:49 +0000173int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100174{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000175 ulong data = image_get_data(hdr);
176 ulong len = image_get_data_size(hdr);
177 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100178
Stephen Warren712fbcf2011-10-18 11:11:49 +0000179 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100180}
181
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100182/**
183 * image_multi_count - get component (sub-image) count
184 * @hdr: pointer to the header of the multi component image
185 *
186 * image_multi_count() returns number of components in a multi
187 * component image.
188 *
189 * Note: no checking of the image type is done, caller must pass
190 * a valid multi component image.
191 *
192 * returns:
193 * number of components
194 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000195ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100196{
197 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100198 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100199
200 /* get start of the image payload, which in case of multi
201 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000202 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100203
204 /* count non empty slots */
205 for (i = 0; size[i]; ++i)
206 count++;
207
208 return count;
209}
210
211/**
212 * image_multi_getimg - get component data address and size
213 * @hdr: pointer to the header of the multi component image
214 * @idx: index of the requested component
215 * @data: pointer to a ulong variable, will hold component data address
216 * @len: pointer to a ulong variable, will hold component size
217 *
218 * image_multi_getimg() returns size and data address for the requested
219 * component in a multi component image.
220 *
221 * Note: no checking of the image type is done, caller must pass
222 * a valid multi component image.
223 *
224 * returns:
225 * data address and size of the component, if idx is valid
226 * 0 in data and len, if idx is out of range
227 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000228void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100229 ulong *data, ulong *len)
230{
231 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100232 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700233 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100234
235 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000236 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100237
238 /* get start of the image payload, which in case of multi
239 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000240 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100241
242 /* get address of the proper component data start, which means
243 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000244 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100245
246 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000247 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100248 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100249
250 /* go over all indices preceding requested component idx */
251 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700252 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000253 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100254 }
255
256 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700257 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100258 } else {
259 *len = 0;
260 *data = 0;
261 }
262}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100263
Stephen Warren712fbcf2011-10-18 11:11:49 +0000264static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100265{
266 const char *os, *arch, *type, *comp;
267
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268 os = genimg_get_os_name(image_get_os(hdr));
269 arch = genimg_get_arch_name(image_get_arch(hdr));
270 type = genimg_get_type_name(image_get_type(hdr));
271 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100272
Stephen Warren712fbcf2011-10-18 11:11:49 +0000273 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100274}
275
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100276/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200277 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200278 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100279 * @p: pointer to prefix string
280 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200281 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100282 * The routine prints out all header fields followed by the size/offset data
283 * for MULTI/SCRIPT images.
284 *
285 * returns:
286 * no returned results
287 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000288void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100289{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200290 const image_header_t *hdr = (const image_header_t *)ptr;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200291 const char *p;
292
Simon Glass1fe7d932013-05-08 08:05:58 +0000293 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000294 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000295 if (IMAGE_ENABLE_TIMESTAMP) {
296 printf("%sCreated: ", p);
297 genimg_print_time((time_t)image_get_time(hdr));
298 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000299 printf("%sImage Type: ", p);
300 image_print_type(hdr);
301 printf("%sData Size: ", p);
302 genimg_print_size(image_get_data_size(hdr));
303 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
304 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100305
Stephen Warren712fbcf2011-10-18 11:11:49 +0000306 if (image_check_type(hdr, IH_TYPE_MULTI) ||
307 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100308 int i;
309 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100311
Stephen Warren712fbcf2011-10-18 11:11:49 +0000312 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100313 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000314 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100315
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 printf("%s Image %d: ", p, i);
317 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100318
Stephen Warren712fbcf2011-10-18 11:11:49 +0000319 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100320 /*
321 * the user may need to know offsets
322 * if planning to do something with
323 * multiple files
324 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100326 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100327 }
328 }
329}
330
Marian Balakowicz570abb02008-02-29 15:59:59 +0100331
332#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100333/**
334 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100335 * @rd_addr: ramdisk image start address
336 * @arch: expected ramdisk architecture
337 * @verify: checksum verification flag
338 *
339 * image_get_ramdisk() returns a pointer to the verified ramdisk image
340 * header. Routine receives image start address and expected architecture
341 * flag. Verification done covers data and header integrity and os/type/arch
342 * fields checking.
343 *
344 * If dataflash support is enabled routine checks for dataflash addresses
345 * and handles required dataflash reads.
346 *
347 * returns:
348 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600349 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100350 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000351static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100352 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100353{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200354 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100355
Stephen Warren712fbcf2011-10-18 11:11:49 +0000356 if (!image_check_magic(rd_hdr)) {
357 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000358 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600359 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100360 }
361
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362 if (!image_check_hcrc(rd_hdr)) {
363 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000364 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600365 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100366 }
367
Simon Glass770605e2012-02-13 13:51:18 +0000368 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000369 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100370
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100371 if (verify) {
372 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000373 if (!image_check_dcrc(rd_hdr)) {
374 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000375 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600376 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100377 }
378 puts("OK\n");
379 }
380
Simon Glass770605e2012-02-13 13:51:18 +0000381 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100382
Stephen Warren712fbcf2011-10-18 11:11:49 +0000383 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
384 !image_check_arch(rd_hdr, arch) ||
385 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
386 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100387 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000388 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600389 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100390 }
391
392 return rd_hdr;
393}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100394#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100395
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100396/*****************************************************************************/
397/* Shared dual-format routines */
398/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100399#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600400ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
401ulong save_addr; /* Default Save Address */
402ulong save_size; /* Default Save Size (in bytes) */
403
404static int on_loadaddr(const char *name, const char *value, enum env_op op,
405 int flags)
406{
407 switch (op) {
408 case env_op_create:
409 case env_op_overwrite:
410 load_addr = simple_strtoul(value, NULL, 16);
411 break;
412 default:
413 break;
414 }
415
416 return 0;
417}
418U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
419
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100420ulong getenv_bootm_low(void)
421{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000422 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100423 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000424 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100425 return tmp;
426 }
427
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200428#if defined(CONFIG_SYS_SDRAM_BASE)
429 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100430#elif defined(CONFIG_ARM)
431 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100432#else
433 return 0;
434#endif
435}
436
Becky Bruce391fd932008-06-09 20:37:18 -0500437phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100438{
Matthew McClintockc519fac2010-07-08 10:11:08 -0500439 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000440 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100441 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000442 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100443 return tmp;
444 }
Matthew McClintockc519fac2010-07-08 10:11:08 -0500445 s = getenv("bootm_low");
446 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000447 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500448 else
449 tmp = 0;
450
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100451
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100452#if defined(CONFIG_ARM)
Matthew McClintockc519fac2010-07-08 10:11:08 -0500453 return gd->bd->bi_dram[0].size - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100454#else
Matthew McClintockc519fac2010-07-08 10:11:08 -0500455 return gd->bd->bi_memsize - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100456#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100457}
458
Grant Likelyc3624e62011-03-28 09:58:43 +0000459phys_size_t getenv_bootm_mapsize(void)
460{
461 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000462 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000463 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000464 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000465 return tmp;
466 }
467
468#if defined(CONFIG_SYS_BOOTMAPSZ)
469 return CONFIG_SYS_BOOTMAPSZ;
470#else
471 return getenv_bootm_size();
472#endif
473}
474
Stephen Warren712fbcf2011-10-18 11:11:49 +0000475void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100476{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400477 if (to == from)
478 return;
479
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100480#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
481 while (len > 0) {
482 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000483 WATCHDOG_RESET();
484 memmove(to, from, tail);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100485 to += tail;
486 from += tail;
487 len -= tail;
488 }
489#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000490 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100491#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
492}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100493#endif /* !USE_HOSTCC */
494
Stephen Warren712fbcf2011-10-18 11:11:49 +0000495void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100496{
497#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000498 printf("%d Bytes = ", size);
499 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100500#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000501 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100502 size, (double)size / 1.024e3,
503 (double)size / 1.048576e6);
504#endif
505}
506
Simon Glass859e92b2013-05-07 06:11:51 +0000507#if IMAGE_ENABLE_TIMESTAMP
508void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100509{
510#ifndef USE_HOSTCC
511 struct rtc_time tm;
512
Stephen Warren712fbcf2011-10-18 11:11:49 +0000513 to_tm(timestamp, &tm);
514 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100515 tm.tm_year, tm.tm_mon, tm.tm_mday,
516 tm.tm_hour, tm.tm_min, tm.tm_sec);
517#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000518 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100519#endif
520}
Simon Glass859e92b2013-05-07 06:11:51 +0000521#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100522
523/**
524 * get_table_entry_name - translate entry id to long name
525 * @table: pointer to a translation table for entries of a specific type
526 * @msg: message to be returned when translation fails
527 * @id: entry id to be translated
528 *
529 * get_table_entry_name() will go over translation table trying to find
530 * entry that matches given id. If matching entry is found, its long
531 * name is returned to the caller.
532 *
533 * returns:
534 * long entry name if translation succeeds
535 * msg otherwise
536 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400537char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100538{
539 for (; table->id >= 0; ++table) {
540 if (table->id == id)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200541#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Scott Woode3d1ac72009-04-02 16:15:10 -0500542 return table->lname;
543#else
544 return table->lname + gd->reloc_off;
545#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100546 }
547 return (msg);
548}
549
Stephen Warren712fbcf2011-10-18 11:11:49 +0000550const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100551{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000552 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100553}
554
Stephen Warren712fbcf2011-10-18 11:11:49 +0000555const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100556{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000557 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
558 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559}
560
Stephen Warren712fbcf2011-10-18 11:11:49 +0000561const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100562{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000563 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100564}
565
Stephen Warren712fbcf2011-10-18 11:11:49 +0000566const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100567{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000568 return (get_table_entry_name(uimage_comp, "Unknown Compression",
569 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100570}
571
572/**
573 * get_table_entry_id - translate short entry name to id
574 * @table: pointer to a translation table for entries of a specific type
575 * @table_name: to be used in case of error
576 * @name: entry short name to be translated
577 *
578 * get_table_entry_id() will go over translation table trying to find
579 * entry that matches given short name. If matching entry is found,
580 * its id returned to the caller.
581 *
582 * returns:
583 * entry id if translation succeeds
584 * -1 otherwise
585 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400586int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100587 const char *table_name, const char *name)
588{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400589 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100590#ifdef USE_HOSTCC
591 int first = 1;
592
593 for (t = table; t->id >= 0; ++t) {
594 if (t->sname && strcasecmp(t->sname, name) == 0)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000595 return(t->id);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100596 }
597
Stephen Warren712fbcf2011-10-18 11:11:49 +0000598 fprintf(stderr, "\nInvalid %s Type - valid names are", table_name);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100599 for (t = table; t->id >= 0; ++t) {
600 if (t->sname == NULL)
601 continue;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000602 fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100603 first = 0;
604 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000605 fprintf(stderr, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100606#else
607 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200608#ifdef CONFIG_NEEDS_MANUAL_RELOC
Scott Woode3d1ac72009-04-02 16:15:10 -0500609 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200610#else
611 if (t->sname && strcmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500612#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100613 return (t->id);
614 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000615 debug("Invalid %s Type: %s\n", table_name, name);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100616#endif /* USE_HOSTCC */
Marian Balakowicz570abb02008-02-29 15:59:59 +0100617 return (-1);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100618}
619
Stephen Warren712fbcf2011-10-18 11:11:49 +0000620int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100621{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000622 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100623}
624
Stephen Warren712fbcf2011-10-18 11:11:49 +0000625int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100626{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000627 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100628}
629
Stephen Warren712fbcf2011-10-18 11:11:49 +0000630int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100631{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000632 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100633}
634
Stephen Warren712fbcf2011-10-18 11:11:49 +0000635int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100636{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000637 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100638}
639
640#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100641/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100642 * genimg_get_format - get image format type
643 * @img_addr: image start address
644 *
645 * genimg_get_format() checks whether provided address points to a valid
646 * legacy or FIT image.
647 *
648 * New uImage format and FDT blob are based on a libfdt. FDT blob
649 * may be passed directly or embedded in a FIT image. In both situations
650 * genimg_get_format() must be able to dectect libfdt header.
651 *
652 * returns:
653 * image format type or IMAGE_FORMAT_INVALID if no image is present
654 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000655int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100656{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200657 ulong format = IMAGE_FORMAT_INVALID;
658 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100659
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200660 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100661 if (image_check_magic(hdr))
662 format = IMAGE_FORMAT_LEGACY;
663#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500664 else if (fdt_check_header(img_addr) == 0)
665 format = IMAGE_FORMAT_FIT;
666#endif
667#ifdef CONFIG_ANDROID_BOOT_IMAGE
668 else if (android_image_check_header(img_addr) == 0)
669 format = IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100670#endif
671
672 return format;
673}
674
675/**
676 * genimg_get_image - get image from special storage (if necessary)
677 * @img_addr: image start address
678 *
679 * genimg_get_image() checks if provided image start adddress is located
680 * in a dataflash storage. If so, image is moved to a system RAM memory.
681 *
682 * returns:
683 * image start address after possible relocation from special storage
684 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000685ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100686{
687 ulong ram_addr = img_addr;
688
689#ifdef CONFIG_HAS_DATAFLASH
690 ulong h_size, d_size;
691
Stephen Warren712fbcf2011-10-18 11:11:49 +0000692 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000693 void *buf;
694
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100695 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200696 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100697
698 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000699 h_size = image_get_header_size();
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100700#if defined(CONFIG_FIT)
701 if (sizeof(struct fdt_header) > h_size)
702 h_size = sizeof(struct fdt_header);
703#endif
704
705 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000706 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100707 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
708
Simon Glass35e7b0f2013-05-07 06:12:03 +0000709 buf = map_sysmem(ram_addr, 0);
710 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100711
712 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000713 switch (genimg_get_format(buf)) {
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100714 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000715 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000716 debug(" Legacy format image found at 0x%08lx, "
717 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100718 ram_addr, d_size);
719 break;
720#if defined(CONFIG_FIT)
721 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000722 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000723 debug(" FIT/FDT format image found at 0x%08lx, "
724 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100725 ram_addr, d_size);
726 break;
727#endif
728 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000729 printf(" No valid image found at 0x%08lx\n",
730 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100731 return ram_addr;
732 }
733
734 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000735 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100736 "%08lx to RAM address %08lx\n", img_addr + h_size,
737 ram_addr + h_size);
738
Stephen Warren712fbcf2011-10-18 11:11:49 +0000739 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000740 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100741
742 }
743#endif /* CONFIG_HAS_DATAFLASH */
744
745 return ram_addr;
746}
747
748/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100749 * fit_has_config - check if there is a valid FIT configuration
750 * @images: pointer to the bootm command headers structure
751 *
752 * fit_has_config() checks if there is a FIT configuration in use
753 * (if FTI support is present).
754 *
755 * returns:
756 * 0, no FIT support or no configuration found
757 * 1, configuration found
758 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000759int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100760{
761#if defined(CONFIG_FIT)
762 if (images->fit_uname_cfg)
763 return 1;
764#endif
765 return 0;
766}
767
768/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100769 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100770 * @argc: command argument count
771 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100772 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100773 * @arch: expected ramdisk architecture
774 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
775 * @rd_end: pointer to a ulong variable, will hold ramdisk end
776 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100777 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100778 * Curently supported are the following ramdisk sources:
779 * - multicomponent kernel/ramdisk image,
780 * - commandline provided address of decicated ramdisk image.
781 *
782 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100783 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100784 * rd_start and rd_end are set to ramdisk start/end addresses if
785 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100786 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500787 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100788 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100789 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000790int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100791 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100792{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100793 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100794 ulong rd_data, rd_len;
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200795 const image_header_t *rd_hdr;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000796 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200797#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000798 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200799#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100800#if defined(CONFIG_FIT)
Simon Glassf320a4d2013-07-10 23:08:10 -0700801 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100802 const char *fit_uname_ramdisk = NULL;
803 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100804 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100805#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700806 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100807
Marian Balakowiczc8779642008-03-12 10:12:37 +0100808 *rd_start = 0;
809 *rd_end = 0;
810
Simon Glass983c72f2013-06-11 11:14:46 -0700811 if (argc >= 2)
812 select = argv[1];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100813 /*
814 * Look for a '-' which indicates to ignore the
815 * ramdisk argument
816 */
Simon Glass983c72f2013-06-11 11:14:46 -0700817 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000818 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100819 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700820 } else if (select || genimg_has_config(images)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100821#if defined(CONFIG_FIT)
Simon Glass983c72f2013-06-11 11:14:46 -0700822 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100823 /*
824 * If the init ramdisk comes from the FIT image and
825 * the FIT image address is omitted in the command
826 * line argument, try to use os FIT image address or
827 * default load address.
828 */
829 if (images->fit_uname_os)
830 default_addr = (ulong)images->fit_hdr_os;
831 else
832 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100833
Simon Glass983c72f2013-06-11 11:14:46 -0700834 if (fit_parse_conf(select, default_addr,
835 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000836 debug("* ramdisk: config '%s' from image at "
837 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100838 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700839 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100840 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000841 debug("* ramdisk: subimage '%s' from image at "
842 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100843 fit_uname_ramdisk, rd_addr);
844 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100845#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100846 {
Simon Glass983c72f2013-06-11 11:14:46 -0700847 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000848 debug("* ramdisk: cmdline image address = "
849 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100850 rd_addr);
851 }
852#if defined(CONFIG_FIT)
853 } else {
854 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +0000855 * command argument. If the property is not defined,
856 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100857 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000858 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +0000859 rd_noffset = fit_get_node_from_config(images,
860 FIT_RAMDISK_PROP, rd_addr);
861 if (rd_noffset == -ENOLINK)
Peter Tyser41266c92008-08-05 10:51:57 -0500862 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +0000863 else if (rd_noffset < 0)
864 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100865 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100866#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100867
868 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000869 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100870
871 /*
872 * Check if there is an initrd image at the
873 * address provided in the second bootm argument
874 * check image type, for FIT images get FIT node.
875 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000876 buf = map_sysmem(rd_addr, 0);
877 switch (genimg_get_format(buf)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100878 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000879 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100880 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100881
Simon Glass770605e2012-02-13 13:51:18 +0000882 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000883 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100884 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100885
Marian Balakowiczc8779642008-03-12 10:12:37 +0100886 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -0600887 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -0600888
Stephen Warren712fbcf2011-10-18 11:11:49 +0000889 rd_data = image_get_data(rd_hdr);
890 rd_len = image_get_data_size(rd_hdr);
891 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100892 break;
893#if defined(CONFIG_FIT)
894 case IMAGE_FORMAT_FIT:
Simon Glassa51ec632013-05-16 13:53:22 +0000895 rd_noffset = fit_image_load(images, FIT_RAMDISK_PROP,
896 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -0700897 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +0000898 IH_TYPE_RAMDISK,
899 BOOTSTAGE_ID_FIT_RD_START,
Stefano Babice3a5bbc2013-07-12 15:09:23 +0200900 FIT_LOAD_IGNORED, &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +0000901 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +0200902 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100903
Simon Glassa51ec632013-05-16 13:53:22 +0000904 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100905 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100906 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100907 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100908#endif
909 default:
Marek Vasut017e1f32012-03-18 11:47:58 +0000910#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -0700911 end = NULL;
912 if (select)
913 end = strchr(select, ':');
914 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +0000915 rd_len = simple_strtoul(++end, NULL, 16);
916 rd_data = rd_addr;
917 } else
918#endif
919 {
920 puts("Wrong Ramdisk Image Format\n");
921 rd_data = rd_len = rd_load = 0;
922 return 1;
923 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100924 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100925 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +0000926 image_check_type(&images->legacy_hdr_os_copy,
927 IH_TYPE_MULTI)) {
928
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100929 /*
930 * Now check if we have a legacy mult-component image,
931 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100932 */
Simon Glass770605e2012-02-13 13:51:18 +0000933 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000934 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100935 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100936 (ulong)images->legacy_hdr_os);
937
Stephen Warren712fbcf2011-10-18 11:11:49 +0000938 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500939 }
940#ifdef CONFIG_ANDROID_BOOT_IMAGE
941 else if ((genimg_get_format(images) == IMAGE_FORMAT_ANDROID) &&
942 (!android_image_get_ramdisk((void *)images->os.start,
943 &rd_data, &rd_len))) {
944 /* empty */
945 }
946#endif
947 else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100948 /*
949 * no initrd image
950 */
Simon Glass770605e2012-02-13 13:51:18 +0000951 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100952 rd_len = rd_data = 0;
953 }
954
955 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000956 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100957 } else {
958 *rd_start = rd_data;
959 *rd_end = rd_data + rd_len;
960 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000961 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100962 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -0600963
964 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100965}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100966
John Rigbyfca43cc2010-10-13 13:57:35 -0600967#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100968/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100969 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -0600970 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100971 * @rd_data: ramdisk data start address
972 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100973 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
974 * start address (after possible relocation)
975 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
976 * end address (after possible relocation)
977 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -0400978 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100979 * variable and if requested ramdisk data is moved to a specified location.
980 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100981 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
982 * start/end addresses if ramdisk image start and len were provided,
983 * otherwise set initrd_start and initrd_end set to zeros.
984 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100985 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100986 * 0 - success
987 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100988 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000989int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -0600990 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100991{
992 char *s;
993 ulong initrd_high;
994 int initrd_copy_to_ram = 1;
995
Stephen Warren712fbcf2011-10-18 11:11:49 +0000996 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100997 /* a value of "no" or a similar string will act like 0,
998 * turning the "load high" feature off. This is intentional.
999 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001000 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001001 if (initrd_high == ~0)
1002 initrd_copy_to_ram = 0;
1003 } else {
1004 /* not set, no restrictions to load high */
1005 initrd_high = ~0;
1006 }
1007
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001008
1009#ifdef CONFIG_LOGBUFFER
1010 /* Prevent initrd from overwriting logbuffer */
1011 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1012#endif
1013
Stephen Warren712fbcf2011-10-18 11:11:49 +00001014 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001015 initrd_high, initrd_copy_to_ram);
1016
1017 if (rd_data) {
1018 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001019 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001020 *initrd_start = rd_data;
1021 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001022 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001023 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001024 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001025 *initrd_start = (ulong)lmb_alloc_base(lmb,
1026 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001027 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001028 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1029 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001030
Kumar Galae822d7f2008-02-27 21:51:49 -06001031 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001032 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001033 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001034 }
Simon Glass770605e2012-02-13 13:51:18 +00001035 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001036
1037 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001038 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001039 *initrd_start, *initrd_end);
1040
Stephen Warren712fbcf2011-10-18 11:11:49 +00001041 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001042 (void *)rd_data, rd_len, CHUNKSZ);
1043
Kumar Gala3b200112011-12-07 04:42:58 +00001044#ifdef CONFIG_MP
1045 /*
1046 * Ensure the image is flushed to memory to handle
1047 * AMP boot scenarios in which we might not be
1048 * HW cache coherent
1049 */
1050 flush_cache((unsigned long)*initrd_start, rd_len);
1051#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001052 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001053 }
1054 } else {
1055 *initrd_start = 0;
1056 *initrd_end = 0;
1057 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001058 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001059 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001060
Kumar Galae822d7f2008-02-27 21:51:49 -06001061 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001062
Kumar Galae822d7f2008-02-27 21:51:49 -06001063error:
1064 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001065}
John Rigbyfca43cc2010-10-13 13:57:35 -06001066#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001067
John Rigbyfca43cc2010-10-13 13:57:35 -06001068#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001069/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001070 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001071 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001072 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1073 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1074 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001075 * boot_get_cmdline() allocates space for kernel command line below
Grant Likely590d3ca2011-03-28 09:58:34 +00001076 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001077 * variable is present its contents is copied to allocated kernel
1078 * command line.
1079 *
1080 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001081 * 0 - success
1082 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001083 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001084int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001085{
1086 char *cmdline;
1087 char *s;
1088
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001089 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001090 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001091
1092 if (cmdline == NULL)
1093 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001094
1095 if ((s = getenv("bootargs")) == NULL)
1096 s = "";
1097
1098 strcpy(cmdline, s);
1099
1100 *cmd_start = (ulong) & cmdline[0];
1101 *cmd_end = *cmd_start + strlen(cmdline);
1102
Stephen Warren712fbcf2011-10-18 11:11:49 +00001103 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001104
Kumar Galae822d7f2008-02-27 21:51:49 -06001105 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001106}
John Rigbyfca43cc2010-10-13 13:57:35 -06001107#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001108
John Rigbyfca43cc2010-10-13 13:57:35 -06001109#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001110/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001111 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001112 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001113 * @kbd: double pointer to board info data
1114 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001115 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001116 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1117 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001118 *
1119 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001120 * 0 - success
1121 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001122 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001123int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001124{
Becky Bruce391fd932008-06-09 20:37:18 -05001125 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001126 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001127 if (*kbd == NULL)
1128 return -1;
1129
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001130 **kbd = *(gd->bd);
1131
Stephen Warren712fbcf2011-10-18 11:11:49 +00001132 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001133
1134#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1135 do_bdinfo(NULL, 0, 0, NULL);
1136#endif
1137
Kumar Galae822d7f2008-02-27 21:51:49 -06001138 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001139}
John Rigbyfca43cc2010-10-13 13:57:35 -06001140#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001141
1142#ifdef CONFIG_LMB
1143int image_setup_linux(bootm_headers_t *images)
1144{
1145 ulong of_size = images->ft_len;
1146 char **of_flat_tree = &images->ft_addr;
1147 ulong *initrd_start = &images->initrd_start;
1148 ulong *initrd_end = &images->initrd_end;
1149 struct lmb *lmb = &images->lmb;
1150 ulong rd_len;
1151 int ret;
1152
1153 if (IMAGE_ENABLE_OF_LIBFDT)
1154 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1155
1156 if (IMAGE_BOOT_GET_CMDLINE) {
1157 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1158 &images->cmdline_end);
1159 if (ret) {
1160 puts("ERROR with allocation of cmdline\n");
1161 return ret;
1162 }
1163 }
1164 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1165 rd_len = images->rd_end - images->rd_start;
1166 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1167 initrd_start, initrd_end);
1168 if (ret)
1169 return ret;
1170 }
1171
1172 if (IMAGE_ENABLE_OF_LIBFDT) {
1173 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1174 if (ret)
1175 return ret;
1176 }
1177
1178 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1179 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1180 if (ret)
1181 return ret;
1182 }
1183
1184 return 0;
1185}
1186#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001187#endif /* !USE_HOSTCC */