blob: 0be09e5c6306df7973b3a45e00c6c891cef7ee26 [file] [log] [blame]
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001/*
2 * (C) Copyright 2008 Semihalf
3 *
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01008 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01009
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010010#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010011#include <common.h>
12#include <watchdog.h>
13
14#ifdef CONFIG_SHOW_BOOT_PROGRESS
15#include <status_led.h>
16#endif
17
18#ifdef CONFIG_HAS_DATAFLASH
19#include <dataflash.h>
20#endif
21
Marian Balakowicz95d449a2008-05-13 15:53:29 +020022#ifdef CONFIG_LOGBUFFER
23#include <logbuff.h>
24#endif
25
Marian Balakowicz2242f532008-02-21 17:27:41 +010026#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010027
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060028#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010029#include <image.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050030#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010031
Simon Glassaa34fbc2016-02-22 22:55:45 -070032#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Marian Balakowiczfff888a12008-02-21 17:20:19 +010033#include <libfdt.h>
34#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020035#include <fpga.h>
36#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010037#endif
38
Andy Fleming20a14a42008-04-02 16:19:07 -050039#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020040#include <u-boot/sha1.h>
Simon Glassa51ec632013-05-16 13:53:22 +000041#include <asm/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000042#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010043
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010044#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020045extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010046#endif
47
48DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010049
Heiko Schocher21d29f72014-05-28 11:33:33 +020050#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren712fbcf2011-10-18 11:11:49 +000051static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010052 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020053#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010054#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010055#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050056#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010057#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010058#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020059
60#ifndef __maybe_unused
61# define __maybe_unused /* unimplemented */
62#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010063#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010064
Simon Glass0ccff502013-02-24 17:33:25 +000065#include <u-boot/crc.h>
66
Simon Glass13d06982013-05-08 08:06:01 +000067#ifndef CONFIG_SYS_BARGSIZE
68#define CONFIG_SYS_BARGSIZE 512
69#endif
70
Mike Frysinger7edb1862010-10-20 07:17:39 -040071static const table_entry_t uimage_arch[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010072 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
73 { IH_ARCH_ALPHA, "alpha", "Alpha", },
74 { IH_ARCH_ARM, "arm", "ARM", },
75 { IH_ARCH_I386, "x86", "Intel x86", },
76 { IH_ARCH_IA64, "ia64", "IA64", },
77 { IH_ARCH_M68K, "m68k", "M68K", },
78 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
79 { IH_ARCH_MIPS, "mips", "MIPS", },
80 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010081 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070082 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010083 { IH_ARCH_PPC, "ppc", "PowerPC", },
84 { IH_ARCH_S390, "s390", "IBM S390", },
85 { IH_ARCH_SH, "sh", "SuperH", },
86 { IH_ARCH_SPARC, "sparc", "SPARC", },
87 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
88 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
89 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000090 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000091 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000092 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080093 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040094 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060095 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010096 { -1, "", "", },
97};
98
Mike Frysinger7edb1862010-10-20 07:17:39 -040099static const table_entry_t uimage_os[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100100 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100101 { IH_OS_LINUX, "linux", "Linux", },
102#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
103 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
104#endif
105 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200106 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000107 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100108 { IH_OS_RTEMS, "rtems", "RTEMS", },
109 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800110 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100111#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
112 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100113#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
Marek Vasut67ddd952014-12-16 14:07:21 +0100130#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
131 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
132#endif
133
Marian Balakowicz570abb02008-02-29 15:59:59 +0100134 { -1, "", "", },
135};
136
Mike Frysinger7edb1862010-10-20 07:17:39 -0400137static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000138 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100139 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
140 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400141 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400142 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100143 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700144 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000145 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
146 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
147 { IH_TYPE_INVALID, NULL, "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100148 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000149 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000150 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100151 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
152 { IH_TYPE_SCRIPT, "script", "Script", },
Charles Manning832472a2014-03-06 15:40:50 +1300153 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100154 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000155 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200156 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200157 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600158 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200159 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600160 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600161 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600162 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000163 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200164 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Michal Simeked0cea72016-05-17 13:58:44 +0200165 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100166 { -1, "", "", },
167};
168
Mike Frysinger7edb1862010-10-20 07:17:39 -0400169static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100170 { IH_COMP_NONE, "none", "uncompressed", },
171 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
172 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200173 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100174 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700175 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100176 { -1, "", "", },
177};
178
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100179/*****************************************************************************/
180/* Legacy format routines */
181/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000182int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100183{
184 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000185 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100186 image_header_t header;
187
188 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000189 memmove(&header, (char *)hdr, image_get_header_size());
190 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100191
Stephen Warren712fbcf2011-10-18 11:11:49 +0000192 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100193
Stephen Warren712fbcf2011-10-18 11:11:49 +0000194 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100195}
196
Stephen Warren712fbcf2011-10-18 11:11:49 +0000197int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100198{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000199 ulong data = image_get_data(hdr);
200 ulong len = image_get_data_size(hdr);
201 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100202
Stephen Warren712fbcf2011-10-18 11:11:49 +0000203 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100204}
205
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100206/**
207 * image_multi_count - get component (sub-image) count
208 * @hdr: pointer to the header of the multi component image
209 *
210 * image_multi_count() returns number of components in a multi
211 * component image.
212 *
213 * Note: no checking of the image type is done, caller must pass
214 * a valid multi component image.
215 *
216 * returns:
217 * number of components
218 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000219ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100220{
221 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100222 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100223
224 /* get start of the image payload, which in case of multi
225 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000226 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100227
228 /* count non empty slots */
229 for (i = 0; size[i]; ++i)
230 count++;
231
232 return count;
233}
234
235/**
236 * image_multi_getimg - get component data address and size
237 * @hdr: pointer to the header of the multi component image
238 * @idx: index of the requested component
239 * @data: pointer to a ulong variable, will hold component data address
240 * @len: pointer to a ulong variable, will hold component size
241 *
242 * image_multi_getimg() returns size and data address for the requested
243 * component in a multi component image.
244 *
245 * Note: no checking of the image type is done, caller must pass
246 * a valid multi component image.
247 *
248 * returns:
249 * data address and size of the component, if idx is valid
250 * 0 in data and len, if idx is out of range
251 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000252void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100253 ulong *data, ulong *len)
254{
255 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100256 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700257 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100258
259 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000260 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100261
262 /* get start of the image payload, which in case of multi
263 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000264 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100265
266 /* get address of the proper component data start, which means
267 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100269
270 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000271 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100272 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100273
274 /* go over all indices preceding requested component idx */
275 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700276 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000277 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100278 }
279
280 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700281 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100282 } else {
283 *len = 0;
284 *data = 0;
285 }
286}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100287
Stephen Warren712fbcf2011-10-18 11:11:49 +0000288static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100289{
Heiko Schocher80402f32015-06-29 09:10:46 +0200290 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100291
Stephen Warren712fbcf2011-10-18 11:11:49 +0000292 os = genimg_get_os_name(image_get_os(hdr));
293 arch = genimg_get_arch_name(image_get_arch(hdr));
294 type = genimg_get_type_name(image_get_type(hdr));
295 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100296
Stephen Warren712fbcf2011-10-18 11:11:49 +0000297 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100298}
299
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100300/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200301 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200302 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100303 * @p: pointer to prefix string
304 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200305 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100306 * The routine prints out all header fields followed by the size/offset data
307 * for MULTI/SCRIPT images.
308 *
309 * returns:
310 * no returned results
311 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000312void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100313{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200314 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200315 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200316
Simon Glass1fe7d932013-05-08 08:05:58 +0000317 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000318 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000319 if (IMAGE_ENABLE_TIMESTAMP) {
320 printf("%sCreated: ", p);
321 genimg_print_time((time_t)image_get_time(hdr));
322 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 printf("%sImage Type: ", p);
324 image_print_type(hdr);
325 printf("%sData Size: ", p);
326 genimg_print_size(image_get_data_size(hdr));
327 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
328 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100329
Stephen Warren712fbcf2011-10-18 11:11:49 +0000330 if (image_check_type(hdr, IH_TYPE_MULTI) ||
331 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100332 int i;
333 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100335
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100337 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000338 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100339
Stephen Warren712fbcf2011-10-18 11:11:49 +0000340 printf("%s Image %d: ", p, i);
341 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100342
Stephen Warren712fbcf2011-10-18 11:11:49 +0000343 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100344 /*
345 * the user may need to know offsets
346 * if planning to do something with
347 * multiple files
348 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000349 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100350 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100351 }
352 }
353}
354
Marian Balakowicz570abb02008-02-29 15:59:59 +0100355
356#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200357#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100358/**
359 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100360 * @rd_addr: ramdisk image start address
361 * @arch: expected ramdisk architecture
362 * @verify: checksum verification flag
363 *
364 * image_get_ramdisk() returns a pointer to the verified ramdisk image
365 * header. Routine receives image start address and expected architecture
366 * flag. Verification done covers data and header integrity and os/type/arch
367 * fields checking.
368 *
369 * If dataflash support is enabled routine checks for dataflash addresses
370 * and handles required dataflash reads.
371 *
372 * returns:
373 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600374 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100375 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000376static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100377 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100378{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200379 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100380
Stephen Warren712fbcf2011-10-18 11:11:49 +0000381 if (!image_check_magic(rd_hdr)) {
382 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000383 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600384 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100385 }
386
Stephen Warren712fbcf2011-10-18 11:11:49 +0000387 if (!image_check_hcrc(rd_hdr)) {
388 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000389 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600390 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100391 }
392
Simon Glass770605e2012-02-13 13:51:18 +0000393 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000394 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100395
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100396 if (verify) {
397 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000398 if (!image_check_dcrc(rd_hdr)) {
399 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000400 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600401 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100402 }
403 puts("OK\n");
404 }
405
Simon Glass770605e2012-02-13 13:51:18 +0000406 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100407
Stephen Warren712fbcf2011-10-18 11:11:49 +0000408 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
409 !image_check_arch(rd_hdr, arch) ||
410 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
411 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100412 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000413 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600414 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100415 }
416
417 return rd_hdr;
418}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200419#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100420#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100421
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100422/*****************************************************************************/
423/* Shared dual-format routines */
424/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100425#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600426ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
427ulong save_addr; /* Default Save Address */
428ulong save_size; /* Default Save Size (in bytes) */
429
430static int on_loadaddr(const char *name, const char *value, enum env_op op,
431 int flags)
432{
433 switch (op) {
434 case env_op_create:
435 case env_op_overwrite:
436 load_addr = simple_strtoul(value, NULL, 16);
437 break;
438 default:
439 break;
440 }
441
442 return 0;
443}
444U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
445
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100446ulong getenv_bootm_low(void)
447{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000448 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100449 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000450 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100451 return tmp;
452 }
453
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200454#if defined(CONFIG_SYS_SDRAM_BASE)
455 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100456#elif defined(CONFIG_ARM)
457 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100458#else
459 return 0;
460#endif
461}
462
Becky Bruce391fd932008-06-09 20:37:18 -0500463phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100464{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900465 phys_size_t tmp, size;
466 phys_addr_t start;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000467 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100468 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000469 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100470 return tmp;
471 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900472
473#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
474 start = gd->bd->bi_dram[0].start;
475 size = gd->bd->bi_dram[0].size;
476#else
477 start = gd->bd->bi_memstart;
478 size = gd->bd->bi_memsize;
479#endif
480
Matthew McClintockc519fac2010-07-08 10:11:08 -0500481 s = getenv("bootm_low");
482 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000483 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500484 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900485 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500486
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900487 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100488}
489
Grant Likelyc3624e62011-03-28 09:58:43 +0000490phys_size_t getenv_bootm_mapsize(void)
491{
492 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000493 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000494 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000495 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000496 return tmp;
497 }
498
499#if defined(CONFIG_SYS_BOOTMAPSZ)
500 return CONFIG_SYS_BOOTMAPSZ;
501#else
502 return getenv_bootm_size();
503#endif
504}
505
Stephen Warren712fbcf2011-10-18 11:11:49 +0000506void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100507{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400508 if (to == from)
509 return;
510
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100511#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800512 if (to > from) {
513 from += len;
514 to += len;
515 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100516 while (len > 0) {
517 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000518 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800519 if (to > from) {
520 to -= tail;
521 from -= tail;
522 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000523 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800524 if (to < from) {
525 to += tail;
526 from += tail;
527 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100528 len -= tail;
529 }
530#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000531 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100532#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
533}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100534#endif /* !USE_HOSTCC */
535
Stephen Warren712fbcf2011-10-18 11:11:49 +0000536void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100537{
538#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000539 printf("%d Bytes = ", size);
540 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100541#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000542 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100543 size, (double)size / 1.024e3,
544 (double)size / 1.048576e6);
545#endif
546}
547
Simon Glass859e92b2013-05-07 06:11:51 +0000548#if IMAGE_ENABLE_TIMESTAMP
549void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100550{
551#ifndef USE_HOSTCC
552 struct rtc_time tm;
553
Simon Glass9f9276c2015-04-20 12:37:18 -0600554 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000555 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100556 tm.tm_year, tm.tm_mon, tm.tm_mday,
557 tm.tm_hour, tm.tm_min, tm.tm_sec);
558#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000559 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100560#endif
561}
Simon Glass859e92b2013-05-07 06:11:51 +0000562#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100563
Simon Glass5b9d44d2015-06-23 15:38:25 -0600564const table_entry_t *get_table_entry(const table_entry_t *table, int id)
565{
566 for (; table->id >= 0; ++table) {
567 if (table->id == id)
568 return table;
569 }
570 return NULL;
571}
572
Marian Balakowicz570abb02008-02-29 15:59:59 +0100573/**
574 * get_table_entry_name - translate entry id to long name
575 * @table: pointer to a translation table for entries of a specific type
576 * @msg: message to be returned when translation fails
577 * @id: entry id to be translated
578 *
579 * get_table_entry_name() will go over translation table trying to find
580 * entry that matches given id. If matching entry is found, its long
581 * name is returned to the caller.
582 *
583 * returns:
584 * long entry name if translation succeeds
585 * msg otherwise
586 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400587char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100588{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600589 table = get_table_entry(table, id);
590 if (!table)
591 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200592#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600593 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500594#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600595 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500596#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100597}
598
Stephen Warren712fbcf2011-10-18 11:11:49 +0000599const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100600{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000601 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100602}
603
Stephen Warren712fbcf2011-10-18 11:11:49 +0000604const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100605{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000606 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
607 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100608}
609
Stephen Warren712fbcf2011-10-18 11:11:49 +0000610const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100611{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000612 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100613}
614
Simon Glasscef2e512016-02-22 22:55:50 -0700615static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600616{
Simon Glasscef2e512016-02-22 22:55:50 -0700617 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600618 if (!table)
619 return "unknown";
620#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
621 return table->sname;
622#else
623 return table->sname + gd->reloc_off;
624#endif
625}
626
Simon Glasscef2e512016-02-22 22:55:50 -0700627const char *genimg_get_type_short_name(uint8_t type)
628{
629 return genimg_get_short_name(uimage_type, type);
630}
631
Stephen Warren712fbcf2011-10-18 11:11:49 +0000632const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100633{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000634 return (get_table_entry_name(uimage_comp, "Unknown Compression",
635 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100636}
637
Simon Glasscef2e512016-02-22 22:55:50 -0700638const char *genimg_get_comp_short_name(uint8_t comp)
639{
640 return genimg_get_short_name(uimage_comp, comp);
641}
642
643const char *genimg_get_os_short_name(uint8_t os)
644{
645 return genimg_get_short_name(uimage_os, os);
646}
647
648const char *genimg_get_arch_short_name(uint8_t arch)
649{
650 return genimg_get_short_name(uimage_arch, arch);
651}
652
Marian Balakowicz570abb02008-02-29 15:59:59 +0100653/**
654 * get_table_entry_id - translate short entry name to id
655 * @table: pointer to a translation table for entries of a specific type
656 * @table_name: to be used in case of error
657 * @name: entry short name to be translated
658 *
659 * get_table_entry_id() will go over translation table trying to find
660 * entry that matches given short name. If matching entry is found,
661 * its id returned to the caller.
662 *
663 * returns:
664 * entry id if translation succeeds
665 * -1 otherwise
666 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400667int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100668 const char *table_name, const char *name)
669{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400670 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100671
672 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200673#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600674 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200675#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600676 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500677#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100678 return (t->id);
679 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000680 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600681
682 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100683}
684
Stephen Warren712fbcf2011-10-18 11:11:49 +0000685int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100686{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000687 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100688}
689
Stephen Warren712fbcf2011-10-18 11:11:49 +0000690int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100691{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000692 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100693}
694
Stephen Warren712fbcf2011-10-18 11:11:49 +0000695int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100696{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000697 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100698}
699
Stephen Warren712fbcf2011-10-18 11:11:49 +0000700int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100701{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000702 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100703}
704
705#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100706/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700707 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
708 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700709 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700710 * @fit_uname_config: double pointer to a char, will hold pointer to a
711 * configuration unit name
712 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
713 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700714 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700715 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700716 * which is normally the first argv of bootm/bootz
717 *
718 * returns:
719 * kernel start address
720 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700721ulong genimg_get_kernel_addr_fit(char * const img_addr,
722 const char **fit_uname_config,
723 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700724{
Bryan Wu0f641402014-07-31 17:39:58 -0700725 ulong kernel_addr;
726
727 /* find out kernel image address */
728 if (!img_addr) {
729 kernel_addr = load_addr;
730 debug("* kernel: default image load address = 0x%08lx\n",
731 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700732#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700733 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700734 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700735 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700736 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700737 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700738 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700739 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700740 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700741#endif
742 } else {
743 kernel_addr = simple_strtoul(img_addr, NULL, 16);
744 debug("* kernel: cmdline image address = 0x%08lx\n",
745 kernel_addr);
746 }
747
748 return kernel_addr;
749}
750
751/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700752 * genimg_get_kernel_addr() is the simple version of
753 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
754 */
755ulong genimg_get_kernel_addr(char * const img_addr)
756{
757 const char *fit_uname_config = NULL;
758 const char *fit_uname_kernel = NULL;
759
760 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
761 &fit_uname_kernel);
762}
763
764/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100765 * genimg_get_format - get image format type
766 * @img_addr: image start address
767 *
768 * genimg_get_format() checks whether provided address points to a valid
769 * legacy or FIT image.
770 *
771 * New uImage format and FDT blob are based on a libfdt. FDT blob
772 * may be passed directly or embedded in a FIT image. In both situations
773 * genimg_get_format() must be able to dectect libfdt header.
774 *
775 * returns:
776 * image format type or IMAGE_FORMAT_INVALID if no image is present
777 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000778int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100779{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200780#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200781 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100782
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200783 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100784 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200785 return IMAGE_FORMAT_LEGACY;
786#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700787#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200788 if (fdt_check_header(img_addr) == 0)
789 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500790#endif
791#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200792 if (android_image_check_header(img_addr) == 0)
793 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100794#endif
795
Heiko Schocher21d29f72014-05-28 11:33:33 +0200796 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100797}
798
799/**
800 * genimg_get_image - get image from special storage (if necessary)
801 * @img_addr: image start address
802 *
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200803 * genimg_get_image() checks if provided image start address is located
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100804 * in a dataflash storage. If so, image is moved to a system RAM memory.
805 *
806 * returns:
807 * image start address after possible relocation from special storage
808 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000809ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100810{
811 ulong ram_addr = img_addr;
812
813#ifdef CONFIG_HAS_DATAFLASH
814 ulong h_size, d_size;
815
Stephen Warren712fbcf2011-10-18 11:11:49 +0000816 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000817 void *buf;
818
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100819 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200820 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100821
822 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000823 h_size = image_get_header_size();
Simon Glass73223f02016-02-22 22:55:43 -0700824#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100825 if (sizeof(struct fdt_header) > h_size)
826 h_size = sizeof(struct fdt_header);
827#endif
828
829 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000830 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100831 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
832
Simon Glass35e7b0f2013-05-07 06:12:03 +0000833 buf = map_sysmem(ram_addr, 0);
834 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100835
836 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000837 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200838#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100839 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000840 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000841 debug(" Legacy format image found at 0x%08lx, "
842 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100843 ram_addr, d_size);
844 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200845#endif
Simon Glass73223f02016-02-22 22:55:43 -0700846#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100847 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000848 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000849 debug(" FIT/FDT format image found at 0x%08lx, "
850 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100851 ram_addr, d_size);
852 break;
853#endif
854 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000855 printf(" No valid image found at 0x%08lx\n",
856 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100857 return ram_addr;
858 }
859
860 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000861 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100862 "%08lx to RAM address %08lx\n", img_addr + h_size,
863 ram_addr + h_size);
864
Stephen Warren712fbcf2011-10-18 11:11:49 +0000865 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000866 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100867
868 }
869#endif /* CONFIG_HAS_DATAFLASH */
870
871 return ram_addr;
872}
873
874/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100875 * fit_has_config - check if there is a valid FIT configuration
876 * @images: pointer to the bootm command headers structure
877 *
878 * fit_has_config() checks if there is a FIT configuration in use
879 * (if FTI support is present).
880 *
881 * returns:
882 * 0, no FIT support or no configuration found
883 * 1, configuration found
884 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000885int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100886{
Simon Glass73223f02016-02-22 22:55:43 -0700887#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100888 if (images->fit_uname_cfg)
889 return 1;
890#endif
891 return 0;
892}
893
894/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100895 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100896 * @argc: command argument count
897 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100898 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100899 * @arch: expected ramdisk architecture
900 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
901 * @rd_end: pointer to a ulong variable, will hold ramdisk end
902 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100903 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100904 * Curently supported are the following ramdisk sources:
905 * - multicomponent kernel/ramdisk image,
906 * - commandline provided address of decicated ramdisk image.
907 *
908 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100909 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100910 * rd_start and rd_end are set to ramdisk start/end addresses if
911 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100912 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500913 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100914 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100915 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000916int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100917 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100918{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100919 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100920 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200921#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200922 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200923#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +0000924 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200925#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000926 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200927#endif
Simon Glass73223f02016-02-22 22:55:43 -0700928#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -0700929 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100930 const char *fit_uname_ramdisk = NULL;
931 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100932 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100933#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700934 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100935
Marian Balakowiczc8779642008-03-12 10:12:37 +0100936 *rd_start = 0;
937 *rd_end = 0;
938
Tom Rini1fec3c52015-08-27 15:42:41 -0400939#ifdef CONFIG_ANDROID_BOOT_IMAGE
940 /*
941 * Look for an Android boot image.
942 */
943 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -0400944 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -0400945 select = argv[0];
946#endif
947
Simon Glass983c72f2013-06-11 11:14:46 -0700948 if (argc >= 2)
949 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -0500950
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100951 /*
952 * Look for a '-' which indicates to ignore the
953 * ramdisk argument
954 */
Simon Glass983c72f2013-06-11 11:14:46 -0700955 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000956 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100957 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700958 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -0700959#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -0700960 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100961 /*
962 * If the init ramdisk comes from the FIT image and
963 * the FIT image address is omitted in the command
964 * line argument, try to use os FIT image address or
965 * default load address.
966 */
967 if (images->fit_uname_os)
968 default_addr = (ulong)images->fit_hdr_os;
969 else
970 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100971
Simon Glass983c72f2013-06-11 11:14:46 -0700972 if (fit_parse_conf(select, default_addr,
973 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000974 debug("* ramdisk: config '%s' from image at "
975 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100976 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700977 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100978 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000979 debug("* ramdisk: subimage '%s' from image at "
980 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100981 fit_uname_ramdisk, rd_addr);
982 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100983#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100984 {
Simon Glass983c72f2013-06-11 11:14:46 -0700985 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000986 debug("* ramdisk: cmdline image address = "
987 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100988 rd_addr);
989 }
Simon Glass73223f02016-02-22 22:55:43 -0700990#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100991 } else {
992 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +0000993 * command argument. If the property is not defined,
994 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100995 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000996 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +0000997 rd_noffset = fit_get_node_from_config(images,
998 FIT_RAMDISK_PROP, rd_addr);
999 if (rd_noffset == -ENOLINK)
Peter Tyser41266c92008-08-05 10:51:57 -05001000 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001001 else if (rd_noffset < 0)
1002 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001003 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001004#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001005
1006 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001007 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001008
1009 /*
1010 * Check if there is an initrd image at the
1011 * address provided in the second bootm argument
1012 * check image type, for FIT images get FIT node.
1013 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001014 buf = map_sysmem(rd_addr, 0);
1015 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001016#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001017 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001018 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001019 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001020
Simon Glass770605e2012-02-13 13:51:18 +00001021 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001022 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001023 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001024
Marian Balakowiczc8779642008-03-12 10:12:37 +01001025 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001026 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001027
Stephen Warren712fbcf2011-10-18 11:11:49 +00001028 rd_data = image_get_data(rd_hdr);
1029 rd_len = image_get_data_size(rd_hdr);
1030 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001031 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001032#endif
Simon Glass73223f02016-02-22 22:55:43 -07001033#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001034 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001035 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001036 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001037 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001038 IH_TYPE_RAMDISK,
1039 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001040 FIT_LOAD_OPTIONAL_NON_ZERO,
1041 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001042 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001043 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001044
Simon Glassa51ec632013-05-16 13:53:22 +00001045 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001046 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001047 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001048 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001049#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001050#ifdef CONFIG_ANDROID_BOOT_IMAGE
1051 case IMAGE_FORMAT_ANDROID:
1052 android_image_get_ramdisk((void *)images->os.start,
1053 &rd_data, &rd_len);
1054 break;
1055#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001056 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001057#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001058 end = NULL;
1059 if (select)
1060 end = strchr(select, ':');
1061 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001062 rd_len = simple_strtoul(++end, NULL, 16);
1063 rd_data = rd_addr;
1064 } else
1065#endif
1066 {
1067 puts("Wrong Ramdisk Image Format\n");
1068 rd_data = rd_len = rd_load = 0;
1069 return 1;
1070 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001071 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001072 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001073 image_check_type(&images->legacy_hdr_os_copy,
1074 IH_TYPE_MULTI)) {
1075
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001076 /*
1077 * Now check if we have a legacy mult-component image,
1078 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001079 */
Simon Glass770605e2012-02-13 13:51:18 +00001080 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001081 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001082 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001083 (ulong)images->legacy_hdr_os);
1084
Stephen Warren712fbcf2011-10-18 11:11:49 +00001085 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001086 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001087 /*
1088 * no initrd image
1089 */
Simon Glass770605e2012-02-13 13:51:18 +00001090 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001091 rd_len = rd_data = 0;
1092 }
1093
1094 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001095 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001096 } else {
1097 *rd_start = rd_data;
1098 *rd_end = rd_data + rd_len;
1099 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001100 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001101 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001102
1103 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001104}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001105
John Rigbyfca43cc2010-10-13 13:57:35 -06001106#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001107/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001108 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001109 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001110 * @rd_data: ramdisk data start address
1111 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001112 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1113 * start address (after possible relocation)
1114 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1115 * end address (after possible relocation)
1116 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001117 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001118 * variable and if requested ramdisk data is moved to a specified location.
1119 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001120 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1121 * start/end addresses if ramdisk image start and len were provided,
1122 * otherwise set initrd_start and initrd_end set to zeros.
1123 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001124 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001125 * 0 - success
1126 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001127 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001128int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001129 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001130{
1131 char *s;
1132 ulong initrd_high;
1133 int initrd_copy_to_ram = 1;
1134
Stephen Warren712fbcf2011-10-18 11:11:49 +00001135 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001136 /* a value of "no" or a similar string will act like 0,
1137 * turning the "load high" feature off. This is intentional.
1138 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001139 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001140 if (initrd_high == ~0)
1141 initrd_copy_to_ram = 0;
1142 } else {
Masahiro Yamada20e072f2015-12-17 17:19:35 +09001143 initrd_high = getenv_bootm_mapsize() + getenv_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001144 }
1145
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001146
1147#ifdef CONFIG_LOGBUFFER
1148 /* Prevent initrd from overwriting logbuffer */
1149 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1150#endif
1151
Stephen Warren712fbcf2011-10-18 11:11:49 +00001152 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001153 initrd_high, initrd_copy_to_ram);
1154
1155 if (rd_data) {
1156 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001157 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001158 *initrd_start = rd_data;
1159 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001160 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001161 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001162 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001163 *initrd_start = (ulong)lmb_alloc_base(lmb,
1164 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001165 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001166 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1167 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001168
Kumar Galae822d7f2008-02-27 21:51:49 -06001169 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001170 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001171 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001172 }
Simon Glass770605e2012-02-13 13:51:18 +00001173 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001174
1175 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001176 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001177 *initrd_start, *initrd_end);
1178
Stephen Warren712fbcf2011-10-18 11:11:49 +00001179 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001180 (void *)rd_data, rd_len, CHUNKSZ);
1181
Kumar Gala3b200112011-12-07 04:42:58 +00001182#ifdef CONFIG_MP
1183 /*
1184 * Ensure the image is flushed to memory to handle
1185 * AMP boot scenarios in which we might not be
1186 * HW cache coherent
1187 */
1188 flush_cache((unsigned long)*initrd_start, rd_len);
1189#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001190 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001191 }
1192 } else {
1193 *initrd_start = 0;
1194 *initrd_end = 0;
1195 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001196 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001197 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001198
Kumar Galae822d7f2008-02-27 21:51:49 -06001199 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001200
Kumar Galae822d7f2008-02-27 21:51:49 -06001201error:
1202 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001203}
John Rigbyfca43cc2010-10-13 13:57:35 -06001204#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001205
Simon Glass90268b82014-10-19 21:11:24 -06001206int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1207 ulong *setup_start, ulong *setup_len)
1208{
Simon Glass73223f02016-02-22 22:55:43 -07001209#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001210 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1211#else
1212 return -ENOENT;
1213#endif
1214}
1215
Simon Glass73223f02016-02-22 22:55:43 -07001216#if IMAGE_ENABLE_FIT
Michal Simek62afc602016-05-17 14:03:50 +02001217#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_XILINX)
1218int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1219 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1220{
1221 ulong tmp_img_addr, img_data, img_len;
1222 void *buf;
1223 int conf_noffset;
1224 int fit_img_result;
1225 char *uname, *name;
1226 int err;
1227 int devnum = 0; /* TODO support multi fpga platforms */
1228 const fpga_desc * const desc = fpga_get_desc(devnum);
1229 xilinx_desc *desc_xilinx = desc->devdesc;
1230
1231 /* Check to see if the images struct has a FIT configuration */
1232 if (!genimg_has_config(images)) {
1233 debug("## FIT configuration was not specified\n");
1234 return 0;
1235 }
1236
1237 /*
1238 * Obtain the os FIT header from the images struct
1239 * copy from dataflash if needed
1240 */
1241 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1242 tmp_img_addr = genimg_get_image(tmp_img_addr);
1243 buf = map_sysmem(tmp_img_addr, 0);
1244 /*
1245 * Check image type. For FIT images get FIT node
1246 * and attempt to locate a generic binary.
1247 */
1248 switch (genimg_get_format(buf)) {
1249 case IMAGE_FORMAT_FIT:
1250 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1251
1252 err = fdt_get_string_index(buf, conf_noffset, FIT_FPGA_PROP, 0,
1253 (const char **)&uname);
1254 if (err < 0) {
1255 debug("## FPGA image is not specified\n");
1256 return 0;
1257 }
1258 fit_img_result = fit_image_load(images,
1259 tmp_img_addr,
1260 (const char **)&uname,
1261 &(images->fit_uname_cfg),
1262 arch,
1263 IH_TYPE_FPGA,
1264 BOOTSTAGE_ID_FPGA_INIT,
1265 FIT_LOAD_OPTIONAL_NON_ZERO,
1266 &img_data, &img_len);
1267
1268 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1269 uname, img_data, img_len);
1270
1271 if (fit_img_result < 0) {
1272 /* Something went wrong! */
1273 return fit_img_result;
1274 }
1275
1276 if (img_len >= desc_xilinx->size) {
1277 name = "full";
1278 err = fpga_loadbitstream(devnum, (char *)img_data,
1279 img_len, BIT_FULL);
1280 if (err)
1281 err = fpga_load(devnum, (const void *)img_data,
1282 img_len, BIT_FULL);
1283 } else {
1284 name = "partial";
1285 err = fpga_loadbitstream(devnum, (char *)img_data,
1286 img_len, BIT_PARTIAL);
1287 if (err)
1288 err = fpga_load(devnum, (const void *)img_data,
1289 img_len, BIT_PARTIAL);
1290 }
1291
1292 printf(" Programming %s bitstream... ", name);
1293 if (err)
1294 printf("failed\n");
1295 else
1296 printf("OK\n");
1297 break;
1298 default:
1299 printf("The given image format is not supported (corrupt?)\n");
1300 return 1;
1301 }
1302
1303 return 0;
1304}
1305#endif
1306
Karl Apsite84a07db2015-05-21 09:52:48 -04001307int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1308 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1309{
1310 /*
1311 * These variables are used to hold the current image location
1312 * in system memory.
1313 */
1314 ulong tmp_img_addr;
1315 /*
1316 * These two variables are requirements for fit_image_load, but
1317 * their values are not used
1318 */
1319 ulong img_data, img_len;
1320 void *buf;
1321 int loadables_index;
1322 int conf_noffset;
1323 int fit_img_result;
1324 char *uname;
1325
1326 /* Check to see if the images struct has a FIT configuration */
1327 if (!genimg_has_config(images)) {
1328 debug("## FIT configuration was not specified\n");
1329 return 0;
1330 }
1331
1332 /*
1333 * Obtain the os FIT header from the images struct
1334 * copy from dataflash if needed
1335 */
1336 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1337 tmp_img_addr = genimg_get_image(tmp_img_addr);
1338 buf = map_sysmem(tmp_img_addr, 0);
1339 /*
1340 * Check image type. For FIT images get FIT node
1341 * and attempt to locate a generic binary.
1342 */
1343 switch (genimg_get_format(buf)) {
1344 case IMAGE_FORMAT_FIT:
1345 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1346
1347 for (loadables_index = 0;
Thierry Reding9734b972015-08-20 11:45:43 +02001348 fdt_get_string_index(buf, conf_noffset,
Karl Apsite84a07db2015-05-21 09:52:48 -04001349 FIT_LOADABLE_PROP,
1350 loadables_index,
Thierry Reding9734b972015-08-20 11:45:43 +02001351 (const char **)&uname) == 0;
Karl Apsite84a07db2015-05-21 09:52:48 -04001352 loadables_index++)
1353 {
1354 fit_img_result = fit_image_load(images,
1355 tmp_img_addr,
1356 (const char **)&uname,
1357 &(images->fit_uname_cfg), arch,
1358 IH_TYPE_LOADABLE,
1359 BOOTSTAGE_ID_FIT_LOADABLE_START,
1360 FIT_LOAD_OPTIONAL_NON_ZERO,
1361 &img_data, &img_len);
1362 if (fit_img_result < 0) {
1363 /* Something went wrong! */
1364 return fit_img_result;
1365 }
1366 }
1367 break;
1368 default:
1369 printf("The given image format is not supported (corrupt?)\n");
1370 return 1;
1371 }
1372
1373 return 0;
1374}
1375#endif
1376
John Rigbyfca43cc2010-10-13 13:57:35 -06001377#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001378/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001379 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001380 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001381 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1382 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1383 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001384 * boot_get_cmdline() allocates space for kernel command line below
Bin Menga1875592016-02-05 19:30:11 -08001385 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001386 * variable is present its contents is copied to allocated kernel
1387 * command line.
1388 *
1389 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001390 * 0 - success
1391 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001392 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001393int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001394{
1395 char *cmdline;
1396 char *s;
1397
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001398 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001399 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001400
1401 if (cmdline == NULL)
1402 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001403
1404 if ((s = getenv("bootargs")) == NULL)
1405 s = "";
1406
1407 strcpy(cmdline, s);
1408
1409 *cmd_start = (ulong) & cmdline[0];
1410 *cmd_end = *cmd_start + strlen(cmdline);
1411
Stephen Warren712fbcf2011-10-18 11:11:49 +00001412 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001413
Kumar Galae822d7f2008-02-27 21:51:49 -06001414 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001415}
John Rigbyfca43cc2010-10-13 13:57:35 -06001416#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001417
John Rigbyfca43cc2010-10-13 13:57:35 -06001418#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001419/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001420 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001421 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001422 * @kbd: double pointer to board info data
1423 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001424 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001425 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1426 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001427 *
1428 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001429 * 0 - success
1430 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001431 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001432int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001433{
Becky Bruce391fd932008-06-09 20:37:18 -05001434 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001435 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001436 if (*kbd == NULL)
1437 return -1;
1438
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001439 **kbd = *(gd->bd);
1440
Stephen Warren712fbcf2011-10-18 11:11:49 +00001441 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001442
1443#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1444 do_bdinfo(NULL, 0, 0, NULL);
1445#endif
1446
Kumar Galae822d7f2008-02-27 21:51:49 -06001447 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001448}
John Rigbyfca43cc2010-10-13 13:57:35 -06001449#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001450
1451#ifdef CONFIG_LMB
1452int image_setup_linux(bootm_headers_t *images)
1453{
1454 ulong of_size = images->ft_len;
1455 char **of_flat_tree = &images->ft_addr;
1456 ulong *initrd_start = &images->initrd_start;
1457 ulong *initrd_end = &images->initrd_end;
1458 struct lmb *lmb = &images->lmb;
1459 ulong rd_len;
1460 int ret;
1461
1462 if (IMAGE_ENABLE_OF_LIBFDT)
1463 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1464
1465 if (IMAGE_BOOT_GET_CMDLINE) {
1466 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1467 &images->cmdline_end);
1468 if (ret) {
1469 puts("ERROR with allocation of cmdline\n");
1470 return ret;
1471 }
1472 }
1473 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1474 rd_len = images->rd_end - images->rd_start;
1475 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1476 initrd_start, initrd_end);
1477 if (ret)
1478 return ret;
1479 }
1480
1481 if (IMAGE_ENABLE_OF_LIBFDT) {
1482 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1483 if (ret)
1484 return ret;
1485 }
1486
1487 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1488 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1489 if (ret)
1490 return ret;
1491 }
1492
1493 return 0;
1494}
1495#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001496#endif /* !USE_HOSTCC */