blob: 2cdc728e229a4132a01c6f47f88e51c92f048369 [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
Stephen Warren712fbcf2011-10-18 11:11:49 +000032#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Marian Balakowiczfff888a12008-02-21 17:20:19 +010033#include <libfdt.h>
34#include <fdt_support.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010035#endif
36
Andy Fleming20a14a42008-04-02 16:19:07 -050037#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020038#include <u-boot/sha1.h>
Simon Glassa51ec632013-05-16 13:53:22 +000039#include <asm/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000040#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010041
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010042#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020043extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010044#endif
45
46DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010047
Heiko Schocher21d29f72014-05-28 11:33:33 +020048#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren712fbcf2011-10-18 11:11:49 +000049static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010050 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020051#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010052#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010053#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050054#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010055#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010056#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020057
58#ifndef __maybe_unused
59# define __maybe_unused /* unimplemented */
60#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010061#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010062
Simon Glass0ccff502013-02-24 17:33:25 +000063#include <u-boot/crc.h>
64
Simon Glass13d06982013-05-08 08:06:01 +000065#ifndef CONFIG_SYS_BARGSIZE
66#define CONFIG_SYS_BARGSIZE 512
67#endif
68
Mike Frysinger7edb1862010-10-20 07:17:39 -040069static const table_entry_t uimage_arch[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010070 { IH_ARCH_INVALID, NULL, "Invalid ARCH", },
71 { IH_ARCH_ALPHA, "alpha", "Alpha", },
72 { IH_ARCH_ARM, "arm", "ARM", },
73 { IH_ARCH_I386, "x86", "Intel x86", },
74 { IH_ARCH_IA64, "ia64", "IA64", },
75 { IH_ARCH_M68K, "m68k", "M68K", },
76 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
77 { IH_ARCH_MIPS, "mips", "MIPS", },
78 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010079 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070080 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010081 { IH_ARCH_PPC, "ppc", "PowerPC", },
82 { IH_ARCH_S390, "s390", "IBM S390", },
83 { IH_ARCH_SH, "sh", "SuperH", },
84 { IH_ARCH_SPARC, "sparc", "SPARC", },
85 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
86 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
87 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000088 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000089 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000090 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080091 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040092 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060093 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010094 { -1, "", "", },
95};
96
Mike Frysinger7edb1862010-10-20 07:17:39 -040097static const table_entry_t uimage_os[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +010098 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010099 { IH_OS_LINUX, "linux", "Linux", },
100#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
101 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
102#endif
103 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200104 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000105 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100106 { IH_OS_RTEMS, "rtems", "RTEMS", },
107 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800108 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100109#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
110 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100111#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500112#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
113 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
114#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115#ifdef USE_HOSTCC
116 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
117 { IH_OS_DELL, "dell", "Dell", },
118 { IH_OS_ESIX, "esix", "Esix", },
119 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
120 { IH_OS_IRIX, "irix", "Irix", },
121 { IH_OS_NCR, "ncr", "NCR", },
122 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
123 { IH_OS_PSOS, "psos", "pSOS", },
124 { IH_OS_SCO, "sco", "SCO", },
125 { IH_OS_SOLARIS, "solaris", "Solaris", },
126 { IH_OS_SVR4, "svr4", "SVR4", },
127#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100128#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
129 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
130#endif
131
Marian Balakowicz570abb02008-02-29 15:59:59 +0100132 { -1, "", "", },
133};
134
Mike Frysinger7edb1862010-10-20 07:17:39 -0400135static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000136 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100137 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
138 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400139 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400140 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100141 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700142 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000143 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
144 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
145 { IH_TYPE_INVALID, NULL, "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100146 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000147 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000148 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
150 { IH_TYPE_SCRIPT, "script", "Script", },
Charles Manning832472a2014-03-06 15:40:50 +1300151 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100152 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000153 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200154 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200155 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600156 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200157 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600158 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600159 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100160 { -1, "", "", },
161};
162
Mike Frysinger7edb1862010-10-20 07:17:39 -0400163static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100164 { IH_COMP_NONE, "none", "uncompressed", },
165 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
166 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200167 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100168 { IH_COMP_LZO, "lzo", "lzo compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100169 { -1, "", "", },
170};
171
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100172/*****************************************************************************/
173/* Legacy format routines */
174/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000175int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100176{
177 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000178 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100179 image_header_t header;
180
181 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000182 memmove(&header, (char *)hdr, image_get_header_size());
183 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100184
Stephen Warren712fbcf2011-10-18 11:11:49 +0000185 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100186
Stephen Warren712fbcf2011-10-18 11:11:49 +0000187 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100188}
189
Stephen Warren712fbcf2011-10-18 11:11:49 +0000190int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100191{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000192 ulong data = image_get_data(hdr);
193 ulong len = image_get_data_size(hdr);
194 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100195
Stephen Warren712fbcf2011-10-18 11:11:49 +0000196 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100197}
198
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100199/**
200 * image_multi_count - get component (sub-image) count
201 * @hdr: pointer to the header of the multi component image
202 *
203 * image_multi_count() returns number of components in a multi
204 * component image.
205 *
206 * Note: no checking of the image type is done, caller must pass
207 * a valid multi component image.
208 *
209 * returns:
210 * number of components
211 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000212ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100213{
214 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100215 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100216
217 /* get start of the image payload, which in case of multi
218 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000219 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100220
221 /* count non empty slots */
222 for (i = 0; size[i]; ++i)
223 count++;
224
225 return count;
226}
227
228/**
229 * image_multi_getimg - get component data address and size
230 * @hdr: pointer to the header of the multi component image
231 * @idx: index of the requested component
232 * @data: pointer to a ulong variable, will hold component data address
233 * @len: pointer to a ulong variable, will hold component size
234 *
235 * image_multi_getimg() returns size and data address for the requested
236 * component in a multi component image.
237 *
238 * Note: no checking of the image type is done, caller must pass
239 * a valid multi component image.
240 *
241 * returns:
242 * data address and size of the component, if idx is valid
243 * 0 in data and len, if idx is out of range
244 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000245void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100246 ulong *data, ulong *len)
247{
248 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100249 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700250 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100251
252 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000253 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100254
255 /* get start of the image payload, which in case of multi
256 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000257 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100258
259 /* get address of the proper component data start, which means
260 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000261 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100262
263 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000264 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100265 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100266
267 /* go over all indices preceding requested component idx */
268 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700269 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000270 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100271 }
272
273 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700274 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100275 } else {
276 *len = 0;
277 *data = 0;
278 }
279}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100280
Stephen Warren712fbcf2011-10-18 11:11:49 +0000281static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100282{
Heiko Schocher80402f32015-06-29 09:10:46 +0200283 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100284
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285 os = genimg_get_os_name(image_get_os(hdr));
286 arch = genimg_get_arch_name(image_get_arch(hdr));
287 type = genimg_get_type_name(image_get_type(hdr));
288 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100289
Stephen Warren712fbcf2011-10-18 11:11:49 +0000290 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100291}
292
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100293/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200294 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200295 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100296 * @p: pointer to prefix string
297 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200298 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100299 * The routine prints out all header fields followed by the size/offset data
300 * for MULTI/SCRIPT images.
301 *
302 * returns:
303 * no returned results
304 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000305void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100306{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200307 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200308 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200309
Simon Glass1fe7d932013-05-08 08:05:58 +0000310 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000311 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000312 if (IMAGE_ENABLE_TIMESTAMP) {
313 printf("%sCreated: ", p);
314 genimg_print_time((time_t)image_get_time(hdr));
315 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 printf("%sImage Type: ", p);
317 image_print_type(hdr);
318 printf("%sData Size: ", p);
319 genimg_print_size(image_get_data_size(hdr));
320 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
321 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100322
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 if (image_check_type(hdr, IH_TYPE_MULTI) ||
324 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100325 int i;
326 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000327 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100328
Stephen Warren712fbcf2011-10-18 11:11:49 +0000329 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100330 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000331 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100332
Stephen Warren712fbcf2011-10-18 11:11:49 +0000333 printf("%s Image %d: ", p, i);
334 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100335
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100337 /*
338 * the user may need to know offsets
339 * if planning to do something with
340 * multiple files
341 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000342 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100343 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344 }
345 }
346}
347
Marian Balakowicz570abb02008-02-29 15:59:59 +0100348
349#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200350#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100351/**
352 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100353 * @rd_addr: ramdisk image start address
354 * @arch: expected ramdisk architecture
355 * @verify: checksum verification flag
356 *
357 * image_get_ramdisk() returns a pointer to the verified ramdisk image
358 * header. Routine receives image start address and expected architecture
359 * flag. Verification done covers data and header integrity and os/type/arch
360 * fields checking.
361 *
362 * If dataflash support is enabled routine checks for dataflash addresses
363 * and handles required dataflash reads.
364 *
365 * returns:
366 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600367 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100368 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000369static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100370 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100371{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200372 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100373
Stephen Warren712fbcf2011-10-18 11:11:49 +0000374 if (!image_check_magic(rd_hdr)) {
375 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000376 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600377 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100378 }
379
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 if (!image_check_hcrc(rd_hdr)) {
381 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000382 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600383 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100384 }
385
Simon Glass770605e2012-02-13 13:51:18 +0000386 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000387 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100388
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100389 if (verify) {
390 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000391 if (!image_check_dcrc(rd_hdr)) {
392 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000393 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600394 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100395 }
396 puts("OK\n");
397 }
398
Simon Glass770605e2012-02-13 13:51:18 +0000399 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100400
Stephen Warren712fbcf2011-10-18 11:11:49 +0000401 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
402 !image_check_arch(rd_hdr, arch) ||
403 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
404 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100405 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000406 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600407 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100408 }
409
410 return rd_hdr;
411}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200412#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100413#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100414
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100415/*****************************************************************************/
416/* Shared dual-format routines */
417/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100418#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600419ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
420ulong save_addr; /* Default Save Address */
421ulong save_size; /* Default Save Size (in bytes) */
422
423static int on_loadaddr(const char *name, const char *value, enum env_op op,
424 int flags)
425{
426 switch (op) {
427 case env_op_create:
428 case env_op_overwrite:
429 load_addr = simple_strtoul(value, NULL, 16);
430 break;
431 default:
432 break;
433 }
434
435 return 0;
436}
437U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
438
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100439ulong getenv_bootm_low(void)
440{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000441 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100442 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000443 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100444 return tmp;
445 }
446
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200447#if defined(CONFIG_SYS_SDRAM_BASE)
448 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100449#elif defined(CONFIG_ARM)
450 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100451#else
452 return 0;
453#endif
454}
455
Becky Bruce391fd932008-06-09 20:37:18 -0500456phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100457{
Matthew McClintockc519fac2010-07-08 10:11:08 -0500458 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000459 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100460 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000461 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100462 return tmp;
463 }
Matthew McClintockc519fac2010-07-08 10:11:08 -0500464 s = getenv("bootm_low");
465 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000466 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500467 else
468 tmp = 0;
469
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100470
Matt Porterc777efe2015-05-05 15:00:22 -0400471#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
Matthew McClintockc519fac2010-07-08 10:11:08 -0500472 return gd->bd->bi_dram[0].size - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100473#else
Matthew McClintockc519fac2010-07-08 10:11:08 -0500474 return gd->bd->bi_memsize - tmp;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100475#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100476}
477
Grant Likelyc3624e62011-03-28 09:58:43 +0000478phys_size_t getenv_bootm_mapsize(void)
479{
480 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000481 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000482 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000483 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000484 return tmp;
485 }
486
487#if defined(CONFIG_SYS_BOOTMAPSZ)
488 return CONFIG_SYS_BOOTMAPSZ;
489#else
490 return getenv_bootm_size();
491#endif
492}
493
Stephen Warren712fbcf2011-10-18 11:11:49 +0000494void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100495{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400496 if (to == from)
497 return;
498
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100499#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800500 if (to > from) {
501 from += len;
502 to += len;
503 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100504 while (len > 0) {
505 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000506 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800507 if (to > from) {
508 to -= tail;
509 from -= tail;
510 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000511 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800512 if (to < from) {
513 to += tail;
514 from += tail;
515 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100516 len -= tail;
517 }
518#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000519 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100520#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
521}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100522#endif /* !USE_HOSTCC */
523
Stephen Warren712fbcf2011-10-18 11:11:49 +0000524void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100525{
526#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000527 printf("%d Bytes = ", size);
528 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100529#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000530 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100531 size, (double)size / 1.024e3,
532 (double)size / 1.048576e6);
533#endif
534}
535
Simon Glass859e92b2013-05-07 06:11:51 +0000536#if IMAGE_ENABLE_TIMESTAMP
537void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100538{
539#ifndef USE_HOSTCC
540 struct rtc_time tm;
541
Simon Glass9f9276c2015-04-20 12:37:18 -0600542 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000543 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100544 tm.tm_year, tm.tm_mon, tm.tm_mday,
545 tm.tm_hour, tm.tm_min, tm.tm_sec);
546#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000547 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100548#endif
549}
Simon Glass859e92b2013-05-07 06:11:51 +0000550#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100551
Simon Glass5b9d44d2015-06-23 15:38:25 -0600552const table_entry_t *get_table_entry(const table_entry_t *table, int id)
553{
554 for (; table->id >= 0; ++table) {
555 if (table->id == id)
556 return table;
557 }
558 return NULL;
559}
560
Marian Balakowicz570abb02008-02-29 15:59:59 +0100561/**
562 * get_table_entry_name - translate entry id to long name
563 * @table: pointer to a translation table for entries of a specific type
564 * @msg: message to be returned when translation fails
565 * @id: entry id to be translated
566 *
567 * get_table_entry_name() will go over translation table trying to find
568 * entry that matches given id. If matching entry is found, its long
569 * name is returned to the caller.
570 *
571 * returns:
572 * long entry name if translation succeeds
573 * msg otherwise
574 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400575char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100576{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600577 table = get_table_entry(table, id);
578 if (!table)
579 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200580#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600581 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500582#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600583 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500584#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100585}
586
Stephen Warren712fbcf2011-10-18 11:11:49 +0000587const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100588{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000589 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100590}
591
Stephen Warren712fbcf2011-10-18 11:11:49 +0000592const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100593{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000594 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
595 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100596}
597
Stephen Warren712fbcf2011-10-18 11:11:49 +0000598const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100599{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000600 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100601}
602
Simon Glass5b9d44d2015-06-23 15:38:25 -0600603const char *genimg_get_type_short_name(uint8_t type)
604{
605 const table_entry_t *table;
606
607 table = get_table_entry(uimage_type, type);
608 if (!table)
609 return "unknown";
610#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
611 return table->sname;
612#else
613 return table->sname + gd->reloc_off;
614#endif
615}
616
Stephen Warren712fbcf2011-10-18 11:11:49 +0000617const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100618{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000619 return (get_table_entry_name(uimage_comp, "Unknown Compression",
620 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100621}
622
623/**
624 * get_table_entry_id - translate short entry name to id
625 * @table: pointer to a translation table for entries of a specific type
626 * @table_name: to be used in case of error
627 * @name: entry short name to be translated
628 *
629 * get_table_entry_id() will go over translation table trying to find
630 * entry that matches given short name. If matching entry is found,
631 * its id returned to the caller.
632 *
633 * returns:
634 * entry id if translation succeeds
635 * -1 otherwise
636 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400637int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100638 const char *table_name, const char *name)
639{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400640 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100641
642 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200643#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600644 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200645#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600646 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500647#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100648 return (t->id);
649 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000650 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600651
652 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100653}
654
Stephen Warren712fbcf2011-10-18 11:11:49 +0000655int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100656{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000657 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100658}
659
Stephen Warren712fbcf2011-10-18 11:11:49 +0000660int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100661{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000662 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100663}
664
Stephen Warren712fbcf2011-10-18 11:11:49 +0000665int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100666{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000667 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100668}
669
Stephen Warren712fbcf2011-10-18 11:11:49 +0000670int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100671{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000672 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100673}
674
675#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100676/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700677 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
678 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700679 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700680 * @fit_uname_config: double pointer to a char, will hold pointer to a
681 * configuration unit name
682 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
683 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700684 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700685 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700686 * which is normally the first argv of bootm/bootz
687 *
688 * returns:
689 * kernel start address
690 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700691ulong genimg_get_kernel_addr_fit(char * const img_addr,
692 const char **fit_uname_config,
693 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700694{
Bryan Wu0f641402014-07-31 17:39:58 -0700695 ulong kernel_addr;
696
697 /* find out kernel image address */
698 if (!img_addr) {
699 kernel_addr = load_addr;
700 debug("* kernel: default image load address = 0x%08lx\n",
701 load_addr);
702#if defined(CONFIG_FIT)
703 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700704 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700705 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700706 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700707 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700708 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700709 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700710 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700711#endif
712 } else {
713 kernel_addr = simple_strtoul(img_addr, NULL, 16);
714 debug("* kernel: cmdline image address = 0x%08lx\n",
715 kernel_addr);
716 }
717
718 return kernel_addr;
719}
720
721/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700722 * genimg_get_kernel_addr() is the simple version of
723 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
724 */
725ulong genimg_get_kernel_addr(char * const img_addr)
726{
727 const char *fit_uname_config = NULL;
728 const char *fit_uname_kernel = NULL;
729
730 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
731 &fit_uname_kernel);
732}
733
734/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100735 * genimg_get_format - get image format type
736 * @img_addr: image start address
737 *
738 * genimg_get_format() checks whether provided address points to a valid
739 * legacy or FIT image.
740 *
741 * New uImage format and FDT blob are based on a libfdt. FDT blob
742 * may be passed directly or embedded in a FIT image. In both situations
743 * genimg_get_format() must be able to dectect libfdt header.
744 *
745 * returns:
746 * image format type or IMAGE_FORMAT_INVALID if no image is present
747 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000748int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100749{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200750#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200751 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100752
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200753 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100754 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200755 return IMAGE_FORMAT_LEGACY;
756#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100757#if defined(CONFIG_FIT) || defined(CONFIG_OF_LIBFDT)
Heiko Schocher21d29f72014-05-28 11:33:33 +0200758 if (fdt_check_header(img_addr) == 0)
759 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500760#endif
761#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200762 if (android_image_check_header(img_addr) == 0)
763 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100764#endif
765
Heiko Schocher21d29f72014-05-28 11:33:33 +0200766 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100767}
768
769/**
770 * genimg_get_image - get image from special storage (if necessary)
771 * @img_addr: image start address
772 *
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200773 * genimg_get_image() checks if provided image start address is located
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100774 * in a dataflash storage. If so, image is moved to a system RAM memory.
775 *
776 * returns:
777 * image start address after possible relocation from special storage
778 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000779ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100780{
781 ulong ram_addr = img_addr;
782
783#ifdef CONFIG_HAS_DATAFLASH
784 ulong h_size, d_size;
785
Stephen Warren712fbcf2011-10-18 11:11:49 +0000786 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000787 void *buf;
788
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100789 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200790 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100791
792 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000793 h_size = image_get_header_size();
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100794#if defined(CONFIG_FIT)
795 if (sizeof(struct fdt_header) > h_size)
796 h_size = sizeof(struct fdt_header);
797#endif
798
799 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000800 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100801 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
802
Simon Glass35e7b0f2013-05-07 06:12:03 +0000803 buf = map_sysmem(ram_addr, 0);
804 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100805
806 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000807 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200808#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100809 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000810 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000811 debug(" Legacy format image found at 0x%08lx, "
812 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100813 ram_addr, d_size);
814 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200815#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100816#if defined(CONFIG_FIT)
817 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000818 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000819 debug(" FIT/FDT format image found at 0x%08lx, "
820 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100821 ram_addr, d_size);
822 break;
823#endif
824 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000825 printf(" No valid image found at 0x%08lx\n",
826 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100827 return ram_addr;
828 }
829
830 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000831 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100832 "%08lx to RAM address %08lx\n", img_addr + h_size,
833 ram_addr + h_size);
834
Stephen Warren712fbcf2011-10-18 11:11:49 +0000835 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000836 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100837
838 }
839#endif /* CONFIG_HAS_DATAFLASH */
840
841 return ram_addr;
842}
843
844/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100845 * fit_has_config - check if there is a valid FIT configuration
846 * @images: pointer to the bootm command headers structure
847 *
848 * fit_has_config() checks if there is a FIT configuration in use
849 * (if FTI support is present).
850 *
851 * returns:
852 * 0, no FIT support or no configuration found
853 * 1, configuration found
854 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000855int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100856{
857#if defined(CONFIG_FIT)
858 if (images->fit_uname_cfg)
859 return 1;
860#endif
861 return 0;
862}
863
864/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100865 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100866 * @argc: command argument count
867 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100868 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100869 * @arch: expected ramdisk architecture
870 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
871 * @rd_end: pointer to a ulong variable, will hold ramdisk end
872 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100873 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100874 * Curently supported are the following ramdisk sources:
875 * - multicomponent kernel/ramdisk image,
876 * - commandline provided address of decicated ramdisk image.
877 *
878 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100879 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100880 * rd_start and rd_end are set to ramdisk start/end addresses if
881 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100882 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500883 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100884 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100885 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000886int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100887 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100888{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100889 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100890 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200891#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200892 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200893#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +0000894 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200895#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000896 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200897#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100898#if defined(CONFIG_FIT)
Simon Glassf320a4d2013-07-10 23:08:10 -0700899 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100900 const char *fit_uname_ramdisk = NULL;
901 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100902 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100903#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700904 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100905
Marian Balakowiczc8779642008-03-12 10:12:37 +0100906 *rd_start = 0;
907 *rd_end = 0;
908
Simon Glass983c72f2013-06-11 11:14:46 -0700909 if (argc >= 2)
910 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -0500911
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100912 /*
913 * Look for a '-' which indicates to ignore the
914 * ramdisk argument
915 */
Simon Glass983c72f2013-06-11 11:14:46 -0700916 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000917 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100918 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700919 } else if (select || genimg_has_config(images)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100920#if defined(CONFIG_FIT)
Simon Glass983c72f2013-06-11 11:14:46 -0700921 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100922 /*
923 * If the init ramdisk comes from the FIT image and
924 * the FIT image address is omitted in the command
925 * line argument, try to use os FIT image address or
926 * default load address.
927 */
928 if (images->fit_uname_os)
929 default_addr = (ulong)images->fit_hdr_os;
930 else
931 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100932
Simon Glass983c72f2013-06-11 11:14:46 -0700933 if (fit_parse_conf(select, default_addr,
934 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000935 debug("* ramdisk: config '%s' from image at "
936 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100937 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700938 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100939 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000940 debug("* ramdisk: subimage '%s' from image at "
941 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100942 fit_uname_ramdisk, rd_addr);
943 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100944#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100945 {
Simon Glass983c72f2013-06-11 11:14:46 -0700946 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000947 debug("* ramdisk: cmdline image address = "
948 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100949 rd_addr);
950 }
951#if defined(CONFIG_FIT)
952 } else {
953 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +0000954 * command argument. If the property is not defined,
955 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100956 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000957 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +0000958 rd_noffset = fit_get_node_from_config(images,
959 FIT_RAMDISK_PROP, rd_addr);
960 if (rd_noffset == -ENOLINK)
Peter Tyser41266c92008-08-05 10:51:57 -0500961 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +0000962 else if (rd_noffset < 0)
963 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100964 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100965#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100966
967 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000968 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100969
970 /*
971 * Check if there is an initrd image at the
972 * address provided in the second bootm argument
973 * check image type, for FIT images get FIT node.
974 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000975 buf = map_sysmem(rd_addr, 0);
976 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200977#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100978 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000979 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +0100980 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100981
Simon Glass770605e2012-02-13 13:51:18 +0000982 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000983 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100984 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100985
Marian Balakowiczc8779642008-03-12 10:12:37 +0100986 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -0600987 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -0600988
Stephen Warren712fbcf2011-10-18 11:11:49 +0000989 rd_data = image_get_data(rd_hdr);
990 rd_len = image_get_data_size(rd_hdr);
991 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100992 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200993#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100994#if defined(CONFIG_FIT)
995 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -0600996 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +0000997 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -0700998 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +0000999 IH_TYPE_RAMDISK,
1000 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001001 FIT_LOAD_OPTIONAL_NON_ZERO,
1002 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001003 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001004 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001005
Simon Glassa51ec632013-05-16 13:53:22 +00001006 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001007 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001008 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001009 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001010#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001011#ifdef CONFIG_ANDROID_BOOT_IMAGE
1012 case IMAGE_FORMAT_ANDROID:
1013 android_image_get_ramdisk((void *)images->os.start,
1014 &rd_data, &rd_len);
1015 break;
1016#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001017 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001018#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001019 end = NULL;
1020 if (select)
1021 end = strchr(select, ':');
1022 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001023 rd_len = simple_strtoul(++end, NULL, 16);
1024 rd_data = rd_addr;
1025 } else
1026#endif
1027 {
1028 puts("Wrong Ramdisk Image Format\n");
1029 rd_data = rd_len = rd_load = 0;
1030 return 1;
1031 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001032 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001033 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001034 image_check_type(&images->legacy_hdr_os_copy,
1035 IH_TYPE_MULTI)) {
1036
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001037 /*
1038 * Now check if we have a legacy mult-component image,
1039 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001040 */
Simon Glass770605e2012-02-13 13:51:18 +00001041 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001042 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001043 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001044 (ulong)images->legacy_hdr_os);
1045
Stephen Warren712fbcf2011-10-18 11:11:49 +00001046 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001047 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001048 /*
1049 * no initrd image
1050 */
Simon Glass770605e2012-02-13 13:51:18 +00001051 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001052 rd_len = rd_data = 0;
1053 }
1054
1055 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001056 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001057 } else {
1058 *rd_start = rd_data;
1059 *rd_end = rd_data + rd_len;
1060 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001061 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001062 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001063
1064 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001065}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001066
John Rigbyfca43cc2010-10-13 13:57:35 -06001067#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001068/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001069 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001070 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001071 * @rd_data: ramdisk data start address
1072 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001073 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1074 * start address (after possible relocation)
1075 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1076 * end address (after possible relocation)
1077 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001078 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001079 * variable and if requested ramdisk data is moved to a specified location.
1080 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001081 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1082 * start/end addresses if ramdisk image start and len were provided,
1083 * otherwise set initrd_start and initrd_end set to zeros.
1084 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001085 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001086 * 0 - success
1087 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001088 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001089int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001090 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001091{
1092 char *s;
1093 ulong initrd_high;
1094 int initrd_copy_to_ram = 1;
1095
Stephen Warren712fbcf2011-10-18 11:11:49 +00001096 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001097 /* a value of "no" or a similar string will act like 0,
1098 * turning the "load high" feature off. This is intentional.
1099 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001100 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001101 if (initrd_high == ~0)
1102 initrd_copy_to_ram = 0;
1103 } else {
1104 /* not set, no restrictions to load high */
1105 initrd_high = ~0;
1106 }
1107
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001108
1109#ifdef CONFIG_LOGBUFFER
1110 /* Prevent initrd from overwriting logbuffer */
1111 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1112#endif
1113
Stephen Warren712fbcf2011-10-18 11:11:49 +00001114 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001115 initrd_high, initrd_copy_to_ram);
1116
1117 if (rd_data) {
1118 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001119 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001120 *initrd_start = rd_data;
1121 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001122 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001123 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001124 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001125 *initrd_start = (ulong)lmb_alloc_base(lmb,
1126 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001127 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001128 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1129 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001130
Kumar Galae822d7f2008-02-27 21:51:49 -06001131 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001132 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001133 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001134 }
Simon Glass770605e2012-02-13 13:51:18 +00001135 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001136
1137 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001138 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001139 *initrd_start, *initrd_end);
1140
Stephen Warren712fbcf2011-10-18 11:11:49 +00001141 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001142 (void *)rd_data, rd_len, CHUNKSZ);
1143
Kumar Gala3b200112011-12-07 04:42:58 +00001144#ifdef CONFIG_MP
1145 /*
1146 * Ensure the image is flushed to memory to handle
1147 * AMP boot scenarios in which we might not be
1148 * HW cache coherent
1149 */
1150 flush_cache((unsigned long)*initrd_start, rd_len);
1151#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001152 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001153 }
1154 } else {
1155 *initrd_start = 0;
1156 *initrd_end = 0;
1157 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001158 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001159 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001160
Kumar Galae822d7f2008-02-27 21:51:49 -06001161 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001162
Kumar Galae822d7f2008-02-27 21:51:49 -06001163error:
1164 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001165}
John Rigbyfca43cc2010-10-13 13:57:35 -06001166#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001167
Simon Glass90268b82014-10-19 21:11:24 -06001168int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1169 ulong *setup_start, ulong *setup_len)
1170{
1171#if defined(CONFIG_FIT)
1172 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1173#else
1174 return -ENOENT;
1175#endif
1176}
1177
Karl Apsite84a07db2015-05-21 09:52:48 -04001178#if defined(CONFIG_FIT)
1179int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1180 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1181{
1182 /*
1183 * These variables are used to hold the current image location
1184 * in system memory.
1185 */
1186 ulong tmp_img_addr;
1187 /*
1188 * These two variables are requirements for fit_image_load, but
1189 * their values are not used
1190 */
1191 ulong img_data, img_len;
1192 void *buf;
1193 int loadables_index;
1194 int conf_noffset;
1195 int fit_img_result;
1196 char *uname;
1197
1198 /* Check to see if the images struct has a FIT configuration */
1199 if (!genimg_has_config(images)) {
1200 debug("## FIT configuration was not specified\n");
1201 return 0;
1202 }
1203
1204 /*
1205 * Obtain the os FIT header from the images struct
1206 * copy from dataflash if needed
1207 */
1208 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1209 tmp_img_addr = genimg_get_image(tmp_img_addr);
1210 buf = map_sysmem(tmp_img_addr, 0);
1211 /*
1212 * Check image type. For FIT images get FIT node
1213 * and attempt to locate a generic binary.
1214 */
1215 switch (genimg_get_format(buf)) {
1216 case IMAGE_FORMAT_FIT:
1217 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1218
1219 for (loadables_index = 0;
Thierry Reding9734b972015-08-20 11:45:43 +02001220 fdt_get_string_index(buf, conf_noffset,
Karl Apsite84a07db2015-05-21 09:52:48 -04001221 FIT_LOADABLE_PROP,
1222 loadables_index,
Thierry Reding9734b972015-08-20 11:45:43 +02001223 (const char **)&uname) == 0;
Karl Apsite84a07db2015-05-21 09:52:48 -04001224 loadables_index++)
1225 {
1226 fit_img_result = fit_image_load(images,
1227 tmp_img_addr,
1228 (const char **)&uname,
1229 &(images->fit_uname_cfg), arch,
1230 IH_TYPE_LOADABLE,
1231 BOOTSTAGE_ID_FIT_LOADABLE_START,
1232 FIT_LOAD_OPTIONAL_NON_ZERO,
1233 &img_data, &img_len);
1234 if (fit_img_result < 0) {
1235 /* Something went wrong! */
1236 return fit_img_result;
1237 }
1238 }
1239 break;
1240 default:
1241 printf("The given image format is not supported (corrupt?)\n");
1242 return 1;
1243 }
1244
1245 return 0;
1246}
1247#endif
1248
John Rigbyfca43cc2010-10-13 13:57:35 -06001249#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001250/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001251 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001252 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001253 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1254 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1255 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001256 * boot_get_cmdline() allocates space for kernel command line below
Grant Likely590d3ca2011-03-28 09:58:34 +00001257 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001258 * variable is present its contents is copied to allocated kernel
1259 * command line.
1260 *
1261 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001262 * 0 - success
1263 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001264 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001265int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001266{
1267 char *cmdline;
1268 char *s;
1269
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001270 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001271 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001272
1273 if (cmdline == NULL)
1274 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001275
1276 if ((s = getenv("bootargs")) == NULL)
1277 s = "";
1278
1279 strcpy(cmdline, s);
1280
1281 *cmd_start = (ulong) & cmdline[0];
1282 *cmd_end = *cmd_start + strlen(cmdline);
1283
Stephen Warren712fbcf2011-10-18 11:11:49 +00001284 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001285
Kumar Galae822d7f2008-02-27 21:51:49 -06001286 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001287}
John Rigbyfca43cc2010-10-13 13:57:35 -06001288#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001289
John Rigbyfca43cc2010-10-13 13:57:35 -06001290#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001291/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001292 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001293 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001294 * @kbd: double pointer to board info data
1295 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001296 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001297 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1298 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001299 *
1300 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001301 * 0 - success
1302 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001303 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001304int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001305{
Becky Bruce391fd932008-06-09 20:37:18 -05001306 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001307 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001308 if (*kbd == NULL)
1309 return -1;
1310
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001311 **kbd = *(gd->bd);
1312
Stephen Warren712fbcf2011-10-18 11:11:49 +00001313 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001314
1315#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1316 do_bdinfo(NULL, 0, 0, NULL);
1317#endif
1318
Kumar Galae822d7f2008-02-27 21:51:49 -06001319 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001320}
John Rigbyfca43cc2010-10-13 13:57:35 -06001321#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001322
1323#ifdef CONFIG_LMB
1324int image_setup_linux(bootm_headers_t *images)
1325{
1326 ulong of_size = images->ft_len;
1327 char **of_flat_tree = &images->ft_addr;
1328 ulong *initrd_start = &images->initrd_start;
1329 ulong *initrd_end = &images->initrd_end;
1330 struct lmb *lmb = &images->lmb;
1331 ulong rd_len;
1332 int ret;
1333
1334 if (IMAGE_ENABLE_OF_LIBFDT)
1335 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1336
1337 if (IMAGE_BOOT_GET_CMDLINE) {
1338 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1339 &images->cmdline_end);
1340 if (ret) {
1341 puts("ERROR with allocation of cmdline\n");
1342 return ret;
1343 }
1344 }
1345 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1346 rd_len = images->rd_end - images->rd_start;
1347 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1348 initrd_start, initrd_end);
1349 if (ret)
1350 return ret;
1351 }
1352
1353 if (IMAGE_ENABLE_OF_LIBFDT) {
1354 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1355 if (ret)
1356 return ret;
1357 }
1358
1359 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1360 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1361 if (ret)
1362 return ret;
1363 }
1364
1365 return 0;
1366}
1367#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001368#endif /* !USE_HOSTCC */