blob: 564ed90ca06073a527767774afd086dc6b148248 [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 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +010025
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010026#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010027#include <common.h>
28#include <watchdog.h>
29
30#ifdef CONFIG_SHOW_BOOT_PROGRESS
31#include <status_led.h>
32#endif
33
34#ifdef CONFIG_HAS_DATAFLASH
35#include <dataflash.h>
36#endif
37
Marian Balakowicz95d449a2008-05-13 15:53:29 +020038#ifdef CONFIG_LOGBUFFER
39#include <logbuff.h>
40#endif
41
Marian Balakowicz2242f532008-02-21 17:27:41 +010042#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010043
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060044#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010045#include <image.h>
46
Stephen Warren712fbcf2011-10-18 11:11:49 +000047#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Marian Balakowiczfff888a12008-02-21 17:20:19 +010048#include <libfdt.h>
49#include <fdt_support.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010050#endif
51
Andy Fleming20a14a42008-04-02 16:19:07 -050052#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010053#include <sha1.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000054#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010055
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010056#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020057extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010058#endif
59
60DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010061
Stephen Warren712fbcf2011-10-18 11:11:49 +000062static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010063 int verify);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010064#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010065#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050066#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010067#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010068#include <image.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010069#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010070
Simon Glass0ccff502013-02-24 17:33:25 +000071#include <u-boot/crc.h>
72
Mike Frysinger7edb1862010-10-20 07:17:39 -040073static const table_entry_t uimage_arch[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010074 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
75 { IH_ARCH_ALPHA, "alpha", "Alpha", },
76 { IH_ARCH_ARM, "arm", "ARM", },
77 { IH_ARCH_I386, "x86", "Intel x86", },
78 { IH_ARCH_IA64, "ia64", "IA64", },
79 { IH_ARCH_M68K, "m68k", "M68K", },
80 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
81 { IH_ARCH_MIPS, "mips", "MIPS", },
82 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010083 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070084 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010085 { IH_ARCH_PPC, "ppc", "PowerPC", },
86 { IH_ARCH_S390, "s390", "IBM S390", },
87 { IH_ARCH_SH, "sh", "SuperH", },
88 { IH_ARCH_SPARC, "sparc", "SPARC", },
89 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
90 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
91 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000092 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000093 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000094 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010095 { -1, "", "", },
96};
97
Mike Frysinger7edb1862010-10-20 07:17:39 -040098static const table_entry_t uimage_os[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010099 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100100 { IH_OS_LINUX, "linux", "Linux", },
101#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
102 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
103#endif
104 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200105 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000106 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100107 { IH_OS_RTEMS, "rtems", "RTEMS", },
108 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
109#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
110 { IH_OS_QNX, "qnx", "QNX", },
111 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
112#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500113#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
114 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
115#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100116#ifdef USE_HOSTCC
117 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
118 { IH_OS_DELL, "dell", "Dell", },
119 { IH_OS_ESIX, "esix", "Esix", },
120 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
121 { IH_OS_IRIX, "irix", "Irix", },
122 { IH_OS_NCR, "ncr", "NCR", },
123 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
124 { IH_OS_PSOS, "psos", "pSOS", },
125 { IH_OS_SCO, "sco", "SCO", },
126 { IH_OS_SOLARIS, "solaris", "Solaris", },
127 { IH_OS_SVR4, "svr4", "SVR4", },
128#endif
129 { -1, "", "", },
130};
131
Mike Frysinger7edb1862010-10-20 07:17:39 -0400132static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000133 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100134 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
135 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400136 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100137 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e82011-11-10 13:17:53 -0700138 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000139 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
140 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
141 { IH_TYPE_INVALID, NULL, "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100142 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000143 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000144 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100145 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
146 { IH_TYPE_SCRIPT, "script", "Script", },
147 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000148 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { -1, "", "", },
150};
151
Mike Frysinger7edb1862010-10-20 07:17:39 -0400152static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100153 { IH_COMP_NONE, "none", "uncompressed", },
154 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
155 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200156 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100157 { IH_COMP_LZO, "lzo", "lzo compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100158 { -1, "", "", },
159};
160
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100161/*****************************************************************************/
162/* Legacy format routines */
163/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000164int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100165{
166 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000167 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100168 image_header_t header;
169
170 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000171 memmove(&header, (char *)hdr, image_get_header_size());
172 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100173
Stephen Warren712fbcf2011-10-18 11:11:49 +0000174 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100175
Stephen Warren712fbcf2011-10-18 11:11:49 +0000176 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100177}
178
Stephen Warren712fbcf2011-10-18 11:11:49 +0000179int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100180{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000181 ulong data = image_get_data(hdr);
182 ulong len = image_get_data_size(hdr);
183 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100184
Stephen Warren712fbcf2011-10-18 11:11:49 +0000185 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100186}
187
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100188/**
189 * image_multi_count - get component (sub-image) count
190 * @hdr: pointer to the header of the multi component image
191 *
192 * image_multi_count() returns number of components in a multi
193 * component image.
194 *
195 * Note: no checking of the image type is done, caller must pass
196 * a valid multi component image.
197 *
198 * returns:
199 * number of components
200 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000201ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100202{
203 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100204 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100205
206 /* get start of the image payload, which in case of multi
207 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000208 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100209
210 /* count non empty slots */
211 for (i = 0; size[i]; ++i)
212 count++;
213
214 return count;
215}
216
217/**
218 * image_multi_getimg - get component data address and size
219 * @hdr: pointer to the header of the multi component image
220 * @idx: index of the requested component
221 * @data: pointer to a ulong variable, will hold component data address
222 * @len: pointer to a ulong variable, will hold component size
223 *
224 * image_multi_getimg() returns size and data address for the requested
225 * component in a multi component image.
226 *
227 * Note: no checking of the image type is done, caller must pass
228 * a valid multi component image.
229 *
230 * returns:
231 * data address and size of the component, if idx is valid
232 * 0 in data and len, if idx is out of range
233 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000234void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100235 ulong *data, ulong *len)
236{
237 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100238 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700239 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100240
241 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100243
244 /* get start of the image payload, which in case of multi
245 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000246 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100247
248 /* get address of the proper component data start, which means
249 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000250 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100251
252 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000253 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100254 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100255
256 /* go over all indices preceding requested component idx */
257 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700258 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000259 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100260 }
261
262 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700263 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100264 } else {
265 *len = 0;
266 *data = 0;
267 }
268}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100269
Stephen Warren712fbcf2011-10-18 11:11:49 +0000270static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100271{
272 const char *os, *arch, *type, *comp;
273
Stephen Warren712fbcf2011-10-18 11:11:49 +0000274 os = genimg_get_os_name(image_get_os(hdr));
275 arch = genimg_get_arch_name(image_get_arch(hdr));
276 type = genimg_get_type_name(image_get_type(hdr));
277 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100278
Stephen Warren712fbcf2011-10-18 11:11:49 +0000279 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100280}
281
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100282/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200283 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200284 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100285 * @p: pointer to prefix string
286 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200287 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100288 * The routine prints out all header fields followed by the size/offset data
289 * for MULTI/SCRIPT images.
290 *
291 * returns:
292 * no returned results
293 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000294void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100295{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200296 const image_header_t *hdr = (const image_header_t *)ptr;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200297 const char *p;
298
299#ifdef USE_HOSTCC
300 p = "";
301#else
302 p = " ";
303#endif
304
Stephen Warren712fbcf2011-10-18 11:11:49 +0000305 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000306 if (IMAGE_ENABLE_TIMESTAMP) {
307 printf("%sCreated: ", p);
308 genimg_print_time((time_t)image_get_time(hdr));
309 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 printf("%sImage Type: ", p);
311 image_print_type(hdr);
312 printf("%sData Size: ", p);
313 genimg_print_size(image_get_data_size(hdr));
314 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
315 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100316
Stephen Warren712fbcf2011-10-18 11:11:49 +0000317 if (image_check_type(hdr, IH_TYPE_MULTI) ||
318 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100319 int i;
320 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000321 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100322
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100324 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100326
Stephen Warren712fbcf2011-10-18 11:11:49 +0000327 printf("%s Image %d: ", p, i);
328 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100329
Stephen Warren712fbcf2011-10-18 11:11:49 +0000330 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100331 /*
332 * the user may need to know offsets
333 * if planning to do something with
334 * multiple files
335 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100337 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100338 }
339 }
340}
341
Marian Balakowicz570abb02008-02-29 15:59:59 +0100342
343#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100344/**
345 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100346 * @rd_addr: ramdisk image start address
347 * @arch: expected ramdisk architecture
348 * @verify: checksum verification flag
349 *
350 * image_get_ramdisk() returns a pointer to the verified ramdisk image
351 * header. Routine receives image start address and expected architecture
352 * flag. Verification done covers data and header integrity and os/type/arch
353 * fields checking.
354 *
355 * If dataflash support is enabled routine checks for dataflash addresses
356 * and handles required dataflash reads.
357 *
358 * returns:
359 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600360 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100361 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100363 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100364{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200365 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100366
Stephen Warren712fbcf2011-10-18 11:11:49 +0000367 if (!image_check_magic(rd_hdr)) {
368 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000369 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600370 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100371 }
372
Stephen Warren712fbcf2011-10-18 11:11:49 +0000373 if (!image_check_hcrc(rd_hdr)) {
374 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000375 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600376 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100377 }
378
Simon Glass770605e2012-02-13 13:51:18 +0000379 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100381
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100382 if (verify) {
383 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000384 if (!image_check_dcrc(rd_hdr)) {
385 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000386 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600387 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100388 }
389 puts("OK\n");
390 }
391
Simon Glass770605e2012-02-13 13:51:18 +0000392 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100393
Stephen Warren712fbcf2011-10-18 11:11:49 +0000394 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
395 !image_check_arch(rd_hdr, arch) ||
396 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
397 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100398 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000399 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600400 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100401 }
402
403 return rd_hdr;
404}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100405#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100406
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100407/*****************************************************************************/
408/* Shared dual-format routines */
409/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100410#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600411ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
412ulong save_addr; /* Default Save Address */
413ulong save_size; /* Default Save Size (in bytes) */
414
415static int on_loadaddr(const char *name, const char *value, enum env_op op,
416 int flags)
417{
418 switch (op) {
419 case env_op_create:
420 case env_op_overwrite:
421 load_addr = simple_strtoul(value, NULL, 16);
422 break;
423 default:
424 break;
425 }
426
427 return 0;
428}
429U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
430
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100431ulong getenv_bootm_low(void)
432{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000433 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100434 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000435 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100436 return tmp;
437 }
438
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200439#if defined(CONFIG_SYS_SDRAM_BASE)
440 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100441#elif defined(CONFIG_ARM)
442 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100443#else
444 return 0;
445#endif
446}
447
Becky Bruce391fd932008-06-09 20:37:18 -0500448phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100449{
Matthew McClintockc519fac2010-07-08 10:11:08 -0500450 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000451 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100452 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000453 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100454 return tmp;
455 }
Matthew McClintockc519fac2010-07-08 10:11:08 -0500456 s = getenv("bootm_low");
457 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000458 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500459 else
460 tmp = 0;
461
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100462
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100463#if defined(CONFIG_ARM)
Matthew McClintockc519fac2010-07-08 10:11:08 -0500464 return gd->bd->bi_dram[0].size - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100465#else
Matthew McClintockc519fac2010-07-08 10:11:08 -0500466 return gd->bd->bi_memsize - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100467#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100468}
469
Grant Likelyc3624e62011-03-28 09:58:43 +0000470phys_size_t getenv_bootm_mapsize(void)
471{
472 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000473 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000474 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000475 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000476 return tmp;
477 }
478
479#if defined(CONFIG_SYS_BOOTMAPSZ)
480 return CONFIG_SYS_BOOTMAPSZ;
481#else
482 return getenv_bootm_size();
483#endif
484}
485
Stephen Warren712fbcf2011-10-18 11:11:49 +0000486void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100487{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400488 if (to == from)
489 return;
490
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100491#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
492 while (len > 0) {
493 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000494 WATCHDOG_RESET();
495 memmove(to, from, tail);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100496 to += tail;
497 from += tail;
498 len -= tail;
499 }
500#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000501 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100502#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
503}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100504#endif /* !USE_HOSTCC */
505
Stephen Warren712fbcf2011-10-18 11:11:49 +0000506void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100507{
508#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000509 printf("%d Bytes = ", size);
510 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100511#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000512 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100513 size, (double)size / 1.024e3,
514 (double)size / 1.048576e6);
515#endif
516}
517
Simon Glass859e92b2013-05-07 06:11:51 +0000518#if IMAGE_ENABLE_TIMESTAMP
519void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100520{
521#ifndef USE_HOSTCC
522 struct rtc_time tm;
523
Stephen Warren712fbcf2011-10-18 11:11:49 +0000524 to_tm(timestamp, &tm);
525 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100526 tm.tm_year, tm.tm_mon, tm.tm_mday,
527 tm.tm_hour, tm.tm_min, tm.tm_sec);
528#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000529 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100530#endif
531}
Simon Glass859e92b2013-05-07 06:11:51 +0000532#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100533
534/**
535 * get_table_entry_name - translate entry id to long name
536 * @table: pointer to a translation table for entries of a specific type
537 * @msg: message to be returned when translation fails
538 * @id: entry id to be translated
539 *
540 * get_table_entry_name() will go over translation table trying to find
541 * entry that matches given id. If matching entry is found, its long
542 * name is returned to the caller.
543 *
544 * returns:
545 * long entry name if translation succeeds
546 * msg otherwise
547 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400548char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100549{
550 for (; table->id >= 0; ++table) {
551 if (table->id == id)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200552#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Scott Woode3d1ac72009-04-02 16:15:10 -0500553 return table->lname;
554#else
555 return table->lname + gd->reloc_off;
556#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100557 }
558 return (msg);
559}
560
Stephen Warren712fbcf2011-10-18 11:11:49 +0000561const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100562{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000563 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100564}
565
Stephen Warren712fbcf2011-10-18 11:11:49 +0000566const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100567{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000568 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
569 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100570}
571
Stephen Warren712fbcf2011-10-18 11:11:49 +0000572const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100573{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000574 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100575}
576
Stephen Warren712fbcf2011-10-18 11:11:49 +0000577const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100578{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000579 return (get_table_entry_name(uimage_comp, "Unknown Compression",
580 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100581}
582
583/**
584 * get_table_entry_id - translate short entry name to id
585 * @table: pointer to a translation table for entries of a specific type
586 * @table_name: to be used in case of error
587 * @name: entry short name to be translated
588 *
589 * get_table_entry_id() will go over translation table trying to find
590 * entry that matches given short name. If matching entry is found,
591 * its id returned to the caller.
592 *
593 * returns:
594 * entry id if translation succeeds
595 * -1 otherwise
596 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400597int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100598 const char *table_name, const char *name)
599{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400600 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100601#ifdef USE_HOSTCC
602 int first = 1;
603
604 for (t = table; t->id >= 0; ++t) {
605 if (t->sname && strcasecmp(t->sname, name) == 0)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000606 return(t->id);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100607 }
608
Stephen Warren712fbcf2011-10-18 11:11:49 +0000609 fprintf(stderr, "\nInvalid %s Type - valid names are", table_name);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100610 for (t = table; t->id >= 0; ++t) {
611 if (t->sname == NULL)
612 continue;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000613 fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100614 first = 0;
615 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000616 fprintf(stderr, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100617#else
618 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200619#ifdef CONFIG_NEEDS_MANUAL_RELOC
Scott Woode3d1ac72009-04-02 16:15:10 -0500620 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200621#else
622 if (t->sname && strcmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500623#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100624 return (t->id);
625 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000626 debug("Invalid %s Type: %s\n", table_name, name);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100627#endif /* USE_HOSTCC */
Marian Balakowicz570abb02008-02-29 15:59:59 +0100628 return (-1);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100629}
630
Stephen Warren712fbcf2011-10-18 11:11:49 +0000631int genimg_get_os_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_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100634}
635
Stephen Warren712fbcf2011-10-18 11:11:49 +0000636int genimg_get_arch_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_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100639}
640
Stephen Warren712fbcf2011-10-18 11:11:49 +0000641int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100642{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000643 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100644}
645
Stephen Warren712fbcf2011-10-18 11:11:49 +0000646int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100647{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000648 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100649}
650
651#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100652/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100653 * genimg_get_format - get image format type
654 * @img_addr: image start address
655 *
656 * genimg_get_format() checks whether provided address points to a valid
657 * legacy or FIT image.
658 *
659 * New uImage format and FDT blob are based on a libfdt. FDT blob
660 * may be passed directly or embedded in a FIT image. In both situations
661 * genimg_get_format() must be able to dectect libfdt header.
662 *
663 * returns:
664 * image format type or IMAGE_FORMAT_INVALID if no image is present
665 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000666int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100667{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200668 ulong format = IMAGE_FORMAT_INVALID;
669 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100670#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200671 char *fit_hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100672#endif
673
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200674 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100675 if (image_check_magic(hdr))
676 format = IMAGE_FORMAT_LEGACY;
677#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
678 else {
679 fit_hdr = (char *)img_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000680 if (fdt_check_header(fit_hdr) == 0)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100681 format = IMAGE_FORMAT_FIT;
682 }
683#endif
684
685 return format;
686}
687
688/**
689 * genimg_get_image - get image from special storage (if necessary)
690 * @img_addr: image start address
691 *
692 * genimg_get_image() checks if provided image start adddress is located
693 * in a dataflash storage. If so, image is moved to a system RAM memory.
694 *
695 * returns:
696 * image start address after possible relocation from special storage
697 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100699{
700 ulong ram_addr = img_addr;
701
702#ifdef CONFIG_HAS_DATAFLASH
703 ulong h_size, d_size;
704
Stephen Warren712fbcf2011-10-18 11:11:49 +0000705 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000706 void *buf;
707
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100708 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200709 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100710
711 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000712 h_size = image_get_header_size();
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100713#if defined(CONFIG_FIT)
714 if (sizeof(struct fdt_header) > h_size)
715 h_size = sizeof(struct fdt_header);
716#endif
717
718 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000719 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100720 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
721
Simon Glass35e7b0f2013-05-07 06:12:03 +0000722 buf = map_sysmem(ram_addr, 0);
723 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100724
725 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000726 switch (genimg_get_format(buf)) {
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100727 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000728 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000729 debug(" Legacy format image found at 0x%08lx, "
730 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100731 ram_addr, d_size);
732 break;
733#if defined(CONFIG_FIT)
734 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000735 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000736 debug(" FIT/FDT format image found at 0x%08lx, "
737 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100738 ram_addr, d_size);
739 break;
740#endif
741 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000742 printf(" No valid image found at 0x%08lx\n",
743 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100744 return ram_addr;
745 }
746
747 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000748 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100749 "%08lx to RAM address %08lx\n", img_addr + h_size,
750 ram_addr + h_size);
751
Stephen Warren712fbcf2011-10-18 11:11:49 +0000752 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000753 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100754
755 }
756#endif /* CONFIG_HAS_DATAFLASH */
757
758 return ram_addr;
759}
760
761/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100762 * fit_has_config - check if there is a valid FIT configuration
763 * @images: pointer to the bootm command headers structure
764 *
765 * fit_has_config() checks if there is a FIT configuration in use
766 * (if FTI support is present).
767 *
768 * returns:
769 * 0, no FIT support or no configuration found
770 * 1, configuration found
771 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000772int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100773{
774#if defined(CONFIG_FIT)
775 if (images->fit_uname_cfg)
776 return 1;
777#endif
778 return 0;
779}
780
781/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100782 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100783 * @argc: command argument count
784 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100785 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100786 * @arch: expected ramdisk architecture
787 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
788 * @rd_end: pointer to a ulong variable, will hold ramdisk end
789 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100790 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100791 * Curently supported are the following ramdisk sources:
792 * - multicomponent kernel/ramdisk image,
793 * - commandline provided address of decicated ramdisk image.
794 *
795 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100796 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100797 * rd_start and rd_end are set to ramdisk start/end addresses if
798 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100799 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500800 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100801 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100802 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000803int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100804 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100805{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100806 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100807 ulong rd_data, rd_len;
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200808 const image_header_t *rd_hdr;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000809 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200810#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000811 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200812#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100813#if defined(CONFIG_FIT)
814 void *fit_hdr;
815 const char *fit_uname_config = NULL;
816 const char *fit_uname_ramdisk = NULL;
817 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100818 int rd_noffset;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100819 int cfg_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100820 const void *data;
821 size_t size;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100822#endif
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100823
Marian Balakowiczc8779642008-03-12 10:12:37 +0100824 *rd_start = 0;
825 *rd_end = 0;
826
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100827 /*
828 * Look for a '-' which indicates to ignore the
829 * ramdisk argument
830 */
831 if ((argc >= 3) && (strcmp(argv[2], "-") == 0)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000832 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100833 rd_len = rd_data = 0;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000834 } else if (argc >= 3 || genimg_has_config(images)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100835#if defined(CONFIG_FIT)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100836 if (argc >= 3) {
837 /*
838 * If the init ramdisk comes from the FIT image and
839 * the FIT image address is omitted in the command
840 * line argument, try to use os FIT image address or
841 * default load address.
842 */
843 if (images->fit_uname_os)
844 default_addr = (ulong)images->fit_hdr_os;
845 else
846 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100847
Stephen Warren712fbcf2011-10-18 11:11:49 +0000848 if (fit_parse_conf(argv[2], default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100849 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000850 debug("* ramdisk: config '%s' from image at "
851 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100852 fit_uname_config, rd_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000853 } else if (fit_parse_subimage(argv[2], default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100854 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000855 debug("* ramdisk: subimage '%s' from image at "
856 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100857 fit_uname_ramdisk, rd_addr);
858 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100859#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100860 {
861 rd_addr = simple_strtoul(argv[2], NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000862 debug("* ramdisk: cmdline image address = "
863 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100864 rd_addr);
865 }
866#if defined(CONFIG_FIT)
867 } else {
868 /* use FIT configuration provided in first bootm
869 * command argument
870 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000871 rd_addr = map_to_sysmem(images->fit_hdr_os);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100872 fit_uname_config = images->fit_uname_cfg;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000873 debug("* ramdisk: using config '%s' from image "
874 "at 0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100875 fit_uname_config, rd_addr);
876
877 /*
878 * Check whether configuration has ramdisk defined,
879 * if not, don't try to use it, quit silently.
880 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000881 fit_hdr = images->fit_hdr_os;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000882 cfg_noffset = fit_conf_get_node(fit_hdr,
883 fit_uname_config);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100884 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000885 debug("* ramdisk: no such config\n");
Michal Simekc78fce62008-07-11 10:43:13 +0200886 return 1;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100887 }
888
Stephen Warren712fbcf2011-10-18 11:11:49 +0000889 rd_noffset = fit_conf_get_ramdisk_node(fit_hdr,
890 cfg_noffset);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100891 if (rd_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000892 debug("* ramdisk: no ramdisk in config\n");
Peter Tyser41266c92008-08-05 10:51:57 -0500893 return 0;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100894 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100895 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100896#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100897
898 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000899 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100900
901 /*
902 * Check if there is an initrd image at the
903 * address provided in the second bootm argument
904 * check image type, for FIT images get FIT node.
905 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000906 buf = map_sysmem(rd_addr, 0);
907 switch (genimg_get_format(buf)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100908 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000909 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100910 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100911
Simon Glass770605e2012-02-13 13:51:18 +0000912 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000913 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100914 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100915
Marian Balakowiczc8779642008-03-12 10:12:37 +0100916 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -0600917 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -0600918
Stephen Warren712fbcf2011-10-18 11:11:49 +0000919 rd_data = image_get_data(rd_hdr);
920 rd_len = image_get_data_size(rd_hdr);
921 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100922 break;
923#if defined(CONFIG_FIT)
924 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000925 fit_hdr = buf;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000926 printf("## Loading init Ramdisk from FIT "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100927 "Image at %08lx ...\n", rd_addr);
928
Simon Glass770605e2012-02-13 13:51:18 +0000929 bootstage_mark(BOOTSTAGE_ID_FIT_RD_FORMAT);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000930 if (!fit_check_format(fit_hdr)) {
931 puts("Bad FIT ramdisk image format!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000932 bootstage_error(
Simon Glassaacc8c12011-12-10 11:08:02 +0000933 BOOTSTAGE_ID_FIT_RD_FORMAT);
Michal Simekc78fce62008-07-11 10:43:13 +0200934 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100935 }
Simon Glass770605e2012-02-13 13:51:18 +0000936 bootstage_mark(BOOTSTAGE_ID_FIT_RD_FORMAT_OK);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100937
938 if (!fit_uname_ramdisk) {
939 /*
940 * no ramdisk image node unit name, try to get config
941 * node first. If config unit node name is NULL
942 * fit_conf_get_node() will try to find default config node
943 */
Simon Glass770605e2012-02-13 13:51:18 +0000944 bootstage_mark(
Simon Glassaacc8c12011-12-10 11:08:02 +0000945 BOOTSTAGE_ID_FIT_RD_NO_UNIT_NAME);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000946 cfg_noffset = fit_conf_get_node(fit_hdr,
947 fit_uname_config);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100948 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000949 puts("Could not find configuration "
950 "node\n");
Simon Glass770605e2012-02-13 13:51:18 +0000951 bootstage_error(
Simon Glassaacc8c12011-12-10 11:08:02 +0000952 BOOTSTAGE_ID_FIT_RD_NO_UNIT_NAME);
Michal Simekc78fce62008-07-11 10:43:13 +0200953 return 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100954 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000955 fit_uname_config = fdt_get_name(fit_hdr,
956 cfg_noffset, NULL);
957 printf(" Using '%s' configuration\n",
958 fit_uname_config);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100959
Stephen Warren712fbcf2011-10-18 11:11:49 +0000960 rd_noffset = fit_conf_get_ramdisk_node(fit_hdr,
961 cfg_noffset);
962 fit_uname_ramdisk = fit_get_name(fit_hdr,
963 rd_noffset, NULL);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100964 } else {
965 /* get ramdisk component image node offset */
Simon Glass770605e2012-02-13 13:51:18 +0000966 bootstage_mark(
Simon Glassaacc8c12011-12-10 11:08:02 +0000967 BOOTSTAGE_ID_FIT_RD_UNIT_NAME);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000968 rd_noffset = fit_image_get_node(fit_hdr,
969 fit_uname_ramdisk);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100970 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100971 if (rd_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000972 puts("Could not find subimage node\n");
Simon Glass770605e2012-02-13 13:51:18 +0000973 bootstage_error(BOOTSTAGE_ID_FIT_RD_SUBNODE);
Michal Simekc78fce62008-07-11 10:43:13 +0200974 return 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100975 }
Marian Balakowiczc8779642008-03-12 10:12:37 +0100976
Stephen Warren712fbcf2011-10-18 11:11:49 +0000977 printf(" Trying '%s' ramdisk subimage\n",
978 fit_uname_ramdisk);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100979
Simon Glass770605e2012-02-13 13:51:18 +0000980 bootstage_mark(BOOTSTAGE_ID_FIT_RD_CHECK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000981 if (!fit_check_ramdisk(fit_hdr, rd_noffset, arch,
982 images->verify))
Michal Simekc78fce62008-07-11 10:43:13 +0200983 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100984
985 /* get ramdisk image data address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000986 if (fit_image_get_data(fit_hdr, rd_noffset, &data,
987 &size)) {
988 puts("Could not find ramdisk subimage data!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000989 bootstage_error(BOOTSTAGE_ID_FIT_RD_GET_DATA);
Michal Simekc78fce62008-07-11 10:43:13 +0200990 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100991 }
Simon Glass770605e2012-02-13 13:51:18 +0000992 bootstage_mark(BOOTSTAGE_ID_FIT_RD_GET_DATA_OK);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100993
994 rd_data = (ulong)data;
995 rd_len = size;
996
Stephen Warren712fbcf2011-10-18 11:11:49 +0000997 if (fit_image_get_load(fit_hdr, rd_noffset, &rd_load)) {
998 puts("Can't get ramdisk subimage load "
999 "address!\n");
Simon Glass770605e2012-02-13 13:51:18 +00001000 bootstage_error(BOOTSTAGE_ID_FIT_RD_LOAD);
Michal Simekc78fce62008-07-11 10:43:13 +02001001 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001002 }
Simon Glass770605e2012-02-13 13:51:18 +00001003 bootstage_mark(BOOTSTAGE_ID_FIT_RD_LOAD);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001004
1005 images->fit_hdr_rd = fit_hdr;
1006 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001007 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001008 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001009#endif
1010 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001011#ifdef CONFIG_SUPPORT_RAW_INITRD
1012 if (argc >= 3 && (end = strchr(argv[2], ':'))) {
1013 rd_len = simple_strtoul(++end, NULL, 16);
1014 rd_data = rd_addr;
1015 } else
1016#endif
1017 {
1018 puts("Wrong Ramdisk Image Format\n");
1019 rd_data = rd_len = rd_load = 0;
1020 return 1;
1021 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001022 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001023 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001024 image_check_type(&images->legacy_hdr_os_copy,
1025 IH_TYPE_MULTI)) {
1026
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001027 /*
1028 * Now check if we have a legacy mult-component image,
1029 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001030 */
Simon Glass770605e2012-02-13 13:51:18 +00001031 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001032 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001033 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001034 (ulong)images->legacy_hdr_os);
1035
Stephen Warren712fbcf2011-10-18 11:11:49 +00001036 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001037 } else {
1038 /*
1039 * no initrd image
1040 */
Simon Glass770605e2012-02-13 13:51:18 +00001041 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001042 rd_len = rd_data = 0;
1043 }
1044
1045 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001046 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001047 } else {
1048 *rd_start = rd_data;
1049 *rd_end = rd_data + rd_len;
1050 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001051 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001052 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001053
1054 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001055}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001056
John Rigbyfca43cc2010-10-13 13:57:35 -06001057#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001058/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001059 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001060 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001061 * @rd_data: ramdisk data start address
1062 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001063 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1064 * start address (after possible relocation)
1065 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1066 * end address (after possible relocation)
1067 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001068 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001069 * variable and if requested ramdisk data is moved to a specified location.
1070 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001071 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1072 * start/end addresses if ramdisk image start and len were provided,
1073 * otherwise set initrd_start and initrd_end set to zeros.
1074 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001075 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001076 * 0 - success
1077 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001078 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001079int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001080 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001081{
1082 char *s;
1083 ulong initrd_high;
1084 int initrd_copy_to_ram = 1;
1085
Stephen Warren712fbcf2011-10-18 11:11:49 +00001086 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001087 /* a value of "no" or a similar string will act like 0,
1088 * turning the "load high" feature off. This is intentional.
1089 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001090 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001091 if (initrd_high == ~0)
1092 initrd_copy_to_ram = 0;
1093 } else {
1094 /* not set, no restrictions to load high */
1095 initrd_high = ~0;
1096 }
1097
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001098
1099#ifdef CONFIG_LOGBUFFER
1100 /* Prevent initrd from overwriting logbuffer */
1101 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1102#endif
1103
Stephen Warren712fbcf2011-10-18 11:11:49 +00001104 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001105 initrd_high, initrd_copy_to_ram);
1106
1107 if (rd_data) {
1108 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001109 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001110 *initrd_start = rd_data;
1111 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001112 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001113 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001114 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001115 *initrd_start = (ulong)lmb_alloc_base(lmb,
1116 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001117 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001118 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1119 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001120
Kumar Galae822d7f2008-02-27 21:51:49 -06001121 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001122 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001123 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001124 }
Simon Glass770605e2012-02-13 13:51:18 +00001125 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001126
1127 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001128 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001129 *initrd_start, *initrd_end);
1130
Stephen Warren712fbcf2011-10-18 11:11:49 +00001131 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001132 (void *)rd_data, rd_len, CHUNKSZ);
1133
Kumar Gala3b200112011-12-07 04:42:58 +00001134#ifdef CONFIG_MP
1135 /*
1136 * Ensure the image is flushed to memory to handle
1137 * AMP boot scenarios in which we might not be
1138 * HW cache coherent
1139 */
1140 flush_cache((unsigned long)*initrd_start, rd_len);
1141#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001142 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001143 }
1144 } else {
1145 *initrd_start = 0;
1146 *initrd_end = 0;
1147 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001148 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001149 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001150
Kumar Galae822d7f2008-02-27 21:51:49 -06001151 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001152
Kumar Galae822d7f2008-02-27 21:51:49 -06001153error:
1154 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001155}
John Rigbyfca43cc2010-10-13 13:57:35 -06001156#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001157
Kumar Gala06a09912008-08-15 08:24:38 -05001158#ifdef CONFIG_OF_LIBFDT
Stephen Warren712fbcf2011-10-18 11:11:49 +00001159static void fdt_error(const char *msg)
Kumar Gala06a09912008-08-15 08:24:38 -05001160{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001161 puts("ERROR: ");
1162 puts(msg);
1163 puts(" - must RESET the board to recover.\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001164}
1165
Stephen Warren712fbcf2011-10-18 11:11:49 +00001166static const image_header_t *image_get_fdt(ulong fdt_addr)
Kumar Gala06a09912008-08-15 08:24:38 -05001167{
Simon Glass35e7b0f2013-05-07 06:12:03 +00001168 const image_header_t *fdt_hdr = map_sysmem(fdt_addr, 0);
Kumar Gala06a09912008-08-15 08:24:38 -05001169
Stephen Warren712fbcf2011-10-18 11:11:49 +00001170 image_print_contents(fdt_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001171
Stephen Warren712fbcf2011-10-18 11:11:49 +00001172 puts(" Verifying Checksum ... ");
1173 if (!image_check_hcrc(fdt_hdr)) {
1174 fdt_error("fdt header checksum invalid");
Kumar Gala06a09912008-08-15 08:24:38 -05001175 return NULL;
1176 }
1177
Stephen Warren712fbcf2011-10-18 11:11:49 +00001178 if (!image_check_dcrc(fdt_hdr)) {
1179 fdt_error("fdt checksum invalid");
Kumar Gala06a09912008-08-15 08:24:38 -05001180 return NULL;
1181 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001182 puts("OK\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001183
Stephen Warren712fbcf2011-10-18 11:11:49 +00001184 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) {
1185 fdt_error("uImage is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001186 return NULL;
1187 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001188 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) {
1189 fdt_error("uImage is compressed");
Kumar Gala06a09912008-08-15 08:24:38 -05001190 return NULL;
1191 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001192 if (fdt_check_header((char *)image_get_data(fdt_hdr)) != 0) {
1193 fdt_error("uImage data is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001194 return NULL;
1195 }
1196 return fdt_hdr;
1197}
1198
1199/**
1200 * fit_check_fdt - verify FIT format FDT subimage
1201 * @fit_hdr: pointer to the FIT header
1202 * fdt_noffset: FDT subimage node offset within FIT image
1203 * @verify: data CRC verification flag
1204 *
1205 * fit_check_fdt() verifies integrity of the FDT subimage and from
1206 * specified FIT image.
1207 *
1208 * returns:
1209 * 1, on success
1210 * 0, on failure
1211 */
1212#if defined(CONFIG_FIT)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001213static int fit_check_fdt(const void *fit, int fdt_noffset, int verify)
Kumar Gala06a09912008-08-15 08:24:38 -05001214{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001215 fit_image_print(fit, fdt_noffset, " ");
Kumar Gala06a09912008-08-15 08:24:38 -05001216
1217 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001218 puts(" Verifying Hash Integrity ... ");
Simon Glassb8da8362013-05-07 06:11:57 +00001219 if (!fit_image_verify(fit, fdt_noffset)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001220 fdt_error("Bad Data Hash");
Kumar Gala06a09912008-08-15 08:24:38 -05001221 return 0;
1222 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001223 puts("OK\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001224 }
1225
Stephen Warren712fbcf2011-10-18 11:11:49 +00001226 if (!fit_image_check_type(fit, fdt_noffset, IH_TYPE_FLATDT)) {
1227 fdt_error("Not a FDT image");
Kumar Gala06a09912008-08-15 08:24:38 -05001228 return 0;
1229 }
1230
Stephen Warren712fbcf2011-10-18 11:11:49 +00001231 if (!fit_image_check_comp(fit, fdt_noffset, IH_COMP_NONE)) {
1232 fdt_error("FDT image is compressed");
Kumar Gala06a09912008-08-15 08:24:38 -05001233 return 0;
1234 }
1235
1236 return 1;
1237}
1238#endif /* CONFIG_FIT */
1239
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001240#ifndef CONFIG_SYS_FDT_PAD
1241#define CONFIG_SYS_FDT_PAD 0x3000
Kumar Gala06a09912008-08-15 08:24:38 -05001242#endif
1243
Grant Likely55b0a392011-03-28 09:59:01 +00001244#if defined(CONFIG_OF_LIBFDT)
1245/**
1246 * boot_fdt_add_mem_rsv_regions - Mark the memreserve sections as unusable
1247 * @lmb: pointer to lmb handle, will be used for memory mgmt
1248 * @fdt_blob: pointer to fdt blob base address
1249 *
1250 * Adds the memreserve regions in the dtb to the lmb block. Adding the
1251 * memreserve regions prevents u-boot from using them to store the initrd
1252 * or the fdt blob.
1253 */
1254void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob)
1255{
1256 uint64_t addr, size;
1257 int i, total;
1258
Stephen Warren712fbcf2011-10-18 11:11:49 +00001259 if (fdt_check_header(fdt_blob) != 0)
Grant Likely55b0a392011-03-28 09:59:01 +00001260 return;
1261
1262 total = fdt_num_mem_rsv(fdt_blob);
1263 for (i = 0; i < total; i++) {
1264 if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0)
1265 continue;
1266 printf(" reserving fdt memory region: addr=%llx size=%llx\n",
1267 (unsigned long long)addr, (unsigned long long)size);
1268 lmb_reserve(lmb, addr, size);
1269 }
1270}
1271
Kumar Gala06a09912008-08-15 08:24:38 -05001272/**
1273 * boot_relocate_fdt - relocate flat device tree
1274 * @lmb: pointer to lmb handle, will be used for memory mgmt
Kumar Gala06a09912008-08-15 08:24:38 -05001275 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1276 * @of_size: pointer to a ulong variable, will hold fdt length
1277 *
Timur Tabi43b08af2010-05-24 15:10:25 -05001278 * boot_relocate_fdt() allocates a region of memory within the bootmap and
1279 * relocates the of_flat_tree into that region, even if the fdt is already in
1280 * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD
1281 * bytes.
Kumar Gala06a09912008-08-15 08:24:38 -05001282 *
1283 * of_flat_tree and of_size are set to final (after relocation) values
1284 *
1285 * returns:
1286 * 0 - success
1287 * 1 - failure
1288 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001289int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size)
Kumar Gala06a09912008-08-15 08:24:38 -05001290{
Timur Tabi43b08af2010-05-24 15:10:25 -05001291 void *fdt_blob = *of_flat_tree;
Kim Phillips199adb62012-10-29 13:34:32 +00001292 void *of_start = NULL;
David A. Longa28afca2011-07-09 16:40:19 -04001293 char *fdt_high;
Kumar Gala06a09912008-08-15 08:24:38 -05001294 ulong of_len = 0;
Timur Tabi43b08af2010-05-24 15:10:25 -05001295 int err;
David A. Longa28afca2011-07-09 16:40:19 -04001296 int disable_relocation = 0;
Kumar Gala06a09912008-08-15 08:24:38 -05001297
1298 /* nothing to do */
1299 if (*of_size == 0)
1300 return 0;
1301
Stephen Warren712fbcf2011-10-18 11:11:49 +00001302 if (fdt_check_header(fdt_blob) != 0) {
1303 fdt_error("image is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001304 goto error;
1305 }
1306
Timur Tabi43b08af2010-05-24 15:10:25 -05001307 /* position on a 4K boundary before the alloc_current */
1308 /* Pad the FDT by a specified amount */
1309 of_len = *of_size + CONFIG_SYS_FDT_PAD;
David A. Longa28afca2011-07-09 16:40:19 -04001310
1311 /* If fdt_high is set use it to select the relocation address */
1312 fdt_high = getenv("fdt_high");
1313 if (fdt_high) {
1314 void *desired_addr = (void *)simple_strtoul(fdt_high, NULL, 16);
1315
1316 if (((ulong) desired_addr) == ~0UL) {
1317 /* All ones means use fdt in place */
Shawn Guofa34f6b2012-01-09 21:54:08 +00001318 of_start = fdt_blob;
1319 lmb_reserve(lmb, (ulong)of_start, of_len);
David A. Longa28afca2011-07-09 16:40:19 -04001320 disable_relocation = 1;
Shawn Guofa34f6b2012-01-09 21:54:08 +00001321 } else if (desired_addr) {
David A. Longa28afca2011-07-09 16:40:19 -04001322 of_start =
1323 (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000,
Shawn Guofa34f6b2012-01-09 21:54:08 +00001324 (ulong)desired_addr);
Kim Phillips199adb62012-10-29 13:34:32 +00001325 if (of_start == NULL) {
David A. Longa28afca2011-07-09 16:40:19 -04001326 puts("Failed using fdt_high value for Device Tree");
1327 goto error;
1328 }
1329 } else {
1330 of_start =
Matthew McClintock1bb5e902011-07-18 13:08:05 +00001331 (void *)(ulong) lmb_alloc(lmb, of_len, 0x1000);
David A. Longa28afca2011-07-09 16:40:19 -04001332 }
1333 } else {
1334 of_start =
1335 (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000,
1336 getenv_bootm_mapsize()
1337 + getenv_bootm_low());
1338 }
Kumar Gala06a09912008-08-15 08:24:38 -05001339
Kim Phillips199adb62012-10-29 13:34:32 +00001340 if (of_start == NULL) {
Timur Tabi43b08af2010-05-24 15:10:25 -05001341 puts("device tree - allocation error\n");
1342 goto error;
Kumar Gala06a09912008-08-15 08:24:38 -05001343 }
1344
David A. Longa28afca2011-07-09 16:40:19 -04001345 if (disable_relocation) {
1346 /* We assume there is space after the existing fdt to use for padding */
1347 fdt_set_totalsize(of_start, of_len);
1348 printf(" Using Device Tree in place at %p, end %p\n",
1349 of_start, of_start + of_len - 1);
1350 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001351 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
David A. Longa28afca2011-07-09 16:40:19 -04001352 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
Timur Tabi43b08af2010-05-24 15:10:25 -05001353
Stephen Warren712fbcf2011-10-18 11:11:49 +00001354 printf(" Loading Device Tree to %p, end %p ... ",
David A. Longa28afca2011-07-09 16:40:19 -04001355 of_start, of_start + of_len - 1);
Timur Tabi43b08af2010-05-24 15:10:25 -05001356
Stephen Warren712fbcf2011-10-18 11:11:49 +00001357 err = fdt_open_into(fdt_blob, of_start, of_len);
David A. Longa28afca2011-07-09 16:40:19 -04001358 if (err != 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001359 fdt_error("fdt move failed");
David A. Longa28afca2011-07-09 16:40:19 -04001360 goto error;
1361 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001362 puts("OK\n");
Timur Tabi43b08af2010-05-24 15:10:25 -05001363 }
Timur Tabi43b08af2010-05-24 15:10:25 -05001364
1365 *of_flat_tree = of_start;
1366 *of_size = of_len;
1367
Kumar Gala54f9c862008-08-15 08:24:39 -05001368 set_working_fdt_addr(*of_flat_tree);
Kumar Gala06a09912008-08-15 08:24:38 -05001369 return 0;
1370
1371error:
1372 return 1;
1373}
Grant Likelyed59e582011-03-28 09:58:49 +00001374#endif /* CONFIG_OF_LIBFDT */
Kumar Gala06a09912008-08-15 08:24:38 -05001375
1376/**
1377 * boot_get_fdt - main fdt handling routine
1378 * @argc: command argument count
1379 * @argv: command argument list
1380 * @images: pointer to the bootm images structure
1381 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1382 * @of_size: pointer to a ulong variable, will hold fdt length
1383 *
1384 * boot_get_fdt() is responsible for finding a valid flat device tree image.
1385 * Curently supported are the following ramdisk sources:
1386 * - multicomponent kernel/ramdisk image,
1387 * - commandline provided address of decicated ramdisk image.
1388 *
1389 * returns:
1390 * 0, if fdt image was found and valid, or skipped
1391 * of_flat_tree and of_size are set to fdt start address and length if
1392 * fdt image is found and valid
1393 *
1394 * 1, if fdt image is found but corrupted
1395 * of_flat_tree and of_size are set to 0 if no fdt exists
1396 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001397int boot_get_fdt(int flag, int argc, char * const argv[],
1398 bootm_headers_t *images, char **of_flat_tree, ulong *of_size)
Kumar Gala06a09912008-08-15 08:24:38 -05001399{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001400 const image_header_t *fdt_hdr;
Kumar Gala06a09912008-08-15 08:24:38 -05001401 ulong fdt_addr;
Kumar Gala06a09912008-08-15 08:24:38 -05001402 char *fdt_blob = NULL;
Stephen Warrene37ae402011-11-01 06:28:21 +00001403 ulong image_start, image_data, image_end;
Kumar Gala06a09912008-08-15 08:24:38 -05001404 ulong load_start, load_end;
Simon Glass35e7b0f2013-05-07 06:12:03 +00001405 void *buf;
Kumar Gala06a09912008-08-15 08:24:38 -05001406#if defined(CONFIG_FIT)
1407 void *fit_hdr;
1408 const char *fit_uname_config = NULL;
1409 const char *fit_uname_fdt = NULL;
1410 ulong default_addr;
1411 int cfg_noffset;
1412 int fdt_noffset;
1413 const void *data;
1414 size_t size;
1415#endif
1416
1417 *of_flat_tree = NULL;
1418 *of_size = 0;
1419
Stephen Warren712fbcf2011-10-18 11:11:49 +00001420 if (argc > 3 || genimg_has_config(images)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001421#if defined(CONFIG_FIT)
1422 if (argc > 3) {
1423 /*
1424 * If the FDT blob comes from the FIT image and the
1425 * FIT image address is omitted in the command line
1426 * argument, try to use ramdisk or os FIT image
1427 * address or default load address.
1428 */
1429 if (images->fit_uname_rd)
1430 default_addr = (ulong)images->fit_hdr_rd;
1431 else if (images->fit_uname_os)
1432 default_addr = (ulong)images->fit_hdr_os;
1433 else
1434 default_addr = load_addr;
1435
Stephen Warren712fbcf2011-10-18 11:11:49 +00001436 if (fit_parse_conf(argv[3], default_addr,
Kumar Gala06a09912008-08-15 08:24:38 -05001437 &fdt_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001438 debug("* fdt: config '%s' from image at "
1439 "0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001440 fit_uname_config, fdt_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001441 } else if (fit_parse_subimage(argv[3], default_addr,
Kumar Gala06a09912008-08-15 08:24:38 -05001442 &fdt_addr, &fit_uname_fdt)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001443 debug("* fdt: subimage '%s' from image at "
1444 "0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001445 fit_uname_fdt, fdt_addr);
1446 } else
1447#endif
1448 {
1449 fdt_addr = simple_strtoul(argv[3], NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001450 debug("* fdt: cmdline image address = "
1451 "0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001452 fdt_addr);
1453 }
1454#if defined(CONFIG_FIT)
1455 } else {
1456 /* use FIT configuration provided in first bootm
1457 * command argument
1458 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001459 fdt_addr = map_to_sysmem(images->fit_hdr_os);
Kumar Gala06a09912008-08-15 08:24:38 -05001460 fit_uname_config = images->fit_uname_cfg;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001461 debug("* fdt: using config '%s' from image "
1462 "at 0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001463 fit_uname_config, fdt_addr);
1464
1465 /*
1466 * Check whether configuration has FDT blob defined,
1467 * if not quit silently.
1468 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001469 fit_hdr = images->fit_hdr_os;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001470 cfg_noffset = fit_conf_get_node(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001471 fit_uname_config);
1472 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001473 debug("* fdt: no such config\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001474 return 0;
1475 }
1476
Stephen Warren712fbcf2011-10-18 11:11:49 +00001477 fdt_noffset = fit_conf_get_fdt_node(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001478 cfg_noffset);
1479 if (fdt_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001480 debug("* fdt: no fdt in config\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001481 return 0;
1482 }
1483 }
1484#endif
1485
Stephen Warren712fbcf2011-10-18 11:11:49 +00001486 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001487 fdt_addr);
1488
1489 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001490 fdt_addr = genimg_get_image(fdt_addr);
Kumar Gala06a09912008-08-15 08:24:38 -05001491
1492 /*
1493 * Check if there is an FDT image at the
1494 * address provided in the second bootm argument
1495 * check image type, for FIT images get a FIT node.
1496 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001497 buf = map_sysmem(fdt_addr, 0);
1498 switch (genimg_get_format(buf)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001499 case IMAGE_FORMAT_LEGACY:
1500 /* verify fdt_addr points to a valid image header */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001501 printf("## Flattened Device Tree from Legacy Image "
1502 "at %08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001503 fdt_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001504 fdt_hdr = image_get_fdt(fdt_addr);
Kumar Gala06a09912008-08-15 08:24:38 -05001505 if (!fdt_hdr)
1506 goto error;
1507
1508 /*
1509 * move image data to the load address,
1510 * make sure we don't overwrite initial image
1511 */
1512 image_start = (ulong)fdt_hdr;
Stephen Warrene37ae402011-11-01 06:28:21 +00001513 image_data = (ulong)image_get_data(fdt_hdr);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001514 image_end = image_get_image_end(fdt_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001515
Stephen Warren712fbcf2011-10-18 11:11:49 +00001516 load_start = image_get_load(fdt_hdr);
1517 load_end = load_start + image_get_data_size(fdt_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001518
Stephen Warrene37ae402011-11-01 06:28:21 +00001519 if (load_start == image_start ||
1520 load_start == image_data) {
1521 fdt_blob = (char *)image_data;
1522 break;
1523 }
1524
Kumar Gala06a09912008-08-15 08:24:38 -05001525 if ((load_start < image_end) && (load_end > image_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001526 fdt_error("fdt overwritten");
Kumar Gala06a09912008-08-15 08:24:38 -05001527 goto error;
1528 }
1529
Stephen Warren712fbcf2011-10-18 11:11:49 +00001530 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
Stephen Warrene37ae402011-11-01 06:28:21 +00001531 image_data, load_start);
Kumar Gala06a09912008-08-15 08:24:38 -05001532
Stephen Warren712fbcf2011-10-18 11:11:49 +00001533 memmove((void *)load_start,
Stephen Warrene37ae402011-11-01 06:28:21 +00001534 (void *)image_data,
Stephen Warren712fbcf2011-10-18 11:11:49 +00001535 image_get_data_size(fdt_hdr));
Kumar Gala06a09912008-08-15 08:24:38 -05001536
1537 fdt_blob = (char *)load_start;
1538 break;
1539 case IMAGE_FORMAT_FIT:
1540 /*
1541 * This case will catch both: new uImage format
1542 * (libfdt based) and raw FDT blob (also libfdt
1543 * based).
1544 */
1545#if defined(CONFIG_FIT)
1546 /* check FDT blob vs FIT blob */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001547 if (fit_check_format(buf)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001548 /*
1549 * FIT image
1550 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001551 fit_hdr = buf;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001552 printf("## Flattened Device Tree from FIT "
1553 "Image at %08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001554 fdt_addr);
1555
1556 if (!fit_uname_fdt) {
1557 /*
1558 * no FDT blob image node unit name,
1559 * try to get config node first. If
1560 * config unit node name is NULL
1561 * fit_conf_get_node() will try to
1562 * find default config node
1563 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001564 cfg_noffset = fit_conf_get_node(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001565 fit_uname_config);
1566
1567 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001568 fdt_error("Could not find "
1569 "configuration "
1570 "node\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001571 goto error;
1572 }
1573
Stephen Warren712fbcf2011-10-18 11:11:49 +00001574 fit_uname_config = fdt_get_name(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001575 cfg_noffset, NULL);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001576 printf(" Using '%s' configuration\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001577 fit_uname_config);
1578
Stephen Warren712fbcf2011-10-18 11:11:49 +00001579 fdt_noffset = fit_conf_get_fdt_node(
1580 fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001581 cfg_noffset);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001582 fit_uname_fdt = fit_get_name(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001583 fdt_noffset, NULL);
1584 } else {
1585 /* get FDT component image node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001586 fdt_noffset = fit_image_get_node(
1587 fit_hdr,
1588 fit_uname_fdt);
Kumar Gala06a09912008-08-15 08:24:38 -05001589 }
1590 if (fdt_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001591 fdt_error("Could not find subimage "
1592 "node\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001593 goto error;
1594 }
1595
Stephen Warren712fbcf2011-10-18 11:11:49 +00001596 printf(" Trying '%s' FDT blob subimage\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001597 fit_uname_fdt);
1598
Stephen Warren712fbcf2011-10-18 11:11:49 +00001599 if (!fit_check_fdt(fit_hdr, fdt_noffset,
Kumar Gala06a09912008-08-15 08:24:38 -05001600 images->verify))
1601 goto error;
1602
1603 /* get ramdisk image data address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001604 if (fit_image_get_data(fit_hdr, fdt_noffset,
Kumar Gala06a09912008-08-15 08:24:38 -05001605 &data, &size)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001606 fdt_error("Could not find FDT "
1607 "subimage data");
Kumar Gala06a09912008-08-15 08:24:38 -05001608 goto error;
1609 }
1610
1611 /* verift that image data is a proper FDT blob */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001612 if (fdt_check_header((char *)data) != 0) {
1613 fdt_error("Subimage data is not a FTD");
Kumar Gala06a09912008-08-15 08:24:38 -05001614 goto error;
1615 }
1616
1617 /*
1618 * move image data to the load address,
1619 * make sure we don't overwrite initial image
1620 */
1621 image_start = (ulong)fit_hdr;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001622 image_end = fit_get_end(fit_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001623
Stephen Warren712fbcf2011-10-18 11:11:49 +00001624 if (fit_image_get_load(fit_hdr, fdt_noffset,
Kumar Gala06a09912008-08-15 08:24:38 -05001625 &load_start) == 0) {
1626 load_end = load_start + size;
1627
1628 if ((load_start < image_end) &&
1629 (load_end > image_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001630 fdt_error("FDT overwritten");
Kumar Gala06a09912008-08-15 08:24:38 -05001631 goto error;
1632 }
1633
Stephen Warren712fbcf2011-10-18 11:11:49 +00001634 printf(" Loading FDT from 0x%08lx "
1635 "to 0x%08lx\n",
1636 (ulong)data,
1637 load_start);
Kumar Gala06a09912008-08-15 08:24:38 -05001638
Stephen Warren712fbcf2011-10-18 11:11:49 +00001639 memmove((void *)load_start,
Kumar Gala06a09912008-08-15 08:24:38 -05001640 (void *)data, size);
1641
1642 fdt_blob = (char *)load_start;
1643 } else {
1644 fdt_blob = (char *)data;
1645 }
1646
1647 images->fit_hdr_fdt = fit_hdr;
1648 images->fit_uname_fdt = fit_uname_fdt;
1649 images->fit_noffset_fdt = fdt_noffset;
1650 break;
1651 } else
1652#endif
1653 {
1654 /*
1655 * FDT blob
1656 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001657 fdt_blob = buf;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001658 debug("* fdt: raw FDT blob\n");
Simon Glass35e7b0f2013-05-07 06:12:03 +00001659 printf("## Flattened Device Tree blob at %08lx\n",
1660 (long)fdt_addr);
Kumar Gala06a09912008-08-15 08:24:38 -05001661 }
1662 break;
1663 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001664 puts("ERROR: Did not find a cmdline Flattened Device "
1665 "Tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001666 goto error;
1667 }
1668
Simon Glass0ec2ce42011-09-23 06:22:04 +00001669 printf(" Booting using the fdt blob at 0x%p\n", fdt_blob);
Kumar Gala06a09912008-08-15 08:24:38 -05001670
1671 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001672 image_check_type(&images->legacy_hdr_os_copy,
1673 IH_TYPE_MULTI)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001674
1675 ulong fdt_data, fdt_len;
1676
1677 /*
1678 * Now check if we have a legacy multi-component image,
1679 * get second entry data start address and len.
1680 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001681 printf("## Flattened Device Tree from multi "
Kumar Gala06a09912008-08-15 08:24:38 -05001682 "component Image at %08lX\n",
1683 (ulong)images->legacy_hdr_os);
1684
Stephen Warren712fbcf2011-10-18 11:11:49 +00001685 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
1686 &fdt_len);
Kumar Gala06a09912008-08-15 08:24:38 -05001687 if (fdt_len) {
1688
1689 fdt_blob = (char *)fdt_data;
Simon Glass0ec2ce42011-09-23 06:22:04 +00001690 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
Kumar Gala06a09912008-08-15 08:24:38 -05001691
Stephen Warren712fbcf2011-10-18 11:11:49 +00001692 if (fdt_check_header(fdt_blob) != 0) {
1693 fdt_error("image is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001694 goto error;
1695 }
1696
John Rigbyd1263fc2010-10-13 13:57:32 -06001697 if (fdt_totalsize(fdt_blob) != fdt_len) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001698 fdt_error("fdt size != image size");
Kumar Gala06a09912008-08-15 08:24:38 -05001699 goto error;
1700 }
1701 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001702 debug("## No Flattened Device Tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001703 return 0;
1704 }
1705 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001706 debug("## No Flattened Device Tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001707 return 0;
1708 }
1709
1710 *of_flat_tree = fdt_blob;
John Rigbyd1263fc2010-10-13 13:57:32 -06001711 *of_size = fdt_totalsize(fdt_blob);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001712 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
Andrew Klossner52514692008-08-21 07:12:26 -07001713 (ulong)*of_flat_tree, *of_size);
Kumar Gala06a09912008-08-15 08:24:38 -05001714
1715 return 0;
1716
1717error:
Kim Phillips199adb62012-10-29 13:34:32 +00001718 *of_flat_tree = NULL;
Kumar Gala06a09912008-08-15 08:24:38 -05001719 *of_size = 0;
1720 return 1;
1721}
1722#endif /* CONFIG_OF_LIBFDT */
1723
John Rigbyfca43cc2010-10-13 13:57:35 -06001724#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001725/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001726 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001727 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001728 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1729 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1730 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001731 * boot_get_cmdline() allocates space for kernel command line below
Grant Likely590d3ca2011-03-28 09:58:34 +00001732 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001733 * variable is present its contents is copied to allocated kernel
1734 * command line.
1735 *
1736 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001737 * 0 - success
1738 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001739 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001740int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001741{
1742 char *cmdline;
1743 char *s;
1744
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001745 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001746 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001747
1748 if (cmdline == NULL)
1749 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001750
1751 if ((s = getenv("bootargs")) == NULL)
1752 s = "";
1753
1754 strcpy(cmdline, s);
1755
1756 *cmd_start = (ulong) & cmdline[0];
1757 *cmd_end = *cmd_start + strlen(cmdline);
1758
Stephen Warren712fbcf2011-10-18 11:11:49 +00001759 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001760
Kumar Galae822d7f2008-02-27 21:51:49 -06001761 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001762}
John Rigbyfca43cc2010-10-13 13:57:35 -06001763#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001764
John Rigbyfca43cc2010-10-13 13:57:35 -06001765#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001766/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001767 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001768 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001769 * @kbd: double pointer to board info data
1770 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001771 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001772 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1773 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001774 *
1775 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001776 * 0 - success
1777 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001778 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001779int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001780{
Becky Bruce391fd932008-06-09 20:37:18 -05001781 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001782 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001783 if (*kbd == NULL)
1784 return -1;
1785
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001786 **kbd = *(gd->bd);
1787
Stephen Warren712fbcf2011-10-18 11:11:49 +00001788 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001789
1790#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1791 do_bdinfo(NULL, 0, 0, NULL);
1792#endif
1793
Kumar Galae822d7f2008-02-27 21:51:49 -06001794 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001795}
John Rigbyfca43cc2010-10-13 13:57:35 -06001796#endif /* CONFIG_SYS_BOOT_GET_KBD */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001797#endif /* !USE_HOSTCC */