blob: a058eb85e107bce98c7a155344250cc30f16ef18 [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",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100169 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100170 { -1, "", "", },
171};
172
Mike Frysinger7edb1862010-10-20 07:17:39 -0400173static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100174 { IH_COMP_NONE, "none", "uncompressed", },
175 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
176 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200177 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100178 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700179 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100180 { -1, "", "", },
181};
182
Simon Glass56d7ab72016-06-30 10:52:14 -0600183struct table_info {
184 const char *desc;
185 int count;
186 const table_entry_t *table;
187};
188
189static const struct table_info table_info[IH_COUNT] = {
190 { "architecture", IH_ARCH_COUNT, uimage_arch },
191 { "compression", IH_COMP_COUNT, uimage_comp },
192 { "operating system", IH_OS_COUNT, uimage_os },
193 { "image type", IH_TYPE_COUNT, uimage_type },
194};
195
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100196/*****************************************************************************/
197/* Legacy format routines */
198/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000199int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100200{
201 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000202 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100203 image_header_t header;
204
205 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000206 memmove(&header, (char *)hdr, image_get_header_size());
207 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100208
Stephen Warren712fbcf2011-10-18 11:11:49 +0000209 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100210
Stephen Warren712fbcf2011-10-18 11:11:49 +0000211 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100212}
213
Stephen Warren712fbcf2011-10-18 11:11:49 +0000214int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100215{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000216 ulong data = image_get_data(hdr);
217 ulong len = image_get_data_size(hdr);
218 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100219
Stephen Warren712fbcf2011-10-18 11:11:49 +0000220 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100221}
222
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100223/**
224 * image_multi_count - get component (sub-image) count
225 * @hdr: pointer to the header of the multi component image
226 *
227 * image_multi_count() returns number of components in a multi
228 * component image.
229 *
230 * Note: no checking of the image type is done, caller must pass
231 * a valid multi component image.
232 *
233 * returns:
234 * number of components
235 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000236ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100237{
238 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100239 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100240
241 /* get start of the image payload, which in case of multi
242 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000243 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100244
245 /* count non empty slots */
246 for (i = 0; size[i]; ++i)
247 count++;
248
249 return count;
250}
251
252/**
253 * image_multi_getimg - get component data address and size
254 * @hdr: pointer to the header of the multi component image
255 * @idx: index of the requested component
256 * @data: pointer to a ulong variable, will hold component data address
257 * @len: pointer to a ulong variable, will hold component size
258 *
259 * image_multi_getimg() returns size and data address for the requested
260 * component in a multi component image.
261 *
262 * Note: no checking of the image type is done, caller must pass
263 * a valid multi component image.
264 *
265 * returns:
266 * data address and size of the component, if idx is valid
267 * 0 in data and len, if idx is out of range
268 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000269void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100270 ulong *data, ulong *len)
271{
272 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100273 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700274 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100275
276 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000277 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100278
279 /* get start of the image payload, which in case of multi
280 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000281 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100282
283 /* get address of the proper component data start, which means
284 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100286
287 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000288 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100289 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100290
291 /* go over all indices preceding requested component idx */
292 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700293 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000294 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100295 }
296
297 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700298 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100299 } else {
300 *len = 0;
301 *data = 0;
302 }
303}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100304
Stephen Warren712fbcf2011-10-18 11:11:49 +0000305static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100306{
Heiko Schocher80402f32015-06-29 09:10:46 +0200307 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100308
Stephen Warren712fbcf2011-10-18 11:11:49 +0000309 os = genimg_get_os_name(image_get_os(hdr));
310 arch = genimg_get_arch_name(image_get_arch(hdr));
311 type = genimg_get_type_name(image_get_type(hdr));
312 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100313
Stephen Warren712fbcf2011-10-18 11:11:49 +0000314 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100315}
316
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100317/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200318 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200319 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100320 * @p: pointer to prefix string
321 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200322 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100323 * The routine prints out all header fields followed by the size/offset data
324 * for MULTI/SCRIPT images.
325 *
326 * returns:
327 * no returned results
328 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000329void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100330{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200331 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200332 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200333
Simon Glass1fe7d932013-05-08 08:05:58 +0000334 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000335 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000336 if (IMAGE_ENABLE_TIMESTAMP) {
337 printf("%sCreated: ", p);
338 genimg_print_time((time_t)image_get_time(hdr));
339 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000340 printf("%sImage Type: ", p);
341 image_print_type(hdr);
342 printf("%sData Size: ", p);
343 genimg_print_size(image_get_data_size(hdr));
344 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
345 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100346
Stephen Warren712fbcf2011-10-18 11:11:49 +0000347 if (image_check_type(hdr, IH_TYPE_MULTI) ||
348 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100349 int i;
350 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000351 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100352
Stephen Warren712fbcf2011-10-18 11:11:49 +0000353 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100354 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000355 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100356
Stephen Warren712fbcf2011-10-18 11:11:49 +0000357 printf("%s Image %d: ", p, i);
358 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100359
Stephen Warren712fbcf2011-10-18 11:11:49 +0000360 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100361 /*
362 * the user may need to know offsets
363 * if planning to do something with
364 * multiple files
365 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000366 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100367 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100368 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100369 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
370 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
371 image_get_load(hdr) - image_get_header_size(),
372 image_get_size(hdr) + image_get_header_size()
373 - 0x1FE0);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100374 }
375}
376
Marian Balakowicz570abb02008-02-29 15:59:59 +0100377
378#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200379#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100380/**
381 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100382 * @rd_addr: ramdisk image start address
383 * @arch: expected ramdisk architecture
384 * @verify: checksum verification flag
385 *
386 * image_get_ramdisk() returns a pointer to the verified ramdisk image
387 * header. Routine receives image start address and expected architecture
388 * flag. Verification done covers data and header integrity and os/type/arch
389 * fields checking.
390 *
391 * If dataflash support is enabled routine checks for dataflash addresses
392 * and handles required dataflash reads.
393 *
394 * returns:
395 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600396 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100397 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000398static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100399 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100400{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200401 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100402
Stephen Warren712fbcf2011-10-18 11:11:49 +0000403 if (!image_check_magic(rd_hdr)) {
404 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000405 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600406 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100407 }
408
Stephen Warren712fbcf2011-10-18 11:11:49 +0000409 if (!image_check_hcrc(rd_hdr)) {
410 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000411 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600412 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100413 }
414
Simon Glass770605e2012-02-13 13:51:18 +0000415 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000416 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100417
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100418 if (verify) {
419 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000420 if (!image_check_dcrc(rd_hdr)) {
421 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000422 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600423 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100424 }
425 puts("OK\n");
426 }
427
Simon Glass770605e2012-02-13 13:51:18 +0000428 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100429
Stephen Warren712fbcf2011-10-18 11:11:49 +0000430 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
431 !image_check_arch(rd_hdr, arch) ||
432 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
433 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100434 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000435 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600436 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100437 }
438
439 return rd_hdr;
440}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200441#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100442#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100443
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100444/*****************************************************************************/
445/* Shared dual-format routines */
446/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100447#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600448ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
449ulong save_addr; /* Default Save Address */
450ulong save_size; /* Default Save Size (in bytes) */
451
452static int on_loadaddr(const char *name, const char *value, enum env_op op,
453 int flags)
454{
455 switch (op) {
456 case env_op_create:
457 case env_op_overwrite:
458 load_addr = simple_strtoul(value, NULL, 16);
459 break;
460 default:
461 break;
462 }
463
464 return 0;
465}
466U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
467
Simon Glass723806c2017-08-03 12:22:15 -0600468ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100469{
Simon Glass00caae62017-08-03 12:22:12 -0600470 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100471 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000472 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100473 return tmp;
474 }
475
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200476#if defined(CONFIG_SYS_SDRAM_BASE)
477 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100478#elif defined(CONFIG_ARM)
479 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100480#else
481 return 0;
482#endif
483}
484
Simon Glass723806c2017-08-03 12:22:15 -0600485phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100486{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900487 phys_size_t tmp, size;
488 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600489 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100490 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000491 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100492 return tmp;
493 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900494
495#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
496 start = gd->bd->bi_dram[0].start;
497 size = gd->bd->bi_dram[0].size;
498#else
499 start = gd->bd->bi_memstart;
500 size = gd->bd->bi_memsize;
501#endif
502
Simon Glass00caae62017-08-03 12:22:12 -0600503 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500504 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000505 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500506 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900507 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500508
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900509 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100510}
511
Simon Glass723806c2017-08-03 12:22:15 -0600512phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000513{
514 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600515 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000516 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000517 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000518 return tmp;
519 }
520
521#if defined(CONFIG_SYS_BOOTMAPSZ)
522 return CONFIG_SYS_BOOTMAPSZ;
523#else
Simon Glass723806c2017-08-03 12:22:15 -0600524 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000525#endif
526}
527
Stephen Warren712fbcf2011-10-18 11:11:49 +0000528void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100529{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400530 if (to == from)
531 return;
532
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100533#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800534 if (to > from) {
535 from += len;
536 to += len;
537 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100538 while (len > 0) {
539 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000540 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800541 if (to > from) {
542 to -= tail;
543 from -= tail;
544 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000545 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800546 if (to < from) {
547 to += tail;
548 from += tail;
549 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100550 len -= tail;
551 }
552#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000553 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100554#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
555}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100556#endif /* !USE_HOSTCC */
557
Stephen Warren712fbcf2011-10-18 11:11:49 +0000558void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559{
560#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000561 printf("%d Bytes = ", size);
562 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100563#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100564 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100565 size, (double)size / 1.024e3,
566 (double)size / 1.048576e6);
567#endif
568}
569
Simon Glass859e92b2013-05-07 06:11:51 +0000570#if IMAGE_ENABLE_TIMESTAMP
571void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100572{
573#ifndef USE_HOSTCC
574 struct rtc_time tm;
575
Simon Glass9f9276c2015-04-20 12:37:18 -0600576 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000577 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100578 tm.tm_year, tm.tm_mon, tm.tm_mday,
579 tm.tm_hour, tm.tm_min, tm.tm_sec);
580#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000581 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100582#endif
583}
Simon Glass859e92b2013-05-07 06:11:51 +0000584#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100585
Simon Glass5b9d44d2015-06-23 15:38:25 -0600586const table_entry_t *get_table_entry(const table_entry_t *table, int id)
587{
588 for (; table->id >= 0; ++table) {
589 if (table->id == id)
590 return table;
591 }
592 return NULL;
593}
594
Simon Glass14262202016-06-30 10:52:16 -0600595static const char *unknown_msg(enum ih_category category)
596{
Simon Glassae3de0d2016-10-31 10:21:09 -0600597 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600598 static char msg[30];
599
Simon Glassae3de0d2016-10-31 10:21:09 -0600600 strcpy(msg, unknown_str);
601 strncat(msg, table_info[category].desc,
602 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600603
604 return msg;
605}
606
607/**
608 * get_cat_table_entry_name - translate entry id to long name
609 * @category: category to look up (enum ih_category)
610 * @id: entry id to be translated
611 *
612 * This will scan the translation table trying to find the entry that matches
613 * the given id.
614 *
615 * @retur long entry name if translation succeeds; error string on failure
616 */
617const char *genimg_get_cat_name(enum ih_category category, uint id)
618{
619 const table_entry_t *entry;
620
621 entry = get_table_entry(table_info[category].table, id);
622 if (!entry)
623 return unknown_msg(category);
624#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
625 return entry->lname;
626#else
627 return entry->lname + gd->reloc_off;
628#endif
629}
630
631/**
632 * get_cat_table_entry_short_name - translate entry id to short name
633 * @category: category to look up (enum ih_category)
634 * @id: entry id to be translated
635 *
636 * This will scan the translation table trying to find the entry that matches
637 * the given id.
638 *
639 * @retur short entry name if translation succeeds; error string on failure
640 */
641const char *genimg_get_cat_short_name(enum ih_category category, uint id)
642{
643 const table_entry_t *entry;
644
645 entry = get_table_entry(table_info[category].table, id);
646 if (!entry)
647 return unknown_msg(category);
648#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
649 return entry->sname;
650#else
651 return entry->sname + gd->reloc_off;
652#endif
653}
654
655int genimg_get_cat_count(enum ih_category category)
656{
657 return table_info[category].count;
658}
659
660const char *genimg_get_cat_desc(enum ih_category category)
661{
662 return table_info[category].desc;
663}
664
Marian Balakowicz570abb02008-02-29 15:59:59 +0100665/**
666 * get_table_entry_name - translate entry id to long name
667 * @table: pointer to a translation table for entries of a specific type
668 * @msg: message to be returned when translation fails
669 * @id: entry id to be translated
670 *
671 * get_table_entry_name() will go over translation table trying to find
672 * entry that matches given id. If matching entry is found, its long
673 * name is returned to the caller.
674 *
675 * returns:
676 * long entry name if translation succeeds
677 * msg otherwise
678 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400679char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100680{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600681 table = get_table_entry(table, id);
682 if (!table)
683 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200684#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600685 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500686#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600687 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500688#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100689}
690
Stephen Warren712fbcf2011-10-18 11:11:49 +0000691const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100692{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000693 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100694}
695
Stephen Warren712fbcf2011-10-18 11:11:49 +0000696const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100697{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
699 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100700}
701
Stephen Warren712fbcf2011-10-18 11:11:49 +0000702const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100703{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000704 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100705}
706
Simon Glasscef2e512016-02-22 22:55:50 -0700707static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600708{
Simon Glasscef2e512016-02-22 22:55:50 -0700709 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600710 if (!table)
711 return "unknown";
712#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
713 return table->sname;
714#else
715 return table->sname + gd->reloc_off;
716#endif
717}
718
Simon Glasscef2e512016-02-22 22:55:50 -0700719const char *genimg_get_type_short_name(uint8_t type)
720{
721 return genimg_get_short_name(uimage_type, type);
722}
723
Stephen Warren712fbcf2011-10-18 11:11:49 +0000724const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100725{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000726 return (get_table_entry_name(uimage_comp, "Unknown Compression",
727 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100728}
729
Simon Glasscef2e512016-02-22 22:55:50 -0700730const char *genimg_get_comp_short_name(uint8_t comp)
731{
732 return genimg_get_short_name(uimage_comp, comp);
733}
734
735const char *genimg_get_os_short_name(uint8_t os)
736{
737 return genimg_get_short_name(uimage_os, os);
738}
739
740const char *genimg_get_arch_short_name(uint8_t arch)
741{
742 return genimg_get_short_name(uimage_arch, arch);
743}
744
Marian Balakowicz570abb02008-02-29 15:59:59 +0100745/**
746 * get_table_entry_id - translate short entry name to id
747 * @table: pointer to a translation table for entries of a specific type
748 * @table_name: to be used in case of error
749 * @name: entry short name to be translated
750 *
751 * get_table_entry_id() will go over translation table trying to find
752 * entry that matches given short name. If matching entry is found,
753 * its id returned to the caller.
754 *
755 * returns:
756 * entry id if translation succeeds
757 * -1 otherwise
758 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400759int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100760 const char *table_name, const char *name)
761{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400762 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100763
764 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200765#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600766 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200767#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600768 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500769#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100770 return (t->id);
771 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000772 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600773
774 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100775}
776
Stephen Warren712fbcf2011-10-18 11:11:49 +0000777int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100778{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000779 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100780}
781
Stephen Warren712fbcf2011-10-18 11:11:49 +0000782int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100783{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000784 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100785}
786
Stephen Warren712fbcf2011-10-18 11:11:49 +0000787int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100788{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000789 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100790}
791
Stephen Warren712fbcf2011-10-18 11:11:49 +0000792int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100793{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000794 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100795}
796
797#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100798/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700799 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
800 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700801 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700802 * @fit_uname_config: double pointer to a char, will hold pointer to a
803 * configuration unit name
804 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
805 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700806 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700807 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700808 * which is normally the first argv of bootm/bootz
809 *
810 * returns:
811 * kernel start address
812 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700813ulong genimg_get_kernel_addr_fit(char * const img_addr,
814 const char **fit_uname_config,
815 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700816{
Bryan Wu0f641402014-07-31 17:39:58 -0700817 ulong kernel_addr;
818
819 /* find out kernel image address */
820 if (!img_addr) {
821 kernel_addr = load_addr;
822 debug("* kernel: default image load address = 0x%08lx\n",
823 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700824#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700825 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700826 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700827 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700828 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700829 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700830 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700831 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700832 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700833#endif
834 } else {
835 kernel_addr = simple_strtoul(img_addr, NULL, 16);
836 debug("* kernel: cmdline image address = 0x%08lx\n",
837 kernel_addr);
838 }
839
840 return kernel_addr;
841}
842
843/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700844 * genimg_get_kernel_addr() is the simple version of
845 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
846 */
847ulong genimg_get_kernel_addr(char * const img_addr)
848{
849 const char *fit_uname_config = NULL;
850 const char *fit_uname_kernel = NULL;
851
852 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
853 &fit_uname_kernel);
854}
855
856/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100857 * genimg_get_format - get image format type
858 * @img_addr: image start address
859 *
860 * genimg_get_format() checks whether provided address points to a valid
861 * legacy or FIT image.
862 *
863 * New uImage format and FDT blob are based on a libfdt. FDT blob
864 * may be passed directly or embedded in a FIT image. In both situations
865 * genimg_get_format() must be able to dectect libfdt header.
866 *
867 * returns:
868 * image format type or IMAGE_FORMAT_INVALID if no image is present
869 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000870int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100871{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200872#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200873 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100874
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200875 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100876 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200877 return IMAGE_FORMAT_LEGACY;
878#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700879#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200880 if (fdt_check_header(img_addr) == 0)
881 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500882#endif
883#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200884 if (android_image_check_header(img_addr) == 0)
885 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100886#endif
887
Heiko Schocher21d29f72014-05-28 11:33:33 +0200888 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100889}
890
891/**
892 * genimg_get_image - get image from special storage (if necessary)
893 * @img_addr: image start address
894 *
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200895 * genimg_get_image() checks if provided image start address is located
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100896 * in a dataflash storage. If so, image is moved to a system RAM memory.
897 *
898 * returns:
899 * image start address after possible relocation from special storage
900 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000901ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100902{
903 ulong ram_addr = img_addr;
904
905#ifdef CONFIG_HAS_DATAFLASH
906 ulong h_size, d_size;
907
Stephen Warren712fbcf2011-10-18 11:11:49 +0000908 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000909 void *buf;
910
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100911 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200912 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100913
914 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000915 h_size = image_get_header_size();
Simon Glass73223f02016-02-22 22:55:43 -0700916#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100917 if (sizeof(struct fdt_header) > h_size)
918 h_size = sizeof(struct fdt_header);
919#endif
920
921 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000922 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100923 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
924
Simon Glass35e7b0f2013-05-07 06:12:03 +0000925 buf = map_sysmem(ram_addr, 0);
926 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100927
928 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000929 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200930#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100931 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000932 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000933 debug(" Legacy format image found at 0x%08lx, "
934 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100935 ram_addr, d_size);
936 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200937#endif
Simon Glass73223f02016-02-22 22:55:43 -0700938#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100939 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000940 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000941 debug(" FIT/FDT format image found at 0x%08lx, "
942 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100943 ram_addr, d_size);
944 break;
945#endif
946 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000947 printf(" No valid image found at 0x%08lx\n",
948 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100949 return ram_addr;
950 }
951
952 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000953 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100954 "%08lx to RAM address %08lx\n", img_addr + h_size,
955 ram_addr + h_size);
956
Stephen Warren712fbcf2011-10-18 11:11:49 +0000957 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000958 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100959
960 }
961#endif /* CONFIG_HAS_DATAFLASH */
962
963 return ram_addr;
964}
965
966/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100967 * fit_has_config - check if there is a valid FIT configuration
968 * @images: pointer to the bootm command headers structure
969 *
970 * fit_has_config() checks if there is a FIT configuration in use
971 * (if FTI support is present).
972 *
973 * returns:
974 * 0, no FIT support or no configuration found
975 * 1, configuration found
976 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000977int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100978{
Simon Glass73223f02016-02-22 22:55:43 -0700979#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100980 if (images->fit_uname_cfg)
981 return 1;
982#endif
983 return 0;
984}
985
986/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100987 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100988 * @argc: command argument count
989 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100990 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100991 * @arch: expected ramdisk architecture
992 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
993 * @rd_end: pointer to a ulong variable, will hold ramdisk end
994 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100995 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100996 * Curently supported are the following ramdisk sources:
997 * - multicomponent kernel/ramdisk image,
998 * - commandline provided address of decicated ramdisk image.
999 *
1000 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001001 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001002 * rd_start and rd_end are set to ramdisk start/end addresses if
1003 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001004 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001005 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001006 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001007 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001008int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001009 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001010{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001011 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001012 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001013#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001014 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001015#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001016 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001017#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001018 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001019#endif
Simon Glass73223f02016-02-22 22:55:43 -07001020#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001021 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001022 const char *fit_uname_ramdisk = NULL;
1023 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001024 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001025#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001026 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001027
Marian Balakowiczc8779642008-03-12 10:12:37 +01001028 *rd_start = 0;
1029 *rd_end = 0;
1030
Tom Rini1fec3c52015-08-27 15:42:41 -04001031#ifdef CONFIG_ANDROID_BOOT_IMAGE
1032 /*
1033 * Look for an Android boot image.
1034 */
1035 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001036 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -04001037 select = argv[0];
1038#endif
1039
Simon Glass983c72f2013-06-11 11:14:46 -07001040 if (argc >= 2)
1041 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001042
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001043 /*
1044 * Look for a '-' which indicates to ignore the
1045 * ramdisk argument
1046 */
Simon Glass983c72f2013-06-11 11:14:46 -07001047 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001048 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001049 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001050 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001051#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001052 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001053 /*
1054 * If the init ramdisk comes from the FIT image and
1055 * the FIT image address is omitted in the command
1056 * line argument, try to use os FIT image address or
1057 * default load address.
1058 */
1059 if (images->fit_uname_os)
1060 default_addr = (ulong)images->fit_hdr_os;
1061 else
1062 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001063
Simon Glass983c72f2013-06-11 11:14:46 -07001064 if (fit_parse_conf(select, default_addr,
1065 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001066 debug("* ramdisk: config '%s' from image at "
1067 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001068 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001069 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001070 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001071 debug("* ramdisk: subimage '%s' from image at "
1072 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001073 fit_uname_ramdisk, rd_addr);
1074 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001075#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001076 {
Simon Glass983c72f2013-06-11 11:14:46 -07001077 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001078 debug("* ramdisk: cmdline image address = "
1079 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001080 rd_addr);
1081 }
Simon Glass73223f02016-02-22 22:55:43 -07001082#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001083 } else {
1084 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001085 * command argument. If the property is not defined,
1086 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001087 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001088 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001089 rd_noffset = fit_get_node_from_config(images,
1090 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001091 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001092 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001093 else if (rd_noffset < 0)
1094 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001095 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001096#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001097
1098 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001099 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001100
1101 /*
1102 * Check if there is an initrd image at the
1103 * address provided in the second bootm argument
1104 * check image type, for FIT images get FIT node.
1105 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001106 buf = map_sysmem(rd_addr, 0);
1107 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001108#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001109 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001110 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001111 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001112
Simon Glass770605e2012-02-13 13:51:18 +00001113 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001114 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001115 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001116
Marian Balakowiczc8779642008-03-12 10:12:37 +01001117 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001118 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001119
Stephen Warren712fbcf2011-10-18 11:11:49 +00001120 rd_data = image_get_data(rd_hdr);
1121 rd_len = image_get_data_size(rd_hdr);
1122 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001123 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001124#endif
Simon Glass73223f02016-02-22 22:55:43 -07001125#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001126 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001127 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001128 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001129 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001130 IH_TYPE_RAMDISK,
1131 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001132 FIT_LOAD_OPTIONAL_NON_ZERO,
1133 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001134 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001135 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001136
Simon Glassa51ec632013-05-16 13:53:22 +00001137 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001138 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001139 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001140 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001141#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001142#ifdef CONFIG_ANDROID_BOOT_IMAGE
1143 case IMAGE_FORMAT_ANDROID:
1144 android_image_get_ramdisk((void *)images->os.start,
1145 &rd_data, &rd_len);
1146 break;
1147#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001148 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001149#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001150 end = NULL;
1151 if (select)
1152 end = strchr(select, ':');
1153 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001154 rd_len = simple_strtoul(++end, NULL, 16);
1155 rd_data = rd_addr;
1156 } else
1157#endif
1158 {
1159 puts("Wrong Ramdisk Image Format\n");
1160 rd_data = rd_len = rd_load = 0;
1161 return 1;
1162 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001163 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001164 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001165 image_check_type(&images->legacy_hdr_os_copy,
1166 IH_TYPE_MULTI)) {
1167
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001168 /*
1169 * Now check if we have a legacy mult-component image,
1170 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001171 */
Simon Glass770605e2012-02-13 13:51:18 +00001172 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001173 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001174 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001175 (ulong)images->legacy_hdr_os);
1176
Stephen Warren712fbcf2011-10-18 11:11:49 +00001177 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001178 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001179 /*
1180 * no initrd image
1181 */
Simon Glass770605e2012-02-13 13:51:18 +00001182 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001183 rd_len = rd_data = 0;
1184 }
1185
1186 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001187 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001188 } else {
1189 *rd_start = rd_data;
1190 *rd_end = rd_data + rd_len;
1191 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001192 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001193 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001194
1195 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001196}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001197
John Rigbyfca43cc2010-10-13 13:57:35 -06001198#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001199/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001200 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001201 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001202 * @rd_data: ramdisk data start address
1203 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001204 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1205 * start address (after possible relocation)
1206 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1207 * end address (after possible relocation)
1208 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001209 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001210 * variable and if requested ramdisk data is moved to a specified location.
1211 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001212 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1213 * start/end addresses if ramdisk image start and len were provided,
1214 * otherwise set initrd_start and initrd_end set to zeros.
1215 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001216 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001217 * 0 - success
1218 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001219 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001220int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001221 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001222{
1223 char *s;
1224 ulong initrd_high;
1225 int initrd_copy_to_ram = 1;
1226
Simon Glass00caae62017-08-03 12:22:12 -06001227 s = env_get("initrd_high");
1228 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001229 /* a value of "no" or a similar string will act like 0,
1230 * turning the "load high" feature off. This is intentional.
1231 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001232 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001233 if (initrd_high == ~0)
1234 initrd_copy_to_ram = 0;
1235 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001236 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001237 }
1238
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001239
1240#ifdef CONFIG_LOGBUFFER
1241 /* Prevent initrd from overwriting logbuffer */
1242 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1243#endif
1244
Stephen Warren712fbcf2011-10-18 11:11:49 +00001245 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001246 initrd_high, initrd_copy_to_ram);
1247
1248 if (rd_data) {
1249 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001250 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001251 *initrd_start = rd_data;
1252 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001253 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001254 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001255 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001256 *initrd_start = (ulong)lmb_alloc_base(lmb,
1257 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001258 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001259 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1260 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001261
Kumar Galae822d7f2008-02-27 21:51:49 -06001262 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001263 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001264 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001265 }
Simon Glass770605e2012-02-13 13:51:18 +00001266 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001267
1268 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001269 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001270 *initrd_start, *initrd_end);
1271
Stephen Warren712fbcf2011-10-18 11:11:49 +00001272 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001273 (void *)rd_data, rd_len, CHUNKSZ);
1274
Kumar Gala3b200112011-12-07 04:42:58 +00001275#ifdef CONFIG_MP
1276 /*
1277 * Ensure the image is flushed to memory to handle
1278 * AMP boot scenarios in which we might not be
1279 * HW cache coherent
1280 */
1281 flush_cache((unsigned long)*initrd_start, rd_len);
1282#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001283 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001284 }
1285 } else {
1286 *initrd_start = 0;
1287 *initrd_end = 0;
1288 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001289 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001290 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001291
Kumar Galae822d7f2008-02-27 21:51:49 -06001292 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001293
Kumar Galae822d7f2008-02-27 21:51:49 -06001294error:
1295 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001296}
John Rigbyfca43cc2010-10-13 13:57:35 -06001297#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001298
Simon Glass90268b82014-10-19 21:11:24 -06001299int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1300 ulong *setup_start, ulong *setup_len)
1301{
Simon Glass73223f02016-02-22 22:55:43 -07001302#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001303 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1304#else
1305 return -ENOENT;
1306#endif
1307}
1308
Simon Glass73223f02016-02-22 22:55:43 -07001309#if IMAGE_ENABLE_FIT
Michal Simek62afc602016-05-17 14:03:50 +02001310#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_XILINX)
1311int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1312 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1313{
1314 ulong tmp_img_addr, img_data, img_len;
1315 void *buf;
1316 int conf_noffset;
1317 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001318 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001319 int err;
1320 int devnum = 0; /* TODO support multi fpga platforms */
1321 const fpga_desc * const desc = fpga_get_desc(devnum);
1322 xilinx_desc *desc_xilinx = desc->devdesc;
1323
1324 /* Check to see if the images struct has a FIT configuration */
1325 if (!genimg_has_config(images)) {
1326 debug("## FIT configuration was not specified\n");
1327 return 0;
1328 }
1329
1330 /*
1331 * Obtain the os FIT header from the images struct
1332 * copy from dataflash if needed
1333 */
1334 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1335 tmp_img_addr = genimg_get_image(tmp_img_addr);
1336 buf = map_sysmem(tmp_img_addr, 0);
1337 /*
1338 * Check image type. For FIT images get FIT node
1339 * and attempt to locate a generic binary.
1340 */
1341 switch (genimg_get_format(buf)) {
1342 case IMAGE_FORMAT_FIT:
1343 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1344
Simon Glassb02e4042016-10-02 17:59:28 -06001345 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1346 NULL);
1347 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001348 debug("## FPGA image is not specified\n");
1349 return 0;
1350 }
1351 fit_img_result = fit_image_load(images,
1352 tmp_img_addr,
1353 (const char **)&uname,
1354 &(images->fit_uname_cfg),
1355 arch,
1356 IH_TYPE_FPGA,
1357 BOOTSTAGE_ID_FPGA_INIT,
1358 FIT_LOAD_OPTIONAL_NON_ZERO,
1359 &img_data, &img_len);
1360
1361 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1362 uname, img_data, img_len);
1363
1364 if (fit_img_result < 0) {
1365 /* Something went wrong! */
1366 return fit_img_result;
1367 }
1368
1369 if (img_len >= desc_xilinx->size) {
1370 name = "full";
1371 err = fpga_loadbitstream(devnum, (char *)img_data,
1372 img_len, BIT_FULL);
1373 if (err)
1374 err = fpga_load(devnum, (const void *)img_data,
1375 img_len, BIT_FULL);
1376 } else {
1377 name = "partial";
1378 err = fpga_loadbitstream(devnum, (char *)img_data,
1379 img_len, BIT_PARTIAL);
1380 if (err)
1381 err = fpga_load(devnum, (const void *)img_data,
1382 img_len, BIT_PARTIAL);
1383 }
1384
Michal Simek62afc602016-05-17 14:03:50 +02001385 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001386 return err;
1387
1388 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001389 break;
1390 default:
1391 printf("The given image format is not supported (corrupt?)\n");
1392 return 1;
1393 }
1394
1395 return 0;
1396}
1397#endif
1398
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001399static void fit_loadable_process(uint8_t img_type,
1400 ulong img_data,
1401 ulong img_len)
1402{
1403 int i;
1404 const unsigned int count =
1405 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1406 struct fit_loadable_tbl *fit_loadable_handler =
1407 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1408 /* For each loadable handler */
1409 for (i = 0; i < count; i++, fit_loadable_handler++)
1410 /* matching this type */
1411 if (fit_loadable_handler->type == img_type)
1412 /* call that handler with this image data */
1413 fit_loadable_handler->handler(img_data, img_len);
1414}
1415
Karl Apsite84a07db2015-05-21 09:52:48 -04001416int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1417 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1418{
1419 /*
1420 * These variables are used to hold the current image location
1421 * in system memory.
1422 */
1423 ulong tmp_img_addr;
1424 /*
1425 * These two variables are requirements for fit_image_load, but
1426 * their values are not used
1427 */
1428 ulong img_data, img_len;
1429 void *buf;
1430 int loadables_index;
1431 int conf_noffset;
1432 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001433 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001434 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001435
1436 /* Check to see if the images struct has a FIT configuration */
1437 if (!genimg_has_config(images)) {
1438 debug("## FIT configuration was not specified\n");
1439 return 0;
1440 }
1441
1442 /*
1443 * Obtain the os FIT header from the images struct
1444 * copy from dataflash if needed
1445 */
1446 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1447 tmp_img_addr = genimg_get_image(tmp_img_addr);
1448 buf = map_sysmem(tmp_img_addr, 0);
1449 /*
1450 * Check image type. For FIT images get FIT node
1451 * and attempt to locate a generic binary.
1452 */
1453 switch (genimg_get_format(buf)) {
1454 case IMAGE_FORMAT_FIT:
1455 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1456
1457 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001458 uname = fdt_stringlist_get(buf, conf_noffset,
1459 FIT_LOADABLE_PROP, loadables_index,
1460 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001461 loadables_index++)
1462 {
1463 fit_img_result = fit_image_load(images,
1464 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001465 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001466 &(images->fit_uname_cfg), arch,
1467 IH_TYPE_LOADABLE,
1468 BOOTSTAGE_ID_FIT_LOADABLE_START,
1469 FIT_LOAD_OPTIONAL_NON_ZERO,
1470 &img_data, &img_len);
1471 if (fit_img_result < 0) {
1472 /* Something went wrong! */
1473 return fit_img_result;
1474 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001475
1476 fit_img_result = fit_image_get_node(buf, uname);
1477 if (fit_img_result < 0) {
1478 /* Something went wrong! */
1479 return fit_img_result;
1480 }
1481 fit_img_result = fit_image_get_type(buf,
1482 fit_img_result,
1483 &img_type);
1484 if (fit_img_result < 0) {
1485 /* Something went wrong! */
1486 return fit_img_result;
1487 }
1488
1489 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001490 }
1491 break;
1492 default:
1493 printf("The given image format is not supported (corrupt?)\n");
1494 return 1;
1495 }
1496
1497 return 0;
1498}
1499#endif
1500
John Rigbyfca43cc2010-10-13 13:57:35 -06001501#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001502/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001503 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001504 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001505 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1506 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1507 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001508 * boot_get_cmdline() allocates space for kernel command line below
Simon Glass723806c2017-08-03 12:22:15 -06001509 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001510 * variable is present its contents is copied to allocated kernel
1511 * command line.
1512 *
1513 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001514 * 0 - success
1515 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001516 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001517int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001518{
1519 char *cmdline;
1520 char *s;
1521
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001522 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001523 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001524
1525 if (cmdline == NULL)
1526 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001527
Simon Glass00caae62017-08-03 12:22:12 -06001528 s = env_get("bootargs");
1529 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001530 s = "";
1531
1532 strcpy(cmdline, s);
1533
1534 *cmd_start = (ulong) & cmdline[0];
1535 *cmd_end = *cmd_start + strlen(cmdline);
1536
Stephen Warren712fbcf2011-10-18 11:11:49 +00001537 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001538
Kumar Galae822d7f2008-02-27 21:51:49 -06001539 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001540}
John Rigbyfca43cc2010-10-13 13:57:35 -06001541#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001542
John Rigbyfca43cc2010-10-13 13:57:35 -06001543#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001544/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001545 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001546 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001547 * @kbd: double pointer to board info data
1548 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001549 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001550 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001551 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001552 *
1553 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001554 * 0 - success
1555 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001556 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001557int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001558{
Becky Bruce391fd932008-06-09 20:37:18 -05001559 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001560 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001561 if (*kbd == NULL)
1562 return -1;
1563
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001564 **kbd = *(gd->bd);
1565
Stephen Warren712fbcf2011-10-18 11:11:49 +00001566 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001567
1568#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1569 do_bdinfo(NULL, 0, 0, NULL);
1570#endif
1571
Kumar Galae822d7f2008-02-27 21:51:49 -06001572 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001573}
John Rigbyfca43cc2010-10-13 13:57:35 -06001574#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001575
1576#ifdef CONFIG_LMB
1577int image_setup_linux(bootm_headers_t *images)
1578{
1579 ulong of_size = images->ft_len;
1580 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001581 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001582 int ret;
1583
1584 if (IMAGE_ENABLE_OF_LIBFDT)
1585 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1586
1587 if (IMAGE_BOOT_GET_CMDLINE) {
1588 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1589 &images->cmdline_end);
1590 if (ret) {
1591 puts("ERROR with allocation of cmdline\n");
1592 return ret;
1593 }
1594 }
Simon Glass13d06982013-05-08 08:06:01 +00001595
1596 if (IMAGE_ENABLE_OF_LIBFDT) {
1597 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1598 if (ret)
1599 return ret;
1600 }
1601
1602 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1603 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1604 if (ret)
1605 return ret;
1606 }
1607
1608 return 0;
1609}
1610#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001611#endif /* !USE_HOSTCC */