blob: e9095f4f5b6b5b154eab5abeb3ff07469760da0a [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[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060072 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010073 { 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[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600100 { IH_OS_INVALID, "invalid", "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 Warrenb9b50e82011-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",},
Simon Glass30495bf2016-06-30 10:52:15 -0600147 { IH_TYPE_INVALID, "invalid", "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
Simon Glass56d7ab72016-06-30 10:52:14 -0600179struct table_info {
180 const char *desc;
181 int count;
182 const table_entry_t *table;
183};
184
185static const struct table_info table_info[IH_COUNT] = {
186 { "architecture", IH_ARCH_COUNT, uimage_arch },
187 { "compression", IH_COMP_COUNT, uimage_comp },
188 { "operating system", IH_OS_COUNT, uimage_os },
189 { "image type", IH_TYPE_COUNT, uimage_type },
190};
191
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100192/*****************************************************************************/
193/* Legacy format routines */
194/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000195int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100196{
197 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000198 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100199 image_header_t header;
200
201 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000202 memmove(&header, (char *)hdr, image_get_header_size());
203 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100204
Stephen Warren712fbcf2011-10-18 11:11:49 +0000205 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100206
Stephen Warren712fbcf2011-10-18 11:11:49 +0000207 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100208}
209
Stephen Warren712fbcf2011-10-18 11:11:49 +0000210int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100211{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000212 ulong data = image_get_data(hdr);
213 ulong len = image_get_data_size(hdr);
214 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100215
Stephen Warren712fbcf2011-10-18 11:11:49 +0000216 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100217}
218
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100219/**
220 * image_multi_count - get component (sub-image) count
221 * @hdr: pointer to the header of the multi component image
222 *
223 * image_multi_count() returns number of components in a multi
224 * component image.
225 *
226 * Note: no checking of the image type is done, caller must pass
227 * a valid multi component image.
228 *
229 * returns:
230 * number of components
231 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000232ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100233{
234 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100235 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100236
237 /* get start of the image payload, which in case of multi
238 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000239 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100240
241 /* count non empty slots */
242 for (i = 0; size[i]; ++i)
243 count++;
244
245 return count;
246}
247
248/**
249 * image_multi_getimg - get component data address and size
250 * @hdr: pointer to the header of the multi component image
251 * @idx: index of the requested component
252 * @data: pointer to a ulong variable, will hold component data address
253 * @len: pointer to a ulong variable, will hold component size
254 *
255 * image_multi_getimg() returns size and data address for the requested
256 * component in a multi component image.
257 *
258 * Note: no checking of the image type is done, caller must pass
259 * a valid multi component image.
260 *
261 * returns:
262 * data address and size of the component, if idx is valid
263 * 0 in data and len, if idx is out of range
264 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100266 ulong *data, ulong *len)
267{
268 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100269 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700270 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100271
272 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000273 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100274
275 /* get start of the image payload, which in case of multi
276 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000277 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100278
279 /* get address of the proper component data start, which means
280 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000281 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100282
283 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000284 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100285 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100286
287 /* go over all indices preceding requested component idx */
288 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700289 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000290 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100291 }
292
293 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700294 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100295 } else {
296 *len = 0;
297 *data = 0;
298 }
299}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100300
Stephen Warren712fbcf2011-10-18 11:11:49 +0000301static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100302{
Heiko Schocher80402f32015-06-29 09:10:46 +0200303 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100304
Stephen Warren712fbcf2011-10-18 11:11:49 +0000305 os = genimg_get_os_name(image_get_os(hdr));
306 arch = genimg_get_arch_name(image_get_arch(hdr));
307 type = genimg_get_type_name(image_get_type(hdr));
308 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100309
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100311}
312
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100313/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200314 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200315 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100316 * @p: pointer to prefix string
317 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200318 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100319 * The routine prints out all header fields followed by the size/offset data
320 * for MULTI/SCRIPT images.
321 *
322 * returns:
323 * no returned results
324 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100326{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200327 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200328 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200329
Simon Glass1fe7d932013-05-08 08:05:58 +0000330 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000331 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000332 if (IMAGE_ENABLE_TIMESTAMP) {
333 printf("%sCreated: ", p);
334 genimg_print_time((time_t)image_get_time(hdr));
335 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 printf("%sImage Type: ", p);
337 image_print_type(hdr);
338 printf("%sData Size: ", p);
339 genimg_print_size(image_get_data_size(hdr));
340 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
341 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100342
Stephen Warren712fbcf2011-10-18 11:11:49 +0000343 if (image_check_type(hdr, IH_TYPE_MULTI) ||
344 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100345 int i;
346 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000347 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100348
Stephen Warren712fbcf2011-10-18 11:11:49 +0000349 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100350 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000351 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100352
Stephen Warren712fbcf2011-10-18 11:11:49 +0000353 printf("%s Image %d: ", p, i);
354 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100355
Stephen Warren712fbcf2011-10-18 11:11:49 +0000356 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100357 /*
358 * the user may need to know offsets
359 * if planning to do something with
360 * multiple files
361 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100363 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100364 }
365 }
366}
367
Marian Balakowicz570abb02008-02-29 15:59:59 +0100368
369#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200370#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100371/**
372 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100373 * @rd_addr: ramdisk image start address
374 * @arch: expected ramdisk architecture
375 * @verify: checksum verification flag
376 *
377 * image_get_ramdisk() returns a pointer to the verified ramdisk image
378 * header. Routine receives image start address and expected architecture
379 * flag. Verification done covers data and header integrity and os/type/arch
380 * fields checking.
381 *
382 * If dataflash support is enabled routine checks for dataflash addresses
383 * and handles required dataflash reads.
384 *
385 * returns:
386 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600387 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100388 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000389static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100390 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100391{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200392 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100393
Stephen Warren712fbcf2011-10-18 11:11:49 +0000394 if (!image_check_magic(rd_hdr)) {
395 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000396 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600397 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100398 }
399
Stephen Warren712fbcf2011-10-18 11:11:49 +0000400 if (!image_check_hcrc(rd_hdr)) {
401 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000402 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600403 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100404 }
405
Simon Glass770605e2012-02-13 13:51:18 +0000406 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000407 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100408
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100409 if (verify) {
410 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000411 if (!image_check_dcrc(rd_hdr)) {
412 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000413 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600414 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100415 }
416 puts("OK\n");
417 }
418
Simon Glass770605e2012-02-13 13:51:18 +0000419 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100420
Stephen Warren712fbcf2011-10-18 11:11:49 +0000421 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
422 !image_check_arch(rd_hdr, arch) ||
423 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
424 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100425 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000426 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600427 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100428 }
429
430 return rd_hdr;
431}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200432#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100433#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100434
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100435/*****************************************************************************/
436/* Shared dual-format routines */
437/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100438#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600439ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
440ulong save_addr; /* Default Save Address */
441ulong save_size; /* Default Save Size (in bytes) */
442
443static int on_loadaddr(const char *name, const char *value, enum env_op op,
444 int flags)
445{
446 switch (op) {
447 case env_op_create:
448 case env_op_overwrite:
449 load_addr = simple_strtoul(value, NULL, 16);
450 break;
451 default:
452 break;
453 }
454
455 return 0;
456}
457U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
458
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100459ulong getenv_bootm_low(void)
460{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000461 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100462 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000463 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100464 return tmp;
465 }
466
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200467#if defined(CONFIG_SYS_SDRAM_BASE)
468 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100469#elif defined(CONFIG_ARM)
470 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100471#else
472 return 0;
473#endif
474}
475
Becky Bruce391fd932008-06-09 20:37:18 -0500476phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100477{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900478 phys_size_t tmp, size;
479 phys_addr_t start;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000480 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100481 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000482 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100483 return tmp;
484 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900485
486#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
487 start = gd->bd->bi_dram[0].start;
488 size = gd->bd->bi_dram[0].size;
489#else
490 start = gd->bd->bi_memstart;
491 size = gd->bd->bi_memsize;
492#endif
493
Matthew McClintockc519fac2010-07-08 10:11:08 -0500494 s = getenv("bootm_low");
495 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000496 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500497 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900498 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500499
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900500 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100501}
502
Grant Likelyc3624e62011-03-28 09:58:43 +0000503phys_size_t getenv_bootm_mapsize(void)
504{
505 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000506 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000507 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000508 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000509 return tmp;
510 }
511
512#if defined(CONFIG_SYS_BOOTMAPSZ)
513 return CONFIG_SYS_BOOTMAPSZ;
514#else
515 return getenv_bootm_size();
516#endif
517}
518
Stephen Warren712fbcf2011-10-18 11:11:49 +0000519void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100520{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400521 if (to == from)
522 return;
523
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100524#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800525 if (to > from) {
526 from += len;
527 to += len;
528 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100529 while (len > 0) {
530 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000531 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800532 if (to > from) {
533 to -= tail;
534 from -= tail;
535 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000536 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800537 if (to < from) {
538 to += tail;
539 from += tail;
540 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100541 len -= tail;
542 }
543#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000544 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100545#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
546}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100547#endif /* !USE_HOSTCC */
548
Stephen Warren712fbcf2011-10-18 11:11:49 +0000549void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100550{
551#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000552 printf("%d Bytes = ", size);
553 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100554#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000555 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100556 size, (double)size / 1.024e3,
557 (double)size / 1.048576e6);
558#endif
559}
560
Simon Glass859e92b2013-05-07 06:11:51 +0000561#if IMAGE_ENABLE_TIMESTAMP
562void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100563{
564#ifndef USE_HOSTCC
565 struct rtc_time tm;
566
Simon Glass9f9276c2015-04-20 12:37:18 -0600567 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000568 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100569 tm.tm_year, tm.tm_mon, tm.tm_mday,
570 tm.tm_hour, tm.tm_min, tm.tm_sec);
571#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000572 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100573#endif
574}
Simon Glass859e92b2013-05-07 06:11:51 +0000575#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100576
Simon Glass5b9d44d2015-06-23 15:38:25 -0600577const table_entry_t *get_table_entry(const table_entry_t *table, int id)
578{
579 for (; table->id >= 0; ++table) {
580 if (table->id == id)
581 return table;
582 }
583 return NULL;
584}
585
Marian Balakowicz570abb02008-02-29 15:59:59 +0100586/**
587 * get_table_entry_name - translate entry id to long name
588 * @table: pointer to a translation table for entries of a specific type
589 * @msg: message to be returned when translation fails
590 * @id: entry id to be translated
591 *
592 * get_table_entry_name() will go over translation table trying to find
593 * entry that matches given id. If matching entry is found, its long
594 * name is returned to the caller.
595 *
596 * returns:
597 * long entry name if translation succeeds
598 * msg otherwise
599 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400600char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100601{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600602 table = get_table_entry(table, id);
603 if (!table)
604 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200605#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600606 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500607#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600608 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500609#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100610}
611
Stephen Warren712fbcf2011-10-18 11:11:49 +0000612const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100613{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000614 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100615}
616
Stephen Warren712fbcf2011-10-18 11:11:49 +0000617const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100618{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000619 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
620 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100621}
622
Stephen Warren712fbcf2011-10-18 11:11:49 +0000623const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100624{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000625 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100626}
627
Simon Glasscef2e512016-02-22 22:55:50 -0700628static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600629{
Simon Glasscef2e512016-02-22 22:55:50 -0700630 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600631 if (!table)
632 return "unknown";
633#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
634 return table->sname;
635#else
636 return table->sname + gd->reloc_off;
637#endif
638}
639
Simon Glasscef2e512016-02-22 22:55:50 -0700640const char *genimg_get_type_short_name(uint8_t type)
641{
642 return genimg_get_short_name(uimage_type, type);
643}
644
Stephen Warren712fbcf2011-10-18 11:11:49 +0000645const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100646{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000647 return (get_table_entry_name(uimage_comp, "Unknown Compression",
648 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100649}
650
Simon Glasscef2e512016-02-22 22:55:50 -0700651const char *genimg_get_comp_short_name(uint8_t comp)
652{
653 return genimg_get_short_name(uimage_comp, comp);
654}
655
656const char *genimg_get_os_short_name(uint8_t os)
657{
658 return genimg_get_short_name(uimage_os, os);
659}
660
661const char *genimg_get_arch_short_name(uint8_t arch)
662{
663 return genimg_get_short_name(uimage_arch, arch);
664}
665
Marian Balakowicz570abb02008-02-29 15:59:59 +0100666/**
667 * get_table_entry_id - translate short entry name to id
668 * @table: pointer to a translation table for entries of a specific type
669 * @table_name: to be used in case of error
670 * @name: entry short name to be translated
671 *
672 * get_table_entry_id() will go over translation table trying to find
673 * entry that matches given short name. If matching entry is found,
674 * its id returned to the caller.
675 *
676 * returns:
677 * entry id if translation succeeds
678 * -1 otherwise
679 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400680int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100681 const char *table_name, const char *name)
682{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400683 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100684
685 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200686#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600687 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200688#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600689 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500690#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100691 return (t->id);
692 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000693 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600694
695 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100696}
697
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100699{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000700 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100701}
702
Stephen Warren712fbcf2011-10-18 11:11:49 +0000703int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100704{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000705 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100706}
707
Stephen Warren712fbcf2011-10-18 11:11:49 +0000708int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100709{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000710 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100711}
712
Stephen Warren712fbcf2011-10-18 11:11:49 +0000713int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100714{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000715 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100716}
717
718#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100719/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700720 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
721 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700722 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700723 * @fit_uname_config: double pointer to a char, will hold pointer to a
724 * configuration unit name
725 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
726 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700727 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700728 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700729 * which is normally the first argv of bootm/bootz
730 *
731 * returns:
732 * kernel start address
733 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700734ulong genimg_get_kernel_addr_fit(char * const img_addr,
735 const char **fit_uname_config,
736 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700737{
Bryan Wu0f641402014-07-31 17:39:58 -0700738 ulong kernel_addr;
739
740 /* find out kernel image address */
741 if (!img_addr) {
742 kernel_addr = load_addr;
743 debug("* kernel: default image load address = 0x%08lx\n",
744 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700745#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700746 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700747 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700748 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700749 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700750 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700751 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700752 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700753 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700754#endif
755 } else {
756 kernel_addr = simple_strtoul(img_addr, NULL, 16);
757 debug("* kernel: cmdline image address = 0x%08lx\n",
758 kernel_addr);
759 }
760
761 return kernel_addr;
762}
763
764/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700765 * genimg_get_kernel_addr() is the simple version of
766 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
767 */
768ulong genimg_get_kernel_addr(char * const img_addr)
769{
770 const char *fit_uname_config = NULL;
771 const char *fit_uname_kernel = NULL;
772
773 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
774 &fit_uname_kernel);
775}
776
777/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100778 * genimg_get_format - get image format type
779 * @img_addr: image start address
780 *
781 * genimg_get_format() checks whether provided address points to a valid
782 * legacy or FIT image.
783 *
784 * New uImage format and FDT blob are based on a libfdt. FDT blob
785 * may be passed directly or embedded in a FIT image. In both situations
786 * genimg_get_format() must be able to dectect libfdt header.
787 *
788 * returns:
789 * image format type or IMAGE_FORMAT_INVALID if no image is present
790 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000791int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100792{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200793#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200794 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100795
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200796 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100797 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200798 return IMAGE_FORMAT_LEGACY;
799#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700800#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200801 if (fdt_check_header(img_addr) == 0)
802 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500803#endif
804#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200805 if (android_image_check_header(img_addr) == 0)
806 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100807#endif
808
Heiko Schocher21d29f72014-05-28 11:33:33 +0200809 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100810}
811
812/**
813 * genimg_get_image - get image from special storage (if necessary)
814 * @img_addr: image start address
815 *
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200816 * genimg_get_image() checks if provided image start address is located
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100817 * in a dataflash storage. If so, image is moved to a system RAM memory.
818 *
819 * returns:
820 * image start address after possible relocation from special storage
821 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000822ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100823{
824 ulong ram_addr = img_addr;
825
826#ifdef CONFIG_HAS_DATAFLASH
827 ulong h_size, d_size;
828
Stephen Warren712fbcf2011-10-18 11:11:49 +0000829 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000830 void *buf;
831
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100832 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200833 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100834
835 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000836 h_size = image_get_header_size();
Simon Glass73223f02016-02-22 22:55:43 -0700837#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100838 if (sizeof(struct fdt_header) > h_size)
839 h_size = sizeof(struct fdt_header);
840#endif
841
842 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000843 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100844 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
845
Simon Glass35e7b0f2013-05-07 06:12:03 +0000846 buf = map_sysmem(ram_addr, 0);
847 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100848
849 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000850 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200851#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100852 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000853 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000854 debug(" Legacy format image found at 0x%08lx, "
855 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100856 ram_addr, d_size);
857 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200858#endif
Simon Glass73223f02016-02-22 22:55:43 -0700859#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100860 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000861 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000862 debug(" FIT/FDT format image found at 0x%08lx, "
863 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100864 ram_addr, d_size);
865 break;
866#endif
867 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000868 printf(" No valid image found at 0x%08lx\n",
869 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100870 return ram_addr;
871 }
872
873 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000874 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100875 "%08lx to RAM address %08lx\n", img_addr + h_size,
876 ram_addr + h_size);
877
Stephen Warren712fbcf2011-10-18 11:11:49 +0000878 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000879 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100880
881 }
882#endif /* CONFIG_HAS_DATAFLASH */
883
884 return ram_addr;
885}
886
887/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100888 * fit_has_config - check if there is a valid FIT configuration
889 * @images: pointer to the bootm command headers structure
890 *
891 * fit_has_config() checks if there is a FIT configuration in use
892 * (if FTI support is present).
893 *
894 * returns:
895 * 0, no FIT support or no configuration found
896 * 1, configuration found
897 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000898int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100899{
Simon Glass73223f02016-02-22 22:55:43 -0700900#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100901 if (images->fit_uname_cfg)
902 return 1;
903#endif
904 return 0;
905}
906
907/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100908 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100909 * @argc: command argument count
910 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100911 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100912 * @arch: expected ramdisk architecture
913 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
914 * @rd_end: pointer to a ulong variable, will hold ramdisk end
915 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100916 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100917 * Curently supported are the following ramdisk sources:
918 * - multicomponent kernel/ramdisk image,
919 * - commandline provided address of decicated ramdisk image.
920 *
921 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100922 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100923 * rd_start and rd_end are set to ramdisk start/end addresses if
924 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100925 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500926 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100927 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100928 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000929int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100930 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100931{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100932 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100933 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200934#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200935 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200936#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +0000937 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200938#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000939 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200940#endif
Simon Glass73223f02016-02-22 22:55:43 -0700941#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -0700942 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100943 const char *fit_uname_ramdisk = NULL;
944 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100945 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100946#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700947 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100948
Marian Balakowiczc8779642008-03-12 10:12:37 +0100949 *rd_start = 0;
950 *rd_end = 0;
951
Tom Rini1fec3c52015-08-27 15:42:41 -0400952#ifdef CONFIG_ANDROID_BOOT_IMAGE
953 /*
954 * Look for an Android boot image.
955 */
956 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -0400957 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -0400958 select = argv[0];
959#endif
960
Simon Glass983c72f2013-06-11 11:14:46 -0700961 if (argc >= 2)
962 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -0500963
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100964 /*
965 * Look for a '-' which indicates to ignore the
966 * ramdisk argument
967 */
Simon Glass983c72f2013-06-11 11:14:46 -0700968 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000969 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100970 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700971 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -0700972#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -0700973 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100974 /*
975 * If the init ramdisk comes from the FIT image and
976 * the FIT image address is omitted in the command
977 * line argument, try to use os FIT image address or
978 * default load address.
979 */
980 if (images->fit_uname_os)
981 default_addr = (ulong)images->fit_hdr_os;
982 else
983 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100984
Simon Glass983c72f2013-06-11 11:14:46 -0700985 if (fit_parse_conf(select, default_addr,
986 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000987 debug("* ramdisk: config '%s' from image at "
988 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100989 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700990 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100991 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000992 debug("* ramdisk: subimage '%s' from image at "
993 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100994 fit_uname_ramdisk, rd_addr);
995 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100996#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100997 {
Simon Glass983c72f2013-06-11 11:14:46 -0700998 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000999 debug("* ramdisk: cmdline image address = "
1000 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001001 rd_addr);
1002 }
Simon Glass73223f02016-02-22 22:55:43 -07001003#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001004 } else {
1005 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001006 * command argument. If the property is not defined,
1007 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001008 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001009 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001010 rd_noffset = fit_get_node_from_config(images,
1011 FIT_RAMDISK_PROP, rd_addr);
1012 if (rd_noffset == -ENOLINK)
Peter Tyser41266c92008-08-05 10:51:57 -05001013 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001014 else if (rd_noffset < 0)
1015 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001016 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001017#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001018
1019 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001020 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001021
1022 /*
1023 * Check if there is an initrd image at the
1024 * address provided in the second bootm argument
1025 * check image type, for FIT images get FIT node.
1026 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001027 buf = map_sysmem(rd_addr, 0);
1028 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001029#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001030 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001031 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001032 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001033
Simon Glass770605e2012-02-13 13:51:18 +00001034 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001035 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001036 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001037
Marian Balakowiczc8779642008-03-12 10:12:37 +01001038 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001039 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001040
Stephen Warren712fbcf2011-10-18 11:11:49 +00001041 rd_data = image_get_data(rd_hdr);
1042 rd_len = image_get_data_size(rd_hdr);
1043 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001044 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001045#endif
Simon Glass73223f02016-02-22 22:55:43 -07001046#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001047 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001048 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001049 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001050 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001051 IH_TYPE_RAMDISK,
1052 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001053 FIT_LOAD_OPTIONAL_NON_ZERO,
1054 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001055 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001056 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001057
Simon Glassa51ec632013-05-16 13:53:22 +00001058 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001059 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001060 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001061 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001062#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001063#ifdef CONFIG_ANDROID_BOOT_IMAGE
1064 case IMAGE_FORMAT_ANDROID:
1065 android_image_get_ramdisk((void *)images->os.start,
1066 &rd_data, &rd_len);
1067 break;
1068#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001069 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001070#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001071 end = NULL;
1072 if (select)
1073 end = strchr(select, ':');
1074 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001075 rd_len = simple_strtoul(++end, NULL, 16);
1076 rd_data = rd_addr;
1077 } else
1078#endif
1079 {
1080 puts("Wrong Ramdisk Image Format\n");
1081 rd_data = rd_len = rd_load = 0;
1082 return 1;
1083 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001084 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001085 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001086 image_check_type(&images->legacy_hdr_os_copy,
1087 IH_TYPE_MULTI)) {
1088
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001089 /*
1090 * Now check if we have a legacy mult-component image,
1091 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001092 */
Simon Glass770605e2012-02-13 13:51:18 +00001093 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001094 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001095 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001096 (ulong)images->legacy_hdr_os);
1097
Stephen Warren712fbcf2011-10-18 11:11:49 +00001098 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001099 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001100 /*
1101 * no initrd image
1102 */
Simon Glass770605e2012-02-13 13:51:18 +00001103 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001104 rd_len = rd_data = 0;
1105 }
1106
1107 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001108 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001109 } else {
1110 *rd_start = rd_data;
1111 *rd_end = rd_data + rd_len;
1112 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001113 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001114 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001115
1116 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001117}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001118
John Rigbyfca43cc2010-10-13 13:57:35 -06001119#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001120/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001121 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001122 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001123 * @rd_data: ramdisk data start address
1124 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001125 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1126 * start address (after possible relocation)
1127 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1128 * end address (after possible relocation)
1129 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001130 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001131 * variable and if requested ramdisk data is moved to a specified location.
1132 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001133 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1134 * start/end addresses if ramdisk image start and len were provided,
1135 * otherwise set initrd_start and initrd_end set to zeros.
1136 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001137 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001138 * 0 - success
1139 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001140 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001141int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001142 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001143{
1144 char *s;
1145 ulong initrd_high;
1146 int initrd_copy_to_ram = 1;
1147
Stephen Warren712fbcf2011-10-18 11:11:49 +00001148 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001149 /* a value of "no" or a similar string will act like 0,
1150 * turning the "load high" feature off. This is intentional.
1151 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001152 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001153 if (initrd_high == ~0)
1154 initrd_copy_to_ram = 0;
1155 } else {
Masahiro Yamada20e072f2015-12-17 17:19:35 +09001156 initrd_high = getenv_bootm_mapsize() + getenv_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001157 }
1158
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001159
1160#ifdef CONFIG_LOGBUFFER
1161 /* Prevent initrd from overwriting logbuffer */
1162 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1163#endif
1164
Stephen Warren712fbcf2011-10-18 11:11:49 +00001165 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001166 initrd_high, initrd_copy_to_ram);
1167
1168 if (rd_data) {
1169 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001170 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001171 *initrd_start = rd_data;
1172 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001173 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001174 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001175 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001176 *initrd_start = (ulong)lmb_alloc_base(lmb,
1177 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001178 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001179 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1180 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001181
Kumar Galae822d7f2008-02-27 21:51:49 -06001182 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001183 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001184 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001185 }
Simon Glass770605e2012-02-13 13:51:18 +00001186 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001187
1188 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001189 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001190 *initrd_start, *initrd_end);
1191
Stephen Warren712fbcf2011-10-18 11:11:49 +00001192 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001193 (void *)rd_data, rd_len, CHUNKSZ);
1194
Kumar Gala3b200112011-12-07 04:42:58 +00001195#ifdef CONFIG_MP
1196 /*
1197 * Ensure the image is flushed to memory to handle
1198 * AMP boot scenarios in which we might not be
1199 * HW cache coherent
1200 */
1201 flush_cache((unsigned long)*initrd_start, rd_len);
1202#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001203 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001204 }
1205 } else {
1206 *initrd_start = 0;
1207 *initrd_end = 0;
1208 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001209 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001210 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001211
Kumar Galae822d7f2008-02-27 21:51:49 -06001212 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001213
Kumar Galae822d7f2008-02-27 21:51:49 -06001214error:
1215 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001216}
John Rigbyfca43cc2010-10-13 13:57:35 -06001217#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001218
Simon Glass90268b82014-10-19 21:11:24 -06001219int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1220 ulong *setup_start, ulong *setup_len)
1221{
Simon Glass73223f02016-02-22 22:55:43 -07001222#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001223 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1224#else
1225 return -ENOENT;
1226#endif
1227}
1228
Simon Glass73223f02016-02-22 22:55:43 -07001229#if IMAGE_ENABLE_FIT
Michal Simek62afc602016-05-17 14:03:50 +02001230#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_XILINX)
1231int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1232 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1233{
1234 ulong tmp_img_addr, img_data, img_len;
1235 void *buf;
1236 int conf_noffset;
1237 int fit_img_result;
1238 char *uname, *name;
1239 int err;
1240 int devnum = 0; /* TODO support multi fpga platforms */
1241 const fpga_desc * const desc = fpga_get_desc(devnum);
1242 xilinx_desc *desc_xilinx = desc->devdesc;
1243
1244 /* Check to see if the images struct has a FIT configuration */
1245 if (!genimg_has_config(images)) {
1246 debug("## FIT configuration was not specified\n");
1247 return 0;
1248 }
1249
1250 /*
1251 * Obtain the os FIT header from the images struct
1252 * copy from dataflash if needed
1253 */
1254 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1255 tmp_img_addr = genimg_get_image(tmp_img_addr);
1256 buf = map_sysmem(tmp_img_addr, 0);
1257 /*
1258 * Check image type. For FIT images get FIT node
1259 * and attempt to locate a generic binary.
1260 */
1261 switch (genimg_get_format(buf)) {
1262 case IMAGE_FORMAT_FIT:
1263 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1264
1265 err = fdt_get_string_index(buf, conf_noffset, FIT_FPGA_PROP, 0,
1266 (const char **)&uname);
1267 if (err < 0) {
1268 debug("## FPGA image is not specified\n");
1269 return 0;
1270 }
1271 fit_img_result = fit_image_load(images,
1272 tmp_img_addr,
1273 (const char **)&uname,
1274 &(images->fit_uname_cfg),
1275 arch,
1276 IH_TYPE_FPGA,
1277 BOOTSTAGE_ID_FPGA_INIT,
1278 FIT_LOAD_OPTIONAL_NON_ZERO,
1279 &img_data, &img_len);
1280
1281 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1282 uname, img_data, img_len);
1283
1284 if (fit_img_result < 0) {
1285 /* Something went wrong! */
1286 return fit_img_result;
1287 }
1288
1289 if (img_len >= desc_xilinx->size) {
1290 name = "full";
1291 err = fpga_loadbitstream(devnum, (char *)img_data,
1292 img_len, BIT_FULL);
1293 if (err)
1294 err = fpga_load(devnum, (const void *)img_data,
1295 img_len, BIT_FULL);
1296 } else {
1297 name = "partial";
1298 err = fpga_loadbitstream(devnum, (char *)img_data,
1299 img_len, BIT_PARTIAL);
1300 if (err)
1301 err = fpga_load(devnum, (const void *)img_data,
1302 img_len, BIT_PARTIAL);
1303 }
1304
1305 printf(" Programming %s bitstream... ", name);
1306 if (err)
1307 printf("failed\n");
1308 else
1309 printf("OK\n");
1310 break;
1311 default:
1312 printf("The given image format is not supported (corrupt?)\n");
1313 return 1;
1314 }
1315
1316 return 0;
1317}
1318#endif
1319
Karl Apsite84a07db2015-05-21 09:52:48 -04001320int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1321 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1322{
1323 /*
1324 * These variables are used to hold the current image location
1325 * in system memory.
1326 */
1327 ulong tmp_img_addr;
1328 /*
1329 * These two variables are requirements for fit_image_load, but
1330 * their values are not used
1331 */
1332 ulong img_data, img_len;
1333 void *buf;
1334 int loadables_index;
1335 int conf_noffset;
1336 int fit_img_result;
1337 char *uname;
1338
1339 /* Check to see if the images struct has a FIT configuration */
1340 if (!genimg_has_config(images)) {
1341 debug("## FIT configuration was not specified\n");
1342 return 0;
1343 }
1344
1345 /*
1346 * Obtain the os FIT header from the images struct
1347 * copy from dataflash if needed
1348 */
1349 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1350 tmp_img_addr = genimg_get_image(tmp_img_addr);
1351 buf = map_sysmem(tmp_img_addr, 0);
1352 /*
1353 * Check image type. For FIT images get FIT node
1354 * and attempt to locate a generic binary.
1355 */
1356 switch (genimg_get_format(buf)) {
1357 case IMAGE_FORMAT_FIT:
1358 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1359
1360 for (loadables_index = 0;
Thierry Reding9734b972015-08-20 11:45:43 +02001361 fdt_get_string_index(buf, conf_noffset,
Karl Apsite84a07db2015-05-21 09:52:48 -04001362 FIT_LOADABLE_PROP,
1363 loadables_index,
Thierry Reding9734b972015-08-20 11:45:43 +02001364 (const char **)&uname) == 0;
Karl Apsite84a07db2015-05-21 09:52:48 -04001365 loadables_index++)
1366 {
1367 fit_img_result = fit_image_load(images,
1368 tmp_img_addr,
1369 (const char **)&uname,
1370 &(images->fit_uname_cfg), arch,
1371 IH_TYPE_LOADABLE,
1372 BOOTSTAGE_ID_FIT_LOADABLE_START,
1373 FIT_LOAD_OPTIONAL_NON_ZERO,
1374 &img_data, &img_len);
1375 if (fit_img_result < 0) {
1376 /* Something went wrong! */
1377 return fit_img_result;
1378 }
1379 }
1380 break;
1381 default:
1382 printf("The given image format is not supported (corrupt?)\n");
1383 return 1;
1384 }
1385
1386 return 0;
1387}
1388#endif
1389
John Rigbyfca43cc2010-10-13 13:57:35 -06001390#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001391/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001392 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001393 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001394 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1395 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1396 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001397 * boot_get_cmdline() allocates space for kernel command line below
Bin Menga1875592016-02-05 19:30:11 -08001398 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001399 * variable is present its contents is copied to allocated kernel
1400 * command line.
1401 *
1402 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001403 * 0 - success
1404 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001405 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001406int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001407{
1408 char *cmdline;
1409 char *s;
1410
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001411 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001412 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001413
1414 if (cmdline == NULL)
1415 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001416
1417 if ((s = getenv("bootargs")) == NULL)
1418 s = "";
1419
1420 strcpy(cmdline, s);
1421
1422 *cmd_start = (ulong) & cmdline[0];
1423 *cmd_end = *cmd_start + strlen(cmdline);
1424
Stephen Warren712fbcf2011-10-18 11:11:49 +00001425 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001426
Kumar Galae822d7f2008-02-27 21:51:49 -06001427 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001428}
John Rigbyfca43cc2010-10-13 13:57:35 -06001429#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001430
John Rigbyfca43cc2010-10-13 13:57:35 -06001431#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001432/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001433 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001434 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001435 * @kbd: double pointer to board info data
1436 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001437 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001438 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1439 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001440 *
1441 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001442 * 0 - success
1443 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001444 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001445int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001446{
Becky Bruce391fd932008-06-09 20:37:18 -05001447 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001448 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001449 if (*kbd == NULL)
1450 return -1;
1451
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001452 **kbd = *(gd->bd);
1453
Stephen Warren712fbcf2011-10-18 11:11:49 +00001454 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001455
1456#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1457 do_bdinfo(NULL, 0, 0, NULL);
1458#endif
1459
Kumar Galae822d7f2008-02-27 21:51:49 -06001460 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001461}
John Rigbyfca43cc2010-10-13 13:57:35 -06001462#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001463
1464#ifdef CONFIG_LMB
1465int image_setup_linux(bootm_headers_t *images)
1466{
1467 ulong of_size = images->ft_len;
1468 char **of_flat_tree = &images->ft_addr;
1469 ulong *initrd_start = &images->initrd_start;
1470 ulong *initrd_end = &images->initrd_end;
1471 struct lmb *lmb = &images->lmb;
1472 ulong rd_len;
1473 int ret;
1474
1475 if (IMAGE_ENABLE_OF_LIBFDT)
1476 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1477
1478 if (IMAGE_BOOT_GET_CMDLINE) {
1479 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1480 &images->cmdline_end);
1481 if (ret) {
1482 puts("ERROR with allocation of cmdline\n");
1483 return ret;
1484 }
1485 }
1486 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1487 rd_len = images->rd_end - images->rd_start;
1488 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1489 initrd_start, initrd_end);
1490 if (ret)
1491 return ret;
1492 }
1493
1494 if (IMAGE_ENABLE_OF_LIBFDT) {
1495 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1496 if (ret)
1497 return ret;
1498 }
1499
1500 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1501 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1502 if (ret)
1503 return ret;
1504 }
1505
1506 return 0;
1507}
1508#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001509#endif /* !USE_HOSTCC */