blob: 9824685344bb2c9e17fdbb710658aaaeeb03056f [file] [log] [blame]
Marian Balakowicz41d71ed2008-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 Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01008 */
Marian Balakowicz9c701e82008-01-31 13:57:17 +01009
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010010#ifndef USE_HOSTCC
Marian Balakowicz95418502008-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 Balakowicz902ce702008-05-13 15:53:29 +020022#ifdef CONFIG_LOGBUFFER
23#include <logbuff.h>
24#endif
25
Marian Balakowicza1cc1472008-02-21 17:27:41 +010026#include <rtc.h>
Marian Balakowicza1cc1472008-02-21 17:27:41 +010027
Joe Hershbergerd1f5ae92012-12-11 22:16:28 -060028#include <environment.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010029#include <image.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050030#include <mapmem.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010031
Simon Glass8b426922016-02-22 22:55:45 -070032#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Marian Balakowiczc536d6f2008-02-21 17:20:19 +010033#include <libfdt.h>
34#include <fdt_support.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010035#endif
36
Andy Fleming72c23be2008-04-02 16:19:07 -050037#include <u-boot/md5.h>
Jeroen Hofsteebfe88fe2014-06-12 22:27:12 +020038#include <u-boot/sha1.h>
Simon Glass65817a62013-05-16 13:53:22 +000039#include <asm/errno.h>
Simon Glass49648062013-05-07 06:12:03 +000040#include <asm/io.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010041
Marian Balakowicz2efc2642008-01-31 13:58:13 +010042#ifdef CONFIG_CMD_BDI
Wolfgang Denk6262d0212010-06-28 22:00:46 +020043extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowicz2efc2642008-01-31 13:58:13 +010044#endif
45
46DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz61fde552008-02-27 11:01:04 +010047
Heiko Schocher515eb122014-05-28 11:33:33 +020048#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren6904b6e2011-10-18 11:11:49 +000049static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowicza0ffb422008-03-12 10:14:38 +010050 int verify);
Heiko Schocher515eb122014-05-28 11:33:33 +020051#endif
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010052#else
Marian Balakowicz95418502008-01-31 13:55:39 +010053#include "mkimage.h"
Andy Fleming72c23be2008-04-02 16:19:07 -050054#include <u-boot/md5.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010055#include <time.h>
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010056#include <image.h>
Heiko Schocher62cb1562015-06-29 09:10:46 +020057
58#ifndef __maybe_unused
59# define __maybe_unused /* unimplemented */
60#endif
Marian Balakowicze227fbb2008-02-29 21:24:06 +010061#endif /* !USE_HOSTCC*/
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010062
Simon Glass9adb6862013-02-24 17:33:25 +000063#include <u-boot/crc.h>
64
Simon Glass9ca37422013-05-08 08:06:01 +000065#ifndef CONFIG_SYS_BARGSIZE
66#define CONFIG_SYS_BARGSIZE 512
67#endif
68
Mike Frysingercf2feb12010-10-20 07:17:39 -040069static const table_entry_t uimage_arch[] = {
Marian Balakowiczc3c7eb22008-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 Balakowiczc3c7eb22008-02-29 15:59:59 +010079 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Erickson80f51b82008-05-04 16:45:01 -070080 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowiczc3c7eb22008-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 Lin354b4e32011-10-19 20:41:09 +000088 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson15c669c2011-11-26 19:04:50 +000089 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass49648062013-05-07 06:12:03 +000090 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng85fd5f12013-12-14 11:47:35 +080091 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkin78bc86f2014-02-04 12:56:16 +040092 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass9d428302014-10-10 08:21:57 -060093 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010094 { -1, "", "", },
95};
96
Mike Frysingercf2feb12010-10-20 07:17:39 -040097static const table_entry_t uimage_os[] = {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010098 { IH_OS_INVALID, NULL, "Invalid OS", },
Marian Balakowiczc3c7eb22008-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 Lundgren29a58662010-09-28 11:05:36 +0200104 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion36ec8ac2013-03-20 06:31:35 +0000105 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100106 { IH_OS_RTEMS, "rtems", "RTEMS", },
107 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com8bb64242013-12-27 16:01:50 +0800108 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100109#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
110 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100111#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500112#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
113 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
114#endif
Marian Balakowiczc3c7eb22008-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 Vasut0e3b5122014-12-16 14:07:21 +0100128#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
129 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
130#endif
131
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100132 { -1, "", "", },
133};
134
Mike Frysingercf2feb12010-10-20 07:17:39 -0400135static const table_entry_t uimage_type[] = {
Stefano Babic38855512011-10-17 00:07:43 +0000136 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100137 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
138 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby34d12a12011-07-21 09:10:30 -0400139 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharan82777932014-04-04 13:16:48 -0400140 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100141 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warren8c87eba2011-11-10 13:17:53 -0700142 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic38855512011-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 Balakowiczc3c7eb22008-02-29 15:59:59 +0100146 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic38855512011-10-17 00:07:43 +0000147 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xieea65fd82012-08-10 02:49:35 +0000148 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100149 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
150 { IH_TYPE_SCRIPT, "script", "Script", },
Charles Manning685e87f2014-03-06 15:40:50 +1300151 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100152 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000153 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasut4a0e05d2013-08-26 20:43:33 +0200154 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7c75d3e2014-05-19 14:23:39 +0200155 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass0129b522014-10-19 21:11:24 -0600156 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)ed1cb1a2015-03-31 11:40:49 +0200157 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassc9c74032015-08-30 16:55:24 -0600158 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glass3b1e5072015-08-30 16:55:25 -0600159 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glassc17b1452015-08-30 16:55:26 -0600160 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Nathan Rossice1771e2015-11-17 22:56:56 +1000161 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekfa124662016-04-27 14:03:29 +0200162 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100163 { -1, "", "", },
164};
165
Mike Frysingercf2feb12010-10-20 07:17:39 -0400166static const table_entry_t uimage_comp[] = {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100167 { IH_COMP_NONE, "none", "uncompressed", },
168 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
169 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200170 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100171 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700172 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100173 { -1, "", "", },
174};
175
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100176/*****************************************************************************/
177/* Legacy format routines */
178/*****************************************************************************/
Stephen Warren6904b6e2011-10-18 11:11:49 +0000179int image_check_hcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100180{
181 ulong hcrc;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000182 ulong len = image_get_header_size();
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100183 image_header_t header;
184
185 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000186 memmove(&header, (char *)hdr, image_get_header_size());
187 image_set_hcrc(&header, 0);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100188
Stephen Warren6904b6e2011-10-18 11:11:49 +0000189 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100190
Stephen Warren6904b6e2011-10-18 11:11:49 +0000191 return (hcrc == image_get_hcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100192}
193
Stephen Warren6904b6e2011-10-18 11:11:49 +0000194int image_check_dcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100195{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000196 ulong data = image_get_data(hdr);
197 ulong len = image_get_data_size(hdr);
198 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100199
Stephen Warren6904b6e2011-10-18 11:11:49 +0000200 return (dcrc == image_get_dcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100201}
202
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100203/**
204 * image_multi_count - get component (sub-image) count
205 * @hdr: pointer to the header of the multi component image
206 *
207 * image_multi_count() returns number of components in a multi
208 * component image.
209 *
210 * Note: no checking of the image type is done, caller must pass
211 * a valid multi component image.
212 *
213 * returns:
214 * number of components
215 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000216ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100217{
218 ulong i, count = 0;
Marian Balakowicza1474212008-02-29 16:00:06 +0100219 uint32_t *size;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100220
221 /* get start of the image payload, which in case of multi
222 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000223 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100224
225 /* count non empty slots */
226 for (i = 0; size[i]; ++i)
227 count++;
228
229 return count;
230}
231
232/**
233 * image_multi_getimg - get component data address and size
234 * @hdr: pointer to the header of the multi component image
235 * @idx: index of the requested component
236 * @data: pointer to a ulong variable, will hold component data address
237 * @len: pointer to a ulong variable, will hold component size
238 *
239 * image_multi_getimg() returns size and data address for the requested
240 * component in a multi component image.
241 *
242 * Note: no checking of the image type is done, caller must pass
243 * a valid multi component image.
244 *
245 * returns:
246 * data address and size of the component, if idx is valid
247 * 0 in data and len, if idx is out of range
248 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000249void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100250 ulong *data, ulong *len)
251{
252 int i;
Marian Balakowicza1474212008-02-29 16:00:06 +0100253 uint32_t *size;
Nick Spence143a1592008-05-10 14:02:04 -0700254 ulong offset, count, img_data;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100255
256 /* get number of component */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000257 count = image_multi_count(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100258
259 /* get start of the image payload, which in case of multi
260 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000261 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100262
263 /* get address of the proper component data start, which means
264 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000265 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100266
267 if (idx < count) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000268 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100269 offset = 0;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100270
271 /* go over all indices preceding requested component idx */
272 for (i = 0; i < idx; i++) {
Nick Spence143a1592008-05-10 14:02:04 -0700273 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000274 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100275 }
276
277 /* calculate idx-th component data address */
Nick Spence143a1592008-05-10 14:02:04 -0700278 *data = img_data + offset;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100279 } else {
280 *len = 0;
281 *data = 0;
282 }
283}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100284
Stephen Warren6904b6e2011-10-18 11:11:49 +0000285static void image_print_type(const image_header_t *hdr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100286{
Heiko Schocher62cb1562015-06-29 09:10:46 +0200287 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100288
Stephen Warren6904b6e2011-10-18 11:11:49 +0000289 os = genimg_get_os_name(image_get_os(hdr));
290 arch = genimg_get_arch_name(image_get_arch(hdr));
291 type = genimg_get_type_name(image_get_type(hdr));
292 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100293
Stephen Warren6904b6e2011-10-18 11:11:49 +0000294 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100295}
296
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100297/**
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200298 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3b506772009-08-19 11:42:56 +0200299 * @ptr: pointer to the legacy format image header
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100300 * @p: pointer to prefix string
301 *
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200302 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100303 * The routine prints out all header fields followed by the size/offset data
304 * for MULTI/SCRIPT images.
305 *
306 * returns:
307 * no returned results
308 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000309void image_print_contents(const void *ptr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100310{
Wolfgang Denk3b506772009-08-19 11:42:56 +0200311 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher62cb1562015-06-29 09:10:46 +0200312 const char __maybe_unused *p;
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200313
Simon Glass1030f162013-05-08 08:05:58 +0000314 p = IMAGE_INDENT_STRING;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000315 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000316 if (IMAGE_ENABLE_TIMESTAMP) {
317 printf("%sCreated: ", p);
318 genimg_print_time((time_t)image_get_time(hdr));
319 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000320 printf("%sImage Type: ", p);
321 image_print_type(hdr);
322 printf("%sData Size: ", p);
323 genimg_print_size(image_get_data_size(hdr));
324 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
325 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100326
Stephen Warren6904b6e2011-10-18 11:11:49 +0000327 if (image_check_type(hdr, IH_TYPE_MULTI) ||
328 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100329 int i;
330 ulong data, len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000331 ulong count = image_multi_count(hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100332
Stephen Warren6904b6e2011-10-18 11:11:49 +0000333 printf("%sContents:\n", p);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100334 for (i = 0; i < count; i++) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000335 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100336
Stephen Warren6904b6e2011-10-18 11:11:49 +0000337 printf("%s Image %d: ", p, i);
338 genimg_print_size(len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100339
Stephen Warren6904b6e2011-10-18 11:11:49 +0000340 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100341 /*
342 * the user may need to know offsets
343 * if planning to do something with
344 * multiple files
345 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000346 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100347 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100348 }
349 }
350}
351
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100352
353#ifndef USE_HOSTCC
Heiko Schocher515eb122014-05-28 11:33:33 +0200354#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100355/**
356 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100357 * @rd_addr: ramdisk image start address
358 * @arch: expected ramdisk architecture
359 * @verify: checksum verification flag
360 *
361 * image_get_ramdisk() returns a pointer to the verified ramdisk image
362 * header. Routine receives image start address and expected architecture
363 * flag. Verification done covers data and header integrity and os/type/arch
364 * fields checking.
365 *
366 * If dataflash support is enabled routine checks for dataflash addresses
367 * and handles required dataflash reads.
368 *
369 * returns:
370 * pointer to a ramdisk image header, if image was found and valid
371 * otherwise, return NULL
372 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000373static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100374 int verify)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100375{
Wolfgang Denk3b506772009-08-19 11:42:56 +0200376 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100377
Stephen Warren6904b6e2011-10-18 11:11:49 +0000378 if (!image_check_magic(rd_hdr)) {
379 puts("Bad Magic Number\n");
Simon Glass0169e6b2012-02-13 13:51:18 +0000380 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100381 return NULL;
382 }
383
Stephen Warren6904b6e2011-10-18 11:11:49 +0000384 if (!image_check_hcrc(rd_hdr)) {
385 puts("Bad Header Checksum\n");
Simon Glass0169e6b2012-02-13 13:51:18 +0000386 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100387 return NULL;
388 }
389
Simon Glass0169e6b2012-02-13 13:51:18 +0000390 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000391 image_print_contents(rd_hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100392
393 if (verify) {
394 puts(" Verifying Checksum ... ");
Stephen Warren6904b6e2011-10-18 11:11:49 +0000395 if (!image_check_dcrc(rd_hdr)) {
396 puts("Bad Data CRC\n");
Simon Glass0169e6b2012-02-13 13:51:18 +0000397 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100398 return NULL;
399 }
400 puts("OK\n");
401 }
402
Simon Glass0169e6b2012-02-13 13:51:18 +0000403 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100404
Stephen Warren6904b6e2011-10-18 11:11:49 +0000405 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
406 !image_check_arch(rd_hdr, arch) ||
407 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
408 printf("No Linux %s Ramdisk Image\n",
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100409 genimg_get_arch_name(arch));
Simon Glass0169e6b2012-02-13 13:51:18 +0000410 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100411 return NULL;
412 }
413
414 return rd_hdr;
415}
Heiko Schocher515eb122014-05-28 11:33:33 +0200416#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100417#endif /* !USE_HOSTCC */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100418
419/*****************************************************************************/
420/* Shared dual-format routines */
421/*****************************************************************************/
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100422#ifndef USE_HOSTCC
Joe Hershbergerd1f5ae92012-12-11 22:16:28 -0600423ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
424ulong save_addr; /* Default Save Address */
425ulong save_size; /* Default Save Size (in bytes) */
426
427static int on_loadaddr(const char *name, const char *value, enum env_op op,
428 int flags)
429{
430 switch (op) {
431 case env_op_create:
432 case env_op_overwrite:
433 load_addr = simple_strtoul(value, NULL, 16);
434 break;
435 default:
436 break;
437 }
438
439 return 0;
440}
441U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
442
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100443ulong getenv_bootm_low(void)
444{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000445 char *s = getenv("bootm_low");
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100446 if (s) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000447 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100448 return tmp;
449 }
450
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200451#if defined(CONFIG_SYS_SDRAM_BASE)
452 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowicz2499b042008-03-12 12:14:15 +0100453#elif defined(CONFIG_ARM)
454 return gd->bd->bi_dram[0].start;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100455#else
456 return 0;
457#endif
458}
459
Becky Bruced26d67c2008-06-09 20:37:18 -0500460phys_size_t getenv_bootm_size(void)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100461{
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900462 phys_size_t tmp, size;
463 phys_addr_t start;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000464 char *s = getenv("bootm_size");
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100465 if (s) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000466 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100467 return tmp;
468 }
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900469
470#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
471 start = gd->bd->bi_dram[0].start;
472 size = gd->bd->bi_dram[0].size;
473#else
474 start = gd->bd->bi_memstart;
475 size = gd->bd->bi_memsize;
476#endif
477
Matthew McClintock6fc7d3a2010-07-08 10:11:08 -0500478 s = getenv("bootm_low");
479 if (s)
Stephen Warren6904b6e2011-10-18 11:11:49 +0000480 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintock6fc7d3a2010-07-08 10:11:08 -0500481 else
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900482 tmp = start;
Matthew McClintock6fc7d3a2010-07-08 10:11:08 -0500483
Masahiro Yamadabee2f4b2016-02-05 16:12:50 +0900484 return size - (tmp - start);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100485}
486
Grant Likely26396382011-03-28 09:58:43 +0000487phys_size_t getenv_bootm_mapsize(void)
488{
489 phys_size_t tmp;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000490 char *s = getenv("bootm_mapsize");
Grant Likely26396382011-03-28 09:58:43 +0000491 if (s) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000492 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likely26396382011-03-28 09:58:43 +0000493 return tmp;
494 }
495
496#if defined(CONFIG_SYS_BOOTMAPSZ)
497 return CONFIG_SYS_BOOTMAPSZ;
498#else
499 return getenv_bootm_size();
500#endif
501}
502
Stephen Warren6904b6e2011-10-18 11:11:49 +0000503void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100504{
Larry Johnsone4551002010-04-20 08:09:43 -0400505 if (to == from)
506 return;
507
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100508#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang76ae5d92014-12-10 18:20:53 +0800509 if (to > from) {
510 from += len;
511 to += len;
512 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100513 while (len > 0) {
514 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000515 WATCHDOG_RESET();
Sonic Zhang76ae5d92014-12-10 18:20:53 +0800516 if (to > from) {
517 to -= tail;
518 from -= tail;
519 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000520 memmove(to, from, tail);
Sonic Zhang76ae5d92014-12-10 18:20:53 +0800521 if (to < from) {
522 to += tail;
523 from += tail;
524 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100525 len -= tail;
526 }
527#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000528 memmove(to, from, len);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100529#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
530}
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100531#endif /* !USE_HOSTCC */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100532
Stephen Warren6904b6e2011-10-18 11:11:49 +0000533void genimg_print_size(uint32_t size)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100534{
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100535#ifndef USE_HOSTCC
Stephen Warren6904b6e2011-10-18 11:11:49 +0000536 printf("%d Bytes = ", size);
537 print_size(size, "\n");
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100538#else
Stephen Warren6904b6e2011-10-18 11:11:49 +0000539 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100540 size, (double)size / 1.024e3,
541 (double)size / 1.048576e6);
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100542#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100543}
544
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000545#if IMAGE_ENABLE_TIMESTAMP
546void genimg_print_time(time_t timestamp)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100547{
548#ifndef USE_HOSTCC
549 struct rtc_time tm;
550
Simon Glass12994662015-04-20 12:37:18 -0600551 rtc_to_tm(timestamp, &tm);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000552 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100553 tm.tm_year, tm.tm_mon, tm.tm_mday,
554 tm.tm_hour, tm.tm_min, tm.tm_sec);
555#else
Stephen Warren6904b6e2011-10-18 11:11:49 +0000556 printf("%s", ctime(&timestamp));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100557#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100558}
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000559#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100560
Simon Glass434a31b2015-06-23 15:38:25 -0600561const table_entry_t *get_table_entry(const table_entry_t *table, int id)
562{
563 for (; table->id >= 0; ++table) {
564 if (table->id == id)
565 return table;
566 }
567 return NULL;
568}
569
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100570/**
571 * get_table_entry_name - translate entry id to long name
572 * @table: pointer to a translation table for entries of a specific type
573 * @msg: message to be returned when translation fails
574 * @id: entry id to be translated
575 *
576 * get_table_entry_name() will go over translation table trying to find
577 * entry that matches given id. If matching entry is found, its long
578 * name is returned to the caller.
579 *
580 * returns:
581 * long entry name if translation succeeds
582 * msg otherwise
583 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400584char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100585{
Simon Glass434a31b2015-06-23 15:38:25 -0600586 table = get_table_entry(table, id);
587 if (!table)
588 return msg;
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200589#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass434a31b2015-06-23 15:38:25 -0600590 return table->lname;
Scott Wood68498ab2009-04-02 16:15:10 -0500591#else
Simon Glass434a31b2015-06-23 15:38:25 -0600592 return table->lname + gd->reloc_off;
Scott Wood68498ab2009-04-02 16:15:10 -0500593#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100594}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100595
Stephen Warren6904b6e2011-10-18 11:11:49 +0000596const char *genimg_get_os_name(uint8_t os)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100597{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000598 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100599}
600
Stephen Warren6904b6e2011-10-18 11:11:49 +0000601const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100602{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000603 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
604 arch));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100605}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100606
Stephen Warren6904b6e2011-10-18 11:11:49 +0000607const char *genimg_get_type_name(uint8_t type)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100608{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000609 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100610}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100611
Simon Glass86c362d2016-02-22 22:55:50 -0700612static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass434a31b2015-06-23 15:38:25 -0600613{
Simon Glass86c362d2016-02-22 22:55:50 -0700614 table = get_table_entry(table, val);
Simon Glass434a31b2015-06-23 15:38:25 -0600615 if (!table)
616 return "unknown";
617#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
618 return table->sname;
619#else
620 return table->sname + gd->reloc_off;
621#endif
622}
623
Simon Glass86c362d2016-02-22 22:55:50 -0700624const char *genimg_get_type_short_name(uint8_t type)
625{
626 return genimg_get_short_name(uimage_type, type);
627}
628
Stephen Warren6904b6e2011-10-18 11:11:49 +0000629const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100630{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000631 return (get_table_entry_name(uimage_comp, "Unknown Compression",
632 comp));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100633}
634
Simon Glass86c362d2016-02-22 22:55:50 -0700635const char *genimg_get_comp_short_name(uint8_t comp)
636{
637 return genimg_get_short_name(uimage_comp, comp);
638}
639
640const char *genimg_get_os_short_name(uint8_t os)
641{
642 return genimg_get_short_name(uimage_os, os);
643}
644
645const char *genimg_get_arch_short_name(uint8_t arch)
646{
647 return genimg_get_short_name(uimage_arch, arch);
648}
649
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100650/**
651 * get_table_entry_id - translate short entry name to id
652 * @table: pointer to a translation table for entries of a specific type
653 * @table_name: to be used in case of error
654 * @name: entry short name to be translated
655 *
656 * get_table_entry_id() will go over translation table trying to find
657 * entry that matches given short name. If matching entry is found,
658 * its id returned to the caller.
659 *
660 * returns:
661 * entry id if translation succeeds
662 * -1 otherwise
663 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400664int get_table_entry_id(const table_entry_t *table,
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100665 const char *table_name, const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100666{
Mike Frysingercf2feb12010-10-20 07:17:39 -0400667 const table_entry_t *t;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100668
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100669 for (t = table; t->id >= 0; ++t) {
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200670#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass434a31b2015-06-23 15:38:25 -0600671 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200672#else
Simon Glass434a31b2015-06-23 15:38:25 -0600673 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser9057cbf2009-09-21 11:20:36 -0500674#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100675 return (t->id);
676 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000677 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass434a31b2015-06-23 15:38:25 -0600678
679 return -1;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100680}
681
Stephen Warren6904b6e2011-10-18 11:11:49 +0000682int genimg_get_os_id(const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100683{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000684 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100685}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100686
Stephen Warren6904b6e2011-10-18 11:11:49 +0000687int genimg_get_arch_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100688{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000689 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100690}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100691
Stephen Warren6904b6e2011-10-18 11:11:49 +0000692int genimg_get_type_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100693{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000694 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100695}
Marian Balakowicz95418502008-01-31 13:55:39 +0100696
Stephen Warren6904b6e2011-10-18 11:11:49 +0000697int genimg_get_comp_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100698{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000699 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100700}
701
702#ifndef USE_HOSTCC
Marian Balakowicz95418502008-01-31 13:55:39 +0100703/**
Bryan Wuf5c377a2014-08-15 16:51:38 -0700704 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
705 * FIT strings
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700706 * @img_addr: a string might contain real image address
Bryan Wuf5c377a2014-08-15 16:51:38 -0700707 * @fit_uname_config: double pointer to a char, will hold pointer to a
708 * configuration unit name
709 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
710 * name
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700711 *
Bryan Wuf5c377a2014-08-15 16:51:38 -0700712 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700713 * which is normally the first argv of bootm/bootz
714 *
715 * returns:
716 * kernel start address
717 */
Bryan Wuf5c377a2014-08-15 16:51:38 -0700718ulong genimg_get_kernel_addr_fit(char * const img_addr,
719 const char **fit_uname_config,
720 const char **fit_uname_kernel)
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700721{
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700722 ulong kernel_addr;
723
724 /* find out kernel image address */
725 if (!img_addr) {
726 kernel_addr = load_addr;
727 debug("* kernel: default image load address = 0x%08lx\n",
728 load_addr);
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700729#if CONFIG_IS_ENABLED(FIT)
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700730 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wuf5c377a2014-08-15 16:51:38 -0700731 fit_uname_config)) {
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700732 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wuf5c377a2014-08-15 16:51:38 -0700733 *fit_uname_config, kernel_addr);
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700734 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wuf5c377a2014-08-15 16:51:38 -0700735 fit_uname_kernel)) {
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700736 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wuf5c377a2014-08-15 16:51:38 -0700737 *fit_uname_kernel, kernel_addr);
Bryan Wuaf7b0de2014-07-31 17:39:58 -0700738#endif
739 } else {
740 kernel_addr = simple_strtoul(img_addr, NULL, 16);
741 debug("* kernel: cmdline image address = 0x%08lx\n",
742 kernel_addr);
743 }
744
745 return kernel_addr;
746}
747
748/**
Bryan Wuf5c377a2014-08-15 16:51:38 -0700749 * genimg_get_kernel_addr() is the simple version of
750 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
751 */
752ulong genimg_get_kernel_addr(char * const img_addr)
753{
754 const char *fit_uname_config = NULL;
755 const char *fit_uname_kernel = NULL;
756
757 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
758 &fit_uname_kernel);
759}
760
761/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100762 * genimg_get_format - get image format type
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100763 * @img_addr: image start address
764 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100765 * genimg_get_format() checks whether provided address points to a valid
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100766 * legacy or FIT image.
767 *
Marian Balakowicz12560682008-02-27 11:02:26 +0100768 * New uImage format and FDT blob are based on a libfdt. FDT blob
769 * may be passed directly or embedded in a FIT image. In both situations
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100770 * genimg_get_format() must be able to dectect libfdt header.
Marian Balakowicz12560682008-02-27 11:02:26 +0100771 *
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100772 * returns:
773 * image format type or IMAGE_FORMAT_INVALID if no image is present
774 */
Simon Glass49648062013-05-07 06:12:03 +0000775int genimg_get_format(const void *img_addr)
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100776{
Heiko Schocher515eb122014-05-28 11:33:33 +0200777#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3b506772009-08-19 11:42:56 +0200778 const image_header_t *hdr;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100779
Wolfgang Denk3b506772009-08-19 11:42:56 +0200780 hdr = (const image_header_t *)img_addr;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100781 if (image_check_magic(hdr))
Heiko Schocher515eb122014-05-28 11:33:33 +0200782 return IMAGE_FORMAT_LEGACY;
783#endif
Simon Glass8b426922016-02-22 22:55:45 -0700784#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher515eb122014-05-28 11:33:33 +0200785 if (fdt_check_header(img_addr) == 0)
786 return IMAGE_FORMAT_FIT;
Sebastian Siewior686d6672014-05-05 15:08:09 -0500787#endif
788#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher515eb122014-05-28 11:33:33 +0200789 if (android_image_check_header(img_addr) == 0)
790 return IMAGE_FORMAT_ANDROID;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100791#endif
792
Heiko Schocher515eb122014-05-28 11:33:33 +0200793 return IMAGE_FORMAT_INVALID;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100794}
795
796/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100797 * genimg_get_image - get image from special storage (if necessary)
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100798 * @img_addr: image start address
799 *
Guilherme Maciel Ferreirafc3c9672015-01-15 02:48:06 -0200800 * genimg_get_image() checks if provided image start address is located
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100801 * in a dataflash storage. If so, image is moved to a system RAM memory.
802 *
803 * returns:
804 * image start address after possible relocation from special storage
805 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000806ulong genimg_get_image(ulong img_addr)
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100807{
Marian Balakowicz535b9102008-02-27 11:00:47 +0100808 ulong ram_addr = img_addr;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100809
810#ifdef CONFIG_HAS_DATAFLASH
Marian Balakowicz535b9102008-02-27 11:00:47 +0100811 ulong h_size, d_size;
812
Stephen Warren6904b6e2011-10-18 11:11:49 +0000813 if (addr_dataflash(img_addr)) {
Simon Glass49648062013-05-07 06:12:03 +0000814 void *buf;
815
Marian Balakowicz535b9102008-02-27 11:00:47 +0100816 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200817 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz535b9102008-02-27 11:00:47 +0100818
819 /* get header size */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000820 h_size = image_get_header_size();
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700821#if IMAGE_ENABLE_FIT
Marian Balakowicz535b9102008-02-27 11:00:47 +0100822 if (sizeof(struct fdt_header) > h_size)
823 h_size = sizeof(struct fdt_header);
824#endif
825
826 /* read in header */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000827 debug(" Reading image header from dataflash address "
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100828 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100829
Simon Glass49648062013-05-07 06:12:03 +0000830 buf = map_sysmem(ram_addr, 0);
831 read_dataflash(img_addr, h_size, buf);
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100832
Marian Balakowicz535b9102008-02-27 11:00:47 +0100833 /* get data size */
Simon Glass49648062013-05-07 06:12:03 +0000834 switch (genimg_get_format(buf)) {
Heiko Schocher515eb122014-05-28 11:33:33 +0200835#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz535b9102008-02-27 11:00:47 +0100836 case IMAGE_FORMAT_LEGACY:
Simon Glass49648062013-05-07 06:12:03 +0000837 d_size = image_get_data_size(buf);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000838 debug(" Legacy format image found at 0x%08lx, "
839 "size 0x%08lx\n",
Marian Balakowicz535b9102008-02-27 11:00:47 +0100840 ram_addr, d_size);
841 break;
Heiko Schocher515eb122014-05-28 11:33:33 +0200842#endif
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700843#if IMAGE_ENABLE_FIT
Marian Balakowicz535b9102008-02-27 11:00:47 +0100844 case IMAGE_FORMAT_FIT:
Simon Glass49648062013-05-07 06:12:03 +0000845 d_size = fit_get_size(buf) - h_size;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000846 debug(" FIT/FDT format image found at 0x%08lx, "
847 "size 0x%08lx\n",
Marian Balakowicz535b9102008-02-27 11:00:47 +0100848 ram_addr, d_size);
849 break;
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100850#endif
Marian Balakowicz535b9102008-02-27 11:00:47 +0100851 default:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000852 printf(" No valid image found at 0x%08lx\n",
853 img_addr);
Marian Balakowicz535b9102008-02-27 11:00:47 +0100854 return ram_addr;
855 }
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100856
Marian Balakowicz535b9102008-02-27 11:00:47 +0100857 /* read in image data */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000858 debug(" Reading image remaining data from dataflash address "
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100859 "%08lx to RAM address %08lx\n", img_addr + h_size,
860 ram_addr + h_size);
861
Stephen Warren6904b6e2011-10-18 11:11:49 +0000862 read_dataflash(img_addr + h_size, d_size,
Simon Glass49648062013-05-07 06:12:03 +0000863 (char *)(buf + h_size));
Marian Balakowicz535b9102008-02-27 11:00:47 +0100864
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100865 }
Marian Balakowicz535b9102008-02-27 11:00:47 +0100866#endif /* CONFIG_HAS_DATAFLASH */
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100867
868 return ram_addr;
869}
870
871/**
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100872 * fit_has_config - check if there is a valid FIT configuration
873 * @images: pointer to the bootm command headers structure
874 *
875 * fit_has_config() checks if there is a FIT configuration in use
876 * (if FTI support is present).
877 *
878 * returns:
879 * 0, no FIT support or no configuration found
880 * 1, configuration found
881 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000882int genimg_has_config(bootm_headers_t *images)
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100883{
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700884#if IMAGE_ENABLE_FIT
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100885 if (images->fit_uname_cfg)
886 return 1;
887#endif
888 return 0;
889}
890
891/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100892 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz95418502008-01-31 13:55:39 +0100893 * @argc: command argument count
894 * @argv: command argument list
Marian Balakowicz61fde552008-02-27 11:01:04 +0100895 * @images: pointer to the bootm images structure
Marian Balakowicz95418502008-01-31 13:55:39 +0100896 * @arch: expected ramdisk architecture
897 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
898 * @rd_end: pointer to a ulong variable, will hold ramdisk end
899 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100900 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz95418502008-01-31 13:55:39 +0100901 * Curently supported are the following ramdisk sources:
902 * - multicomponent kernel/ramdisk image,
903 * - commandline provided address of decicated ramdisk image.
904 *
905 * returns:
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100906 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz95418502008-01-31 13:55:39 +0100907 * rd_start and rd_end are set to ramdisk start/end addresses if
908 * ramdisk image is found and valid
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100909 *
Kumar Galab8ca7342008-08-29 19:08:29 -0500910 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz95418502008-01-31 13:55:39 +0100911 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz95418502008-01-31 13:55:39 +0100912 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000913int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowicza0ffb422008-03-12 10:14:38 +0100914 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz95418502008-01-31 13:55:39 +0100915{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100916 ulong rd_addr, rd_load;
Marian Balakowicz95418502008-01-31 13:55:39 +0100917 ulong rd_data, rd_len;
Heiko Schocher515eb122014-05-28 11:33:33 +0200918#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3b506772009-08-19 11:42:56 +0200919 const image_header_t *rd_hdr;
Heiko Schocher515eb122014-05-28 11:33:33 +0200920#endif
Simon Glass49648062013-05-07 06:12:03 +0000921 void *buf;
Marek Vasut6988d132012-03-30 23:19:10 +0200922#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut28850d02012-03-18 11:47:58 +0000923 char *end;
Marek Vasut6988d132012-03-30 23:19:10 +0200924#endif
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700925#if IMAGE_ENABLE_FIT
Simon Glassad68fc32013-07-10 23:08:10 -0700926 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100927 const char *fit_uname_ramdisk = NULL;
928 ulong default_addr;
Marian Balakowicza50d5152008-03-12 10:12:37 +0100929 int rd_noffset;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100930#endif
Simon Glass794a9212013-06-11 11:14:46 -0700931 const char *select = NULL;
Marian Balakowicz95418502008-01-31 13:55:39 +0100932
Marian Balakowicza50d5152008-03-12 10:12:37 +0100933 *rd_start = 0;
934 *rd_end = 0;
935
Tom Rinifc1ae4c2015-08-27 15:42:41 -0400936#ifdef CONFIG_ANDROID_BOOT_IMAGE
937 /*
938 * Look for an Android boot image.
939 */
940 buf = map_sysmem(images->os.start, 0);
Tom Rini648c4442015-10-27 19:04:40 -0400941 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rinifc1ae4c2015-08-27 15:42:41 -0400942 select = argv[0];
943#endif
944
Simon Glass794a9212013-06-11 11:14:46 -0700945 if (argc >= 2)
946 select = argv[1];
Rob Herringad8b3a52015-07-17 10:57:17 -0500947
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100948 /*
949 * Look for a '-' which indicates to ignore the
950 * ramdisk argument
951 */
Simon Glass794a9212013-06-11 11:14:46 -0700952 if (select && strcmp(select, "-") == 0) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000953 debug("## Skipping init Ramdisk\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100954 rd_len = rd_data = 0;
Simon Glass794a9212013-06-11 11:14:46 -0700955 } else if (select || genimg_has_config(images)) {
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700956#if IMAGE_ENABLE_FIT
Simon Glass794a9212013-06-11 11:14:46 -0700957 if (select) {
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100958 /*
959 * If the init ramdisk comes from the FIT image and
960 * the FIT image address is omitted in the command
961 * line argument, try to use os FIT image address or
962 * default load address.
963 */
964 if (images->fit_uname_os)
965 default_addr = (ulong)images->fit_hdr_os;
966 else
967 default_addr = load_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100968
Simon Glass794a9212013-06-11 11:14:46 -0700969 if (fit_parse_conf(select, default_addr,
970 &rd_addr, &fit_uname_config)) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000971 debug("* ramdisk: config '%s' from image at "
972 "0x%08lx\n",
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100973 fit_uname_config, rd_addr);
Simon Glass794a9212013-06-11 11:14:46 -0700974 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100975 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000976 debug("* ramdisk: subimage '%s' from image at "
977 "0x%08lx\n",
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100978 fit_uname_ramdisk, rd_addr);
979 } else
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100980#endif
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100981 {
Simon Glass794a9212013-06-11 11:14:46 -0700982 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000983 debug("* ramdisk: cmdline image address = "
984 "0x%08lx\n",
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100985 rd_addr);
986 }
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700987#if IMAGE_ENABLE_FIT
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100988 } else {
989 /* use FIT configuration provided in first bootm
Simon Glass65817a62013-05-16 13:53:22 +0000990 * command argument. If the property is not defined,
991 * quit silently.
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100992 */
Simon Glass49648062013-05-07 06:12:03 +0000993 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glass65817a62013-05-16 13:53:22 +0000994 rd_noffset = fit_get_node_from_config(images,
995 FIT_RAMDISK_PROP, rd_addr);
996 if (rd_noffset == -ENOLINK)
Peter Tyser190ee482008-08-05 10:51:57 -0500997 return 0;
Simon Glass65817a62013-05-16 13:53:22 +0000998 else if (rd_noffset < 0)
999 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001000 }
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +01001001#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001002
1003 /* copy from dataflash if needed */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001004 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001005
1006 /*
1007 * Check if there is an initrd image at the
1008 * address provided in the second bootm argument
1009 * check image type, for FIT images get FIT node.
1010 */
Simon Glass49648062013-05-07 06:12:03 +00001011 buf = map_sysmem(rd_addr, 0);
1012 switch (genimg_get_format(buf)) {
Heiko Schocher515eb122014-05-28 11:33:33 +02001013#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001014 case IMAGE_FORMAT_LEGACY:
Stephen Warren6904b6e2011-10-18 11:11:49 +00001015 printf("## Loading init Ramdisk from Legacy "
Marian Balakowicza50d5152008-03-12 10:12:37 +01001016 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz95418502008-01-31 13:55:39 +01001017
Simon Glass0169e6b2012-02-13 13:51:18 +00001018 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren6904b6e2011-10-18 11:11:49 +00001019 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowicza0ffb422008-03-12 10:14:38 +01001020 images->verify);
Marian Balakowicz95418502008-01-31 13:55:39 +01001021
Marian Balakowicza50d5152008-03-12 10:12:37 +01001022 if (rd_hdr == NULL)
Kumar Gala18f4c0f2008-02-27 21:51:46 -06001023 return 1;
Kumar Gala18f4c0f2008-02-27 21:51:46 -06001024
Stephen Warren6904b6e2011-10-18 11:11:49 +00001025 rd_data = image_get_data(rd_hdr);
1026 rd_len = image_get_data_size(rd_hdr);
1027 rd_load = image_get_load(rd_hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001028 break;
Heiko Schocher515eb122014-05-28 11:33:33 +02001029#endif
Simon Glasse3ee2fb2016-02-22 22:55:43 -07001030#if IMAGE_ENABLE_FIT
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001031 case IMAGE_FORMAT_FIT:
Simon Glassa0c0b632014-06-12 07:24:47 -06001032 rd_noffset = fit_image_load(images,
Simon Glass65817a62013-05-16 13:53:22 +00001033 rd_addr, &fit_uname_ramdisk,
Simon Glassad68fc32013-07-10 23:08:10 -07001034 &fit_uname_config, arch,
Simon Glass65817a62013-05-16 13:53:22 +00001035 IH_TYPE_RAMDISK,
1036 BOOTSTAGE_ID_FIT_RD_START,
Simon Glass05a9ad72014-08-22 14:26:43 -06001037 FIT_LOAD_OPTIONAL_NON_ZERO,
1038 &rd_data, &rd_len);
Simon Glass65817a62013-05-16 13:53:22 +00001039 if (rd_noffset < 0)
Michal Simekb2474002008-07-11 10:43:13 +02001040 return 1;
Marian Balakowicza50d5152008-03-12 10:12:37 +01001041
Simon Glass65817a62013-05-16 13:53:22 +00001042 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowicza50d5152008-03-12 10:12:37 +01001043 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz61c1ad52008-03-12 10:32:59 +01001044 images->fit_noffset_rd = rd_noffset;
Marian Balakowicza50d5152008-03-12 10:12:37 +01001045 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001046#endif
Rob Herringad8b3a52015-07-17 10:57:17 -05001047#ifdef CONFIG_ANDROID_BOOT_IMAGE
1048 case IMAGE_FORMAT_ANDROID:
1049 android_image_get_ramdisk((void *)images->os.start,
1050 &rd_data, &rd_len);
1051 break;
1052#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001053 default:
Marek Vasut28850d02012-03-18 11:47:58 +00001054#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass794a9212013-06-11 11:14:46 -07001055 end = NULL;
1056 if (select)
1057 end = strchr(select, ':');
1058 if (end) {
Marek Vasut28850d02012-03-18 11:47:58 +00001059 rd_len = simple_strtoul(++end, NULL, 16);
1060 rd_data = rd_addr;
1061 } else
1062#endif
1063 {
1064 puts("Wrong Ramdisk Image Format\n");
1065 rd_data = rd_len = rd_load = 0;
1066 return 1;
1067 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001068 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001069 } else if (images->legacy_hdr_valid &&
Stephen Warren6904b6e2011-10-18 11:11:49 +00001070 image_check_type(&images->legacy_hdr_os_copy,
1071 IH_TYPE_MULTI)) {
1072
Marian Balakowicz95418502008-01-31 13:55:39 +01001073 /*
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001074 * Now check if we have a legacy mult-component image,
1075 * get second entry data start address and len.
Marian Balakowicz95418502008-01-31 13:55:39 +01001076 */
Simon Glass0169e6b2012-02-13 13:51:18 +00001077 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren6904b6e2011-10-18 11:11:49 +00001078 printf("## Loading init Ramdisk from multi component "
Marian Balakowicza50d5152008-03-12 10:12:37 +01001079 "Legacy Image at %08lx ...\n",
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001080 (ulong)images->legacy_hdr_os);
1081
Stephen Warren6904b6e2011-10-18 11:11:49 +00001082 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herringad8b3a52015-07-17 10:57:17 -05001083 } else {
Marian Balakowicz95418502008-01-31 13:55:39 +01001084 /*
1085 * no initrd image
1086 */
Simon Glass0169e6b2012-02-13 13:51:18 +00001087 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz95418502008-01-31 13:55:39 +01001088 rd_len = rd_data = 0;
1089 }
1090
1091 if (!rd_data) {
Stephen Warren6904b6e2011-10-18 11:11:49 +00001092 debug("## No init Ramdisk\n");
Marian Balakowicz95418502008-01-31 13:55:39 +01001093 } else {
1094 *rd_start = rd_data;
1095 *rd_end = rd_data + rd_len;
1096 }
Stephen Warren6904b6e2011-10-18 11:11:49 +00001097 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz95418502008-01-31 13:55:39 +01001098 *rd_start, *rd_end);
Kumar Gala18f4c0f2008-02-27 21:51:46 -06001099
1100 return 0;
Marian Balakowicz95418502008-01-31 13:55:39 +01001101}
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001102
John Rigbyeea8e692010-10-13 13:57:35 -06001103#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001104/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001105 * boot_ramdisk_high - relocate init ramdisk
Kumar Galab937bb72008-02-27 21:51:49 -06001106 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001107 * @rd_data: ramdisk data start address
1108 * @rd_len: ramdisk data length
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001109 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1110 * start address (after possible relocation)
1111 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1112 * end address (after possible relocation)
1113 *
Robert P. J. Day832d36e2013-09-16 07:15:45 -04001114 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001115 * variable and if requested ramdisk data is moved to a specified location.
1116 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001117 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1118 * start/end addresses if ramdisk image start and len were provided,
1119 * otherwise set initrd_start and initrd_end set to zeros.
1120 *
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001121 * returns:
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001122 * 0 - success
1123 * -1 - failure
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001124 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001125int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galab937bb72008-02-27 21:51:49 -06001126 ulong *initrd_start, ulong *initrd_end)
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001127{
1128 char *s;
1129 ulong initrd_high;
1130 int initrd_copy_to_ram = 1;
1131
Stephen Warren6904b6e2011-10-18 11:11:49 +00001132 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001133 /* a value of "no" or a similar string will act like 0,
1134 * turning the "load high" feature off. This is intentional.
1135 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001136 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001137 if (initrd_high == ~0)
1138 initrd_copy_to_ram = 0;
1139 } else {
Masahiro Yamadaf93592c2015-12-17 17:19:35 +09001140 initrd_high = getenv_bootm_mapsize() + getenv_bootm_low();
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001141 }
1142
Marian Balakowicz902ce702008-05-13 15:53:29 +02001143
1144#ifdef CONFIG_LOGBUFFER
1145 /* Prevent initrd from overwriting logbuffer */
1146 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1147#endif
1148
Stephen Warren6904b6e2011-10-18 11:11:49 +00001149 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001150 initrd_high, initrd_copy_to_ram);
1151
1152 if (rd_data) {
1153 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001154 debug(" in-place initrd\n");
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001155 *initrd_start = rd_data;
1156 *initrd_end = rd_data + rd_len;
Kumar Galab937bb72008-02-27 21:51:49 -06001157 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001158 } else {
Kumar Galab937bb72008-02-27 21:51:49 -06001159 if (initrd_high)
Stephen Warren6904b6e2011-10-18 11:11:49 +00001160 *initrd_start = (ulong)lmb_alloc_base(lmb,
1161 rd_len, 0x1000, initrd_high);
Kumar Galab937bb72008-02-27 21:51:49 -06001162 else
Stephen Warren6904b6e2011-10-18 11:11:49 +00001163 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1164 0x1000);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001165
Kumar Galab937bb72008-02-27 21:51:49 -06001166 if (*initrd_start == 0) {
Stephen Warren6904b6e2011-10-18 11:11:49 +00001167 puts("ramdisk - allocation error\n");
Kumar Galab937bb72008-02-27 21:51:49 -06001168 goto error;
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001169 }
Simon Glass0169e6b2012-02-13 13:51:18 +00001170 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001171
1172 *initrd_end = *initrd_start + rd_len;
Stephen Warren6904b6e2011-10-18 11:11:49 +00001173 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001174 *initrd_start, *initrd_end);
1175
Stephen Warren6904b6e2011-10-18 11:11:49 +00001176 memmove_wd((void *)*initrd_start,
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001177 (void *)rd_data, rd_len, CHUNKSZ);
1178
Kumar Gala180c5812011-12-07 04:42:58 +00001179#ifdef CONFIG_MP
1180 /*
1181 * Ensure the image is flushed to memory to handle
1182 * AMP boot scenarios in which we might not be
1183 * HW cache coherent
1184 */
1185 flush_cache((unsigned long)*initrd_start, rd_len);
1186#endif
Stephen Warren6904b6e2011-10-18 11:11:49 +00001187 puts("OK\n");
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001188 }
1189 } else {
1190 *initrd_start = 0;
1191 *initrd_end = 0;
1192 }
Stephen Warren6904b6e2011-10-18 11:11:49 +00001193 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001194 *initrd_start, *initrd_end);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001195
Kumar Galab937bb72008-02-27 21:51:49 -06001196 return 0;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001197
Kumar Galab937bb72008-02-27 21:51:49 -06001198error:
1199 return -1;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001200}
John Rigbyeea8e692010-10-13 13:57:35 -06001201#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001202
Simon Glass0129b522014-10-19 21:11:24 -06001203int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1204 ulong *setup_start, ulong *setup_len)
1205{
Simon Glasse3ee2fb2016-02-22 22:55:43 -07001206#if IMAGE_ENABLE_FIT
Simon Glass0129b522014-10-19 21:11:24 -06001207 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1208#else
1209 return -ENOENT;
1210#endif
1211}
1212
Simon Glasse3ee2fb2016-02-22 22:55:43 -07001213#if IMAGE_ENABLE_FIT
Karl Apsite1b21c282015-05-21 09:52:48 -04001214int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1215 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1216{
1217 /*
1218 * These variables are used to hold the current image location
1219 * in system memory.
1220 */
1221 ulong tmp_img_addr;
1222 /*
1223 * These two variables are requirements for fit_image_load, but
1224 * their values are not used
1225 */
1226 ulong img_data, img_len;
1227 void *buf;
1228 int loadables_index;
1229 int conf_noffset;
1230 int fit_img_result;
1231 char *uname;
1232
1233 /* Check to see if the images struct has a FIT configuration */
1234 if (!genimg_has_config(images)) {
1235 debug("## FIT configuration was not specified\n");
1236 return 0;
1237 }
1238
1239 /*
1240 * Obtain the os FIT header from the images struct
1241 * copy from dataflash if needed
1242 */
1243 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1244 tmp_img_addr = genimg_get_image(tmp_img_addr);
1245 buf = map_sysmem(tmp_img_addr, 0);
1246 /*
1247 * Check image type. For FIT images get FIT node
1248 * and attempt to locate a generic binary.
1249 */
1250 switch (genimg_get_format(buf)) {
1251 case IMAGE_FORMAT_FIT:
1252 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1253
1254 for (loadables_index = 0;
Thierry Reding6a2283f2015-08-20 11:45:43 +02001255 fdt_get_string_index(buf, conf_noffset,
Karl Apsite1b21c282015-05-21 09:52:48 -04001256 FIT_LOADABLE_PROP,
1257 loadables_index,
Thierry Reding6a2283f2015-08-20 11:45:43 +02001258 (const char **)&uname) == 0;
Karl Apsite1b21c282015-05-21 09:52:48 -04001259 loadables_index++)
1260 {
1261 fit_img_result = fit_image_load(images,
1262 tmp_img_addr,
1263 (const char **)&uname,
1264 &(images->fit_uname_cfg), arch,
1265 IH_TYPE_LOADABLE,
1266 BOOTSTAGE_ID_FIT_LOADABLE_START,
1267 FIT_LOAD_OPTIONAL_NON_ZERO,
1268 &img_data, &img_len);
1269 if (fit_img_result < 0) {
1270 /* Something went wrong! */
1271 return fit_img_result;
1272 }
1273 }
1274 break;
1275 default:
1276 printf("The given image format is not supported (corrupt?)\n");
1277 return 1;
1278 }
1279
1280 return 0;
1281}
1282#endif
1283
John Rigbyeea8e692010-10-13 13:57:35 -06001284#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001285/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001286 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galab937bb72008-02-27 21:51:49 -06001287 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001288 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1289 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1290 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001291 * boot_get_cmdline() allocates space for kernel command line below
Bin Meng75574052016-02-05 19:30:11 -08001292 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001293 * variable is present its contents is copied to allocated kernel
1294 * command line.
1295 *
1296 * returns:
Kumar Galab937bb72008-02-27 21:51:49 -06001297 * 0 - success
1298 * -1 - failure
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001299 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001300int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001301{
1302 char *cmdline;
1303 char *s;
1304
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001305 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likely26396382011-03-28 09:58:43 +00001306 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galab937bb72008-02-27 21:51:49 -06001307
1308 if (cmdline == NULL)
1309 return -1;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001310
1311 if ((s = getenv("bootargs")) == NULL)
1312 s = "";
1313
1314 strcpy(cmdline, s);
1315
1316 *cmd_start = (ulong) & cmdline[0];
1317 *cmd_end = *cmd_start + strlen(cmdline);
1318
Stephen Warren6904b6e2011-10-18 11:11:49 +00001319 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001320
Kumar Galab937bb72008-02-27 21:51:49 -06001321 return 0;
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001322}
John Rigbyeea8e692010-10-13 13:57:35 -06001323#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001324
John Rigbyeea8e692010-10-13 13:57:35 -06001325#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001326/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001327 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galab937bb72008-02-27 21:51:49 -06001328 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001329 * @kbd: double pointer to board info data
1330 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001331 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likelydfff7a22011-03-28 09:58:34 +00001332 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1333 * with the current u-boot board info data.
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001334 *
1335 * returns:
Kumar Galab937bb72008-02-27 21:51:49 -06001336 * 0 - success
1337 * -1 - failure
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001338 */
Stephen Warren6904b6e2011-10-18 11:11:49 +00001339int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001340{
Becky Bruced26d67c2008-06-09 20:37:18 -05001341 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likely26396382011-03-28 09:58:43 +00001342 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galab937bb72008-02-27 21:51:49 -06001343 if (*kbd == NULL)
1344 return -1;
1345
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001346 **kbd = *(gd->bd);
1347
Stephen Warren6904b6e2011-10-18 11:11:49 +00001348 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowicz2efc2642008-01-31 13:58:13 +01001349
1350#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1351 do_bdinfo(NULL, 0, 0, NULL);
1352#endif
1353
Kumar Galab937bb72008-02-27 21:51:49 -06001354 return 0;
Marian Balakowicz9c701e82008-01-31 13:57:17 +01001355}
John Rigbyeea8e692010-10-13 13:57:35 -06001356#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass9ca37422013-05-08 08:06:01 +00001357
1358#ifdef CONFIG_LMB
1359int image_setup_linux(bootm_headers_t *images)
1360{
1361 ulong of_size = images->ft_len;
1362 char **of_flat_tree = &images->ft_addr;
1363 ulong *initrd_start = &images->initrd_start;
1364 ulong *initrd_end = &images->initrd_end;
1365 struct lmb *lmb = &images->lmb;
1366 ulong rd_len;
1367 int ret;
1368
1369 if (IMAGE_ENABLE_OF_LIBFDT)
1370 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1371
1372 if (IMAGE_BOOT_GET_CMDLINE) {
1373 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1374 &images->cmdline_end);
1375 if (ret) {
1376 puts("ERROR with allocation of cmdline\n");
1377 return ret;
1378 }
1379 }
1380 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1381 rd_len = images->rd_end - images->rd_start;
1382 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1383 initrd_start, initrd_end);
1384 if (ret)
1385 return ret;
1386 }
1387
1388 if (IMAGE_ENABLE_OF_LIBFDT) {
1389 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1390 if (ret)
1391 return ret;
1392 }
1393
1394 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1395 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1396 if (ret)
1397 return ret;
1398 }
1399
1400 return 0;
1401}
1402#endif /* CONFIG_LMB */
Marian Balakowicze227fbb2008-02-29 21:24:06 +01001403#endif /* !USE_HOSTCC */