blob: aacae5ac51aab01d3e10499c4e843971f1129000 [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#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
43#include <rtc.h>
44#endif
45
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010046#include <image.h>
47
Stephen Warren712fbcf2011-10-18 11:11:49 +000048#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Marian Balakowiczfff888a12008-02-21 17:20:19 +010049#include <fdt.h>
50#include <libfdt.h>
51#include <fdt_support.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010052#endif
53
54#if defined(CONFIG_FIT)
Andy Fleming20a14a42008-04-02 16:19:07 -050055#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010056#include <sha1.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010057
Stephen Warren712fbcf2011-10-18 11:11:49 +000058static int fit_check_ramdisk(const void *fit, int os_noffset,
Marian Balakowiczc8779642008-03-12 10:12:37 +010059 uint8_t arch, int verify);
Marian Balakowiczfff888a12008-02-21 17:20:19 +010060#endif
61
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010062#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020063extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010064#endif
65
66DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010067
Stephen Warren712fbcf2011-10-18 11:11:49 +000068static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010069 int verify);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010070#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010071#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050072#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010073#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010074#include <image.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010075#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010076
Mike Frysinger7edb1862010-10-20 07:17:39 -040077static const table_entry_t uimage_arch[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010078 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
79 { IH_ARCH_ALPHA, "alpha", "Alpha", },
80 { IH_ARCH_ARM, "arm", "ARM", },
81 { IH_ARCH_I386, "x86", "Intel x86", },
82 { IH_ARCH_IA64, "ia64", "IA64", },
83 { IH_ARCH_M68K, "m68k", "M68K", },
84 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
85 { IH_ARCH_MIPS, "mips", "MIPS", },
86 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010087 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070088 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010089 { IH_ARCH_PPC, "ppc", "PowerPC", },
90 { IH_ARCH_S390, "s390", "IBM S390", },
91 { IH_ARCH_SH, "sh", "SuperH", },
92 { IH_ARCH_SPARC, "sparc", "SPARC", },
93 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
94 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
95 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000096 { IH_ARCH_NDS32, "nds32", "NDS32", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010097 { -1, "", "", },
98};
99
Mike Frysinger7edb1862010-10-20 07:17:39 -0400100static const table_entry_t uimage_os[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100101 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100102 { IH_OS_LINUX, "linux", "Linux", },
103#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
104 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
105#endif
106 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200107 { IH_OS_OSE, "ose", "Enea OSE", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100108 { IH_OS_RTEMS, "rtems", "RTEMS", },
109 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
110#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
111 { IH_OS_QNX, "qnx", "QNX", },
112 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
113#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500114#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
115 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
116#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100117#ifdef USE_HOSTCC
118 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
119 { IH_OS_DELL, "dell", "Dell", },
120 { IH_OS_ESIX, "esix", "Esix", },
121 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
122 { IH_OS_IRIX, "irix", "Irix", },
123 { IH_OS_NCR, "ncr", "NCR", },
124 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
125 { IH_OS_PSOS, "psos", "pSOS", },
126 { IH_OS_SCO, "sco", "SCO", },
127 { IH_OS_SOLARIS, "solaris", "Solaris", },
128 { IH_OS_SVR4, "svr4", "SVR4", },
129#endif
130 { -1, "", "", },
131};
132
Mike Frysinger7edb1862010-10-20 07:17:39 -0400133static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000134 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100135 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
136 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400137 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100138 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700139 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000140 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
141 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
142 { IH_TYPE_INVALID, NULL, "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100143 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000144 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
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
Stephen Warren712fbcf2011-10-18 11:11:49 +0000161uint32_t crc32(uint32_t, const unsigned char *, uint);
162uint32_t crc32_wd(uint32_t, const unsigned char *, uint, uint);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100163#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000164static void genimg_print_time(time_t timestamp);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100165#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100166
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100167/*****************************************************************************/
168/* Legacy format routines */
169/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000170int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100171{
172 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000173 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100174 image_header_t header;
175
176 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000177 memmove(&header, (char *)hdr, image_get_header_size());
178 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100179
Stephen Warren712fbcf2011-10-18 11:11:49 +0000180 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100181
Stephen Warren712fbcf2011-10-18 11:11:49 +0000182 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100183}
184
Stephen Warren712fbcf2011-10-18 11:11:49 +0000185int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100186{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000187 ulong data = image_get_data(hdr);
188 ulong len = image_get_data_size(hdr);
189 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100190
Stephen Warren712fbcf2011-10-18 11:11:49 +0000191 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100192}
193
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100194/**
195 * image_multi_count - get component (sub-image) count
196 * @hdr: pointer to the header of the multi component image
197 *
198 * image_multi_count() returns number of components in a multi
199 * component image.
200 *
201 * Note: no checking of the image type is done, caller must pass
202 * a valid multi component image.
203 *
204 * returns:
205 * number of components
206 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000207ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100208{
209 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100210 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100211
212 /* get start of the image payload, which in case of multi
213 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000214 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100215
216 /* count non empty slots */
217 for (i = 0; size[i]; ++i)
218 count++;
219
220 return count;
221}
222
223/**
224 * image_multi_getimg - get component data address and size
225 * @hdr: pointer to the header of the multi component image
226 * @idx: index of the requested component
227 * @data: pointer to a ulong variable, will hold component data address
228 * @len: pointer to a ulong variable, will hold component size
229 *
230 * image_multi_getimg() returns size and data address for the requested
231 * component in a multi component image.
232 *
233 * Note: no checking of the image type is done, caller must pass
234 * a valid multi component image.
235 *
236 * returns:
237 * data address and size of the component, if idx is valid
238 * 0 in data and len, if idx is out of range
239 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000240void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100241 ulong *data, ulong *len)
242{
243 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100244 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700245 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100246
247 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000248 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100249
250 /* get start of the image payload, which in case of multi
251 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000252 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100253
254 /* get address of the proper component data start, which means
255 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000256 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100257
258 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000259 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100260 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100261
262 /* go over all indices preceding requested component idx */
263 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700264 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100266 }
267
268 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700269 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100270 } else {
271 *len = 0;
272 *data = 0;
273 }
274}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100275
Stephen Warren712fbcf2011-10-18 11:11:49 +0000276static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100277{
278 const char *os, *arch, *type, *comp;
279
Stephen Warren712fbcf2011-10-18 11:11:49 +0000280 os = genimg_get_os_name(image_get_os(hdr));
281 arch = genimg_get_arch_name(image_get_arch(hdr));
282 type = genimg_get_type_name(image_get_type(hdr));
283 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100284
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100286}
287
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100288/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200289 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200290 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100291 * @p: pointer to prefix string
292 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200293 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100294 * The routine prints out all header fields followed by the size/offset data
295 * for MULTI/SCRIPT images.
296 *
297 * returns:
298 * no returned results
299 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000300void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100301{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200302 const image_header_t *hdr = (const image_header_t *)ptr;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200303 const char *p;
304
305#ifdef USE_HOSTCC
306 p = "";
307#else
308 p = " ";
309#endif
310
Stephen Warren712fbcf2011-10-18 11:11:49 +0000311 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100312#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313 printf("%sCreated: ", p);
314 genimg_print_time((time_t)image_get_time(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100315#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 printf("%sImage Type: ", p);
317 image_print_type(hdr);
318 printf("%sData Size: ", p);
319 genimg_print_size(image_get_data_size(hdr));
320 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
321 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100322
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 if (image_check_type(hdr, IH_TYPE_MULTI) ||
324 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100325 int i;
326 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000327 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100328
Stephen Warren712fbcf2011-10-18 11:11:49 +0000329 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100330 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000331 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100332
Stephen Warren712fbcf2011-10-18 11:11:49 +0000333 printf("%s Image %d: ", p, i);
334 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100335
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100337 /*
338 * the user may need to know offsets
339 * if planning to do something with
340 * multiple files
341 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000342 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100343 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344 }
345 }
346}
347
Marian Balakowicz570abb02008-02-29 15:59:59 +0100348
349#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100350/**
351 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100352 * @rd_addr: ramdisk image start address
353 * @arch: expected ramdisk architecture
354 * @verify: checksum verification flag
355 *
356 * image_get_ramdisk() returns a pointer to the verified ramdisk image
357 * header. Routine receives image start address and expected architecture
358 * flag. Verification done covers data and header integrity and os/type/arch
359 * fields checking.
360 *
361 * If dataflash support is enabled routine checks for dataflash addresses
362 * and handles required dataflash reads.
363 *
364 * returns:
365 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600366 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100367 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000368static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100369 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100370{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200371 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100372
Stephen Warren712fbcf2011-10-18 11:11:49 +0000373 if (!image_check_magic(rd_hdr)) {
374 puts("Bad Magic Number\n");
375 show_boot_progress(-10);
Kumar Gala274cea22008-02-27 21:51:46 -0600376 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100377 }
378
Stephen Warren712fbcf2011-10-18 11:11:49 +0000379 if (!image_check_hcrc(rd_hdr)) {
380 puts("Bad Header Checksum\n");
381 show_boot_progress(-11);
Kumar Gala274cea22008-02-27 21:51:46 -0600382 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100383 }
384
Stephen Warren712fbcf2011-10-18 11:11:49 +0000385 show_boot_progress(10);
386 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100387
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100388 if (verify) {
389 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000390 if (!image_check_dcrc(rd_hdr)) {
391 puts("Bad Data CRC\n");
392 show_boot_progress(-12);
Kumar Gala274cea22008-02-27 21:51:46 -0600393 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100394 }
395 puts("OK\n");
396 }
397
Stephen Warren712fbcf2011-10-18 11:11:49 +0000398 show_boot_progress(11);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100399
Stephen Warren712fbcf2011-10-18 11:11:49 +0000400 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
401 !image_check_arch(rd_hdr, arch) ||
402 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
403 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100404 genimg_get_arch_name(arch));
Stephen Warren712fbcf2011-10-18 11:11:49 +0000405 show_boot_progress(-13);
Kumar Gala274cea22008-02-27 21:51:46 -0600406 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100407 }
408
409 return rd_hdr;
410}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100411#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100412
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100413/*****************************************************************************/
414/* Shared dual-format routines */
415/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100416#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000417int getenv_yesno(char *var)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100418{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000419 char *s = getenv(var);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100420 return (s && (*s == 'n')) ? 0 : 1;
421}
422
423ulong getenv_bootm_low(void)
424{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000425 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100426 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000427 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100428 return tmp;
429 }
430
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200431#if defined(CONFIG_SYS_SDRAM_BASE)
432 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100433#elif defined(CONFIG_ARM)
434 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100435#else
436 return 0;
437#endif
438}
439
Becky Bruce391fd932008-06-09 20:37:18 -0500440phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100441{
Matthew McClintockc519fac2010-07-08 10:11:08 -0500442 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000443 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100444 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000445 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100446 return tmp;
447 }
Matthew McClintockc519fac2010-07-08 10:11:08 -0500448 s = getenv("bootm_low");
449 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000450 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500451 else
452 tmp = 0;
453
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100454
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100455#if defined(CONFIG_ARM)
Matthew McClintockc519fac2010-07-08 10:11:08 -0500456 return gd->bd->bi_dram[0].size - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100457#else
Matthew McClintockc519fac2010-07-08 10:11:08 -0500458 return gd->bd->bi_memsize - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100459#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100460}
461
Grant Likelyc3624e62011-03-28 09:58:43 +0000462phys_size_t getenv_bootm_mapsize(void)
463{
464 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000465 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000466 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000467 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000468 return tmp;
469 }
470
471#if defined(CONFIG_SYS_BOOTMAPSZ)
472 return CONFIG_SYS_BOOTMAPSZ;
473#else
474 return getenv_bootm_size();
475#endif
476}
477
Stephen Warren712fbcf2011-10-18 11:11:49 +0000478void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100479{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400480 if (to == from)
481 return;
482
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100483#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
484 while (len > 0) {
485 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000486 WATCHDOG_RESET();
487 memmove(to, from, tail);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100488 to += tail;
489 from += tail;
490 len -= tail;
491 }
492#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000493 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100494#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
495}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100496#endif /* !USE_HOSTCC */
497
Stephen Warren712fbcf2011-10-18 11:11:49 +0000498void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100499{
500#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000501 printf("%d Bytes = ", size);
502 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100503#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000504 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100505 size, (double)size / 1.024e3,
506 (double)size / 1.048576e6);
507#endif
508}
509
510#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000511static void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100512{
513#ifndef USE_HOSTCC
514 struct rtc_time tm;
515
Stephen Warren712fbcf2011-10-18 11:11:49 +0000516 to_tm(timestamp, &tm);
517 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100518 tm.tm_year, tm.tm_mon, tm.tm_mday,
519 tm.tm_hour, tm.tm_min, tm.tm_sec);
520#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000521 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100522#endif
523}
524#endif /* CONFIG_TIMESTAMP || CONFIG_CMD_DATE || USE_HOSTCC */
525
526/**
527 * get_table_entry_name - translate entry id to long name
528 * @table: pointer to a translation table for entries of a specific type
529 * @msg: message to be returned when translation fails
530 * @id: entry id to be translated
531 *
532 * get_table_entry_name() will go over translation table trying to find
533 * entry that matches given id. If matching entry is found, its long
534 * name is returned to the caller.
535 *
536 * returns:
537 * long entry name if translation succeeds
538 * msg otherwise
539 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400540char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100541{
542 for (; table->id >= 0; ++table) {
543 if (table->id == id)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200544#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Scott Woode3d1ac72009-04-02 16:15:10 -0500545 return table->lname;
546#else
547 return table->lname + gd->reloc_off;
548#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100549 }
550 return (msg);
551}
552
Stephen Warren712fbcf2011-10-18 11:11:49 +0000553const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100554{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000555 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100556}
557
Stephen Warren712fbcf2011-10-18 11:11:49 +0000558const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000560 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
561 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100562}
563
Stephen Warren712fbcf2011-10-18 11:11:49 +0000564const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100565{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000566 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100567}
568
Stephen Warren712fbcf2011-10-18 11:11:49 +0000569const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100570{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000571 return (get_table_entry_name(uimage_comp, "Unknown Compression",
572 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100573}
574
575/**
576 * get_table_entry_id - translate short entry name to id
577 * @table: pointer to a translation table for entries of a specific type
578 * @table_name: to be used in case of error
579 * @name: entry short name to be translated
580 *
581 * get_table_entry_id() will go over translation table trying to find
582 * entry that matches given short name. If matching entry is found,
583 * its id returned to the caller.
584 *
585 * returns:
586 * entry id if translation succeeds
587 * -1 otherwise
588 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400589int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100590 const char *table_name, const char *name)
591{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400592 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100593#ifdef USE_HOSTCC
594 int first = 1;
595
596 for (t = table; t->id >= 0; ++t) {
597 if (t->sname && strcasecmp(t->sname, name) == 0)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000598 return(t->id);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100599 }
600
Stephen Warren712fbcf2011-10-18 11:11:49 +0000601 fprintf(stderr, "\nInvalid %s Type - valid names are", table_name);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100602 for (t = table; t->id >= 0; ++t) {
603 if (t->sname == NULL)
604 continue;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000605 fprintf(stderr, "%c %s", (first) ? ':' : ',', t->sname);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100606 first = 0;
607 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000608 fprintf(stderr, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100609#else
610 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200611#ifdef CONFIG_NEEDS_MANUAL_RELOC
Scott Woode3d1ac72009-04-02 16:15:10 -0500612 if (t->sname && strcmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200613#else
614 if (t->sname && strcmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500615#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100616 return (t->id);
617 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000618 debug("Invalid %s Type: %s\n", table_name, name);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100619#endif /* USE_HOSTCC */
Marian Balakowicz570abb02008-02-29 15:59:59 +0100620 return (-1);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100621}
622
Stephen Warren712fbcf2011-10-18 11:11:49 +0000623int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100624{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000625 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100626}
627
Stephen Warren712fbcf2011-10-18 11:11:49 +0000628int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100629{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000630 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100631}
632
Stephen Warren712fbcf2011-10-18 11:11:49 +0000633int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100634{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000635 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100636}
637
Stephen Warren712fbcf2011-10-18 11:11:49 +0000638int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100639{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000640 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100641}
642
643#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100644/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100645 * genimg_get_format - get image format type
646 * @img_addr: image start address
647 *
648 * genimg_get_format() checks whether provided address points to a valid
649 * legacy or FIT image.
650 *
651 * New uImage format and FDT blob are based on a libfdt. FDT blob
652 * may be passed directly or embedded in a FIT image. In both situations
653 * genimg_get_format() must be able to dectect libfdt header.
654 *
655 * returns:
656 * image format type or IMAGE_FORMAT_INVALID if no image is present
657 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000658int genimg_get_format(void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100659{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200660 ulong format = IMAGE_FORMAT_INVALID;
661 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100662#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200663 char *fit_hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100664#endif
665
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200666 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100667 if (image_check_magic(hdr))
668 format = IMAGE_FORMAT_LEGACY;
669#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
670 else {
671 fit_hdr = (char *)img_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000672 if (fdt_check_header(fit_hdr) == 0)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100673 format = IMAGE_FORMAT_FIT;
674 }
675#endif
676
677 return format;
678}
679
680/**
681 * genimg_get_image - get image from special storage (if necessary)
682 * @img_addr: image start address
683 *
684 * genimg_get_image() checks if provided image start adddress is located
685 * in a dataflash storage. If so, image is moved to a system RAM memory.
686 *
687 * returns:
688 * image start address after possible relocation from special storage
689 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000690ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100691{
692 ulong ram_addr = img_addr;
693
694#ifdef CONFIG_HAS_DATAFLASH
695 ulong h_size, d_size;
696
Stephen Warren712fbcf2011-10-18 11:11:49 +0000697 if (addr_dataflash(img_addr)) {
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100698 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200699 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100700
701 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000702 h_size = image_get_header_size();
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100703#if defined(CONFIG_FIT)
704 if (sizeof(struct fdt_header) > h_size)
705 h_size = sizeof(struct fdt_header);
706#endif
707
708 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000709 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100710 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
711
Stephen Warren712fbcf2011-10-18 11:11:49 +0000712 read_dataflash(img_addr, h_size, (char *)ram_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100713
714 /* get data size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000715 switch (genimg_get_format((void *)ram_addr)) {
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100716 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000717 d_size = image_get_data_size(
718 (const image_header_t *)ram_addr);
719 debug(" Legacy format image found at 0x%08lx, "
720 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100721 ram_addr, d_size);
722 break;
723#if defined(CONFIG_FIT)
724 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000725 d_size = fit_get_size((const void *)ram_addr) - h_size;
726 debug(" FIT/FDT format image found at 0x%08lx, "
727 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100728 ram_addr, d_size);
729 break;
730#endif
731 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000732 printf(" No valid image found at 0x%08lx\n",
733 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100734 return ram_addr;
735 }
736
737 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000738 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100739 "%08lx to RAM address %08lx\n", img_addr + h_size,
740 ram_addr + h_size);
741
Stephen Warren712fbcf2011-10-18 11:11:49 +0000742 read_dataflash(img_addr + h_size, d_size,
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100743 (char *)(ram_addr + h_size));
744
745 }
746#endif /* CONFIG_HAS_DATAFLASH */
747
748 return ram_addr;
749}
750
751/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100752 * fit_has_config - check if there is a valid FIT configuration
753 * @images: pointer to the bootm command headers structure
754 *
755 * fit_has_config() checks if there is a FIT configuration in use
756 * (if FTI support is present).
757 *
758 * returns:
759 * 0, no FIT support or no configuration found
760 * 1, configuration found
761 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000762int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100763{
764#if defined(CONFIG_FIT)
765 if (images->fit_uname_cfg)
766 return 1;
767#endif
768 return 0;
769}
770
771/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100772 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100773 * @argc: command argument count
774 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100775 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100776 * @arch: expected ramdisk architecture
777 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
778 * @rd_end: pointer to a ulong variable, will hold ramdisk end
779 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100780 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100781 * Curently supported are the following ramdisk sources:
782 * - multicomponent kernel/ramdisk image,
783 * - commandline provided address of decicated ramdisk image.
784 *
785 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100786 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100787 * rd_start and rd_end are set to ramdisk start/end addresses if
788 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100789 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500790 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100791 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100792 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000793int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100794 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100795{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100796 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100797 ulong rd_data, rd_len;
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200798 const image_header_t *rd_hdr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100799#if defined(CONFIG_FIT)
800 void *fit_hdr;
801 const char *fit_uname_config = NULL;
802 const char *fit_uname_ramdisk = NULL;
803 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100804 int rd_noffset;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100805 int cfg_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100806 const void *data;
807 size_t size;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100808#endif
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100809
Marian Balakowiczc8779642008-03-12 10:12:37 +0100810 *rd_start = 0;
811 *rd_end = 0;
812
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100813 /*
814 * Look for a '-' which indicates to ignore the
815 * ramdisk argument
816 */
817 if ((argc >= 3) && (strcmp(argv[2], "-") == 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;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000820 } else if (argc >= 3 || genimg_has_config(images)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100821#if defined(CONFIG_FIT)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100822 if (argc >= 3) {
823 /*
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
Stephen Warren712fbcf2011-10-18 11:11:49 +0000834 if (fit_parse_conf(argv[2], default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100835 &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);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000839 } else if (fit_parse_subimage(argv[2], 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 {
847 rd_addr = simple_strtoul(argv[2], 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
855 * command argument
856 */
857 rd_addr = (ulong)images->fit_hdr_os;
858 fit_uname_config = images->fit_uname_cfg;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000859 debug("* ramdisk: using config '%s' from image "
860 "at 0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100861 fit_uname_config, rd_addr);
862
863 /*
864 * Check whether configuration has ramdisk defined,
865 * if not, don't try to use it, quit silently.
866 */
867 fit_hdr = (void *)rd_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000868 cfg_noffset = fit_conf_get_node(fit_hdr,
869 fit_uname_config);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100870 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000871 debug("* ramdisk: no such config\n");
Michal Simekc78fce62008-07-11 10:43:13 +0200872 return 1;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100873 }
874
Stephen Warren712fbcf2011-10-18 11:11:49 +0000875 rd_noffset = fit_conf_get_ramdisk_node(fit_hdr,
876 cfg_noffset);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100877 if (rd_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000878 debug("* ramdisk: no ramdisk in config\n");
Peter Tyser41266c92008-08-05 10:51:57 -0500879 return 0;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100880 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100881 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100882#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100883
884 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000885 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100886
887 /*
888 * Check if there is an initrd image at the
889 * address provided in the second bootm argument
890 * check image type, for FIT images get FIT node.
891 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000892 switch (genimg_get_format((void *)rd_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100893 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000894 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100895 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100896
Stephen Warren712fbcf2011-10-18 11:11:49 +0000897 show_boot_progress(9);
898 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100899 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100900
Marian Balakowiczc8779642008-03-12 10:12:37 +0100901 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -0600902 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -0600903
Stephen Warren712fbcf2011-10-18 11:11:49 +0000904 rd_data = image_get_data(rd_hdr);
905 rd_len = image_get_data_size(rd_hdr);
906 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100907 break;
908#if defined(CONFIG_FIT)
909 case IMAGE_FORMAT_FIT:
910 fit_hdr = (void *)rd_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000911 printf("## Loading init Ramdisk from FIT "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100912 "Image at %08lx ...\n", rd_addr);
913
Stephen Warren712fbcf2011-10-18 11:11:49 +0000914 show_boot_progress(120);
915 if (!fit_check_format(fit_hdr)) {
916 puts("Bad FIT ramdisk image format!\n");
917 show_boot_progress(-120);
Michal Simekc78fce62008-07-11 10:43:13 +0200918 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100919 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000920 show_boot_progress(121);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100921
922 if (!fit_uname_ramdisk) {
923 /*
924 * no ramdisk image node unit name, try to get config
925 * node first. If config unit node name is NULL
926 * fit_conf_get_node() will try to find default config node
927 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000928 show_boot_progress(122);
929 cfg_noffset = fit_conf_get_node(fit_hdr,
930 fit_uname_config);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100931 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000932 puts("Could not find configuration "
933 "node\n");
934 show_boot_progress(-122);
Michal Simekc78fce62008-07-11 10:43:13 +0200935 return 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100936 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000937 fit_uname_config = fdt_get_name(fit_hdr,
938 cfg_noffset, NULL);
939 printf(" Using '%s' configuration\n",
940 fit_uname_config);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100941
Stephen Warren712fbcf2011-10-18 11:11:49 +0000942 rd_noffset = fit_conf_get_ramdisk_node(fit_hdr,
943 cfg_noffset);
944 fit_uname_ramdisk = fit_get_name(fit_hdr,
945 rd_noffset, NULL);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100946 } else {
947 /* get ramdisk component image node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000948 show_boot_progress(123);
949 rd_noffset = fit_image_get_node(fit_hdr,
950 fit_uname_ramdisk);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100951 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100952 if (rd_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000953 puts("Could not find subimage node\n");
954 show_boot_progress(-124);
Michal Simekc78fce62008-07-11 10:43:13 +0200955 return 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100956 }
Marian Balakowiczc8779642008-03-12 10:12:37 +0100957
Stephen Warren712fbcf2011-10-18 11:11:49 +0000958 printf(" Trying '%s' ramdisk subimage\n",
959 fit_uname_ramdisk);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100960
Stephen Warren712fbcf2011-10-18 11:11:49 +0000961 show_boot_progress(125);
962 if (!fit_check_ramdisk(fit_hdr, rd_noffset, arch,
963 images->verify))
Michal Simekc78fce62008-07-11 10:43:13 +0200964 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100965
966 /* get ramdisk image data address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000967 if (fit_image_get_data(fit_hdr, rd_noffset, &data,
968 &size)) {
969 puts("Could not find ramdisk subimage data!\n");
970 show_boot_progress(-127);
Michal Simekc78fce62008-07-11 10:43:13 +0200971 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100972 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000973 show_boot_progress(128);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100974
975 rd_data = (ulong)data;
976 rd_len = size;
977
Stephen Warren712fbcf2011-10-18 11:11:49 +0000978 if (fit_image_get_load(fit_hdr, rd_noffset, &rd_load)) {
979 puts("Can't get ramdisk subimage load "
980 "address!\n");
981 show_boot_progress(-129);
Michal Simekc78fce62008-07-11 10:43:13 +0200982 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100983 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000984 show_boot_progress(129);
Marian Balakowiczc8779642008-03-12 10:12:37 +0100985
986 images->fit_hdr_rd = fit_hdr;
987 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100988 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100989 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100990#endif
991 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000992 puts("Wrong Ramdisk Image Format\n");
Marian Balakowiczc8779642008-03-12 10:12:37 +0100993 rd_data = rd_len = rd_load = 0;
Kumar Galaea86b9e2008-08-29 19:08:29 -0500994 return 1;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100995 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100996 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +0000997 image_check_type(&images->legacy_hdr_os_copy,
998 IH_TYPE_MULTI)) {
999
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001000 /*
1001 * Now check if we have a legacy mult-component image,
1002 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001003 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001004 show_boot_progress(13);
1005 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001006 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001007 (ulong)images->legacy_hdr_os);
1008
Stephen Warren712fbcf2011-10-18 11:11:49 +00001009 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001010 } else {
1011 /*
1012 * no initrd image
1013 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001014 show_boot_progress(14);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001015 rd_len = rd_data = 0;
1016 }
1017
1018 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001019 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001020 } else {
1021 *rd_start = rd_data;
1022 *rd_end = rd_data + rd_len;
1023 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001024 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001025 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001026
1027 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001028}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001029
John Rigbyfca43cc2010-10-13 13:57:35 -06001030#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001031/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001032 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001033 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001034 * @rd_data: ramdisk data start address
1035 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001036 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1037 * start address (after possible relocation)
1038 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1039 * end address (after possible relocation)
1040 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001041 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environement
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001042 * variable and if requested ramdisk data is moved to a specified location.
1043 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001044 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1045 * start/end addresses if ramdisk image start and len were provided,
1046 * otherwise set initrd_start and initrd_end set to zeros.
1047 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001048 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001049 * 0 - success
1050 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001051 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001052int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001053 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001054{
1055 char *s;
1056 ulong initrd_high;
1057 int initrd_copy_to_ram = 1;
1058
Stephen Warren712fbcf2011-10-18 11:11:49 +00001059 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001060 /* a value of "no" or a similar string will act like 0,
1061 * turning the "load high" feature off. This is intentional.
1062 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001063 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001064 if (initrd_high == ~0)
1065 initrd_copy_to_ram = 0;
1066 } else {
1067 /* not set, no restrictions to load high */
1068 initrd_high = ~0;
1069 }
1070
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001071
1072#ifdef CONFIG_LOGBUFFER
1073 /* Prevent initrd from overwriting logbuffer */
1074 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1075#endif
1076
Stephen Warren712fbcf2011-10-18 11:11:49 +00001077 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001078 initrd_high, initrd_copy_to_ram);
1079
1080 if (rd_data) {
1081 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001082 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001083 *initrd_start = rd_data;
1084 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001085 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001086 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001087 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001088 *initrd_start = (ulong)lmb_alloc_base(lmb,
1089 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001090 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001091 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1092 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001093
Kumar Galae822d7f2008-02-27 21:51:49 -06001094 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001095 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001096 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001097 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001098 show_boot_progress(12);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001099
1100 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001101 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001102 *initrd_start, *initrd_end);
1103
Stephen Warren712fbcf2011-10-18 11:11:49 +00001104 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001105 (void *)rd_data, rd_len, CHUNKSZ);
1106
Stephen Warren712fbcf2011-10-18 11:11:49 +00001107 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001108 }
1109 } else {
1110 *initrd_start = 0;
1111 *initrd_end = 0;
1112 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001113 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001114 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001115
Kumar Galae822d7f2008-02-27 21:51:49 -06001116 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001117
Kumar Galae822d7f2008-02-27 21:51:49 -06001118error:
1119 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001120}
John Rigbyfca43cc2010-10-13 13:57:35 -06001121#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001122
Kumar Gala06a09912008-08-15 08:24:38 -05001123#ifdef CONFIG_OF_LIBFDT
Stephen Warren712fbcf2011-10-18 11:11:49 +00001124static void fdt_error(const char *msg)
Kumar Gala06a09912008-08-15 08:24:38 -05001125{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001126 puts("ERROR: ");
1127 puts(msg);
1128 puts(" - must RESET the board to recover.\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001129}
1130
Stephen Warren712fbcf2011-10-18 11:11:49 +00001131static const image_header_t *image_get_fdt(ulong fdt_addr)
Kumar Gala06a09912008-08-15 08:24:38 -05001132{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001133 const image_header_t *fdt_hdr = (const image_header_t *)fdt_addr;
Kumar Gala06a09912008-08-15 08:24:38 -05001134
Stephen Warren712fbcf2011-10-18 11:11:49 +00001135 image_print_contents(fdt_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001136
Stephen Warren712fbcf2011-10-18 11:11:49 +00001137 puts(" Verifying Checksum ... ");
1138 if (!image_check_hcrc(fdt_hdr)) {
1139 fdt_error("fdt header checksum invalid");
Kumar Gala06a09912008-08-15 08:24:38 -05001140 return NULL;
1141 }
1142
Stephen Warren712fbcf2011-10-18 11:11:49 +00001143 if (!image_check_dcrc(fdt_hdr)) {
1144 fdt_error("fdt checksum invalid");
Kumar Gala06a09912008-08-15 08:24:38 -05001145 return NULL;
1146 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001147 puts("OK\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001148
Stephen Warren712fbcf2011-10-18 11:11:49 +00001149 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) {
1150 fdt_error("uImage is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001151 return NULL;
1152 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001153 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) {
1154 fdt_error("uImage is compressed");
Kumar Gala06a09912008-08-15 08:24:38 -05001155 return NULL;
1156 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001157 if (fdt_check_header((char *)image_get_data(fdt_hdr)) != 0) {
1158 fdt_error("uImage data is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001159 return NULL;
1160 }
1161 return fdt_hdr;
1162}
1163
1164/**
1165 * fit_check_fdt - verify FIT format FDT subimage
1166 * @fit_hdr: pointer to the FIT header
1167 * fdt_noffset: FDT subimage node offset within FIT image
1168 * @verify: data CRC verification flag
1169 *
1170 * fit_check_fdt() verifies integrity of the FDT subimage and from
1171 * specified FIT image.
1172 *
1173 * returns:
1174 * 1, on success
1175 * 0, on failure
1176 */
1177#if defined(CONFIG_FIT)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001178static int fit_check_fdt(const void *fit, int fdt_noffset, int verify)
Kumar Gala06a09912008-08-15 08:24:38 -05001179{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001180 fit_image_print(fit, fdt_noffset, " ");
Kumar Gala06a09912008-08-15 08:24:38 -05001181
1182 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001183 puts(" Verifying Hash Integrity ... ");
1184 if (!fit_image_check_hashes(fit, fdt_noffset)) {
1185 fdt_error("Bad Data Hash");
Kumar Gala06a09912008-08-15 08:24:38 -05001186 return 0;
1187 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001188 puts("OK\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001189 }
1190
Stephen Warren712fbcf2011-10-18 11:11:49 +00001191 if (!fit_image_check_type(fit, fdt_noffset, IH_TYPE_FLATDT)) {
1192 fdt_error("Not a FDT image");
Kumar Gala06a09912008-08-15 08:24:38 -05001193 return 0;
1194 }
1195
Stephen Warren712fbcf2011-10-18 11:11:49 +00001196 if (!fit_image_check_comp(fit, fdt_noffset, IH_COMP_NONE)) {
1197 fdt_error("FDT image is compressed");
Kumar Gala06a09912008-08-15 08:24:38 -05001198 return 0;
1199 }
1200
1201 return 1;
1202}
1203#endif /* CONFIG_FIT */
1204
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001205#ifndef CONFIG_SYS_FDT_PAD
1206#define CONFIG_SYS_FDT_PAD 0x3000
Kumar Gala06a09912008-08-15 08:24:38 -05001207#endif
1208
Grant Likely55b0a392011-03-28 09:59:01 +00001209#if defined(CONFIG_OF_LIBFDT)
1210/**
1211 * boot_fdt_add_mem_rsv_regions - Mark the memreserve sections as unusable
1212 * @lmb: pointer to lmb handle, will be used for memory mgmt
1213 * @fdt_blob: pointer to fdt blob base address
1214 *
1215 * Adds the memreserve regions in the dtb to the lmb block. Adding the
1216 * memreserve regions prevents u-boot from using them to store the initrd
1217 * or the fdt blob.
1218 */
1219void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob)
1220{
1221 uint64_t addr, size;
1222 int i, total;
1223
Stephen Warren712fbcf2011-10-18 11:11:49 +00001224 if (fdt_check_header(fdt_blob) != 0)
Grant Likely55b0a392011-03-28 09:59:01 +00001225 return;
1226
1227 total = fdt_num_mem_rsv(fdt_blob);
1228 for (i = 0; i < total; i++) {
1229 if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0)
1230 continue;
1231 printf(" reserving fdt memory region: addr=%llx size=%llx\n",
1232 (unsigned long long)addr, (unsigned long long)size);
1233 lmb_reserve(lmb, addr, size);
1234 }
1235}
1236
Kumar Gala06a09912008-08-15 08:24:38 -05001237/**
1238 * boot_relocate_fdt - relocate flat device tree
1239 * @lmb: pointer to lmb handle, will be used for memory mgmt
Kumar Gala06a09912008-08-15 08:24:38 -05001240 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1241 * @of_size: pointer to a ulong variable, will hold fdt length
1242 *
Timur Tabi43b08af2010-05-24 15:10:25 -05001243 * boot_relocate_fdt() allocates a region of memory within the bootmap and
1244 * relocates the of_flat_tree into that region, even if the fdt is already in
1245 * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD
1246 * bytes.
Kumar Gala06a09912008-08-15 08:24:38 -05001247 *
1248 * of_flat_tree and of_size are set to final (after relocation) values
1249 *
1250 * returns:
1251 * 0 - success
1252 * 1 - failure
1253 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001254int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size)
Kumar Gala06a09912008-08-15 08:24:38 -05001255{
Timur Tabi43b08af2010-05-24 15:10:25 -05001256 void *fdt_blob = *of_flat_tree;
1257 void *of_start = 0;
David A. Longa28afca2011-07-09 16:40:19 -04001258 char *fdt_high;
Kumar Gala06a09912008-08-15 08:24:38 -05001259 ulong of_len = 0;
Timur Tabi43b08af2010-05-24 15:10:25 -05001260 int err;
David A. Longa28afca2011-07-09 16:40:19 -04001261 int disable_relocation = 0;
Kumar Gala06a09912008-08-15 08:24:38 -05001262
1263 /* nothing to do */
1264 if (*of_size == 0)
1265 return 0;
1266
Stephen Warren712fbcf2011-10-18 11:11:49 +00001267 if (fdt_check_header(fdt_blob) != 0) {
1268 fdt_error("image is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001269 goto error;
1270 }
1271
Timur Tabi43b08af2010-05-24 15:10:25 -05001272 /* position on a 4K boundary before the alloc_current */
1273 /* Pad the FDT by a specified amount */
1274 of_len = *of_size + CONFIG_SYS_FDT_PAD;
David A. Longa28afca2011-07-09 16:40:19 -04001275
1276 /* If fdt_high is set use it to select the relocation address */
1277 fdt_high = getenv("fdt_high");
1278 if (fdt_high) {
1279 void *desired_addr = (void *)simple_strtoul(fdt_high, NULL, 16);
1280
1281 if (((ulong) desired_addr) == ~0UL) {
1282 /* All ones means use fdt in place */
1283 desired_addr = fdt_blob;
1284 disable_relocation = 1;
1285 }
1286 if (desired_addr) {
1287 of_start =
1288 (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000,
1289 ((ulong)
1290 desired_addr)
1291 + of_len);
1292 if (desired_addr && of_start != desired_addr) {
1293 puts("Failed using fdt_high value for Device Tree");
1294 goto error;
1295 }
1296 } else {
1297 of_start =
Matthew McClintock1bb5e902011-07-18 13:08:05 +00001298 (void *)(ulong) lmb_alloc(lmb, of_len, 0x1000);
David A. Longa28afca2011-07-09 16:40:19 -04001299 }
1300 } else {
1301 of_start =
1302 (void *)(ulong) lmb_alloc_base(lmb, of_len, 0x1000,
1303 getenv_bootm_mapsize()
1304 + getenv_bootm_low());
1305 }
Kumar Gala06a09912008-08-15 08:24:38 -05001306
Timur Tabi43b08af2010-05-24 15:10:25 -05001307 if (of_start == 0) {
1308 puts("device tree - allocation error\n");
1309 goto error;
Kumar Gala06a09912008-08-15 08:24:38 -05001310 }
1311
David A. Longa28afca2011-07-09 16:40:19 -04001312 if (disable_relocation) {
1313 /* We assume there is space after the existing fdt to use for padding */
1314 fdt_set_totalsize(of_start, of_len);
1315 printf(" Using Device Tree in place at %p, end %p\n",
1316 of_start, of_start + of_len - 1);
1317 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001318 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
David A. Longa28afca2011-07-09 16:40:19 -04001319 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
Timur Tabi43b08af2010-05-24 15:10:25 -05001320
Stephen Warren712fbcf2011-10-18 11:11:49 +00001321 printf(" Loading Device Tree to %p, end %p ... ",
David A. Longa28afca2011-07-09 16:40:19 -04001322 of_start, of_start + of_len - 1);
Timur Tabi43b08af2010-05-24 15:10:25 -05001323
Stephen Warren712fbcf2011-10-18 11:11:49 +00001324 err = fdt_open_into(fdt_blob, of_start, of_len);
David A. Longa28afca2011-07-09 16:40:19 -04001325 if (err != 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001326 fdt_error("fdt move failed");
David A. Longa28afca2011-07-09 16:40:19 -04001327 goto error;
1328 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001329 puts("OK\n");
Timur Tabi43b08af2010-05-24 15:10:25 -05001330 }
Timur Tabi43b08af2010-05-24 15:10:25 -05001331
1332 *of_flat_tree = of_start;
1333 *of_size = of_len;
1334
Kumar Gala54f9c862008-08-15 08:24:39 -05001335 set_working_fdt_addr(*of_flat_tree);
Kumar Gala06a09912008-08-15 08:24:38 -05001336 return 0;
1337
1338error:
1339 return 1;
1340}
Grant Likelyed59e582011-03-28 09:58:49 +00001341#endif /* CONFIG_OF_LIBFDT */
Kumar Gala06a09912008-08-15 08:24:38 -05001342
1343/**
1344 * boot_get_fdt - main fdt handling routine
1345 * @argc: command argument count
1346 * @argv: command argument list
1347 * @images: pointer to the bootm images structure
1348 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
1349 * @of_size: pointer to a ulong variable, will hold fdt length
1350 *
1351 * boot_get_fdt() is responsible for finding a valid flat device tree image.
1352 * Curently supported are the following ramdisk sources:
1353 * - multicomponent kernel/ramdisk image,
1354 * - commandline provided address of decicated ramdisk image.
1355 *
1356 * returns:
1357 * 0, if fdt image was found and valid, or skipped
1358 * of_flat_tree and of_size are set to fdt start address and length if
1359 * fdt image is found and valid
1360 *
1361 * 1, if fdt image is found but corrupted
1362 * of_flat_tree and of_size are set to 0 if no fdt exists
1363 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001364int boot_get_fdt(int flag, int argc, char * const argv[],
1365 bootm_headers_t *images, char **of_flat_tree, ulong *of_size)
Kumar Gala06a09912008-08-15 08:24:38 -05001366{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001367 const image_header_t *fdt_hdr;
Kumar Gala06a09912008-08-15 08:24:38 -05001368 ulong fdt_addr;
Kumar Gala06a09912008-08-15 08:24:38 -05001369 char *fdt_blob = NULL;
1370 ulong image_start, image_end;
1371 ulong load_start, load_end;
1372#if defined(CONFIG_FIT)
1373 void *fit_hdr;
1374 const char *fit_uname_config = NULL;
1375 const char *fit_uname_fdt = NULL;
1376 ulong default_addr;
1377 int cfg_noffset;
1378 int fdt_noffset;
1379 const void *data;
1380 size_t size;
1381#endif
1382
1383 *of_flat_tree = NULL;
1384 *of_size = 0;
1385
Stephen Warren712fbcf2011-10-18 11:11:49 +00001386 if (argc > 3 || genimg_has_config(images)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001387#if defined(CONFIG_FIT)
1388 if (argc > 3) {
1389 /*
1390 * If the FDT blob comes from the FIT image and the
1391 * FIT image address is omitted in the command line
1392 * argument, try to use ramdisk or os FIT image
1393 * address or default load address.
1394 */
1395 if (images->fit_uname_rd)
1396 default_addr = (ulong)images->fit_hdr_rd;
1397 else if (images->fit_uname_os)
1398 default_addr = (ulong)images->fit_hdr_os;
1399 else
1400 default_addr = load_addr;
1401
Stephen Warren712fbcf2011-10-18 11:11:49 +00001402 if (fit_parse_conf(argv[3], default_addr,
Kumar Gala06a09912008-08-15 08:24:38 -05001403 &fdt_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001404 debug("* fdt: config '%s' from image at "
1405 "0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001406 fit_uname_config, fdt_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001407 } else if (fit_parse_subimage(argv[3], default_addr,
Kumar Gala06a09912008-08-15 08:24:38 -05001408 &fdt_addr, &fit_uname_fdt)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001409 debug("* fdt: subimage '%s' from image at "
1410 "0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001411 fit_uname_fdt, fdt_addr);
1412 } else
1413#endif
1414 {
1415 fdt_addr = simple_strtoul(argv[3], NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001416 debug("* fdt: cmdline image address = "
1417 "0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001418 fdt_addr);
1419 }
1420#if defined(CONFIG_FIT)
1421 } else {
1422 /* use FIT configuration provided in first bootm
1423 * command argument
1424 */
1425 fdt_addr = (ulong)images->fit_hdr_os;
1426 fit_uname_config = images->fit_uname_cfg;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001427 debug("* fdt: using config '%s' from image "
1428 "at 0x%08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001429 fit_uname_config, fdt_addr);
1430
1431 /*
1432 * Check whether configuration has FDT blob defined,
1433 * if not quit silently.
1434 */
1435 fit_hdr = (void *)fdt_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001436 cfg_noffset = fit_conf_get_node(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001437 fit_uname_config);
1438 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001439 debug("* fdt: no such config\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001440 return 0;
1441 }
1442
Stephen Warren712fbcf2011-10-18 11:11:49 +00001443 fdt_noffset = fit_conf_get_fdt_node(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001444 cfg_noffset);
1445 if (fdt_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001446 debug("* fdt: no fdt in config\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001447 return 0;
1448 }
1449 }
1450#endif
1451
Stephen Warren712fbcf2011-10-18 11:11:49 +00001452 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001453 fdt_addr);
1454
1455 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001456 fdt_addr = genimg_get_image(fdt_addr);
Kumar Gala06a09912008-08-15 08:24:38 -05001457
1458 /*
1459 * Check if there is an FDT image at the
1460 * address provided in the second bootm argument
1461 * check image type, for FIT images get a FIT node.
1462 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001463 switch (genimg_get_format((void *)fdt_addr)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001464 case IMAGE_FORMAT_LEGACY:
1465 /* verify fdt_addr points to a valid image header */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001466 printf("## Flattened Device Tree from Legacy Image "
1467 "at %08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001468 fdt_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001469 fdt_hdr = image_get_fdt(fdt_addr);
Kumar Gala06a09912008-08-15 08:24:38 -05001470 if (!fdt_hdr)
1471 goto error;
1472
1473 /*
1474 * move image data to the load address,
1475 * make sure we don't overwrite initial image
1476 */
1477 image_start = (ulong)fdt_hdr;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001478 image_end = image_get_image_end(fdt_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001479
Stephen Warren712fbcf2011-10-18 11:11:49 +00001480 load_start = image_get_load(fdt_hdr);
1481 load_end = load_start + image_get_data_size(fdt_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001482
1483 if ((load_start < image_end) && (load_end > image_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001484 fdt_error("fdt overwritten");
Kumar Gala06a09912008-08-15 08:24:38 -05001485 goto error;
1486 }
1487
Stephen Warren712fbcf2011-10-18 11:11:49 +00001488 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
1489 image_get_data(fdt_hdr), load_start);
Kumar Gala06a09912008-08-15 08:24:38 -05001490
Stephen Warren712fbcf2011-10-18 11:11:49 +00001491 memmove((void *)load_start,
1492 (void *)image_get_data(fdt_hdr),
1493 image_get_data_size(fdt_hdr));
Kumar Gala06a09912008-08-15 08:24:38 -05001494
1495 fdt_blob = (char *)load_start;
1496 break;
1497 case IMAGE_FORMAT_FIT:
1498 /*
1499 * This case will catch both: new uImage format
1500 * (libfdt based) and raw FDT blob (also libfdt
1501 * based).
1502 */
1503#if defined(CONFIG_FIT)
1504 /* check FDT blob vs FIT blob */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001505 if (fit_check_format((const void *)fdt_addr)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001506 /*
1507 * FIT image
1508 */
1509 fit_hdr = (void *)fdt_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001510 printf("## Flattened Device Tree from FIT "
1511 "Image at %08lx\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001512 fdt_addr);
1513
1514 if (!fit_uname_fdt) {
1515 /*
1516 * no FDT blob image node unit name,
1517 * try to get config node first. If
1518 * config unit node name is NULL
1519 * fit_conf_get_node() will try to
1520 * find default config node
1521 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001522 cfg_noffset = fit_conf_get_node(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001523 fit_uname_config);
1524
1525 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001526 fdt_error("Could not find "
1527 "configuration "
1528 "node\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001529 goto error;
1530 }
1531
Stephen Warren712fbcf2011-10-18 11:11:49 +00001532 fit_uname_config = fdt_get_name(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001533 cfg_noffset, NULL);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001534 printf(" Using '%s' configuration\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001535 fit_uname_config);
1536
Stephen Warren712fbcf2011-10-18 11:11:49 +00001537 fdt_noffset = fit_conf_get_fdt_node(
1538 fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001539 cfg_noffset);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001540 fit_uname_fdt = fit_get_name(fit_hdr,
Kumar Gala06a09912008-08-15 08:24:38 -05001541 fdt_noffset, NULL);
1542 } else {
1543 /* get FDT component image node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001544 fdt_noffset = fit_image_get_node(
1545 fit_hdr,
1546 fit_uname_fdt);
Kumar Gala06a09912008-08-15 08:24:38 -05001547 }
1548 if (fdt_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001549 fdt_error("Could not find subimage "
1550 "node\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001551 goto error;
1552 }
1553
Stephen Warren712fbcf2011-10-18 11:11:49 +00001554 printf(" Trying '%s' FDT blob subimage\n",
Kumar Gala06a09912008-08-15 08:24:38 -05001555 fit_uname_fdt);
1556
Stephen Warren712fbcf2011-10-18 11:11:49 +00001557 if (!fit_check_fdt(fit_hdr, fdt_noffset,
Kumar Gala06a09912008-08-15 08:24:38 -05001558 images->verify))
1559 goto error;
1560
1561 /* get ramdisk image data address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001562 if (fit_image_get_data(fit_hdr, fdt_noffset,
Kumar Gala06a09912008-08-15 08:24:38 -05001563 &data, &size)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001564 fdt_error("Could not find FDT "
1565 "subimage data");
Kumar Gala06a09912008-08-15 08:24:38 -05001566 goto error;
1567 }
1568
1569 /* verift that image data is a proper FDT blob */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001570 if (fdt_check_header((char *)data) != 0) {
1571 fdt_error("Subimage data is not a FTD");
Kumar Gala06a09912008-08-15 08:24:38 -05001572 goto error;
1573 }
1574
1575 /*
1576 * move image data to the load address,
1577 * make sure we don't overwrite initial image
1578 */
1579 image_start = (ulong)fit_hdr;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001580 image_end = fit_get_end(fit_hdr);
Kumar Gala06a09912008-08-15 08:24:38 -05001581
Stephen Warren712fbcf2011-10-18 11:11:49 +00001582 if (fit_image_get_load(fit_hdr, fdt_noffset,
Kumar Gala06a09912008-08-15 08:24:38 -05001583 &load_start) == 0) {
1584 load_end = load_start + size;
1585
1586 if ((load_start < image_end) &&
1587 (load_end > image_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001588 fdt_error("FDT overwritten");
Kumar Gala06a09912008-08-15 08:24:38 -05001589 goto error;
1590 }
1591
Stephen Warren712fbcf2011-10-18 11:11:49 +00001592 printf(" Loading FDT from 0x%08lx "
1593 "to 0x%08lx\n",
1594 (ulong)data,
1595 load_start);
Kumar Gala06a09912008-08-15 08:24:38 -05001596
Stephen Warren712fbcf2011-10-18 11:11:49 +00001597 memmove((void *)load_start,
Kumar Gala06a09912008-08-15 08:24:38 -05001598 (void *)data, size);
1599
1600 fdt_blob = (char *)load_start;
1601 } else {
1602 fdt_blob = (char *)data;
1603 }
1604
1605 images->fit_hdr_fdt = fit_hdr;
1606 images->fit_uname_fdt = fit_uname_fdt;
1607 images->fit_noffset_fdt = fdt_noffset;
1608 break;
1609 } else
1610#endif
1611 {
1612 /*
1613 * FDT blob
1614 */
1615 fdt_blob = (char *)fdt_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001616 debug("* fdt: raw FDT blob\n");
1617 printf("## Flattened Device Tree blob at "
1618 "%08lx\n", (long)fdt_blob);
Kumar Gala06a09912008-08-15 08:24:38 -05001619 }
1620 break;
1621 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001622 puts("ERROR: Did not find a cmdline Flattened Device "
1623 "Tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001624 goto error;
1625 }
1626
Simon Glass0ec2ce42011-09-23 06:22:04 +00001627 printf(" Booting using the fdt blob at 0x%p\n", fdt_blob);
Kumar Gala06a09912008-08-15 08:24:38 -05001628
1629 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001630 image_check_type(&images->legacy_hdr_os_copy,
1631 IH_TYPE_MULTI)) {
Kumar Gala06a09912008-08-15 08:24:38 -05001632
1633 ulong fdt_data, fdt_len;
1634
1635 /*
1636 * Now check if we have a legacy multi-component image,
1637 * get second entry data start address and len.
1638 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001639 printf("## Flattened Device Tree from multi "
Kumar Gala06a09912008-08-15 08:24:38 -05001640 "component Image at %08lX\n",
1641 (ulong)images->legacy_hdr_os);
1642
Stephen Warren712fbcf2011-10-18 11:11:49 +00001643 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
1644 &fdt_len);
Kumar Gala06a09912008-08-15 08:24:38 -05001645 if (fdt_len) {
1646
1647 fdt_blob = (char *)fdt_data;
Simon Glass0ec2ce42011-09-23 06:22:04 +00001648 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
Kumar Gala06a09912008-08-15 08:24:38 -05001649
Stephen Warren712fbcf2011-10-18 11:11:49 +00001650 if (fdt_check_header(fdt_blob) != 0) {
1651 fdt_error("image is not a fdt");
Kumar Gala06a09912008-08-15 08:24:38 -05001652 goto error;
1653 }
1654
John Rigbyd1263fc2010-10-13 13:57:32 -06001655 if (fdt_totalsize(fdt_blob) != fdt_len) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001656 fdt_error("fdt size != image size");
Kumar Gala06a09912008-08-15 08:24:38 -05001657 goto error;
1658 }
1659 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001660 debug("## No Flattened Device Tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001661 return 0;
1662 }
1663 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001664 debug("## No Flattened Device Tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -05001665 return 0;
1666 }
1667
1668 *of_flat_tree = fdt_blob;
John Rigbyd1263fc2010-10-13 13:57:32 -06001669 *of_size = fdt_totalsize(fdt_blob);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001670 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
Andrew Klossner52514692008-08-21 07:12:26 -07001671 (ulong)*of_flat_tree, *of_size);
Kumar Gala06a09912008-08-15 08:24:38 -05001672
1673 return 0;
1674
1675error:
1676 *of_flat_tree = 0;
1677 *of_size = 0;
1678 return 1;
1679}
1680#endif /* CONFIG_OF_LIBFDT */
1681
John Rigbyfca43cc2010-10-13 13:57:35 -06001682#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001683/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001684 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001685 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001686 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1687 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1688 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001689 * boot_get_cmdline() allocates space for kernel command line below
Grant Likely590d3ca2011-03-28 09:58:34 +00001690 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001691 * variable is present its contents is copied to allocated kernel
1692 * command line.
1693 *
1694 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001695 * 0 - success
1696 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001697 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001698int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001699{
1700 char *cmdline;
1701 char *s;
1702
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001703 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001704 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001705
1706 if (cmdline == NULL)
1707 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001708
1709 if ((s = getenv("bootargs")) == NULL)
1710 s = "";
1711
1712 strcpy(cmdline, s);
1713
1714 *cmd_start = (ulong) & cmdline[0];
1715 *cmd_end = *cmd_start + strlen(cmdline);
1716
Stephen Warren712fbcf2011-10-18 11:11:49 +00001717 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001718
Kumar Galae822d7f2008-02-27 21:51:49 -06001719 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001720}
John Rigbyfca43cc2010-10-13 13:57:35 -06001721#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001722
John Rigbyfca43cc2010-10-13 13:57:35 -06001723#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001724/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001725 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001726 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001727 * @kbd: double pointer to board info data
1728 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001729 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001730 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1731 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001732 *
1733 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001734 * 0 - success
1735 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001736 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001737int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001738{
Becky Bruce391fd932008-06-09 20:37:18 -05001739 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001740 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001741 if (*kbd == NULL)
1742 return -1;
1743
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001744 **kbd = *(gd->bd);
1745
Stephen Warren712fbcf2011-10-18 11:11:49 +00001746 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001747
1748#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1749 do_bdinfo(NULL, 0, 0, NULL);
1750#endif
1751
Kumar Galae822d7f2008-02-27 21:51:49 -06001752 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001753}
John Rigbyfca43cc2010-10-13 13:57:35 -06001754#endif /* CONFIG_SYS_BOOT_GET_KBD */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001755#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001756
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001757#if defined(CONFIG_FIT)
1758/*****************************************************************************/
1759/* New uImage format routines */
1760/*****************************************************************************/
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001761#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +00001762static int fit_parse_spec(const char *spec, char sepc, ulong addr_curr,
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001763 ulong *addr, const char **name)
1764{
1765 const char *sep;
1766
1767 *addr = addr_curr;
1768 *name = NULL;
1769
Stephen Warren712fbcf2011-10-18 11:11:49 +00001770 sep = strchr(spec, sepc);
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001771 if (sep) {
1772 if (sep - spec > 0)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001773 *addr = simple_strtoul(spec, NULL, 16);
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001774
1775 *name = sep + 1;
1776 return 1;
1777 }
1778
1779 return 0;
1780}
1781
1782/**
1783 * fit_parse_conf - parse FIT configuration spec
1784 * @spec: input string, containing configuration spec
1785 * @add_curr: current image address (to be used as a possible default)
1786 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1787 * configuration
1788 * @conf_name double pointer to a char, will hold pointer to a configuration
1789 * unit name
1790 *
1791 * fit_parse_conf() expects configuration spec in the for of [<addr>]#<conf>,
1792 * where <addr> is a FIT image address that contains configuration
1793 * with a <conf> unit name.
1794 *
1795 * Address part is optional, and if omitted default add_curr will
1796 * be used instead.
1797 *
1798 * returns:
1799 * 1 if spec is a valid configuration string,
1800 * addr and conf_name are set accordingly
1801 * 0 otherwise
1802 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001803inline int fit_parse_conf(const char *spec, ulong addr_curr,
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001804 ulong *addr, const char **conf_name)
1805{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001806 return fit_parse_spec(spec, '#', addr_curr, addr, conf_name);
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001807}
1808
1809/**
1810 * fit_parse_subimage - parse FIT subimage spec
1811 * @spec: input string, containing subimage spec
1812 * @add_curr: current image address (to be used as a possible default)
1813 * @addr: pointer to a ulong variable, will hold FIT image address of a given
1814 * subimage
1815 * @image_name: double pointer to a char, will hold pointer to a subimage name
1816 *
1817 * fit_parse_subimage() expects subimage spec in the for of
1818 * [<addr>]:<subimage>, where <addr> is a FIT image address that contains
1819 * subimage with a <subimg> unit name.
1820 *
1821 * Address part is optional, and if omitted default add_curr will
1822 * be used instead.
1823 *
1824 * returns:
1825 * 1 if spec is a valid subimage string,
1826 * addr and image_name are set accordingly
1827 * 0 otherwise
1828 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001829inline int fit_parse_subimage(const char *spec, ulong addr_curr,
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001830 ulong *addr, const char **image_name)
1831{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001832 return fit_parse_spec(spec, ':', addr_curr, addr, image_name);
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001833}
Marian Balakowicz570abb02008-02-29 15:59:59 +01001834#endif /* !USE_HOSTCC */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001835
Stephen Warren712fbcf2011-10-18 11:11:49 +00001836static void fit_get_debug(const void *fit, int noffset,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001837 char *prop_name, int err)
1838{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001839 debug("Can't get '%s' property from FIT 0x%08lx, "
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001840 "node: offset %d, name %s (%s)\n",
1841 prop_name, (ulong)fit, noffset,
Stephen Warren712fbcf2011-10-18 11:11:49 +00001842 fit_get_name(fit, noffset, NULL),
1843 fdt_strerror(err));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001844}
1845
1846/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +02001847 * fit_print_contents - prints out the contents of the FIT format image
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001848 * @fit: pointer to the FIT format image header
1849 * @p: pointer to prefix string
1850 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +02001851 * fit_print_contents() formats a multi line FIT image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001852 * The routine prints out FIT image properties (root node level) follwed by
1853 * the details of each component image.
1854 *
1855 * returns:
1856 * no returned results
1857 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001858void fit_print_contents(const void *fit)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001859{
1860 char *desc;
1861 char *uname;
1862 int images_noffset;
1863 int confs_noffset;
1864 int noffset;
1865 int ndepth;
1866 int count = 0;
1867 int ret;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +02001868 const char *p;
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001869#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
1870 time_t timestamp;
1871#endif
1872
Bartlomiej Siekaedbed242008-04-18 12:39:23 +02001873#ifdef USE_HOSTCC
1874 p = "";
1875#else
1876 p = " ";
1877#endif
1878
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001879 /* Root node properties */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001880 ret = fit_get_desc(fit, 0, &desc);
1881 printf("%sFIT description: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001882 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001883 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001884 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001885 printf("%s\n", desc);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001886
1887#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001888 ret = fit_get_timestamp(fit, 0, &timestamp);
1889 printf("%sCreated: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001890 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001891 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001892 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001893 genimg_print_time(timestamp);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001894#endif
1895
1896 /* Find images parent node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001897 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001898 if (images_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001899 printf("Can't find images parent node '%s' (%s)\n",
1900 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001901 return;
1902 }
1903
1904 /* Process its subnodes, print out component images details */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001905 for (ndepth = 0, count = 0,
1906 noffset = fdt_next_node(fit, images_noffset, &ndepth);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001907 (noffset >= 0) && (ndepth > 0);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001908 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001909 if (ndepth == 1) {
1910 /*
1911 * Direct child node of the images parent node,
1912 * i.e. component image node.
1913 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001914 printf("%s Image %u (%s)\n", p, count++,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001915 fit_get_name(fit, noffset, NULL));
1916
Stephen Warren712fbcf2011-10-18 11:11:49 +00001917 fit_image_print(fit, noffset, p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001918 }
1919 }
1920
1921 /* Find configurations parent node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001922 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001923 if (confs_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001924 debug("Can't get configurations parent node '%s' (%s)\n",
1925 FIT_CONFS_PATH, fdt_strerror(confs_noffset));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001926 return;
1927 }
1928
1929 /* get default configuration unit name from default property */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001930 uname = (char *)fdt_getprop(fit, noffset, FIT_DEFAULT_PROP, NULL);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001931 if (uname)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001932 printf("%s Default Configuration: '%s'\n", p, uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001933
1934 /* Process its subnodes, print out configurations details */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001935 for (ndepth = 0, count = 0,
1936 noffset = fdt_next_node(fit, confs_noffset, &ndepth);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001937 (noffset >= 0) && (ndepth > 0);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001938 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001939 if (ndepth == 1) {
1940 /*
1941 * Direct child node of the configurations parent node,
1942 * i.e. configuration node.
1943 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001944 printf("%s Configuration %u (%s)\n", p, count++,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001945 fit_get_name(fit, noffset, NULL));
1946
Stephen Warren712fbcf2011-10-18 11:11:49 +00001947 fit_conf_print(fit, noffset, p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001948 }
1949 }
1950}
1951
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001952/**
1953 * fit_image_print - prints out the FIT component image details
1954 * @fit: pointer to the FIT format image header
1955 * @image_noffset: offset of the component image node
1956 * @p: pointer to prefix string
1957 *
1958 * fit_image_print() lists all mandatory properies for the processed component
Bartlomiej Siekafbc87dc2008-10-01 15:26:32 +02001959 * image. If present, hash nodes are printed out as well. Load
1960 * address for images of type firmware is also printed out. Since the load
1961 * address is not mandatory for firmware images, it will be output as
1962 * "unavailable" when not present.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001963 *
1964 * returns:
1965 * no returned results
1966 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001967void fit_image_print(const void *fit, int image_noffset, const char *p)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001968{
1969 char *desc;
1970 uint8_t type, arch, os, comp;
1971 size_t size;
1972 ulong load, entry;
1973 const void *data;
1974 int noffset;
1975 int ndepth;
1976 int ret;
1977
1978 /* Mandatory properties */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001979 ret = fit_get_desc(fit, image_noffset, &desc);
1980 printf("%s Description: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001981 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001982 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001983 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001984 printf("%s\n", desc);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001985
Stephen Warren712fbcf2011-10-18 11:11:49 +00001986 fit_image_get_type(fit, image_noffset, &type);
1987 printf("%s Type: %s\n", p, genimg_get_type_name(type));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001988
Stephen Warren712fbcf2011-10-18 11:11:49 +00001989 fit_image_get_comp(fit, image_noffset, &comp);
1990 printf("%s Compression: %s\n", p, genimg_get_comp_name(comp));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001991
Stephen Warren712fbcf2011-10-18 11:11:49 +00001992 ret = fit_image_get_data(fit, image_noffset, &data, &size);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001993
1994#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +00001995 printf("%s Data Start: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001996 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001997 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001998 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001999 printf("0x%08lx\n", (ulong)data);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002000#endif
2001
Stephen Warren712fbcf2011-10-18 11:11:49 +00002002 printf("%s Data Size: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002003 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00002004 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002005 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00002006 genimg_print_size(size);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002007
2008 /* Remaining, type dependent properties */
2009 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
2010 (type == IH_TYPE_RAMDISK) || (type == IH_TYPE_FIRMWARE) ||
2011 (type == IH_TYPE_FLATDT)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002012 fit_image_get_arch(fit, image_noffset, &arch);
2013 printf("%s Architecture: %s\n", p, genimg_get_arch_name(arch));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002014 }
2015
2016 if (type == IH_TYPE_KERNEL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002017 fit_image_get_os(fit, image_noffset, &os);
2018 printf("%s OS: %s\n", p, genimg_get_os_name(os));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002019 }
2020
Bartlomiej Siekafbc87dc2008-10-01 15:26:32 +02002021 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE) ||
2022 (type == IH_TYPE_FIRMWARE)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002023 ret = fit_image_get_load(fit, image_noffset, &load);
2024 printf("%s Load Address: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002025 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00002026 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002027 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00002028 printf("0x%08lx\n", load);
Bartlomiej Siekafbc87dc2008-10-01 15:26:32 +02002029 }
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002030
Bartlomiej Siekafbc87dc2008-10-01 15:26:32 +02002031 if ((type == IH_TYPE_KERNEL) || (type == IH_TYPE_STANDALONE)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002032 fit_image_get_entry(fit, image_noffset, &entry);
2033 printf("%s Entry Point: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002034 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00002035 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002036 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00002037 printf("0x%08lx\n", entry);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002038 }
2039
2040 /* Process all hash subnodes of the component image node */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002041 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002042 (noffset >= 0) && (ndepth > 0);
Stephen Warren712fbcf2011-10-18 11:11:49 +00002043 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002044 if (ndepth == 1) {
2045 /* Direct child node of the component image node */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002046 fit_image_print_hash(fit, noffset, p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002047 }
2048 }
2049}
2050
2051/**
2052 * fit_image_print_hash - prints out the hash node details
2053 * @fit: pointer to the FIT format image header
2054 * @noffset: offset of the hash node
2055 * @p: pointer to prefix string
2056 *
2057 * fit_image_print_hash() lists properies for the processed hash node
2058 *
2059 * returns:
2060 * no returned results
2061 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002062void fit_image_print_hash(const void *fit, int noffset, const char *p)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002063{
2064 char *algo;
2065 uint8_t *value;
2066 int value_len;
2067 int i, ret;
2068
2069 /*
2070 * Check subnode name, must be equal to "hash".
2071 * Multiple hash nodes require unique unit node
2072 * names, e.g. hash@1, hash@2, etc.
2073 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002074 if (strncmp(fit_get_name(fit, noffset, NULL),
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002075 FIT_HASH_NODENAME,
2076 strlen(FIT_HASH_NODENAME)) != 0)
2077 return;
2078
Stephen Warren712fbcf2011-10-18 11:11:49 +00002079 debug("%s Hash node: '%s'\n", p,
2080 fit_get_name(fit, noffset, NULL));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002081
Stephen Warren712fbcf2011-10-18 11:11:49 +00002082 printf("%s Hash algo: ", p);
2083 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
2084 printf("invalid/unsupported\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002085 return;
2086 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00002087 printf("%s\n", algo);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002088
Stephen Warren712fbcf2011-10-18 11:11:49 +00002089 ret = fit_image_hash_get_value(fit, noffset, &value,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002090 &value_len);
Stephen Warren712fbcf2011-10-18 11:11:49 +00002091 printf("%s Hash value: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002092 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002093 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002094 } else {
2095 for (i = 0; i < value_len; i++)
Stephen Warren712fbcf2011-10-18 11:11:49 +00002096 printf("%02x", value[i]);
2097 printf("\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002098 }
2099
Stephen Warren712fbcf2011-10-18 11:11:49 +00002100 debug("%s Hash len: %d\n", p, value_len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002101}
2102
2103/**
2104 * fit_get_desc - get node description property
2105 * @fit: pointer to the FIT format image header
2106 * @noffset: node offset
2107 * @desc: double pointer to the char, will hold pointer to the descrption
2108 *
2109 * fit_get_desc() reads description property from a given node, if
2110 * description is found pointer to it is returened in third call argument.
2111 *
2112 * returns:
2113 * 0, on success
2114 * -1, on failure
2115 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002116int fit_get_desc(const void *fit, int noffset, char **desc)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002117{
2118 int len;
2119
Stephen Warren712fbcf2011-10-18 11:11:49 +00002120 *desc = (char *)fdt_getprop(fit, noffset, FIT_DESC_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002121 if (*desc == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002122 fit_get_debug(fit, noffset, FIT_DESC_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002123 return -1;
2124 }
2125
2126 return 0;
2127}
2128
2129/**
2130 * fit_get_timestamp - get node timestamp property
2131 * @fit: pointer to the FIT format image header
2132 * @noffset: node offset
2133 * @timestamp: pointer to the time_t, will hold read timestamp
2134 *
2135 * fit_get_timestamp() reads timestamp poperty from given node, if timestamp
2136 * is found and has a correct size its value is retured in third call
2137 * argument.
2138 *
2139 * returns:
2140 * 0, on success
2141 * -1, on property read failure
2142 * -2, on wrong timestamp size
2143 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002144int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002145{
2146 int len;
2147 const void *data;
2148
Stephen Warren712fbcf2011-10-18 11:11:49 +00002149 data = fdt_getprop(fit, noffset, FIT_TIMESTAMP_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002150 if (data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002151 fit_get_debug(fit, noffset, FIT_TIMESTAMP_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002152 return -1;
2153 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00002154 if (len != sizeof(uint32_t)) {
2155 debug("FIT timestamp with incorrect size of (%u)\n", len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002156 return -2;
2157 }
2158
Stephen Warren712fbcf2011-10-18 11:11:49 +00002159 *timestamp = uimage_to_cpu(*((uint32_t *)data));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002160 return 0;
2161}
2162
2163/**
2164 * fit_image_get_node - get node offset for component image of a given unit name
2165 * @fit: pointer to the FIT format image header
2166 * @image_uname: component image node unit name
2167 *
2168 * fit_image_get_node() finds a component image (withing the '/images'
2169 * node) of a provided unit name. If image is found its node offset is
2170 * returned to the caller.
2171 *
2172 * returns:
2173 * image node offset when found (>=0)
2174 * negative number on failure (FDT_ERR_* code)
2175 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002176int fit_image_get_node(const void *fit, const char *image_uname)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002177{
2178 int noffset, images_noffset;
2179
Stephen Warren712fbcf2011-10-18 11:11:49 +00002180 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002181 if (images_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002182 debug("Can't find images parent node '%s' (%s)\n",
2183 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002184 return images_noffset;
2185 }
2186
Stephen Warren712fbcf2011-10-18 11:11:49 +00002187 noffset = fdt_subnode_offset(fit, images_noffset, image_uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002188 if (noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002189 debug("Can't get node offset for image unit name: '%s' (%s)\n",
2190 image_uname, fdt_strerror(noffset));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002191 }
2192
2193 return noffset;
2194}
2195
2196/**
2197 * fit_image_get_os - get os id for a given component image node
2198 * @fit: pointer to the FIT format image header
2199 * @noffset: component image node offset
2200 * @os: pointer to the uint8_t, will hold os numeric id
2201 *
2202 * fit_image_get_os() finds os property in a given component image node.
2203 * If the property is found, its (string) value is translated to the numeric
2204 * id which is returned to the caller.
2205 *
2206 * returns:
2207 * 0, on success
2208 * -1, on failure
2209 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002210int fit_image_get_os(const void *fit, int noffset, uint8_t *os)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002211{
2212 int len;
2213 const void *data;
2214
2215 /* Get OS name from property data */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002216 data = fdt_getprop(fit, noffset, FIT_OS_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002217 if (data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002218 fit_get_debug(fit, noffset, FIT_OS_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002219 *os = -1;
2220 return -1;
2221 }
2222
2223 /* Translate OS name to id */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002224 *os = genimg_get_os_id(data);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002225 return 0;
2226}
2227
2228/**
2229 * fit_image_get_arch - get arch id for a given component image node
2230 * @fit: pointer to the FIT format image header
2231 * @noffset: component image node offset
2232 * @arch: pointer to the uint8_t, will hold arch numeric id
2233 *
2234 * fit_image_get_arch() finds arch property in a given component image node.
2235 * If the property is found, its (string) value is translated to the numeric
2236 * id which is returned to the caller.
2237 *
2238 * returns:
2239 * 0, on success
2240 * -1, on failure
2241 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002242int fit_image_get_arch(const void *fit, int noffset, uint8_t *arch)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002243{
2244 int len;
2245 const void *data;
2246
2247 /* Get architecture name from property data */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002248 data = fdt_getprop(fit, noffset, FIT_ARCH_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002249 if (data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002250 fit_get_debug(fit, noffset, FIT_ARCH_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002251 *arch = -1;
2252 return -1;
2253 }
2254
2255 /* Translate architecture name to id */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002256 *arch = genimg_get_arch_id(data);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002257 return 0;
2258}
2259
2260/**
2261 * fit_image_get_type - get type id for a given component image node
2262 * @fit: pointer to the FIT format image header
2263 * @noffset: component image node offset
2264 * @type: pointer to the uint8_t, will hold type numeric id
2265 *
2266 * fit_image_get_type() finds type property in a given component image node.
2267 * If the property is found, its (string) value is translated to the numeric
2268 * id which is returned to the caller.
2269 *
2270 * returns:
2271 * 0, on success
2272 * -1, on failure
2273 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002274int fit_image_get_type(const void *fit, int noffset, uint8_t *type)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002275{
2276 int len;
2277 const void *data;
2278
2279 /* Get image type name from property data */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002280 data = fdt_getprop(fit, noffset, FIT_TYPE_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002281 if (data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002282 fit_get_debug(fit, noffset, FIT_TYPE_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002283 *type = -1;
2284 return -1;
2285 }
2286
2287 /* Translate image type name to id */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002288 *type = genimg_get_type_id(data);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002289 return 0;
2290}
2291
2292/**
2293 * fit_image_get_comp - get comp id for a given component image node
2294 * @fit: pointer to the FIT format image header
2295 * @noffset: component image node offset
2296 * @comp: pointer to the uint8_t, will hold comp numeric id
2297 *
2298 * fit_image_get_comp() finds comp property in a given component image node.
2299 * If the property is found, its (string) value is translated to the numeric
2300 * id which is returned to the caller.
2301 *
2302 * returns:
2303 * 0, on success
2304 * -1, on failure
2305 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002306int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002307{
2308 int len;
2309 const void *data;
2310
2311 /* Get compression name from property data */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002312 data = fdt_getprop(fit, noffset, FIT_COMP_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002313 if (data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002314 fit_get_debug(fit, noffset, FIT_COMP_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002315 *comp = -1;
2316 return -1;
2317 }
2318
2319 /* Translate compression name to id */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002320 *comp = genimg_get_comp_id(data);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002321 return 0;
2322}
2323
2324/**
2325 * fit_image_get_load - get load address property for a given component image node
2326 * @fit: pointer to the FIT format image header
2327 * @noffset: component image node offset
2328 * @load: pointer to the uint32_t, will hold load address
2329 *
2330 * fit_image_get_load() finds load address property in a given component image node.
2331 * If the property is found, its value is returned to the caller.
2332 *
2333 * returns:
2334 * 0, on success
2335 * -1, on failure
2336 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002337int fit_image_get_load(const void *fit, int noffset, ulong *load)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002338{
2339 int len;
2340 const uint32_t *data;
2341
Stephen Warren712fbcf2011-10-18 11:11:49 +00002342 data = fdt_getprop(fit, noffset, FIT_LOAD_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002343 if (data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002344 fit_get_debug(fit, noffset, FIT_LOAD_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002345 return -1;
2346 }
2347
Stephen Warren712fbcf2011-10-18 11:11:49 +00002348 *load = uimage_to_cpu(*data);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002349 return 0;
2350}
2351
2352/**
2353 * fit_image_get_entry - get entry point address property for a given component image node
2354 * @fit: pointer to the FIT format image header
2355 * @noffset: component image node offset
2356 * @entry: pointer to the uint32_t, will hold entry point address
2357 *
2358 * fit_image_get_entry() finds entry point address property in a given component image node.
2359 * If the property is found, its value is returned to the caller.
2360 *
2361 * returns:
2362 * 0, on success
2363 * -1, on failure
2364 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002365int fit_image_get_entry(const void *fit, int noffset, ulong *entry)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002366{
2367 int len;
2368 const uint32_t *data;
2369
Stephen Warren712fbcf2011-10-18 11:11:49 +00002370 data = fdt_getprop(fit, noffset, FIT_ENTRY_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002371 if (data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002372 fit_get_debug(fit, noffset, FIT_ENTRY_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002373 return -1;
2374 }
2375
Stephen Warren712fbcf2011-10-18 11:11:49 +00002376 *entry = uimage_to_cpu(*data);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002377 return 0;
2378}
2379
2380/**
2381 * fit_image_get_data - get data property and its size for a given component image node
2382 * @fit: pointer to the FIT format image header
2383 * @noffset: component image node offset
2384 * @data: double pointer to void, will hold data property's data address
2385 * @size: pointer to size_t, will hold data property's data size
2386 *
2387 * fit_image_get_data() finds data property in a given component image node.
2388 * If the property is found its data start address and size are returned to
2389 * the caller.
2390 *
2391 * returns:
2392 * 0, on success
2393 * -1, on failure
2394 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002395int fit_image_get_data(const void *fit, int noffset,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002396 const void **data, size_t *size)
2397{
2398 int len;
2399
Stephen Warren712fbcf2011-10-18 11:11:49 +00002400 *data = fdt_getprop(fit, noffset, FIT_DATA_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002401 if (*data == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002402 fit_get_debug(fit, noffset, FIT_DATA_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002403 *size = 0;
2404 return -1;
2405 }
2406
2407 *size = len;
2408 return 0;
2409}
2410
2411/**
2412 * fit_image_hash_get_algo - get hash algorithm name
2413 * @fit: pointer to the FIT format image header
2414 * @noffset: hash node offset
2415 * @algo: double pointer to char, will hold pointer to the algorithm name
2416 *
2417 * fit_image_hash_get_algo() finds hash algorithm property in a given hash node.
2418 * If the property is found its data start address is returned to the caller.
2419 *
2420 * returns:
2421 * 0, on success
2422 * -1, on failure
2423 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002424int fit_image_hash_get_algo(const void *fit, int noffset, char **algo)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002425{
2426 int len;
2427
Stephen Warren712fbcf2011-10-18 11:11:49 +00002428 *algo = (char *)fdt_getprop(fit, noffset, FIT_ALGO_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002429 if (*algo == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002430 fit_get_debug(fit, noffset, FIT_ALGO_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002431 return -1;
2432 }
2433
2434 return 0;
2435}
2436
2437/**
2438 * fit_image_hash_get_value - get hash value and length
2439 * @fit: pointer to the FIT format image header
2440 * @noffset: hash node offset
2441 * @value: double pointer to uint8_t, will hold address of a hash value data
2442 * @value_len: pointer to an int, will hold hash data length
2443 *
2444 * fit_image_hash_get_value() finds hash value property in a given hash node.
2445 * If the property is found its data start address and size are returned to
2446 * the caller.
2447 *
2448 * returns:
2449 * 0, on success
2450 * -1, on failure
2451 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002452int fit_image_hash_get_value(const void *fit, int noffset, uint8_t **value,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002453 int *value_len)
2454{
2455 int len;
2456
Stephen Warren712fbcf2011-10-18 11:11:49 +00002457 *value = (uint8_t *)fdt_getprop(fit, noffset, FIT_VALUE_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002458 if (*value == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002459 fit_get_debug(fit, noffset, FIT_VALUE_PROP, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002460 *value_len = 0;
2461 return -1;
2462 }
2463
2464 *value_len = len;
2465 return 0;
2466}
2467
2468/**
2469 * fit_set_timestamp - set node timestamp property
2470 * @fit: pointer to the FIT format image header
2471 * @noffset: node offset
2472 * @timestamp: timestamp value to be set
2473 *
2474 * fit_set_timestamp() attempts to set timestamp property in the requested
2475 * node and returns operation status to the caller.
2476 *
2477 * returns:
2478 * 0, on success
2479 * -1, on property read failure
2480 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002481int fit_set_timestamp(void *fit, int noffset, time_t timestamp)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002482{
2483 uint32_t t;
2484 int ret;
2485
Stephen Warren712fbcf2011-10-18 11:11:49 +00002486 t = cpu_to_uimage(timestamp);
2487 ret = fdt_setprop(fit, noffset, FIT_TIMESTAMP_PROP, &t,
2488 sizeof(uint32_t));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002489 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002490 printf("Can't set '%s' property for '%s' node (%s)\n",
2491 FIT_TIMESTAMP_PROP, fit_get_name(fit, noffset, NULL),
2492 fdt_strerror(ret));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002493 return -1;
2494 }
2495
2496 return 0;
2497}
2498
2499/**
2500 * calculate_hash - calculate and return hash for provided input data
2501 * @data: pointer to the input data
2502 * @data_len: data length
2503 * @algo: requested hash algorithm
2504 * @value: pointer to the char, will hold hash value data (caller must
2505 * allocate enough free space)
2506 * value_len: length of the calculated hash
2507 *
2508 * calculate_hash() computes input data hash according to the requested algorithm.
2509 * Resulting hash value is placed in caller provided 'value' buffer, length
2510 * of the calculated hash is returned via value_len pointer argument.
2511 *
2512 * returns:
2513 * 0, on success
2514 * -1, when algo is unsupported
2515 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002516static int calculate_hash(const void *data, int data_len, const char *algo,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002517 uint8_t *value, int *value_len)
2518{
Stephen Warren712fbcf2011-10-18 11:11:49 +00002519 if (strcmp(algo, "crc32") == 0) {
2520 *((uint32_t *)value) = crc32_wd(0, data, data_len,
Bartlomiej Sieka75903782008-04-25 13:54:02 +02002521 CHUNKSZ_CRC32);
Stephen Warren712fbcf2011-10-18 11:11:49 +00002522 *((uint32_t *)value) = cpu_to_uimage(*((uint32_t *)value));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002523 *value_len = 4;
Stephen Warren712fbcf2011-10-18 11:11:49 +00002524 } else if (strcmp(algo, "sha1") == 0) {
2525 sha1_csum_wd((unsigned char *) data, data_len,
Bartlomiej Sieka75903782008-04-25 13:54:02 +02002526 (unsigned char *) value, CHUNKSZ_SHA1);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002527 *value_len = 20;
Stephen Warren712fbcf2011-10-18 11:11:49 +00002528 } else if (strcmp(algo, "md5") == 0) {
2529 md5_wd((unsigned char *)data, data_len, value, CHUNKSZ_MD5);
Bartlomiej Sieka766529f2008-03-14 16:22:34 +01002530 *value_len = 16;
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002531 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002532 debug("Unsupported hash alogrithm\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002533 return -1;
2534 }
2535 return 0;
2536}
2537
2538#ifdef USE_HOSTCC
2539/**
2540 * fit_set_hashes - process FIT component image nodes and calculate hashes
2541 * @fit: pointer to the FIT format image header
2542 *
2543 * fit_set_hashes() adds hash values for all component images in the FIT blob.
2544 * Hashes are calculated for all component images which have hash subnodes
2545 * with algorithm property set to one of the supported hash algorithms.
2546 *
2547 * returns
2548 * 0, on success
2549 * libfdt error code, on failure
2550 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002551int fit_set_hashes(void *fit)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002552{
2553 int images_noffset;
2554 int noffset;
2555 int ndepth;
2556 int ret;
2557
2558 /* Find images parent node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002559 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002560 if (images_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002561 printf("Can't find images parent node '%s' (%s)\n",
2562 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002563 return images_noffset;
2564 }
2565
2566 /* Process its subnodes, print out component images details */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002567 for (ndepth = 0, noffset = fdt_next_node(fit, images_noffset, &ndepth);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002568 (noffset >= 0) && (ndepth > 0);
Stephen Warren712fbcf2011-10-18 11:11:49 +00002569 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002570 if (ndepth == 1) {
2571 /*
2572 * Direct child node of the images parent node,
2573 * i.e. component image node.
2574 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002575 ret = fit_image_set_hashes(fit, noffset);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002576 if (ret)
2577 return ret;
2578 }
2579 }
2580
2581 return 0;
2582}
2583
2584/**
2585 * fit_image_set_hashes - calculate/set hashes for given component image node
2586 * @fit: pointer to the FIT format image header
2587 * @image_noffset: requested component image node
2588 *
2589 * fit_image_set_hashes() adds hash values for an component image node. All
2590 * existing hash subnodes are checked, if algorithm property is set to one of
2591 * the supported hash algorithms, hash value is computed and corresponding
2592 * hash node property is set, for example:
2593 *
2594 * Input component image node structure:
2595 *
2596 * o image@1 (at image_noffset)
2597 * | - data = [binary data]
2598 * o hash@1
2599 * |- algo = "sha1"
2600 *
2601 * Output component image node structure:
2602 *
2603 * o image@1 (at image_noffset)
2604 * | - data = [binary data]
2605 * o hash@1
2606 * |- algo = "sha1"
2607 * |- value = sha1(data)
2608 *
2609 * returns:
2610 * 0 on sucess
2611 * <0 on failure
2612 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002613int fit_image_set_hashes(void *fit, int image_noffset)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002614{
2615 const void *data;
2616 size_t size;
2617 char *algo;
2618 uint8_t value[FIT_MAX_HASH_LEN];
2619 int value_len;
2620 int noffset;
2621 int ndepth;
2622
2623 /* Get image data and data length */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002624 if (fit_image_get_data(fit, image_noffset, &data, &size)) {
2625 printf("Can't get image data/size\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002626 return -1;
2627 }
2628
2629 /* Process all hash subnodes of the component image node */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002630 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002631 (noffset >= 0) && (ndepth > 0);
Stephen Warren712fbcf2011-10-18 11:11:49 +00002632 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002633 if (ndepth == 1) {
2634 /* Direct child node of the component image node */
2635
2636 /*
2637 * Check subnode name, must be equal to "hash".
2638 * Multiple hash nodes require unique unit node
2639 * names, e.g. hash@1, hash@2, etc.
2640 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002641 if (strncmp(fit_get_name(fit, noffset, NULL),
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002642 FIT_HASH_NODENAME,
2643 strlen(FIT_HASH_NODENAME)) != 0) {
2644 /* Not a hash subnode, skip it */
2645 continue;
2646 }
2647
Stephen Warren712fbcf2011-10-18 11:11:49 +00002648 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
2649 printf("Can't get hash algo property for "
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002650 "'%s' hash node in '%s' image node\n",
Stephen Warren712fbcf2011-10-18 11:11:49 +00002651 fit_get_name(fit, noffset, NULL),
2652 fit_get_name(fit, image_noffset, NULL));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002653 return -1;
2654 }
2655
Stephen Warren712fbcf2011-10-18 11:11:49 +00002656 if (calculate_hash(data, size, algo, value,
2657 &value_len)) {
2658 printf("Unsupported hash algorithm (%s) for "
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002659 "'%s' hash node in '%s' image node\n",
Stephen Warren712fbcf2011-10-18 11:11:49 +00002660 algo, fit_get_name(fit, noffset, NULL),
2661 fit_get_name(fit, image_noffset,
2662 NULL));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002663 return -1;
2664 }
2665
Stephen Warren712fbcf2011-10-18 11:11:49 +00002666 if (fit_image_hash_set_value(fit, noffset, value,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002667 value_len)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002668 printf("Can't set hash value for "
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002669 "'%s' hash node in '%s' image node\n",
Stephen Warren712fbcf2011-10-18 11:11:49 +00002670 fit_get_name(fit, noffset, NULL),
2671 fit_get_name(fit, image_noffset, NULL));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002672 return -1;
2673 }
2674 }
2675 }
2676
2677 return 0;
2678}
2679
2680/**
2681 * fit_image_hash_set_value - set hash value in requested has node
2682 * @fit: pointer to the FIT format image header
2683 * @noffset: hash node offset
2684 * @value: hash value to be set
2685 * @value_len: hash value length
2686 *
2687 * fit_image_hash_set_value() attempts to set hash value in a node at offset
2688 * given and returns operation status to the caller.
2689 *
2690 * returns
2691 * 0, on success
2692 * -1, on failure
2693 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002694int fit_image_hash_set_value(void *fit, int noffset, uint8_t *value,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002695 int value_len)
2696{
2697 int ret;
2698
Stephen Warren712fbcf2011-10-18 11:11:49 +00002699 ret = fdt_setprop(fit, noffset, FIT_VALUE_PROP, value, value_len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002700 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002701 printf("Can't set hash '%s' property for '%s' node(%s)\n",
2702 FIT_VALUE_PROP, fit_get_name(fit, noffset, NULL),
2703 fdt_strerror(ret));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002704 return -1;
2705 }
2706
2707 return 0;
2708}
2709#endif /* USE_HOSTCC */
2710
2711/**
2712 * fit_image_check_hashes - verify data intergity
2713 * @fit: pointer to the FIT format image header
2714 * @image_noffset: component image node offset
2715 *
2716 * fit_image_check_hashes() goes over component image hash nodes,
2717 * re-calculates each data hash and compares with the value stored in hash
2718 * node.
2719 *
2720 * returns:
2721 * 1, if all hashes are valid
2722 * 0, otherwise (or on error)
2723 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002724int fit_image_check_hashes(const void *fit, int image_noffset)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002725{
2726 const void *data;
2727 size_t size;
2728 char *algo;
2729 uint8_t *fit_value;
2730 int fit_value_len;
2731 uint8_t value[FIT_MAX_HASH_LEN];
2732 int value_len;
2733 int noffset;
2734 int ndepth;
2735 char *err_msg = "";
2736
2737 /* Get image data and data length */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002738 if (fit_image_get_data(fit, image_noffset, &data, &size)) {
2739 printf("Can't get image data/size\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002740 return 0;
2741 }
2742
2743 /* Process all hash subnodes of the component image node */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002744 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002745 (noffset >= 0) && (ndepth > 0);
Stephen Warren712fbcf2011-10-18 11:11:49 +00002746 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002747 if (ndepth == 1) {
2748 /* Direct child node of the component image node */
2749
2750 /*
2751 * Check subnode name, must be equal to "hash".
2752 * Multiple hash nodes require unique unit node
2753 * names, e.g. hash@1, hash@2, etc.
2754 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002755 if (strncmp(fit_get_name(fit, noffset, NULL),
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002756 FIT_HASH_NODENAME,
2757 strlen(FIT_HASH_NODENAME)) != 0)
2758 continue;
2759
Stephen Warren712fbcf2011-10-18 11:11:49 +00002760 if (fit_image_hash_get_algo(fit, noffset, &algo)) {
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002761 err_msg = " error!\nCan't get hash algo "
2762 "property";
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002763 goto error;
2764 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00002765 printf("%s", algo);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002766
Stephen Warren712fbcf2011-10-18 11:11:49 +00002767 if (fit_image_hash_get_value(fit, noffset, &fit_value,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002768 &fit_value_len)) {
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002769 err_msg = " error!\nCan't get hash value "
2770 "property";
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002771 goto error;
2772 }
2773
Stephen Warren712fbcf2011-10-18 11:11:49 +00002774 if (calculate_hash(data, size, algo, value,
2775 &value_len)) {
2776 err_msg = " error!\n"
2777 "Unsupported hash algorithm";
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002778 goto error;
2779 }
2780
2781 if (value_len != fit_value_len) {
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002782 err_msg = " error !\nBad hash value len";
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002783 goto error;
Stephen Warren712fbcf2011-10-18 11:11:49 +00002784 } else if (memcmp(value, fit_value, value_len) != 0) {
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002785 err_msg = " error!\nBad hash value";
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002786 goto error;
2787 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00002788 printf("+ ");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002789 }
2790 }
2791
2792 return 1;
2793
2794error:
Stephen Warren712fbcf2011-10-18 11:11:49 +00002795 printf("%s for '%s' hash node in '%s' image node\n",
2796 err_msg, fit_get_name(fit, noffset, NULL),
2797 fit_get_name(fit, image_noffset, NULL));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002798 return 0;
2799}
2800
2801/**
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002802 * fit_all_image_check_hashes - verify data intergity for all images
2803 * @fit: pointer to the FIT format image header
2804 *
2805 * fit_all_image_check_hashes() goes over all images in the FIT and
2806 * for every images checks if all it's hashes are valid.
2807 *
2808 * returns:
2809 * 1, if all hashes of all images are valid
2810 * 0, otherwise (or on error)
2811 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002812int fit_all_image_check_hashes(const void *fit)
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002813{
2814 int images_noffset;
2815 int noffset;
2816 int ndepth;
2817 int count;
2818
2819 /* Find images parent node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002820 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH);
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002821 if (images_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002822 printf("Can't find images parent node '%s' (%s)\n",
2823 FIT_IMAGES_PATH, fdt_strerror(images_noffset));
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002824 return 0;
2825 }
2826
2827 /* Process all image subnodes, check hashes for each */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002828 printf("## Checking hash(es) for FIT Image at %08lx ...\n",
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002829 (ulong)fit);
2830 for (ndepth = 0, count = 0,
Stephen Warren712fbcf2011-10-18 11:11:49 +00002831 noffset = fdt_next_node(fit, images_noffset, &ndepth);
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002832 (noffset >= 0) && (ndepth > 0);
Stephen Warren712fbcf2011-10-18 11:11:49 +00002833 noffset = fdt_next_node(fit, noffset, &ndepth)) {
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002834 if (ndepth == 1) {
2835 /*
2836 * Direct child node of the images parent node,
2837 * i.e. component image node.
2838 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002839 printf(" Hash(es) for Image %u (%s): ", count++,
2840 fit_get_name(fit, noffset, NULL));
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002841
Stephen Warren712fbcf2011-10-18 11:11:49 +00002842 if (!fit_image_check_hashes(fit, noffset))
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002843 return 0;
Stephen Warren712fbcf2011-10-18 11:11:49 +00002844 printf("\n");
Bartlomiej Sieka919f5502008-09-09 12:58:15 +02002845 }
2846 }
2847 return 1;
2848}
2849
2850/**
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002851 * fit_image_check_os - check whether image node is of a given os type
2852 * @fit: pointer to the FIT format image header
2853 * @noffset: component image node offset
2854 * @os: requested image os
2855 *
2856 * fit_image_check_os() reads image os property and compares its numeric
2857 * id with the requested os. Comparison result is returned to the caller.
2858 *
2859 * returns:
2860 * 1 if image is of given os type
2861 * 0 otherwise (or on error)
2862 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002863int fit_image_check_os(const void *fit, int noffset, uint8_t os)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002864{
2865 uint8_t image_os;
2866
Stephen Warren712fbcf2011-10-18 11:11:49 +00002867 if (fit_image_get_os(fit, noffset, &image_os))
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002868 return 0;
2869 return (os == image_os);
2870}
2871
2872/**
2873 * fit_image_check_arch - check whether image node is of a given arch
2874 * @fit: pointer to the FIT format image header
2875 * @noffset: component image node offset
2876 * @arch: requested imagearch
2877 *
2878 * fit_image_check_arch() reads image arch property and compares its numeric
2879 * id with the requested arch. Comparison result is returned to the caller.
2880 *
2881 * returns:
2882 * 1 if image is of given arch
2883 * 0 otherwise (or on error)
2884 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002885int fit_image_check_arch(const void *fit, int noffset, uint8_t arch)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002886{
2887 uint8_t image_arch;
2888
Stephen Warren712fbcf2011-10-18 11:11:49 +00002889 if (fit_image_get_arch(fit, noffset, &image_arch))
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002890 return 0;
2891 return (arch == image_arch);
2892}
2893
2894/**
2895 * fit_image_check_type - check whether image node is of a given type
2896 * @fit: pointer to the FIT format image header
2897 * @noffset: component image node offset
2898 * @type: requested image type
2899 *
2900 * fit_image_check_type() reads image type property and compares its numeric
2901 * id with the requested type. Comparison result is returned to the caller.
2902 *
2903 * returns:
2904 * 1 if image is of given type
2905 * 0 otherwise (or on error)
2906 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002907int fit_image_check_type(const void *fit, int noffset, uint8_t type)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002908{
2909 uint8_t image_type;
2910
Stephen Warren712fbcf2011-10-18 11:11:49 +00002911 if (fit_image_get_type(fit, noffset, &image_type))
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002912 return 0;
2913 return (type == image_type);
2914}
2915
2916/**
2917 * fit_image_check_comp - check whether image node uses given compression
2918 * @fit: pointer to the FIT format image header
2919 * @noffset: component image node offset
2920 * @comp: requested image compression type
2921 *
2922 * fit_image_check_comp() reads image compression property and compares its
2923 * numeric id with the requested compression type. Comparison result is
2924 * returned to the caller.
2925 *
2926 * returns:
2927 * 1 if image uses requested compression
2928 * 0 otherwise (or on error)
2929 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002930int fit_image_check_comp(const void *fit, int noffset, uint8_t comp)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002931{
2932 uint8_t image_comp;
2933
Stephen Warren712fbcf2011-10-18 11:11:49 +00002934 if (fit_image_get_comp(fit, noffset, &image_comp))
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002935 return 0;
2936 return (comp == image_comp);
2937}
2938
2939/**
2940 * fit_check_format - sanity check FIT image format
2941 * @fit: pointer to the FIT format image header
2942 *
2943 * fit_check_format() runs a basic sanity FIT image verification.
2944 * Routine checks for mandatory properties, nodes, etc.
2945 *
2946 * returns:
2947 * 1, on success
2948 * 0, on failure
2949 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002950int fit_check_format(const void *fit)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002951{
2952 /* mandatory / node 'description' property */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002953 if (fdt_getprop(fit, 0, FIT_DESC_PROP, NULL) == NULL) {
2954 debug("Wrong FIT format: no description\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002955 return 0;
2956 }
2957
2958#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC)
2959 /* mandatory / node 'timestamp' property */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002960 if (fdt_getprop(fit, 0, FIT_TIMESTAMP_PROP, NULL) == NULL) {
2961 debug("Wrong FIT format: no timestamp\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002962 return 0;
2963 }
2964#endif
2965
2966 /* mandatory subimages parent '/images' node */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002967 if (fdt_path_offset(fit, FIT_IMAGES_PATH) < 0) {
2968 debug("Wrong FIT format: no images parent node\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002969 return 0;
2970 }
2971
2972 return 1;
2973}
2974
2975/**
2976 * fit_conf_get_node - get node offset for configuration of a given unit name
2977 * @fit: pointer to the FIT format image header
2978 * @conf_uname: configuration node unit name
2979 *
2980 * fit_conf_get_node() finds a configuration (withing the '/configurations'
2981 * parant node) of a provided unit name. If configuration is found its node offset
2982 * is returned to the caller.
2983 *
2984 * When NULL is provided in second argument fit_conf_get_node() will search
2985 * for a default configuration node instead. Default configuration node unit name
2986 * is retrived from FIT_DEFAULT_PROP property of the '/configurations' node.
2987 *
2988 * returns:
2989 * configuration node offset when found (>=0)
2990 * negative number on failure (FDT_ERR_* code)
2991 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00002992int fit_conf_get_node(const void *fit, const char *conf_uname)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002993{
2994 int noffset, confs_noffset;
2995 int len;
2996
Stephen Warren712fbcf2011-10-18 11:11:49 +00002997 confs_noffset = fdt_path_offset(fit, FIT_CONFS_PATH);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01002998 if (confs_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00002999 debug("Can't find configurations parent node '%s' (%s)\n",
3000 FIT_CONFS_PATH, fdt_strerror(confs_noffset));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003001 return confs_noffset;
3002 }
3003
3004 if (conf_uname == NULL) {
3005 /* get configuration unit name from the default property */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003006 debug("No configuration specified, trying default...\n");
3007 conf_uname = (char *)fdt_getprop(fit, confs_noffset,
3008 FIT_DEFAULT_PROP, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003009 if (conf_uname == NULL) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00003010 fit_get_debug(fit, confs_noffset, FIT_DEFAULT_PROP,
3011 len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003012 return len;
3013 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00003014 debug("Found default configuration: '%s'\n", conf_uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003015 }
3016
Stephen Warren712fbcf2011-10-18 11:11:49 +00003017 noffset = fdt_subnode_offset(fit, confs_noffset, conf_uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003018 if (noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00003019 debug("Can't get node offset for configuration unit name: "
3020 "'%s' (%s)\n",
3021 conf_uname, fdt_strerror(noffset));
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003022 }
3023
3024 return noffset;
3025}
3026
Stephen Warren712fbcf2011-10-18 11:11:49 +00003027static int __fit_conf_get_prop_node(const void *fit, int noffset,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003028 const char *prop_name)
3029{
3030 char *uname;
3031 int len;
3032
3033 /* get kernel image unit name from configuration kernel property */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003034 uname = (char *)fdt_getprop(fit, noffset, prop_name, &len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003035 if (uname == NULL)
3036 return len;
3037
Stephen Warren712fbcf2011-10-18 11:11:49 +00003038 return fit_image_get_node(fit, uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003039}
3040
3041/**
3042 * fit_conf_get_kernel_node - get kernel image node offset that corresponds to
3043 * a given configuration
3044 * @fit: pointer to the FIT format image header
3045 * @noffset: configuration node offset
3046 *
3047 * fit_conf_get_kernel_node() retrives kernel image node unit name from
3048 * configuration FIT_KERNEL_PROP property and translates it to the node
3049 * offset.
3050 *
3051 * returns:
3052 * image node offset when found (>=0)
3053 * negative number on failure (FDT_ERR_* code)
3054 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003055int fit_conf_get_kernel_node(const void *fit, int noffset)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003056{
Stephen Warren712fbcf2011-10-18 11:11:49 +00003057 return __fit_conf_get_prop_node(fit, noffset, FIT_KERNEL_PROP);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003058}
3059
3060/**
3061 * fit_conf_get_ramdisk_node - get ramdisk image node offset that corresponds to
3062 * a given configuration
3063 * @fit: pointer to the FIT format image header
3064 * @noffset: configuration node offset
3065 *
3066 * fit_conf_get_ramdisk_node() retrives ramdisk image node unit name from
3067 * configuration FIT_KERNEL_PROP property and translates it to the node
3068 * offset.
3069 *
3070 * returns:
3071 * image node offset when found (>=0)
3072 * negative number on failure (FDT_ERR_* code)
3073 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003074int fit_conf_get_ramdisk_node(const void *fit, int noffset)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003075{
Stephen Warren712fbcf2011-10-18 11:11:49 +00003076 return __fit_conf_get_prop_node(fit, noffset, FIT_RAMDISK_PROP);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003077}
3078
3079/**
3080 * fit_conf_get_fdt_node - get fdt image node offset that corresponds to
3081 * a given configuration
3082 * @fit: pointer to the FIT format image header
3083 * @noffset: configuration node offset
3084 *
3085 * fit_conf_get_fdt_node() retrives fdt image node unit name from
3086 * configuration FIT_KERNEL_PROP property and translates it to the node
3087 * offset.
3088 *
3089 * returns:
3090 * image node offset when found (>=0)
3091 * negative number on failure (FDT_ERR_* code)
3092 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003093int fit_conf_get_fdt_node(const void *fit, int noffset)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003094{
Stephen Warren712fbcf2011-10-18 11:11:49 +00003095 return __fit_conf_get_prop_node(fit, noffset, FIT_FDT_PROP);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003096}
3097
3098/**
3099 * fit_conf_print - prints out the FIT configuration details
3100 * @fit: pointer to the FIT format image header
Marian Balakowiczf773bea2008-03-12 10:35:46 +01003101 * @noffset: offset of the configuration node
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003102 * @p: pointer to prefix string
3103 *
3104 * fit_conf_print() lists all mandatory properies for the processed
3105 * configuration node.
3106 *
3107 * returns:
3108 * no returned results
3109 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003110void fit_conf_print(const void *fit, int noffset, const char *p)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003111{
3112 char *desc;
3113 char *uname;
3114 int ret;
3115
3116 /* Mandatory properties */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003117 ret = fit_get_desc(fit, noffset, &desc);
3118 printf("%s Description: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003119 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +00003120 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003121 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00003122 printf("%s\n", desc);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003123
Stephen Warren712fbcf2011-10-18 11:11:49 +00003124 uname = (char *)fdt_getprop(fit, noffset, FIT_KERNEL_PROP, NULL);
3125 printf("%s Kernel: ", p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003126 if (uname == NULL)
Stephen Warren712fbcf2011-10-18 11:11:49 +00003127 printf("unavailable\n");
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003128 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00003129 printf("%s\n", uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003130
3131 /* Optional properties */
Stephen Warren712fbcf2011-10-18 11:11:49 +00003132 uname = (char *)fdt_getprop(fit, noffset, FIT_RAMDISK_PROP, NULL);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003133 if (uname)
Stephen Warren712fbcf2011-10-18 11:11:49 +00003134 printf("%s Init Ramdisk: %s\n", p, uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003135
Stephen Warren712fbcf2011-10-18 11:11:49 +00003136 uname = (char *)fdt_getprop(fit, noffset, FIT_FDT_PROP, NULL);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003137 if (uname)
Stephen Warren712fbcf2011-10-18 11:11:49 +00003138 printf("%s FDT: %s\n", p, uname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003139}
Marian Balakowiczc8779642008-03-12 10:12:37 +01003140
3141/**
3142 * fit_check_ramdisk - verify FIT format ramdisk subimage
3143 * @fit_hdr: pointer to the FIT ramdisk header
3144 * @rd_noffset: ramdisk subimage node offset within FIT image
3145 * @arch: requested ramdisk image architecture type
3146 * @verify: data CRC verification flag
3147 *
3148 * fit_check_ramdisk() verifies integrity of the ramdisk subimage and from
3149 * specified FIT image.
3150 *
3151 * returns:
3152 * 1, on success
3153 * 0, on failure
3154 */
3155#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +00003156static int fit_check_ramdisk(const void *fit, int rd_noffset, uint8_t arch,
3157 int verify)
Marian Balakowiczc8779642008-03-12 10:12:37 +01003158{
Stephen Warren712fbcf2011-10-18 11:11:49 +00003159 fit_image_print(fit, rd_noffset, " ");
Marian Balakowiczc8779642008-03-12 10:12:37 +01003160
3161 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00003162 puts(" Verifying Hash Integrity ... ");
3163 if (!fit_image_check_hashes(fit, rd_noffset)) {
3164 puts("Bad Data Hash\n");
3165 show_boot_progress(-125);
Marian Balakowiczc8779642008-03-12 10:12:37 +01003166 return 0;
3167 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00003168 puts("OK\n");
Marian Balakowiczc8779642008-03-12 10:12:37 +01003169 }
3170
Stephen Warren712fbcf2011-10-18 11:11:49 +00003171 show_boot_progress(126);
3172 if (!fit_image_check_os(fit, rd_noffset, IH_OS_LINUX) ||
3173 !fit_image_check_arch(fit, rd_noffset, arch) ||
3174 !fit_image_check_type(fit, rd_noffset, IH_TYPE_RAMDISK)) {
3175 printf("No Linux %s Ramdisk Image\n",
Marian Balakowiczc8779642008-03-12 10:12:37 +01003176 genimg_get_arch_name(arch));
Stephen Warren712fbcf2011-10-18 11:11:49 +00003177 show_boot_progress(-126);
Marian Balakowiczc8779642008-03-12 10:12:37 +01003178 return 0;
3179 }
3180
Stephen Warren712fbcf2011-10-18 11:11:49 +00003181 show_boot_progress(127);
Marian Balakowiczc8779642008-03-12 10:12:37 +01003182 return 1;
3183}
3184#endif /* USE_HOSTCC */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01003185#endif /* CONFIG_FIT */