blob: ec78b7eab33663d7612c23c51370151ebf990c1c [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>
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 Warrenb9b50e82011-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" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600160 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000161 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200162 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Michal Simeked0cea72016-05-17 13:58:44 +0200163 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100164 { -1, "", "", },
165};
166
Mike Frysinger7edb1862010-10-20 07:17:39 -0400167static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100168 { IH_COMP_NONE, "none", "uncompressed", },
169 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
170 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200171 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100172 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700173 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100174 { -1, "", "", },
175};
176
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100177/*****************************************************************************/
178/* Legacy format routines */
179/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000180int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100181{
182 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000183 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100184 image_header_t header;
185
186 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000187 memmove(&header, (char *)hdr, image_get_header_size());
188 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100189
Stephen Warren712fbcf2011-10-18 11:11:49 +0000190 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100191
Stephen Warren712fbcf2011-10-18 11:11:49 +0000192 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100193}
194
Stephen Warren712fbcf2011-10-18 11:11:49 +0000195int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100196{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000197 ulong data = image_get_data(hdr);
198 ulong len = image_get_data_size(hdr);
199 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100200
Stephen Warren712fbcf2011-10-18 11:11:49 +0000201 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100202}
203
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100204/**
205 * image_multi_count - get component (sub-image) count
206 * @hdr: pointer to the header of the multi component image
207 *
208 * image_multi_count() returns number of components in a multi
209 * component image.
210 *
211 * Note: no checking of the image type is done, caller must pass
212 * a valid multi component image.
213 *
214 * returns:
215 * number of components
216 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000217ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100218{
219 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100220 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100221
222 /* get start of the image payload, which in case of multi
223 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000224 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100225
226 /* count non empty slots */
227 for (i = 0; size[i]; ++i)
228 count++;
229
230 return count;
231}
232
233/**
234 * image_multi_getimg - get component data address and size
235 * @hdr: pointer to the header of the multi component image
236 * @idx: index of the requested component
237 * @data: pointer to a ulong variable, will hold component data address
238 * @len: pointer to a ulong variable, will hold component size
239 *
240 * image_multi_getimg() returns size and data address for the requested
241 * component in a multi component image.
242 *
243 * Note: no checking of the image type is done, caller must pass
244 * a valid multi component image.
245 *
246 * returns:
247 * data address and size of the component, if idx is valid
248 * 0 in data and len, if idx is out of range
249 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000250void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100251 ulong *data, ulong *len)
252{
253 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100254 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700255 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100256
257 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000258 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100259
260 /* get start of the image payload, which in case of multi
261 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000262 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100263
264 /* get address of the proper component data start, which means
265 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000266 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100267
268 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000269 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100270 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100271
272 /* go over all indices preceding requested component idx */
273 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700274 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000275 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100276 }
277
278 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700279 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100280 } else {
281 *len = 0;
282 *data = 0;
283 }
284}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100285
Stephen Warren712fbcf2011-10-18 11:11:49 +0000286static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100287{
Heiko Schocher80402f32015-06-29 09:10:46 +0200288 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100289
Stephen Warren712fbcf2011-10-18 11:11:49 +0000290 os = genimg_get_os_name(image_get_os(hdr));
291 arch = genimg_get_arch_name(image_get_arch(hdr));
292 type = genimg_get_type_name(image_get_type(hdr));
293 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100294
Stephen Warren712fbcf2011-10-18 11:11:49 +0000295 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100296}
297
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100298/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200299 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200300 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100301 * @p: pointer to prefix string
302 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200303 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100304 * The routine prints out all header fields followed by the size/offset data
305 * for MULTI/SCRIPT images.
306 *
307 * returns:
308 * no returned results
309 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100311{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200312 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200313 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200314
Simon Glass1fe7d932013-05-08 08:05:58 +0000315 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000317 if (IMAGE_ENABLE_TIMESTAMP) {
318 printf("%sCreated: ", p);
319 genimg_print_time((time_t)image_get_time(hdr));
320 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000321 printf("%sImage Type: ", p);
322 image_print_type(hdr);
323 printf("%sData Size: ", p);
324 genimg_print_size(image_get_data_size(hdr));
325 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
326 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100327
Stephen Warren712fbcf2011-10-18 11:11:49 +0000328 if (image_check_type(hdr, IH_TYPE_MULTI) ||
329 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100330 int i;
331 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000332 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100333
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100335 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100337
Stephen Warren712fbcf2011-10-18 11:11:49 +0000338 printf("%s Image %d: ", p, i);
339 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100340
Stephen Warren712fbcf2011-10-18 11:11:49 +0000341 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100342 /*
343 * the user may need to know offsets
344 * if planning to do something with
345 * multiple files
346 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000347 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100348 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100349 }
350 }
351}
352
Marian Balakowicz570abb02008-02-29 15:59:59 +0100353
354#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200355#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100356/**
357 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100358 * @rd_addr: ramdisk image start address
359 * @arch: expected ramdisk architecture
360 * @verify: checksum verification flag
361 *
362 * image_get_ramdisk() returns a pointer to the verified ramdisk image
363 * header. Routine receives image start address and expected architecture
364 * flag. Verification done covers data and header integrity and os/type/arch
365 * fields checking.
366 *
367 * If dataflash support is enabled routine checks for dataflash addresses
368 * and handles required dataflash reads.
369 *
370 * returns:
371 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600372 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100373 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000374static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100375 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100376{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200377 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100378
Stephen Warren712fbcf2011-10-18 11:11:49 +0000379 if (!image_check_magic(rd_hdr)) {
380 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000381 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600382 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100383 }
384
Stephen Warren712fbcf2011-10-18 11:11:49 +0000385 if (!image_check_hcrc(rd_hdr)) {
386 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000387 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600388 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100389 }
390
Simon Glass770605e2012-02-13 13:51:18 +0000391 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000392 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100393
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100394 if (verify) {
395 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000396 if (!image_check_dcrc(rd_hdr)) {
397 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000398 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600399 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100400 }
401 puts("OK\n");
402 }
403
Simon Glass770605e2012-02-13 13:51:18 +0000404 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100405
Stephen Warren712fbcf2011-10-18 11:11:49 +0000406 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
407 !image_check_arch(rd_hdr, arch) ||
408 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
409 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100410 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000411 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600412 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100413 }
414
415 return rd_hdr;
416}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200417#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100418#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100419
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100420/*****************************************************************************/
421/* Shared dual-format routines */
422/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100423#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600424ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
425ulong save_addr; /* Default Save Address */
426ulong save_size; /* Default Save Size (in bytes) */
427
428static int on_loadaddr(const char *name, const char *value, enum env_op op,
429 int flags)
430{
431 switch (op) {
432 case env_op_create:
433 case env_op_overwrite:
434 load_addr = simple_strtoul(value, NULL, 16);
435 break;
436 default:
437 break;
438 }
439
440 return 0;
441}
442U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
443
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100444ulong getenv_bootm_low(void)
445{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000446 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100447 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000448 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100449 return tmp;
450 }
451
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200452#if defined(CONFIG_SYS_SDRAM_BASE)
453 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100454#elif defined(CONFIG_ARM)
455 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100456#else
457 return 0;
458#endif
459}
460
Becky Bruce391fd932008-06-09 20:37:18 -0500461phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100462{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900463 phys_size_t tmp, size;
464 phys_addr_t start;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000465 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100466 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000467 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100468 return tmp;
469 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900470
471#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
472 start = gd->bd->bi_dram[0].start;
473 size = gd->bd->bi_dram[0].size;
474#else
475 start = gd->bd->bi_memstart;
476 size = gd->bd->bi_memsize;
477#endif
478
Matthew McClintockc519fac2010-07-08 10:11:08 -0500479 s = getenv("bootm_low");
480 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000481 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500482 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900483 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500484
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900485 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100486}
487
Grant Likelyc3624e62011-03-28 09:58:43 +0000488phys_size_t getenv_bootm_mapsize(void)
489{
490 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000491 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000492 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000493 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000494 return tmp;
495 }
496
497#if defined(CONFIG_SYS_BOOTMAPSZ)
498 return CONFIG_SYS_BOOTMAPSZ;
499#else
500 return getenv_bootm_size();
501#endif
502}
503
Stephen Warren712fbcf2011-10-18 11:11:49 +0000504void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100505{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400506 if (to == from)
507 return;
508
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100509#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800510 if (to > from) {
511 from += len;
512 to += len;
513 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100514 while (len > 0) {
515 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000516 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800517 if (to > from) {
518 to -= tail;
519 from -= tail;
520 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000521 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800522 if (to < from) {
523 to += tail;
524 from += tail;
525 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100526 len -= tail;
527 }
528#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000529 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100530#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
531}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100532#endif /* !USE_HOSTCC */
533
Stephen Warren712fbcf2011-10-18 11:11:49 +0000534void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100535{
536#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000537 printf("%d Bytes = ", size);
538 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100539#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000540 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100541 size, (double)size / 1.024e3,
542 (double)size / 1.048576e6);
543#endif
544}
545
Simon Glass859e92b2013-05-07 06:11:51 +0000546#if IMAGE_ENABLE_TIMESTAMP
547void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100548{
549#ifndef USE_HOSTCC
550 struct rtc_time tm;
551
Simon Glass9f9276c2015-04-20 12:37:18 -0600552 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000553 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100554 tm.tm_year, tm.tm_mon, tm.tm_mday,
555 tm.tm_hour, tm.tm_min, tm.tm_sec);
556#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000557 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100558#endif
559}
Simon Glass859e92b2013-05-07 06:11:51 +0000560#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100561
Simon Glass5b9d44d2015-06-23 15:38:25 -0600562const table_entry_t *get_table_entry(const table_entry_t *table, int id)
563{
564 for (; table->id >= 0; ++table) {
565 if (table->id == id)
566 return table;
567 }
568 return NULL;
569}
570
Marian Balakowicz570abb02008-02-29 15:59:59 +0100571/**
572 * get_table_entry_name - translate entry id to long name
573 * @table: pointer to a translation table for entries of a specific type
574 * @msg: message to be returned when translation fails
575 * @id: entry id to be translated
576 *
577 * get_table_entry_name() will go over translation table trying to find
578 * entry that matches given id. If matching entry is found, its long
579 * name is returned to the caller.
580 *
581 * returns:
582 * long entry name if translation succeeds
583 * msg otherwise
584 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400585char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100586{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600587 table = get_table_entry(table, id);
588 if (!table)
589 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200590#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600591 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500592#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600593 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500594#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100595}
596
Stephen Warren712fbcf2011-10-18 11:11:49 +0000597const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100598{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000599 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100600}
601
Stephen Warren712fbcf2011-10-18 11:11:49 +0000602const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100603{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000604 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
605 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100606}
607
Stephen Warren712fbcf2011-10-18 11:11:49 +0000608const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100609{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000610 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100611}
612
Simon Glasscef2e512016-02-22 22:55:50 -0700613static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600614{
Simon Glasscef2e512016-02-22 22:55:50 -0700615 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600616 if (!table)
617 return "unknown";
618#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
619 return table->sname;
620#else
621 return table->sname + gd->reloc_off;
622#endif
623}
624
Simon Glasscef2e512016-02-22 22:55:50 -0700625const char *genimg_get_type_short_name(uint8_t type)
626{
627 return genimg_get_short_name(uimage_type, type);
628}
629
Stephen Warren712fbcf2011-10-18 11:11:49 +0000630const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100631{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000632 return (get_table_entry_name(uimage_comp, "Unknown Compression",
633 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100634}
635
Simon Glasscef2e512016-02-22 22:55:50 -0700636const char *genimg_get_comp_short_name(uint8_t comp)
637{
638 return genimg_get_short_name(uimage_comp, comp);
639}
640
641const char *genimg_get_os_short_name(uint8_t os)
642{
643 return genimg_get_short_name(uimage_os, os);
644}
645
646const char *genimg_get_arch_short_name(uint8_t arch)
647{
648 return genimg_get_short_name(uimage_arch, arch);
649}
650
Marian Balakowicz570abb02008-02-29 15:59:59 +0100651/**
652 * get_table_entry_id - translate short entry name to id
653 * @table: pointer to a translation table for entries of a specific type
654 * @table_name: to be used in case of error
655 * @name: entry short name to be translated
656 *
657 * get_table_entry_id() will go over translation table trying to find
658 * entry that matches given short name. If matching entry is found,
659 * its id returned to the caller.
660 *
661 * returns:
662 * entry id if translation succeeds
663 * -1 otherwise
664 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400665int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100666 const char *table_name, const char *name)
667{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400668 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100669
670 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200671#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600672 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200673#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600674 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500675#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100676 return (t->id);
677 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000678 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600679
680 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100681}
682
Stephen Warren712fbcf2011-10-18 11:11:49 +0000683int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100684{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000685 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100686}
687
Stephen Warren712fbcf2011-10-18 11:11:49 +0000688int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100689{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000690 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100691}
692
Stephen Warren712fbcf2011-10-18 11:11:49 +0000693int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100694{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000695 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100696}
697
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100699{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000700 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100701}
702
703#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100704/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700705 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
706 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700707 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700708 * @fit_uname_config: double pointer to a char, will hold pointer to a
709 * configuration unit name
710 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
711 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700712 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700713 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700714 * which is normally the first argv of bootm/bootz
715 *
716 * returns:
717 * kernel start address
718 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700719ulong genimg_get_kernel_addr_fit(char * const img_addr,
720 const char **fit_uname_config,
721 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700722{
Bryan Wu0f641402014-07-31 17:39:58 -0700723 ulong kernel_addr;
724
725 /* find out kernel image address */
726 if (!img_addr) {
727 kernel_addr = load_addr;
728 debug("* kernel: default image load address = 0x%08lx\n",
729 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700730#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700731 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700732 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700733 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700734 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700735 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700736 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700737 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700738 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700739#endif
740 } else {
741 kernel_addr = simple_strtoul(img_addr, NULL, 16);
742 debug("* kernel: cmdline image address = 0x%08lx\n",
743 kernel_addr);
744 }
745
746 return kernel_addr;
747}
748
749/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700750 * genimg_get_kernel_addr() is the simple version of
751 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
752 */
753ulong genimg_get_kernel_addr(char * const img_addr)
754{
755 const char *fit_uname_config = NULL;
756 const char *fit_uname_kernel = NULL;
757
758 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
759 &fit_uname_kernel);
760}
761
762/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100763 * genimg_get_format - get image format type
764 * @img_addr: image start address
765 *
766 * genimg_get_format() checks whether provided address points to a valid
767 * legacy or FIT image.
768 *
769 * New uImage format and FDT blob are based on a libfdt. FDT blob
770 * may be passed directly or embedded in a FIT image. In both situations
771 * genimg_get_format() must be able to dectect libfdt header.
772 *
773 * returns:
774 * image format type or IMAGE_FORMAT_INVALID if no image is present
775 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000776int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100777{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200778#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200779 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100780
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200781 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100782 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200783 return IMAGE_FORMAT_LEGACY;
784#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700785#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200786 if (fdt_check_header(img_addr) == 0)
787 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500788#endif
789#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200790 if (android_image_check_header(img_addr) == 0)
791 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100792#endif
793
Heiko Schocher21d29f72014-05-28 11:33:33 +0200794 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100795}
796
797/**
798 * genimg_get_image - get image from special storage (if necessary)
799 * @img_addr: image start address
800 *
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200801 * genimg_get_image() checks if provided image start address is located
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100802 * in a dataflash storage. If so, image is moved to a system RAM memory.
803 *
804 * returns:
805 * image start address after possible relocation from special storage
806 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000807ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100808{
809 ulong ram_addr = img_addr;
810
811#ifdef CONFIG_HAS_DATAFLASH
812 ulong h_size, d_size;
813
Stephen Warren712fbcf2011-10-18 11:11:49 +0000814 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000815 void *buf;
816
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100817 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200818 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100819
820 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000821 h_size = image_get_header_size();
Simon Glass73223f02016-02-22 22:55:43 -0700822#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100823 if (sizeof(struct fdt_header) > h_size)
824 h_size = sizeof(struct fdt_header);
825#endif
826
827 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000828 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100829 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
830
Simon Glass35e7b0f2013-05-07 06:12:03 +0000831 buf = map_sysmem(ram_addr, 0);
832 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100833
834 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000835 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200836#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100837 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000838 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000839 debug(" Legacy format image found at 0x%08lx, "
840 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100841 ram_addr, d_size);
842 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200843#endif
Simon Glass73223f02016-02-22 22:55:43 -0700844#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100845 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000846 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000847 debug(" FIT/FDT format image found at 0x%08lx, "
848 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100849 ram_addr, d_size);
850 break;
851#endif
852 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000853 printf(" No valid image found at 0x%08lx\n",
854 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100855 return ram_addr;
856 }
857
858 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000859 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100860 "%08lx to RAM address %08lx\n", img_addr + h_size,
861 ram_addr + h_size);
862
Stephen Warren712fbcf2011-10-18 11:11:49 +0000863 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000864 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100865
866 }
867#endif /* CONFIG_HAS_DATAFLASH */
868
869 return ram_addr;
870}
871
872/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100873 * fit_has_config - check if there is a valid FIT configuration
874 * @images: pointer to the bootm command headers structure
875 *
876 * fit_has_config() checks if there is a FIT configuration in use
877 * (if FTI support is present).
878 *
879 * returns:
880 * 0, no FIT support or no configuration found
881 * 1, configuration found
882 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000883int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100884{
Simon Glass73223f02016-02-22 22:55:43 -0700885#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100886 if (images->fit_uname_cfg)
887 return 1;
888#endif
889 return 0;
890}
891
892/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100893 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100894 * @argc: command argument count
895 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100896 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100897 * @arch: expected ramdisk architecture
898 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
899 * @rd_end: pointer to a ulong variable, will hold ramdisk end
900 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100901 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100902 * Curently supported are the following ramdisk sources:
903 * - multicomponent kernel/ramdisk image,
904 * - commandline provided address of decicated ramdisk image.
905 *
906 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100907 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100908 * rd_start and rd_end are set to ramdisk start/end addresses if
909 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100910 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500911 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100912 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100913 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000914int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100915 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100916{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100917 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100918 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200919#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200920 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200921#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +0000922 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200923#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000924 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200925#endif
Simon Glass73223f02016-02-22 22:55:43 -0700926#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -0700927 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100928 const char *fit_uname_ramdisk = NULL;
929 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100930 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100931#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700932 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100933
Marian Balakowiczc8779642008-03-12 10:12:37 +0100934 *rd_start = 0;
935 *rd_end = 0;
936
Tom Rini1fec3c52015-08-27 15:42:41 -0400937#ifdef CONFIG_ANDROID_BOOT_IMAGE
938 /*
939 * Look for an Android boot image.
940 */
941 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -0400942 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -0400943 select = argv[0];
944#endif
945
Simon Glass983c72f2013-06-11 11:14:46 -0700946 if (argc >= 2)
947 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -0500948
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100949 /*
950 * Look for a '-' which indicates to ignore the
951 * ramdisk argument
952 */
Simon Glass983c72f2013-06-11 11:14:46 -0700953 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000954 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100955 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700956 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -0700957#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -0700958 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100959 /*
960 * If the init ramdisk comes from the FIT image and
961 * the FIT image address is omitted in the command
962 * line argument, try to use os FIT image address or
963 * default load address.
964 */
965 if (images->fit_uname_os)
966 default_addr = (ulong)images->fit_hdr_os;
967 else
968 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100969
Simon Glass983c72f2013-06-11 11:14:46 -0700970 if (fit_parse_conf(select, default_addr,
971 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000972 debug("* ramdisk: config '%s' from image at "
973 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100974 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700975 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100976 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000977 debug("* ramdisk: subimage '%s' from image at "
978 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100979 fit_uname_ramdisk, rd_addr);
980 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100981#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100982 {
Simon Glass983c72f2013-06-11 11:14:46 -0700983 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000984 debug("* ramdisk: cmdline image address = "
985 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100986 rd_addr);
987 }
Simon Glass73223f02016-02-22 22:55:43 -0700988#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100989 } else {
990 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +0000991 * command argument. If the property is not defined,
992 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100993 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000994 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +0000995 rd_noffset = fit_get_node_from_config(images,
996 FIT_RAMDISK_PROP, rd_addr);
997 if (rd_noffset == -ENOLINK)
Peter Tyser41266c92008-08-05 10:51:57 -0500998 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +0000999 else if (rd_noffset < 0)
1000 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001001 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001002#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001003
1004 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001005 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001006
1007 /*
1008 * Check if there is an initrd image at the
1009 * address provided in the second bootm argument
1010 * check image type, for FIT images get FIT node.
1011 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001012 buf = map_sysmem(rd_addr, 0);
1013 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001014#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001015 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001016 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001017 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001018
Simon Glass770605e2012-02-13 13:51:18 +00001019 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001020 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001021 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001022
Marian Balakowiczc8779642008-03-12 10:12:37 +01001023 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001024 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001025
Stephen Warren712fbcf2011-10-18 11:11:49 +00001026 rd_data = image_get_data(rd_hdr);
1027 rd_len = image_get_data_size(rd_hdr);
1028 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001029 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001030#endif
Simon Glass73223f02016-02-22 22:55:43 -07001031#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001032 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001033 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001034 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001035 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001036 IH_TYPE_RAMDISK,
1037 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001038 FIT_LOAD_OPTIONAL_NON_ZERO,
1039 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001040 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001041 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001042
Simon Glassa51ec632013-05-16 13:53:22 +00001043 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001044 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001045 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001046 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001047#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001048#ifdef CONFIG_ANDROID_BOOT_IMAGE
1049 case IMAGE_FORMAT_ANDROID:
1050 android_image_get_ramdisk((void *)images->os.start,
1051 &rd_data, &rd_len);
1052 break;
1053#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001054 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001055#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001056 end = NULL;
1057 if (select)
1058 end = strchr(select, ':');
1059 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001060 rd_len = simple_strtoul(++end, NULL, 16);
1061 rd_data = rd_addr;
1062 } else
1063#endif
1064 {
1065 puts("Wrong Ramdisk Image Format\n");
1066 rd_data = rd_len = rd_load = 0;
1067 return 1;
1068 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001069 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001070 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001071 image_check_type(&images->legacy_hdr_os_copy,
1072 IH_TYPE_MULTI)) {
1073
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001074 /*
1075 * Now check if we have a legacy mult-component image,
1076 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001077 */
Simon Glass770605e2012-02-13 13:51:18 +00001078 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001079 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001080 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001081 (ulong)images->legacy_hdr_os);
1082
Stephen Warren712fbcf2011-10-18 11:11:49 +00001083 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001084 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001085 /*
1086 * no initrd image
1087 */
Simon Glass770605e2012-02-13 13:51:18 +00001088 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001089 rd_len = rd_data = 0;
1090 }
1091
1092 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001093 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001094 } else {
1095 *rd_start = rd_data;
1096 *rd_end = rd_data + rd_len;
1097 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001098 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001099 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001100
1101 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001102}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001103
John Rigbyfca43cc2010-10-13 13:57:35 -06001104#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001105/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001106 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001107 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001108 * @rd_data: ramdisk data start address
1109 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001110 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1111 * start address (after possible relocation)
1112 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1113 * end address (after possible relocation)
1114 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001115 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001116 * variable and if requested ramdisk data is moved to a specified location.
1117 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001118 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1119 * start/end addresses if ramdisk image start and len were provided,
1120 * otherwise set initrd_start and initrd_end set to zeros.
1121 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001122 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001123 * 0 - success
1124 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001125 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001126int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001127 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001128{
1129 char *s;
1130 ulong initrd_high;
1131 int initrd_copy_to_ram = 1;
1132
Stephen Warren712fbcf2011-10-18 11:11:49 +00001133 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001134 /* a value of "no" or a similar string will act like 0,
1135 * turning the "load high" feature off. This is intentional.
1136 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001137 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001138 if (initrd_high == ~0)
1139 initrd_copy_to_ram = 0;
1140 } else {
Masahiro Yamada20e072f2015-12-17 17:19:35 +09001141 initrd_high = getenv_bootm_mapsize() + getenv_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001142 }
1143
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001144
1145#ifdef CONFIG_LOGBUFFER
1146 /* Prevent initrd from overwriting logbuffer */
1147 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1148#endif
1149
Stephen Warren712fbcf2011-10-18 11:11:49 +00001150 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001151 initrd_high, initrd_copy_to_ram);
1152
1153 if (rd_data) {
1154 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001155 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001156 *initrd_start = rd_data;
1157 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001158 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001159 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001160 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001161 *initrd_start = (ulong)lmb_alloc_base(lmb,
1162 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001163 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001164 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1165 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001166
Kumar Galae822d7f2008-02-27 21:51:49 -06001167 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001168 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001169 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001170 }
Simon Glass770605e2012-02-13 13:51:18 +00001171 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001172
1173 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001174 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001175 *initrd_start, *initrd_end);
1176
Stephen Warren712fbcf2011-10-18 11:11:49 +00001177 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001178 (void *)rd_data, rd_len, CHUNKSZ);
1179
Kumar Gala3b200112011-12-07 04:42:58 +00001180#ifdef CONFIG_MP
1181 /*
1182 * Ensure the image is flushed to memory to handle
1183 * AMP boot scenarios in which we might not be
1184 * HW cache coherent
1185 */
1186 flush_cache((unsigned long)*initrd_start, rd_len);
1187#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001188 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001189 }
1190 } else {
1191 *initrd_start = 0;
1192 *initrd_end = 0;
1193 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001194 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001195 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001196
Kumar Galae822d7f2008-02-27 21:51:49 -06001197 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001198
Kumar Galae822d7f2008-02-27 21:51:49 -06001199error:
1200 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001201}
John Rigbyfca43cc2010-10-13 13:57:35 -06001202#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001203
Simon Glass90268b82014-10-19 21:11:24 -06001204int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1205 ulong *setup_start, ulong *setup_len)
1206{
Simon Glass73223f02016-02-22 22:55:43 -07001207#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001208 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1209#else
1210 return -ENOENT;
1211#endif
1212}
1213
Simon Glass73223f02016-02-22 22:55:43 -07001214#if IMAGE_ENABLE_FIT
Karl Apsite84a07db2015-05-21 09:52:48 -04001215int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1216 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1217{
1218 /*
1219 * These variables are used to hold the current image location
1220 * in system memory.
1221 */
1222 ulong tmp_img_addr;
1223 /*
1224 * These two variables are requirements for fit_image_load, but
1225 * their values are not used
1226 */
1227 ulong img_data, img_len;
1228 void *buf;
1229 int loadables_index;
1230 int conf_noffset;
1231 int fit_img_result;
1232 char *uname;
1233
1234 /* Check to see if the images struct has a FIT configuration */
1235 if (!genimg_has_config(images)) {
1236 debug("## FIT configuration was not specified\n");
1237 return 0;
1238 }
1239
1240 /*
1241 * Obtain the os FIT header from the images struct
1242 * copy from dataflash if needed
1243 */
1244 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1245 tmp_img_addr = genimg_get_image(tmp_img_addr);
1246 buf = map_sysmem(tmp_img_addr, 0);
1247 /*
1248 * Check image type. For FIT images get FIT node
1249 * and attempt to locate a generic binary.
1250 */
1251 switch (genimg_get_format(buf)) {
1252 case IMAGE_FORMAT_FIT:
1253 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1254
1255 for (loadables_index = 0;
Thierry Reding9734b972015-08-20 11:45:43 +02001256 fdt_get_string_index(buf, conf_noffset,
Karl Apsite84a07db2015-05-21 09:52:48 -04001257 FIT_LOADABLE_PROP,
1258 loadables_index,
Thierry Reding9734b972015-08-20 11:45:43 +02001259 (const char **)&uname) == 0;
Karl Apsite84a07db2015-05-21 09:52:48 -04001260 loadables_index++)
1261 {
1262 fit_img_result = fit_image_load(images,
1263 tmp_img_addr,
1264 (const char **)&uname,
1265 &(images->fit_uname_cfg), arch,
1266 IH_TYPE_LOADABLE,
1267 BOOTSTAGE_ID_FIT_LOADABLE_START,
1268 FIT_LOAD_OPTIONAL_NON_ZERO,
1269 &img_data, &img_len);
1270 if (fit_img_result < 0) {
1271 /* Something went wrong! */
1272 return fit_img_result;
1273 }
1274 }
1275 break;
1276 default:
1277 printf("The given image format is not supported (corrupt?)\n");
1278 return 1;
1279 }
1280
1281 return 0;
1282}
1283#endif
1284
John Rigbyfca43cc2010-10-13 13:57:35 -06001285#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001286/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001287 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001288 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001289 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1290 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1291 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001292 * boot_get_cmdline() allocates space for kernel command line below
Bin Menga1875592016-02-05 19:30:11 -08001293 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001294 * variable is present its contents is copied to allocated kernel
1295 * command line.
1296 *
1297 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001298 * 0 - success
1299 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001300 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001301int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001302{
1303 char *cmdline;
1304 char *s;
1305
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001306 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001307 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001308
1309 if (cmdline == NULL)
1310 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001311
1312 if ((s = getenv("bootargs")) == NULL)
1313 s = "";
1314
1315 strcpy(cmdline, s);
1316
1317 *cmd_start = (ulong) & cmdline[0];
1318 *cmd_end = *cmd_start + strlen(cmdline);
1319
Stephen Warren712fbcf2011-10-18 11:11:49 +00001320 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001321
Kumar Galae822d7f2008-02-27 21:51:49 -06001322 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001323}
John Rigbyfca43cc2010-10-13 13:57:35 -06001324#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001325
John Rigbyfca43cc2010-10-13 13:57:35 -06001326#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001327/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001328 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001329 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001330 * @kbd: double pointer to board info data
1331 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001332 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001333 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1334 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001335 *
1336 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001337 * 0 - success
1338 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001339 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001340int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001341{
Becky Bruce391fd932008-06-09 20:37:18 -05001342 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001343 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001344 if (*kbd == NULL)
1345 return -1;
1346
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001347 **kbd = *(gd->bd);
1348
Stephen Warren712fbcf2011-10-18 11:11:49 +00001349 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001350
1351#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1352 do_bdinfo(NULL, 0, 0, NULL);
1353#endif
1354
Kumar Galae822d7f2008-02-27 21:51:49 -06001355 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001356}
John Rigbyfca43cc2010-10-13 13:57:35 -06001357#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001358
1359#ifdef CONFIG_LMB
1360int image_setup_linux(bootm_headers_t *images)
1361{
1362 ulong of_size = images->ft_len;
1363 char **of_flat_tree = &images->ft_addr;
1364 ulong *initrd_start = &images->initrd_start;
1365 ulong *initrd_end = &images->initrd_end;
1366 struct lmb *lmb = &images->lmb;
1367 ulong rd_len;
1368 int ret;
1369
1370 if (IMAGE_ENABLE_OF_LIBFDT)
1371 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1372
1373 if (IMAGE_BOOT_GET_CMDLINE) {
1374 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1375 &images->cmdline_end);
1376 if (ret) {
1377 puts("ERROR with allocation of cmdline\n");
1378 return ret;
1379 }
1380 }
1381 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1382 rd_len = images->rd_end - images->rd_start;
1383 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1384 initrd_start, initrd_end);
1385 if (ret)
1386 return ret;
1387 }
1388
1389 if (IMAGE_ENABLE_OF_LIBFDT) {
1390 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1391 if (ret)
1392 return ret;
1393 }
1394
1395 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1396 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1397 if (ret)
1398 return ret;
1399 }
1400
1401 return 0;
1402}
1403#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001404#endif /* !USE_HOSTCC */