blob: bd07e86701a4171c2a2c7a428d3a5dbe632782d5 [file] [log] [blame]
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001/*
2 * (C) Copyright 2008 Semihalf
3 *
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01008 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01009
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010010#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010011#include <common.h>
12#include <watchdog.h>
13
14#ifdef CONFIG_SHOW_BOOT_PROGRESS
15#include <status_led.h>
16#endif
17
18#ifdef CONFIG_HAS_DATAFLASH
19#include <dataflash.h>
20#endif
21
Marian Balakowicz95d449a2008-05-13 15:53:29 +020022#ifdef CONFIG_LOGBUFFER
23#include <logbuff.h>
24#endif
25
Marian Balakowicz2242f532008-02-21 17:27:41 +010026#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010027
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060028#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010029#include <image.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050030#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010031
Simon Glassaa34fbc2016-02-22 22:55:45 -070032#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Marian Balakowiczfff888a12008-02-21 17:20:19 +010033#include <libfdt.h>
34#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020035#include <fpga.h>
36#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010037#endif
38
Andy Fleming20a14a42008-04-02 16:19:07 -050039#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020040#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090041#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000042#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010043
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010044#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020045extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010046#endif
47
48DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010049
Heiko Schocher21d29f72014-05-28 11:33:33 +020050#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren712fbcf2011-10-18 11:11:49 +000051static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010052 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020053#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010054#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010055#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050056#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010057#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010058#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020059
60#ifndef __maybe_unused
61# define __maybe_unused /* unimplemented */
62#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010063#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010064
Simon Glass0ccff502013-02-24 17:33:25 +000065#include <u-boot/crc.h>
66
Simon Glass13d06982013-05-08 08:06:01 +000067#ifndef CONFIG_SYS_BARGSIZE
68#define CONFIG_SYS_BARGSIZE 512
69#endif
70
Mike Frysinger7edb1862010-10-20 07:17:39 -040071static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060072 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010073 { IH_ARCH_ALPHA, "alpha", "Alpha", },
74 { IH_ARCH_ARM, "arm", "ARM", },
75 { IH_ARCH_I386, "x86", "Intel x86", },
76 { IH_ARCH_IA64, "ia64", "IA64", },
77 { IH_ARCH_M68K, "m68k", "M68K", },
78 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
79 { IH_ARCH_MIPS, "mips", "MIPS", },
80 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010081 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070082 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010083 { IH_ARCH_PPC, "ppc", "PowerPC", },
84 { IH_ARCH_S390, "s390", "IBM S390", },
85 { IH_ARCH_SH, "sh", "SuperH", },
86 { IH_ARCH_SPARC, "sparc", "SPARC", },
87 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
88 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
89 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000090 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000091 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000092 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080093 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040094 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060095 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030096 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010097 { -1, "", "", },
98};
99
Mike Frysinger7edb1862010-10-20 07:17:39 -0400100static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600101 { IH_OS_INVALID, "invalid", "Invalid OS", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100102 { IH_OS_LINUX, "linux", "Linux", },
103#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
104 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
105#endif
106 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200107 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000108 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100109 { IH_OS_RTEMS, "rtems", "RTEMS", },
110 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800111 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100112#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
113 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100114#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500115#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
116 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
117#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100118#ifdef USE_HOSTCC
119 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
120 { IH_OS_DELL, "dell", "Dell", },
121 { IH_OS_ESIX, "esix", "Esix", },
122 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
123 { IH_OS_IRIX, "irix", "Irix", },
124 { IH_OS_NCR, "ncr", "NCR", },
125 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
126 { IH_OS_PSOS, "psos", "pSOS", },
127 { IH_OS_SCO, "sco", "SCO", },
128 { IH_OS_SOLARIS, "solaris", "Solaris", },
129 { IH_OS_SVR4, "svr4", "SVR4", },
130#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100131#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
132 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
133#endif
134
Marian Balakowicz570abb02008-02-29 15:59:59 +0100135 { -1, "", "", },
136};
137
Mike Frysinger7edb1862010-10-20 07:17:39 -0400138static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000139 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100140 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
141 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400142 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400143 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100144 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700145 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000146 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
147 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600148 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000150 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000151 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100152 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
153 { IH_TYPE_SCRIPT, "script", "Script", },
Charles Manning832472a2014-03-06 15:40:50 +1300154 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100155 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000156 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200157 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200158 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600159 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200160 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600161 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600162 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600163 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200164 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000165 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200166 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Michal Simeked0cea72016-05-17 13:58:44 +0200167 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600168 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100169 { -1, "", "", },
170};
171
Mike Frysinger7edb1862010-10-20 07:17:39 -0400172static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100173 { IH_COMP_NONE, "none", "uncompressed", },
174 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
175 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200176 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100177 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700178 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100179 { -1, "", "", },
180};
181
Simon Glass56d7ab72016-06-30 10:52:14 -0600182struct table_info {
183 const char *desc;
184 int count;
185 const table_entry_t *table;
186};
187
188static const struct table_info table_info[IH_COUNT] = {
189 { "architecture", IH_ARCH_COUNT, uimage_arch },
190 { "compression", IH_COMP_COUNT, uimage_comp },
191 { "operating system", IH_OS_COUNT, uimage_os },
192 { "image type", IH_TYPE_COUNT, uimage_type },
193};
194
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100195/*****************************************************************************/
196/* Legacy format routines */
197/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000198int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100199{
200 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000201 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100202 image_header_t header;
203
204 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000205 memmove(&header, (char *)hdr, image_get_header_size());
206 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100207
Stephen Warren712fbcf2011-10-18 11:11:49 +0000208 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100209
Stephen Warren712fbcf2011-10-18 11:11:49 +0000210 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100211}
212
Stephen Warren712fbcf2011-10-18 11:11:49 +0000213int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100214{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000215 ulong data = image_get_data(hdr);
216 ulong len = image_get_data_size(hdr);
217 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100218
Stephen Warren712fbcf2011-10-18 11:11:49 +0000219 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100220}
221
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100222/**
223 * image_multi_count - get component (sub-image) count
224 * @hdr: pointer to the header of the multi component image
225 *
226 * image_multi_count() returns number of components in a multi
227 * component image.
228 *
229 * Note: no checking of the image type is done, caller must pass
230 * a valid multi component image.
231 *
232 * returns:
233 * number of components
234 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100236{
237 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100238 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100239
240 /* get start of the image payload, which in case of multi
241 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100243
244 /* count non empty slots */
245 for (i = 0; size[i]; ++i)
246 count++;
247
248 return count;
249}
250
251/**
252 * image_multi_getimg - get component data address and size
253 * @hdr: pointer to the header of the multi component image
254 * @idx: index of the requested component
255 * @data: pointer to a ulong variable, will hold component data address
256 * @len: pointer to a ulong variable, will hold component size
257 *
258 * image_multi_getimg() returns size and data address for the requested
259 * component in a multi component image.
260 *
261 * Note: no checking of the image type is done, caller must pass
262 * a valid multi component image.
263 *
264 * returns:
265 * data address and size of the component, if idx is valid
266 * 0 in data and len, if idx is out of range
267 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100269 ulong *data, ulong *len)
270{
271 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100272 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700273 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100274
275 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000276 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100277
278 /* get start of the image payload, which in case of multi
279 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000280 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100281
282 /* get address of the proper component data start, which means
283 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000284 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100285
286 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000287 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100288 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100289
290 /* go over all indices preceding requested component idx */
291 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700292 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000293 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100294 }
295
296 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700297 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100298 } else {
299 *len = 0;
300 *data = 0;
301 }
302}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100303
Stephen Warren712fbcf2011-10-18 11:11:49 +0000304static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100305{
Heiko Schocher80402f32015-06-29 09:10:46 +0200306 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100307
Stephen Warren712fbcf2011-10-18 11:11:49 +0000308 os = genimg_get_os_name(image_get_os(hdr));
309 arch = genimg_get_arch_name(image_get_arch(hdr));
310 type = genimg_get_type_name(image_get_type(hdr));
311 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100312
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100314}
315
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100316/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200317 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200318 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100319 * @p: pointer to prefix string
320 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200321 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100322 * The routine prints out all header fields followed by the size/offset data
323 * for MULTI/SCRIPT images.
324 *
325 * returns:
326 * no returned results
327 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000328void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100329{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200330 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200331 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200332
Simon Glass1fe7d932013-05-08 08:05:58 +0000333 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000335 if (IMAGE_ENABLE_TIMESTAMP) {
336 printf("%sCreated: ", p);
337 genimg_print_time((time_t)image_get_time(hdr));
338 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000339 printf("%sImage Type: ", p);
340 image_print_type(hdr);
341 printf("%sData Size: ", p);
342 genimg_print_size(image_get_data_size(hdr));
343 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
344 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100345
Stephen Warren712fbcf2011-10-18 11:11:49 +0000346 if (image_check_type(hdr, IH_TYPE_MULTI) ||
347 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100348 int i;
349 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000350 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100351
Stephen Warren712fbcf2011-10-18 11:11:49 +0000352 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100353 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000354 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100355
Stephen Warren712fbcf2011-10-18 11:11:49 +0000356 printf("%s Image %d: ", p, i);
357 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100358
Stephen Warren712fbcf2011-10-18 11:11:49 +0000359 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100360 /*
361 * the user may need to know offsets
362 * if planning to do something with
363 * multiple files
364 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100366 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100367 }
368 }
369}
370
Marian Balakowicz570abb02008-02-29 15:59:59 +0100371
372#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200373#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100374/**
375 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100376 * @rd_addr: ramdisk image start address
377 * @arch: expected ramdisk architecture
378 * @verify: checksum verification flag
379 *
380 * image_get_ramdisk() returns a pointer to the verified ramdisk image
381 * header. Routine receives image start address and expected architecture
382 * flag. Verification done covers data and header integrity and os/type/arch
383 * fields checking.
384 *
385 * If dataflash support is enabled routine checks for dataflash addresses
386 * and handles required dataflash reads.
387 *
388 * returns:
389 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600390 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100391 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000392static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100393 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100394{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200395 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100396
Stephen Warren712fbcf2011-10-18 11:11:49 +0000397 if (!image_check_magic(rd_hdr)) {
398 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000399 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600400 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100401 }
402
Stephen Warren712fbcf2011-10-18 11:11:49 +0000403 if (!image_check_hcrc(rd_hdr)) {
404 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000405 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600406 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100407 }
408
Simon Glass770605e2012-02-13 13:51:18 +0000409 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000410 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100411
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100412 if (verify) {
413 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000414 if (!image_check_dcrc(rd_hdr)) {
415 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000416 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600417 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100418 }
419 puts("OK\n");
420 }
421
Simon Glass770605e2012-02-13 13:51:18 +0000422 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100423
Stephen Warren712fbcf2011-10-18 11:11:49 +0000424 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
425 !image_check_arch(rd_hdr, arch) ||
426 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
427 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100428 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000429 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600430 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100431 }
432
433 return rd_hdr;
434}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200435#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100436#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100437
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100438/*****************************************************************************/
439/* Shared dual-format routines */
440/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100441#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600442ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
443ulong save_addr; /* Default Save Address */
444ulong save_size; /* Default Save Size (in bytes) */
445
446static int on_loadaddr(const char *name, const char *value, enum env_op op,
447 int flags)
448{
449 switch (op) {
450 case env_op_create:
451 case env_op_overwrite:
452 load_addr = simple_strtoul(value, NULL, 16);
453 break;
454 default:
455 break;
456 }
457
458 return 0;
459}
460U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
461
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100462ulong getenv_bootm_low(void)
463{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000464 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100465 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000466 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100467 return tmp;
468 }
469
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200470#if defined(CONFIG_SYS_SDRAM_BASE)
471 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100472#elif defined(CONFIG_ARM)
473 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100474#else
475 return 0;
476#endif
477}
478
Becky Bruce391fd932008-06-09 20:37:18 -0500479phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100480{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900481 phys_size_t tmp, size;
482 phys_addr_t start;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000483 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100484 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000485 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100486 return tmp;
487 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900488
489#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
490 start = gd->bd->bi_dram[0].start;
491 size = gd->bd->bi_dram[0].size;
492#else
493 start = gd->bd->bi_memstart;
494 size = gd->bd->bi_memsize;
495#endif
496
Matthew McClintockc519fac2010-07-08 10:11:08 -0500497 s = getenv("bootm_low");
498 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000499 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500500 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900501 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500502
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900503 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100504}
505
Grant Likelyc3624e62011-03-28 09:58:43 +0000506phys_size_t getenv_bootm_mapsize(void)
507{
508 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000509 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000510 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000511 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000512 return tmp;
513 }
514
515#if defined(CONFIG_SYS_BOOTMAPSZ)
516 return CONFIG_SYS_BOOTMAPSZ;
517#else
518 return getenv_bootm_size();
519#endif
520}
521
Stephen Warren712fbcf2011-10-18 11:11:49 +0000522void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100523{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400524 if (to == from)
525 return;
526
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100527#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800528 if (to > from) {
529 from += len;
530 to += len;
531 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100532 while (len > 0) {
533 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000534 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800535 if (to > from) {
536 to -= tail;
537 from -= tail;
538 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000539 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800540 if (to < from) {
541 to += tail;
542 from += tail;
543 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100544 len -= tail;
545 }
546#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000547 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100548#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
549}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100550#endif /* !USE_HOSTCC */
551
Stephen Warren712fbcf2011-10-18 11:11:49 +0000552void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100553{
554#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000555 printf("%d Bytes = ", size);
556 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100557#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000558 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559 size, (double)size / 1.024e3,
560 (double)size / 1.048576e6);
561#endif
562}
563
Simon Glass859e92b2013-05-07 06:11:51 +0000564#if IMAGE_ENABLE_TIMESTAMP
565void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100566{
567#ifndef USE_HOSTCC
568 struct rtc_time tm;
569
Simon Glass9f9276c2015-04-20 12:37:18 -0600570 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000571 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100572 tm.tm_year, tm.tm_mon, tm.tm_mday,
573 tm.tm_hour, tm.tm_min, tm.tm_sec);
574#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000575 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100576#endif
577}
Simon Glass859e92b2013-05-07 06:11:51 +0000578#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100579
Simon Glass5b9d44d2015-06-23 15:38:25 -0600580const table_entry_t *get_table_entry(const table_entry_t *table, int id)
581{
582 for (; table->id >= 0; ++table) {
583 if (table->id == id)
584 return table;
585 }
586 return NULL;
587}
588
Simon Glass14262202016-06-30 10:52:16 -0600589static const char *unknown_msg(enum ih_category category)
590{
Simon Glassae3de0d2016-10-31 10:21:09 -0600591 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600592 static char msg[30];
593
Simon Glassae3de0d2016-10-31 10:21:09 -0600594 strcpy(msg, unknown_str);
595 strncat(msg, table_info[category].desc,
596 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600597
598 return msg;
599}
600
601/**
602 * get_cat_table_entry_name - translate entry id to long name
603 * @category: category to look up (enum ih_category)
604 * @id: entry id to be translated
605 *
606 * This will scan the translation table trying to find the entry that matches
607 * the given id.
608 *
609 * @retur long entry name if translation succeeds; error string on failure
610 */
611const char *genimg_get_cat_name(enum ih_category category, uint id)
612{
613 const table_entry_t *entry;
614
615 entry = get_table_entry(table_info[category].table, id);
616 if (!entry)
617 return unknown_msg(category);
618#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
619 return entry->lname;
620#else
621 return entry->lname + gd->reloc_off;
622#endif
623}
624
625/**
626 * get_cat_table_entry_short_name - translate entry id to short name
627 * @category: category to look up (enum ih_category)
628 * @id: entry id to be translated
629 *
630 * This will scan the translation table trying to find the entry that matches
631 * the given id.
632 *
633 * @retur short entry name if translation succeeds; error string on failure
634 */
635const char *genimg_get_cat_short_name(enum ih_category category, uint id)
636{
637 const table_entry_t *entry;
638
639 entry = get_table_entry(table_info[category].table, id);
640 if (!entry)
641 return unknown_msg(category);
642#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
643 return entry->sname;
644#else
645 return entry->sname + gd->reloc_off;
646#endif
647}
648
649int genimg_get_cat_count(enum ih_category category)
650{
651 return table_info[category].count;
652}
653
654const char *genimg_get_cat_desc(enum ih_category category)
655{
656 return table_info[category].desc;
657}
658
Marian Balakowicz570abb02008-02-29 15:59:59 +0100659/**
660 * get_table_entry_name - translate entry id to long name
661 * @table: pointer to a translation table for entries of a specific type
662 * @msg: message to be returned when translation fails
663 * @id: entry id to be translated
664 *
665 * get_table_entry_name() will go over translation table trying to find
666 * entry that matches given id. If matching entry is found, its long
667 * name is returned to the caller.
668 *
669 * returns:
670 * long entry name if translation succeeds
671 * msg otherwise
672 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400673char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100674{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600675 table = get_table_entry(table, id);
676 if (!table)
677 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200678#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600679 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500680#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600681 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500682#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100683}
684
Stephen Warren712fbcf2011-10-18 11:11:49 +0000685const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100686{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000687 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100688}
689
Stephen Warren712fbcf2011-10-18 11:11:49 +0000690const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100691{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000692 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
693 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100694}
695
Stephen Warren712fbcf2011-10-18 11:11:49 +0000696const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100697{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100699}
700
Simon Glasscef2e512016-02-22 22:55:50 -0700701static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600702{
Simon Glasscef2e512016-02-22 22:55:50 -0700703 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600704 if (!table)
705 return "unknown";
706#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
707 return table->sname;
708#else
709 return table->sname + gd->reloc_off;
710#endif
711}
712
Simon Glasscef2e512016-02-22 22:55:50 -0700713const char *genimg_get_type_short_name(uint8_t type)
714{
715 return genimg_get_short_name(uimage_type, type);
716}
717
Stephen Warren712fbcf2011-10-18 11:11:49 +0000718const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100719{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000720 return (get_table_entry_name(uimage_comp, "Unknown Compression",
721 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100722}
723
Simon Glasscef2e512016-02-22 22:55:50 -0700724const char *genimg_get_comp_short_name(uint8_t comp)
725{
726 return genimg_get_short_name(uimage_comp, comp);
727}
728
729const char *genimg_get_os_short_name(uint8_t os)
730{
731 return genimg_get_short_name(uimage_os, os);
732}
733
734const char *genimg_get_arch_short_name(uint8_t arch)
735{
736 return genimg_get_short_name(uimage_arch, arch);
737}
738
Marian Balakowicz570abb02008-02-29 15:59:59 +0100739/**
740 * get_table_entry_id - translate short entry name to id
741 * @table: pointer to a translation table for entries of a specific type
742 * @table_name: to be used in case of error
743 * @name: entry short name to be translated
744 *
745 * get_table_entry_id() will go over translation table trying to find
746 * entry that matches given short name. If matching entry is found,
747 * its id returned to the caller.
748 *
749 * returns:
750 * entry id if translation succeeds
751 * -1 otherwise
752 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400753int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100754 const char *table_name, const char *name)
755{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400756 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100757
758 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200759#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600760 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200761#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600762 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500763#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100764 return (t->id);
765 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000766 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600767
768 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100769}
770
Stephen Warren712fbcf2011-10-18 11:11:49 +0000771int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100772{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000773 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100774}
775
Stephen Warren712fbcf2011-10-18 11:11:49 +0000776int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100777{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000778 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100779}
780
Stephen Warren712fbcf2011-10-18 11:11:49 +0000781int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100782{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000783 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100784}
785
Stephen Warren712fbcf2011-10-18 11:11:49 +0000786int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100787{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000788 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100789}
790
791#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100792/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700793 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
794 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700795 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700796 * @fit_uname_config: double pointer to a char, will hold pointer to a
797 * configuration unit name
798 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
799 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700800 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700801 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700802 * which is normally the first argv of bootm/bootz
803 *
804 * returns:
805 * kernel start address
806 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700807ulong genimg_get_kernel_addr_fit(char * const img_addr,
808 const char **fit_uname_config,
809 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700810{
Bryan Wu0f641402014-07-31 17:39:58 -0700811 ulong kernel_addr;
812
813 /* find out kernel image address */
814 if (!img_addr) {
815 kernel_addr = load_addr;
816 debug("* kernel: default image load address = 0x%08lx\n",
817 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700818#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700819 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700820 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700821 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700822 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700823 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700824 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700825 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700826 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700827#endif
828 } else {
829 kernel_addr = simple_strtoul(img_addr, NULL, 16);
830 debug("* kernel: cmdline image address = 0x%08lx\n",
831 kernel_addr);
832 }
833
834 return kernel_addr;
835}
836
837/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700838 * genimg_get_kernel_addr() is the simple version of
839 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
840 */
841ulong genimg_get_kernel_addr(char * const img_addr)
842{
843 const char *fit_uname_config = NULL;
844 const char *fit_uname_kernel = NULL;
845
846 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
847 &fit_uname_kernel);
848}
849
850/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100851 * genimg_get_format - get image format type
852 * @img_addr: image start address
853 *
854 * genimg_get_format() checks whether provided address points to a valid
855 * legacy or FIT image.
856 *
857 * New uImage format and FDT blob are based on a libfdt. FDT blob
858 * may be passed directly or embedded in a FIT image. In both situations
859 * genimg_get_format() must be able to dectect libfdt header.
860 *
861 * returns:
862 * image format type or IMAGE_FORMAT_INVALID if no image is present
863 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000864int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100865{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200866#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200867 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100868
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200869 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100870 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200871 return IMAGE_FORMAT_LEGACY;
872#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700873#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200874 if (fdt_check_header(img_addr) == 0)
875 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500876#endif
877#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200878 if (android_image_check_header(img_addr) == 0)
879 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100880#endif
881
Heiko Schocher21d29f72014-05-28 11:33:33 +0200882 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100883}
884
885/**
886 * genimg_get_image - get image from special storage (if necessary)
887 * @img_addr: image start address
888 *
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200889 * genimg_get_image() checks if provided image start address is located
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100890 * in a dataflash storage. If so, image is moved to a system RAM memory.
891 *
892 * returns:
893 * image start address after possible relocation from special storage
894 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000895ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100896{
897 ulong ram_addr = img_addr;
898
899#ifdef CONFIG_HAS_DATAFLASH
900 ulong h_size, d_size;
901
Stephen Warren712fbcf2011-10-18 11:11:49 +0000902 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000903 void *buf;
904
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100905 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200906 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100907
908 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000909 h_size = image_get_header_size();
Simon Glass73223f02016-02-22 22:55:43 -0700910#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100911 if (sizeof(struct fdt_header) > h_size)
912 h_size = sizeof(struct fdt_header);
913#endif
914
915 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000916 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100917 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
918
Simon Glass35e7b0f2013-05-07 06:12:03 +0000919 buf = map_sysmem(ram_addr, 0);
920 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100921
922 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000923 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200924#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100925 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000926 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000927 debug(" Legacy format image found at 0x%08lx, "
928 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100929 ram_addr, d_size);
930 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200931#endif
Simon Glass73223f02016-02-22 22:55:43 -0700932#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100933 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000934 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000935 debug(" FIT/FDT format image found at 0x%08lx, "
936 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100937 ram_addr, d_size);
938 break;
939#endif
940 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000941 printf(" No valid image found at 0x%08lx\n",
942 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100943 return ram_addr;
944 }
945
946 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000947 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100948 "%08lx to RAM address %08lx\n", img_addr + h_size,
949 ram_addr + h_size);
950
Stephen Warren712fbcf2011-10-18 11:11:49 +0000951 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000952 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100953
954 }
955#endif /* CONFIG_HAS_DATAFLASH */
956
957 return ram_addr;
958}
959
960/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100961 * fit_has_config - check if there is a valid FIT configuration
962 * @images: pointer to the bootm command headers structure
963 *
964 * fit_has_config() checks if there is a FIT configuration in use
965 * (if FTI support is present).
966 *
967 * returns:
968 * 0, no FIT support or no configuration found
969 * 1, configuration found
970 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000971int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100972{
Simon Glass73223f02016-02-22 22:55:43 -0700973#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100974 if (images->fit_uname_cfg)
975 return 1;
976#endif
977 return 0;
978}
979
980/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100981 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100982 * @argc: command argument count
983 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100984 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100985 * @arch: expected ramdisk architecture
986 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
987 * @rd_end: pointer to a ulong variable, will hold ramdisk end
988 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100989 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100990 * Curently supported are the following ramdisk sources:
991 * - multicomponent kernel/ramdisk image,
992 * - commandline provided address of decicated ramdisk image.
993 *
994 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100995 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100996 * rd_start and rd_end are set to ramdisk start/end addresses if
997 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100998 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500999 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001000 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001001 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001002int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001003 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001004{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001005 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001006 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001007#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001008 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001009#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001010 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001011#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001012 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001013#endif
Simon Glass73223f02016-02-22 22:55:43 -07001014#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001015 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001016 const char *fit_uname_ramdisk = NULL;
1017 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001018 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001019#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001020 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001021
Marian Balakowiczc8779642008-03-12 10:12:37 +01001022 *rd_start = 0;
1023 *rd_end = 0;
1024
Tom Rini1fec3c52015-08-27 15:42:41 -04001025#ifdef CONFIG_ANDROID_BOOT_IMAGE
1026 /*
1027 * Look for an Android boot image.
1028 */
1029 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001030 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -04001031 select = argv[0];
1032#endif
1033
Simon Glass983c72f2013-06-11 11:14:46 -07001034 if (argc >= 2)
1035 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001036
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001037 /*
1038 * Look for a '-' which indicates to ignore the
1039 * ramdisk argument
1040 */
Simon Glass983c72f2013-06-11 11:14:46 -07001041 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001042 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001043 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001044 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001045#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001046 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001047 /*
1048 * If the init ramdisk comes from the FIT image and
1049 * the FIT image address is omitted in the command
1050 * line argument, try to use os FIT image address or
1051 * default load address.
1052 */
1053 if (images->fit_uname_os)
1054 default_addr = (ulong)images->fit_hdr_os;
1055 else
1056 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001057
Simon Glass983c72f2013-06-11 11:14:46 -07001058 if (fit_parse_conf(select, default_addr,
1059 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001060 debug("* ramdisk: config '%s' from image at "
1061 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001062 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001063 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001064 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001065 debug("* ramdisk: subimage '%s' from image at "
1066 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001067 fit_uname_ramdisk, rd_addr);
1068 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001069#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001070 {
Simon Glass983c72f2013-06-11 11:14:46 -07001071 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001072 debug("* ramdisk: cmdline image address = "
1073 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001074 rd_addr);
1075 }
Simon Glass73223f02016-02-22 22:55:43 -07001076#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001077 } else {
1078 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001079 * command argument. If the property is not defined,
1080 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001081 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001082 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001083 rd_noffset = fit_get_node_from_config(images,
1084 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001085 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001086 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001087 else if (rd_noffset < 0)
1088 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001089 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001090#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001091
1092 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001093 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001094
1095 /*
1096 * Check if there is an initrd image at the
1097 * address provided in the second bootm argument
1098 * check image type, for FIT images get FIT node.
1099 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001100 buf = map_sysmem(rd_addr, 0);
1101 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001102#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001103 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001104 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001105 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001106
Simon Glass770605e2012-02-13 13:51:18 +00001107 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001108 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001109 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001110
Marian Balakowiczc8779642008-03-12 10:12:37 +01001111 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001112 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001113
Stephen Warren712fbcf2011-10-18 11:11:49 +00001114 rd_data = image_get_data(rd_hdr);
1115 rd_len = image_get_data_size(rd_hdr);
1116 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001117 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001118#endif
Simon Glass73223f02016-02-22 22:55:43 -07001119#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001120 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001121 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001122 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001123 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001124 IH_TYPE_RAMDISK,
1125 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001126 FIT_LOAD_OPTIONAL_NON_ZERO,
1127 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001128 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001129 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001130
Simon Glassa51ec632013-05-16 13:53:22 +00001131 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001132 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001133 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001134 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001135#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001136#ifdef CONFIG_ANDROID_BOOT_IMAGE
1137 case IMAGE_FORMAT_ANDROID:
1138 android_image_get_ramdisk((void *)images->os.start,
1139 &rd_data, &rd_len);
1140 break;
1141#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001142 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001143#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001144 end = NULL;
1145 if (select)
1146 end = strchr(select, ':');
1147 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001148 rd_len = simple_strtoul(++end, NULL, 16);
1149 rd_data = rd_addr;
1150 } else
1151#endif
1152 {
1153 puts("Wrong Ramdisk Image Format\n");
1154 rd_data = rd_len = rd_load = 0;
1155 return 1;
1156 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001157 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001158 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001159 image_check_type(&images->legacy_hdr_os_copy,
1160 IH_TYPE_MULTI)) {
1161
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001162 /*
1163 * Now check if we have a legacy mult-component image,
1164 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001165 */
Simon Glass770605e2012-02-13 13:51:18 +00001166 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001167 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001168 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001169 (ulong)images->legacy_hdr_os);
1170
Stephen Warren712fbcf2011-10-18 11:11:49 +00001171 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001172 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001173 /*
1174 * no initrd image
1175 */
Simon Glass770605e2012-02-13 13:51:18 +00001176 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001177 rd_len = rd_data = 0;
1178 }
1179
1180 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001181 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001182 } else {
1183 *rd_start = rd_data;
1184 *rd_end = rd_data + rd_len;
1185 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001186 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001187 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001188
1189 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001190}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001191
John Rigbyfca43cc2010-10-13 13:57:35 -06001192#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001193/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001194 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001195 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001196 * @rd_data: ramdisk data start address
1197 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001198 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1199 * start address (after possible relocation)
1200 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1201 * end address (after possible relocation)
1202 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001203 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001204 * variable and if requested ramdisk data is moved to a specified location.
1205 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001206 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1207 * start/end addresses if ramdisk image start and len were provided,
1208 * otherwise set initrd_start and initrd_end set to zeros.
1209 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001210 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001211 * 0 - success
1212 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001213 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001214int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001215 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001216{
1217 char *s;
1218 ulong initrd_high;
1219 int initrd_copy_to_ram = 1;
1220
Stephen Warren712fbcf2011-10-18 11:11:49 +00001221 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001222 /* a value of "no" or a similar string will act like 0,
1223 * turning the "load high" feature off. This is intentional.
1224 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001225 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001226 if (initrd_high == ~0)
1227 initrd_copy_to_ram = 0;
1228 } else {
Masahiro Yamada20e072f2015-12-17 17:19:35 +09001229 initrd_high = getenv_bootm_mapsize() + getenv_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001230 }
1231
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001232
1233#ifdef CONFIG_LOGBUFFER
1234 /* Prevent initrd from overwriting logbuffer */
1235 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1236#endif
1237
Stephen Warren712fbcf2011-10-18 11:11:49 +00001238 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001239 initrd_high, initrd_copy_to_ram);
1240
1241 if (rd_data) {
1242 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001243 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001244 *initrd_start = rd_data;
1245 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001246 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001247 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001248 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001249 *initrd_start = (ulong)lmb_alloc_base(lmb,
1250 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001251 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001252 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1253 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001254
Kumar Galae822d7f2008-02-27 21:51:49 -06001255 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001256 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001257 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001258 }
Simon Glass770605e2012-02-13 13:51:18 +00001259 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001260
1261 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001262 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001263 *initrd_start, *initrd_end);
1264
Stephen Warren712fbcf2011-10-18 11:11:49 +00001265 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001266 (void *)rd_data, rd_len, CHUNKSZ);
1267
Kumar Gala3b200112011-12-07 04:42:58 +00001268#ifdef CONFIG_MP
1269 /*
1270 * Ensure the image is flushed to memory to handle
1271 * AMP boot scenarios in which we might not be
1272 * HW cache coherent
1273 */
1274 flush_cache((unsigned long)*initrd_start, rd_len);
1275#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001276 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001277 }
1278 } else {
1279 *initrd_start = 0;
1280 *initrd_end = 0;
1281 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001282 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001283 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001284
Kumar Galae822d7f2008-02-27 21:51:49 -06001285 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001286
Kumar Galae822d7f2008-02-27 21:51:49 -06001287error:
1288 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001289}
John Rigbyfca43cc2010-10-13 13:57:35 -06001290#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001291
Simon Glass90268b82014-10-19 21:11:24 -06001292int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1293 ulong *setup_start, ulong *setup_len)
1294{
Simon Glass73223f02016-02-22 22:55:43 -07001295#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001296 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1297#else
1298 return -ENOENT;
1299#endif
1300}
1301
Simon Glass73223f02016-02-22 22:55:43 -07001302#if IMAGE_ENABLE_FIT
Michal Simek62afc602016-05-17 14:03:50 +02001303#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_XILINX)
1304int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1305 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1306{
1307 ulong tmp_img_addr, img_data, img_len;
1308 void *buf;
1309 int conf_noffset;
1310 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001311 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001312 int err;
1313 int devnum = 0; /* TODO support multi fpga platforms */
1314 const fpga_desc * const desc = fpga_get_desc(devnum);
1315 xilinx_desc *desc_xilinx = desc->devdesc;
1316
1317 /* Check to see if the images struct has a FIT configuration */
1318 if (!genimg_has_config(images)) {
1319 debug("## FIT configuration was not specified\n");
1320 return 0;
1321 }
1322
1323 /*
1324 * Obtain the os FIT header from the images struct
1325 * copy from dataflash if needed
1326 */
1327 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1328 tmp_img_addr = genimg_get_image(tmp_img_addr);
1329 buf = map_sysmem(tmp_img_addr, 0);
1330 /*
1331 * Check image type. For FIT images get FIT node
1332 * and attempt to locate a generic binary.
1333 */
1334 switch (genimg_get_format(buf)) {
1335 case IMAGE_FORMAT_FIT:
1336 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1337
Simon Glassb02e4042016-10-02 17:59:28 -06001338 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1339 NULL);
1340 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001341 debug("## FPGA image is not specified\n");
1342 return 0;
1343 }
1344 fit_img_result = fit_image_load(images,
1345 tmp_img_addr,
1346 (const char **)&uname,
1347 &(images->fit_uname_cfg),
1348 arch,
1349 IH_TYPE_FPGA,
1350 BOOTSTAGE_ID_FPGA_INIT,
1351 FIT_LOAD_OPTIONAL_NON_ZERO,
1352 &img_data, &img_len);
1353
1354 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1355 uname, img_data, img_len);
1356
1357 if (fit_img_result < 0) {
1358 /* Something went wrong! */
1359 return fit_img_result;
1360 }
1361
1362 if (img_len >= desc_xilinx->size) {
1363 name = "full";
1364 err = fpga_loadbitstream(devnum, (char *)img_data,
1365 img_len, BIT_FULL);
1366 if (err)
1367 err = fpga_load(devnum, (const void *)img_data,
1368 img_len, BIT_FULL);
1369 } else {
1370 name = "partial";
1371 err = fpga_loadbitstream(devnum, (char *)img_data,
1372 img_len, BIT_PARTIAL);
1373 if (err)
1374 err = fpga_load(devnum, (const void *)img_data,
1375 img_len, BIT_PARTIAL);
1376 }
1377
1378 printf(" Programming %s bitstream... ", name);
1379 if (err)
1380 printf("failed\n");
1381 else
1382 printf("OK\n");
1383 break;
1384 default:
1385 printf("The given image format is not supported (corrupt?)\n");
1386 return 1;
1387 }
1388
1389 return 0;
1390}
1391#endif
1392
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001393static void fit_loadable_process(uint8_t img_type,
1394 ulong img_data,
1395 ulong img_len)
1396{
1397 int i;
1398 const unsigned int count =
1399 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1400 struct fit_loadable_tbl *fit_loadable_handler =
1401 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1402 /* For each loadable handler */
1403 for (i = 0; i < count; i++, fit_loadable_handler++)
1404 /* matching this type */
1405 if (fit_loadable_handler->type == img_type)
1406 /* call that handler with this image data */
1407 fit_loadable_handler->handler(img_data, img_len);
1408}
1409
Karl Apsite84a07db2015-05-21 09:52:48 -04001410int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1411 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1412{
1413 /*
1414 * These variables are used to hold the current image location
1415 * in system memory.
1416 */
1417 ulong tmp_img_addr;
1418 /*
1419 * These two variables are requirements for fit_image_load, but
1420 * their values are not used
1421 */
1422 ulong img_data, img_len;
1423 void *buf;
1424 int loadables_index;
1425 int conf_noffset;
1426 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001427 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001428 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001429
1430 /* Check to see if the images struct has a FIT configuration */
1431 if (!genimg_has_config(images)) {
1432 debug("## FIT configuration was not specified\n");
1433 return 0;
1434 }
1435
1436 /*
1437 * Obtain the os FIT header from the images struct
1438 * copy from dataflash if needed
1439 */
1440 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1441 tmp_img_addr = genimg_get_image(tmp_img_addr);
1442 buf = map_sysmem(tmp_img_addr, 0);
1443 /*
1444 * Check image type. For FIT images get FIT node
1445 * and attempt to locate a generic binary.
1446 */
1447 switch (genimg_get_format(buf)) {
1448 case IMAGE_FORMAT_FIT:
1449 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1450
1451 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001452 uname = fdt_stringlist_get(buf, conf_noffset,
1453 FIT_LOADABLE_PROP, loadables_index,
1454 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001455 loadables_index++)
1456 {
1457 fit_img_result = fit_image_load(images,
1458 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001459 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001460 &(images->fit_uname_cfg), arch,
1461 IH_TYPE_LOADABLE,
1462 BOOTSTAGE_ID_FIT_LOADABLE_START,
1463 FIT_LOAD_OPTIONAL_NON_ZERO,
1464 &img_data, &img_len);
1465 if (fit_img_result < 0) {
1466 /* Something went wrong! */
1467 return fit_img_result;
1468 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001469
1470 fit_img_result = fit_image_get_node(buf, uname);
1471 if (fit_img_result < 0) {
1472 /* Something went wrong! */
1473 return fit_img_result;
1474 }
1475 fit_img_result = fit_image_get_type(buf,
1476 fit_img_result,
1477 &img_type);
1478 if (fit_img_result < 0) {
1479 /* Something went wrong! */
1480 return fit_img_result;
1481 }
1482
1483 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001484 }
1485 break;
1486 default:
1487 printf("The given image format is not supported (corrupt?)\n");
1488 return 1;
1489 }
1490
1491 return 0;
1492}
1493#endif
1494
John Rigbyfca43cc2010-10-13 13:57:35 -06001495#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001496/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001497 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001498 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001499 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1500 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1501 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001502 * boot_get_cmdline() allocates space for kernel command line below
Bin Menga1875592016-02-05 19:30:11 -08001503 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001504 * variable is present its contents is copied to allocated kernel
1505 * command line.
1506 *
1507 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001508 * 0 - success
1509 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001510 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001511int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001512{
1513 char *cmdline;
1514 char *s;
1515
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001516 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001517 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001518
1519 if (cmdline == NULL)
1520 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001521
1522 if ((s = getenv("bootargs")) == NULL)
1523 s = "";
1524
1525 strcpy(cmdline, s);
1526
1527 *cmd_start = (ulong) & cmdline[0];
1528 *cmd_end = *cmd_start + strlen(cmdline);
1529
Stephen Warren712fbcf2011-10-18 11:11:49 +00001530 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001531
Kumar Galae822d7f2008-02-27 21:51:49 -06001532 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001533}
John Rigbyfca43cc2010-10-13 13:57:35 -06001534#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001535
John Rigbyfca43cc2010-10-13 13:57:35 -06001536#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001537/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001538 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001539 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001540 * @kbd: double pointer to board info data
1541 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001542 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001543 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1544 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001545 *
1546 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001547 * 0 - success
1548 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001549 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001550int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001551{
Becky Bruce391fd932008-06-09 20:37:18 -05001552 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001553 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001554 if (*kbd == NULL)
1555 return -1;
1556
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001557 **kbd = *(gd->bd);
1558
Stephen Warren712fbcf2011-10-18 11:11:49 +00001559 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001560
1561#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1562 do_bdinfo(NULL, 0, 0, NULL);
1563#endif
1564
Kumar Galae822d7f2008-02-27 21:51:49 -06001565 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001566}
John Rigbyfca43cc2010-10-13 13:57:35 -06001567#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001568
1569#ifdef CONFIG_LMB
1570int image_setup_linux(bootm_headers_t *images)
1571{
1572 ulong of_size = images->ft_len;
1573 char **of_flat_tree = &images->ft_addr;
1574 ulong *initrd_start = &images->initrd_start;
1575 ulong *initrd_end = &images->initrd_end;
1576 struct lmb *lmb = &images->lmb;
1577 ulong rd_len;
1578 int ret;
1579
1580 if (IMAGE_ENABLE_OF_LIBFDT)
1581 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1582
1583 if (IMAGE_BOOT_GET_CMDLINE) {
1584 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1585 &images->cmdline_end);
1586 if (ret) {
1587 puts("ERROR with allocation of cmdline\n");
1588 return ret;
1589 }
1590 }
1591 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1592 rd_len = images->rd_end - images->rd_start;
1593 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1594 initrd_start, initrd_end);
1595 if (ret)
1596 return ret;
1597 }
1598
1599 if (IMAGE_ENABLE_OF_LIBFDT) {
1600 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1601 if (ret)
1602 return ret;
1603 }
1604
1605 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1606 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1607 if (ret)
1608 return ret;
1609 }
1610
1611 return 0;
1612}
1613#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001614#endif /* !USE_HOSTCC */