blob: 7604494a567ed9cf9af14c2b58a2bc6d1fb3805d [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" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100168 { -1, "", "", },
169};
170
Mike Frysinger7edb1862010-10-20 07:17:39 -0400171static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100172 { IH_COMP_NONE, "none", "uncompressed", },
173 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
174 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200175 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100176 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700177 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100178 { -1, "", "", },
179};
180
Simon Glass56d7ab72016-06-30 10:52:14 -0600181struct table_info {
182 const char *desc;
183 int count;
184 const table_entry_t *table;
185};
186
187static const struct table_info table_info[IH_COUNT] = {
188 { "architecture", IH_ARCH_COUNT, uimage_arch },
189 { "compression", IH_COMP_COUNT, uimage_comp },
190 { "operating system", IH_OS_COUNT, uimage_os },
191 { "image type", IH_TYPE_COUNT, uimage_type },
192};
193
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100194/*****************************************************************************/
195/* Legacy format routines */
196/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000197int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100198{
199 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000200 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100201 image_header_t header;
202
203 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000204 memmove(&header, (char *)hdr, image_get_header_size());
205 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100206
Stephen Warren712fbcf2011-10-18 11:11:49 +0000207 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100208
Stephen Warren712fbcf2011-10-18 11:11:49 +0000209 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100210}
211
Stephen Warren712fbcf2011-10-18 11:11:49 +0000212int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100213{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000214 ulong data = image_get_data(hdr);
215 ulong len = image_get_data_size(hdr);
216 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100217
Stephen Warren712fbcf2011-10-18 11:11:49 +0000218 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100219}
220
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100221/**
222 * image_multi_count - get component (sub-image) count
223 * @hdr: pointer to the header of the multi component image
224 *
225 * image_multi_count() returns number of components in a multi
226 * component image.
227 *
228 * Note: no checking of the image type is done, caller must pass
229 * a valid multi component image.
230 *
231 * returns:
232 * number of components
233 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000234ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100235{
236 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100237 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100238
239 /* get start of the image payload, which in case of multi
240 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000241 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100242
243 /* count non empty slots */
244 for (i = 0; size[i]; ++i)
245 count++;
246
247 return count;
248}
249
250/**
251 * image_multi_getimg - get component data address and size
252 * @hdr: pointer to the header of the multi component image
253 * @idx: index of the requested component
254 * @data: pointer to a ulong variable, will hold component data address
255 * @len: pointer to a ulong variable, will hold component size
256 *
257 * image_multi_getimg() returns size and data address for the requested
258 * component in a multi component image.
259 *
260 * Note: no checking of the image type is done, caller must pass
261 * a valid multi component image.
262 *
263 * returns:
264 * data address and size of the component, if idx is valid
265 * 0 in data and len, if idx is out of range
266 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000267void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100268 ulong *data, ulong *len)
269{
270 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100271 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700272 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100273
274 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000275 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100276
277 /* get start of the image payload, which in case of multi
278 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000279 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100280
281 /* get address of the proper component data start, which means
282 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000283 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100284
285 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000286 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100287 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100288
289 /* go over all indices preceding requested component idx */
290 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700291 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000292 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100293 }
294
295 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700296 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100297 } else {
298 *len = 0;
299 *data = 0;
300 }
301}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100302
Stephen Warren712fbcf2011-10-18 11:11:49 +0000303static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100304{
Heiko Schocher80402f32015-06-29 09:10:46 +0200305 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100306
Stephen Warren712fbcf2011-10-18 11:11:49 +0000307 os = genimg_get_os_name(image_get_os(hdr));
308 arch = genimg_get_arch_name(image_get_arch(hdr));
309 type = genimg_get_type_name(image_get_type(hdr));
310 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100311
Stephen Warren712fbcf2011-10-18 11:11:49 +0000312 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100313}
314
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100315/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200316 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200317 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100318 * @p: pointer to prefix string
319 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200320 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100321 * The routine prints out all header fields followed by the size/offset data
322 * for MULTI/SCRIPT images.
323 *
324 * returns:
325 * no returned results
326 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000327void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100328{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200329 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200330 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200331
Simon Glass1fe7d932013-05-08 08:05:58 +0000332 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000333 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000334 if (IMAGE_ENABLE_TIMESTAMP) {
335 printf("%sCreated: ", p);
336 genimg_print_time((time_t)image_get_time(hdr));
337 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000338 printf("%sImage Type: ", p);
339 image_print_type(hdr);
340 printf("%sData Size: ", p);
341 genimg_print_size(image_get_data_size(hdr));
342 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
343 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344
Stephen Warren712fbcf2011-10-18 11:11:49 +0000345 if (image_check_type(hdr, IH_TYPE_MULTI) ||
346 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100347 int i;
348 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000349 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100350
Stephen Warren712fbcf2011-10-18 11:11:49 +0000351 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100352 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000353 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100354
Stephen Warren712fbcf2011-10-18 11:11:49 +0000355 printf("%s Image %d: ", p, i);
356 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100357
Stephen Warren712fbcf2011-10-18 11:11:49 +0000358 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100359 /*
360 * the user may need to know offsets
361 * if planning to do something with
362 * multiple files
363 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000364 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100365 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100366 }
367 }
368}
369
Marian Balakowicz570abb02008-02-29 15:59:59 +0100370
371#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200372#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100373/**
374 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100375 * @rd_addr: ramdisk image start address
376 * @arch: expected ramdisk architecture
377 * @verify: checksum verification flag
378 *
379 * image_get_ramdisk() returns a pointer to the verified ramdisk image
380 * header. Routine receives image start address and expected architecture
381 * flag. Verification done covers data and header integrity and os/type/arch
382 * fields checking.
383 *
384 * If dataflash support is enabled routine checks for dataflash addresses
385 * and handles required dataflash reads.
386 *
387 * returns:
388 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600389 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100390 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000391static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100392 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100393{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200394 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100395
Stephen Warren712fbcf2011-10-18 11:11:49 +0000396 if (!image_check_magic(rd_hdr)) {
397 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000398 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600399 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100400 }
401
Stephen Warren712fbcf2011-10-18 11:11:49 +0000402 if (!image_check_hcrc(rd_hdr)) {
403 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000404 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600405 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100406 }
407
Simon Glass770605e2012-02-13 13:51:18 +0000408 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000409 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100410
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100411 if (verify) {
412 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000413 if (!image_check_dcrc(rd_hdr)) {
414 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000415 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600416 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100417 }
418 puts("OK\n");
419 }
420
Simon Glass770605e2012-02-13 13:51:18 +0000421 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100422
Stephen Warren712fbcf2011-10-18 11:11:49 +0000423 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
424 !image_check_arch(rd_hdr, arch) ||
425 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
426 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100427 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000428 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600429 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100430 }
431
432 return rd_hdr;
433}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200434#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100435#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100436
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100437/*****************************************************************************/
438/* Shared dual-format routines */
439/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100440#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600441ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
442ulong save_addr; /* Default Save Address */
443ulong save_size; /* Default Save Size (in bytes) */
444
445static int on_loadaddr(const char *name, const char *value, enum env_op op,
446 int flags)
447{
448 switch (op) {
449 case env_op_create:
450 case env_op_overwrite:
451 load_addr = simple_strtoul(value, NULL, 16);
452 break;
453 default:
454 break;
455 }
456
457 return 0;
458}
459U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
460
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100461ulong getenv_bootm_low(void)
462{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000463 char *s = getenv("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100464 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000465 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100466 return tmp;
467 }
468
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200469#if defined(CONFIG_SYS_SDRAM_BASE)
470 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100471#elif defined(CONFIG_ARM)
472 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100473#else
474 return 0;
475#endif
476}
477
Becky Bruce391fd932008-06-09 20:37:18 -0500478phys_size_t getenv_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100479{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900480 phys_size_t tmp, size;
481 phys_addr_t start;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000482 char *s = getenv("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100483 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000484 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100485 return tmp;
486 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900487
488#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
489 start = gd->bd->bi_dram[0].start;
490 size = gd->bd->bi_dram[0].size;
491#else
492 start = gd->bd->bi_memstart;
493 size = gd->bd->bi_memsize;
494#endif
495
Matthew McClintockc519fac2010-07-08 10:11:08 -0500496 s = getenv("bootm_low");
497 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000498 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500499 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900500 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500501
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900502 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100503}
504
Grant Likelyc3624e62011-03-28 09:58:43 +0000505phys_size_t getenv_bootm_mapsize(void)
506{
507 phys_size_t tmp;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000508 char *s = getenv("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000509 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000510 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000511 return tmp;
512 }
513
514#if defined(CONFIG_SYS_BOOTMAPSZ)
515 return CONFIG_SYS_BOOTMAPSZ;
516#else
517 return getenv_bootm_size();
518#endif
519}
520
Stephen Warren712fbcf2011-10-18 11:11:49 +0000521void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100522{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400523 if (to == from)
524 return;
525
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100526#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800527 if (to > from) {
528 from += len;
529 to += len;
530 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100531 while (len > 0) {
532 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000533 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800534 if (to > from) {
535 to -= tail;
536 from -= tail;
537 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000538 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800539 if (to < from) {
540 to += tail;
541 from += tail;
542 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100543 len -= tail;
544 }
545#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000546 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100547#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
548}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100549#endif /* !USE_HOSTCC */
550
Stephen Warren712fbcf2011-10-18 11:11:49 +0000551void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100552{
553#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000554 printf("%d Bytes = ", size);
555 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100556#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000557 printf("%d Bytes = %.2f kB = %.2f MB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100558 size, (double)size / 1.024e3,
559 (double)size / 1.048576e6);
560#endif
561}
562
Simon Glass859e92b2013-05-07 06:11:51 +0000563#if IMAGE_ENABLE_TIMESTAMP
564void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100565{
566#ifndef USE_HOSTCC
567 struct rtc_time tm;
568
Simon Glass9f9276c2015-04-20 12:37:18 -0600569 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000570 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100571 tm.tm_year, tm.tm_mon, tm.tm_mday,
572 tm.tm_hour, tm.tm_min, tm.tm_sec);
573#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000574 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100575#endif
576}
Simon Glass859e92b2013-05-07 06:11:51 +0000577#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100578
Simon Glass5b9d44d2015-06-23 15:38:25 -0600579const table_entry_t *get_table_entry(const table_entry_t *table, int id)
580{
581 for (; table->id >= 0; ++table) {
582 if (table->id == id)
583 return table;
584 }
585 return NULL;
586}
587
Simon Glass14262202016-06-30 10:52:16 -0600588static const char *unknown_msg(enum ih_category category)
589{
Simon Glassae3de0d2016-10-31 10:21:09 -0600590 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600591 static char msg[30];
592
Simon Glassae3de0d2016-10-31 10:21:09 -0600593 strcpy(msg, unknown_str);
594 strncat(msg, table_info[category].desc,
595 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600596
597 return msg;
598}
599
600/**
601 * get_cat_table_entry_name - translate entry id to long name
602 * @category: category to look up (enum ih_category)
603 * @id: entry id to be translated
604 *
605 * This will scan the translation table trying to find the entry that matches
606 * the given id.
607 *
608 * @retur long entry name if translation succeeds; error string on failure
609 */
610const char *genimg_get_cat_name(enum ih_category category, uint id)
611{
612 const table_entry_t *entry;
613
614 entry = get_table_entry(table_info[category].table, id);
615 if (!entry)
616 return unknown_msg(category);
617#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
618 return entry->lname;
619#else
620 return entry->lname + gd->reloc_off;
621#endif
622}
623
624/**
625 * get_cat_table_entry_short_name - translate entry id to short name
626 * @category: category to look up (enum ih_category)
627 * @id: entry id to be translated
628 *
629 * This will scan the translation table trying to find the entry that matches
630 * the given id.
631 *
632 * @retur short entry name if translation succeeds; error string on failure
633 */
634const char *genimg_get_cat_short_name(enum ih_category category, uint id)
635{
636 const table_entry_t *entry;
637
638 entry = get_table_entry(table_info[category].table, id);
639 if (!entry)
640 return unknown_msg(category);
641#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
642 return entry->sname;
643#else
644 return entry->sname + gd->reloc_off;
645#endif
646}
647
648int genimg_get_cat_count(enum ih_category category)
649{
650 return table_info[category].count;
651}
652
653const char *genimg_get_cat_desc(enum ih_category category)
654{
655 return table_info[category].desc;
656}
657
Marian Balakowicz570abb02008-02-29 15:59:59 +0100658/**
659 * get_table_entry_name - translate entry id to long name
660 * @table: pointer to a translation table for entries of a specific type
661 * @msg: message to be returned when translation fails
662 * @id: entry id to be translated
663 *
664 * get_table_entry_name() will go over translation table trying to find
665 * entry that matches given id. If matching entry is found, its long
666 * name is returned to the caller.
667 *
668 * returns:
669 * long entry name if translation succeeds
670 * msg otherwise
671 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400672char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100673{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600674 table = get_table_entry(table, id);
675 if (!table)
676 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200677#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600678 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500679#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600680 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500681#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100682}
683
Stephen Warren712fbcf2011-10-18 11:11:49 +0000684const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100685{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000686 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100687}
688
Stephen Warren712fbcf2011-10-18 11:11:49 +0000689const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100690{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000691 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
692 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100693}
694
Stephen Warren712fbcf2011-10-18 11:11:49 +0000695const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100696{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000697 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100698}
699
Simon Glasscef2e512016-02-22 22:55:50 -0700700static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600701{
Simon Glasscef2e512016-02-22 22:55:50 -0700702 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600703 if (!table)
704 return "unknown";
705#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
706 return table->sname;
707#else
708 return table->sname + gd->reloc_off;
709#endif
710}
711
Simon Glasscef2e512016-02-22 22:55:50 -0700712const char *genimg_get_type_short_name(uint8_t type)
713{
714 return genimg_get_short_name(uimage_type, type);
715}
716
Stephen Warren712fbcf2011-10-18 11:11:49 +0000717const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100718{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000719 return (get_table_entry_name(uimage_comp, "Unknown Compression",
720 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100721}
722
Simon Glasscef2e512016-02-22 22:55:50 -0700723const char *genimg_get_comp_short_name(uint8_t comp)
724{
725 return genimg_get_short_name(uimage_comp, comp);
726}
727
728const char *genimg_get_os_short_name(uint8_t os)
729{
730 return genimg_get_short_name(uimage_os, os);
731}
732
733const char *genimg_get_arch_short_name(uint8_t arch)
734{
735 return genimg_get_short_name(uimage_arch, arch);
736}
737
Marian Balakowicz570abb02008-02-29 15:59:59 +0100738/**
739 * get_table_entry_id - translate short entry name to id
740 * @table: pointer to a translation table for entries of a specific type
741 * @table_name: to be used in case of error
742 * @name: entry short name to be translated
743 *
744 * get_table_entry_id() will go over translation table trying to find
745 * entry that matches given short name. If matching entry is found,
746 * its id returned to the caller.
747 *
748 * returns:
749 * entry id if translation succeeds
750 * -1 otherwise
751 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400752int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100753 const char *table_name, const char *name)
754{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400755 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100756
757 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200758#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600759 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200760#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600761 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500762#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100763 return (t->id);
764 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000765 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600766
767 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100768}
769
Stephen Warren712fbcf2011-10-18 11:11:49 +0000770int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100771{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000772 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100773}
774
Stephen Warren712fbcf2011-10-18 11:11:49 +0000775int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100776{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000777 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100778}
779
Stephen Warren712fbcf2011-10-18 11:11:49 +0000780int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100781{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000782 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100783}
784
Stephen Warren712fbcf2011-10-18 11:11:49 +0000785int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100786{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000787 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100788}
789
790#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100791/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700792 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
793 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700794 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700795 * @fit_uname_config: double pointer to a char, will hold pointer to a
796 * configuration unit name
797 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
798 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700799 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700800 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700801 * which is normally the first argv of bootm/bootz
802 *
803 * returns:
804 * kernel start address
805 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700806ulong genimg_get_kernel_addr_fit(char * const img_addr,
807 const char **fit_uname_config,
808 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700809{
Bryan Wu0f641402014-07-31 17:39:58 -0700810 ulong kernel_addr;
811
812 /* find out kernel image address */
813 if (!img_addr) {
814 kernel_addr = load_addr;
815 debug("* kernel: default image load address = 0x%08lx\n",
816 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700817#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700818 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700819 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700820 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700821 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700822 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700823 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700824 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700825 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700826#endif
827 } else {
828 kernel_addr = simple_strtoul(img_addr, NULL, 16);
829 debug("* kernel: cmdline image address = 0x%08lx\n",
830 kernel_addr);
831 }
832
833 return kernel_addr;
834}
835
836/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700837 * genimg_get_kernel_addr() is the simple version of
838 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
839 */
840ulong genimg_get_kernel_addr(char * const img_addr)
841{
842 const char *fit_uname_config = NULL;
843 const char *fit_uname_kernel = NULL;
844
845 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
846 &fit_uname_kernel);
847}
848
849/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100850 * genimg_get_format - get image format type
851 * @img_addr: image start address
852 *
853 * genimg_get_format() checks whether provided address points to a valid
854 * legacy or FIT image.
855 *
856 * New uImage format and FDT blob are based on a libfdt. FDT blob
857 * may be passed directly or embedded in a FIT image. In both situations
858 * genimg_get_format() must be able to dectect libfdt header.
859 *
860 * returns:
861 * image format type or IMAGE_FORMAT_INVALID if no image is present
862 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000863int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100864{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200865#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200866 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100867
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200868 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100869 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200870 return IMAGE_FORMAT_LEGACY;
871#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700872#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200873 if (fdt_check_header(img_addr) == 0)
874 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500875#endif
876#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200877 if (android_image_check_header(img_addr) == 0)
878 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100879#endif
880
Heiko Schocher21d29f72014-05-28 11:33:33 +0200881 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100882}
883
884/**
885 * genimg_get_image - get image from special storage (if necessary)
886 * @img_addr: image start address
887 *
Guilherme Maciel Ferreira067d1562015-01-15 02:48:06 -0200888 * genimg_get_image() checks if provided image start address is located
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100889 * in a dataflash storage. If so, image is moved to a system RAM memory.
890 *
891 * returns:
892 * image start address after possible relocation from special storage
893 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000894ulong genimg_get_image(ulong img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100895{
896 ulong ram_addr = img_addr;
897
898#ifdef CONFIG_HAS_DATAFLASH
899 ulong h_size, d_size;
900
Stephen Warren712fbcf2011-10-18 11:11:49 +0000901 if (addr_dataflash(img_addr)) {
Simon Glass35e7b0f2013-05-07 06:12:03 +0000902 void *buf;
903
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100904 /* ger RAM address */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200905 ram_addr = CONFIG_SYS_LOAD_ADDR;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100906
907 /* get header size */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000908 h_size = image_get_header_size();
Simon Glass73223f02016-02-22 22:55:43 -0700909#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100910 if (sizeof(struct fdt_header) > h_size)
911 h_size = sizeof(struct fdt_header);
912#endif
913
914 /* read in header */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000915 debug(" Reading image header from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100916 "%08lx to RAM address %08lx\n", img_addr, ram_addr);
917
Simon Glass35e7b0f2013-05-07 06:12:03 +0000918 buf = map_sysmem(ram_addr, 0);
919 read_dataflash(img_addr, h_size, buf);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100920
921 /* get data size */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000922 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200923#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100924 case IMAGE_FORMAT_LEGACY:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000925 d_size = image_get_data_size(buf);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000926 debug(" Legacy format image found at 0x%08lx, "
927 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100928 ram_addr, d_size);
929 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200930#endif
Simon Glass73223f02016-02-22 22:55:43 -0700931#if IMAGE_ENABLE_FIT
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100932 case IMAGE_FORMAT_FIT:
Simon Glass35e7b0f2013-05-07 06:12:03 +0000933 d_size = fit_get_size(buf) - h_size;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000934 debug(" FIT/FDT format image found at 0x%08lx, "
935 "size 0x%08lx\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100936 ram_addr, d_size);
937 break;
938#endif
939 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000940 printf(" No valid image found at 0x%08lx\n",
941 img_addr);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100942 return ram_addr;
943 }
944
945 /* read in image data */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000946 debug(" Reading image remaining data from dataflash address "
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100947 "%08lx to RAM address %08lx\n", img_addr + h_size,
948 ram_addr + h_size);
949
Stephen Warren712fbcf2011-10-18 11:11:49 +0000950 read_dataflash(img_addr + h_size, d_size,
Simon Glass35e7b0f2013-05-07 06:12:03 +0000951 (char *)(buf + h_size));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100952
953 }
954#endif /* CONFIG_HAS_DATAFLASH */
955
956 return ram_addr;
957}
958
959/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100960 * fit_has_config - check if there is a valid FIT configuration
961 * @images: pointer to the bootm command headers structure
962 *
963 * fit_has_config() checks if there is a FIT configuration in use
964 * (if FTI support is present).
965 *
966 * returns:
967 * 0, no FIT support or no configuration found
968 * 1, configuration found
969 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000970int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100971{
Simon Glass73223f02016-02-22 22:55:43 -0700972#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100973 if (images->fit_uname_cfg)
974 return 1;
975#endif
976 return 0;
977}
978
979/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100980 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100981 * @argc: command argument count
982 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100983 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100984 * @arch: expected ramdisk architecture
985 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
986 * @rd_end: pointer to a ulong variable, will hold ramdisk end
987 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100988 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100989 * Curently supported are the following ramdisk sources:
990 * - multicomponent kernel/ramdisk image,
991 * - commandline provided address of decicated ramdisk image.
992 *
993 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100994 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100995 * rd_start and rd_end are set to ramdisk start/end addresses if
996 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100997 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500998 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100999 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001000 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001001int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001002 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001003{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001004 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001005 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001006#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001007 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001008#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001009 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001010#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001011 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001012#endif
Simon Glass73223f02016-02-22 22:55:43 -07001013#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001014 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001015 const char *fit_uname_ramdisk = NULL;
1016 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001017 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001018#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001019 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001020
Marian Balakowiczc8779642008-03-12 10:12:37 +01001021 *rd_start = 0;
1022 *rd_end = 0;
1023
Tom Rini1fec3c52015-08-27 15:42:41 -04001024#ifdef CONFIG_ANDROID_BOOT_IMAGE
1025 /*
1026 * Look for an Android boot image.
1027 */
1028 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001029 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -04001030 select = argv[0];
1031#endif
1032
Simon Glass983c72f2013-06-11 11:14:46 -07001033 if (argc >= 2)
1034 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001035
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001036 /*
1037 * Look for a '-' which indicates to ignore the
1038 * ramdisk argument
1039 */
Simon Glass983c72f2013-06-11 11:14:46 -07001040 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001041 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001042 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001043 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001044#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001045 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001046 /*
1047 * If the init ramdisk comes from the FIT image and
1048 * the FIT image address is omitted in the command
1049 * line argument, try to use os FIT image address or
1050 * default load address.
1051 */
1052 if (images->fit_uname_os)
1053 default_addr = (ulong)images->fit_hdr_os;
1054 else
1055 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001056
Simon Glass983c72f2013-06-11 11:14:46 -07001057 if (fit_parse_conf(select, default_addr,
1058 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001059 debug("* ramdisk: config '%s' from image at "
1060 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001061 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001062 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001063 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001064 debug("* ramdisk: subimage '%s' from image at "
1065 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001066 fit_uname_ramdisk, rd_addr);
1067 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001068#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001069 {
Simon Glass983c72f2013-06-11 11:14:46 -07001070 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001071 debug("* ramdisk: cmdline image address = "
1072 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001073 rd_addr);
1074 }
Simon Glass73223f02016-02-22 22:55:43 -07001075#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001076 } else {
1077 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001078 * command argument. If the property is not defined,
1079 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001080 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001081 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001082 rd_noffset = fit_get_node_from_config(images,
1083 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001084 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001085 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001086 else if (rd_noffset < 0)
1087 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001088 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001089#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001090
1091 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001092 rd_addr = genimg_get_image(rd_addr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001093
1094 /*
1095 * Check if there is an initrd image at the
1096 * address provided in the second bootm argument
1097 * check image type, for FIT images get FIT node.
1098 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001099 buf = map_sysmem(rd_addr, 0);
1100 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001101#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001102 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001103 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001104 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001105
Simon Glass770605e2012-02-13 13:51:18 +00001106 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001107 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001108 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001109
Marian Balakowiczc8779642008-03-12 10:12:37 +01001110 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001111 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001112
Stephen Warren712fbcf2011-10-18 11:11:49 +00001113 rd_data = image_get_data(rd_hdr);
1114 rd_len = image_get_data_size(rd_hdr);
1115 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001116 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001117#endif
Simon Glass73223f02016-02-22 22:55:43 -07001118#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001119 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001120 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001121 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001122 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001123 IH_TYPE_RAMDISK,
1124 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001125 FIT_LOAD_OPTIONAL_NON_ZERO,
1126 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001127 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001128 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001129
Simon Glassa51ec632013-05-16 13:53:22 +00001130 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001131 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001132 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001133 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001134#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001135#ifdef CONFIG_ANDROID_BOOT_IMAGE
1136 case IMAGE_FORMAT_ANDROID:
1137 android_image_get_ramdisk((void *)images->os.start,
1138 &rd_data, &rd_len);
1139 break;
1140#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001141 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001142#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001143 end = NULL;
1144 if (select)
1145 end = strchr(select, ':');
1146 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001147 rd_len = simple_strtoul(++end, NULL, 16);
1148 rd_data = rd_addr;
1149 } else
1150#endif
1151 {
1152 puts("Wrong Ramdisk Image Format\n");
1153 rd_data = rd_len = rd_load = 0;
1154 return 1;
1155 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001156 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001157 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001158 image_check_type(&images->legacy_hdr_os_copy,
1159 IH_TYPE_MULTI)) {
1160
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001161 /*
1162 * Now check if we have a legacy mult-component image,
1163 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001164 */
Simon Glass770605e2012-02-13 13:51:18 +00001165 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001166 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001167 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001168 (ulong)images->legacy_hdr_os);
1169
Stephen Warren712fbcf2011-10-18 11:11:49 +00001170 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001171 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001172 /*
1173 * no initrd image
1174 */
Simon Glass770605e2012-02-13 13:51:18 +00001175 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001176 rd_len = rd_data = 0;
1177 }
1178
1179 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001180 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001181 } else {
1182 *rd_start = rd_data;
1183 *rd_end = rd_data + rd_len;
1184 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001185 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001186 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001187
1188 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001189}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001190
John Rigbyfca43cc2010-10-13 13:57:35 -06001191#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001192/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001193 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001194 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001195 * @rd_data: ramdisk data start address
1196 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001197 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1198 * start address (after possible relocation)
1199 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1200 * end address (after possible relocation)
1201 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001202 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001203 * variable and if requested ramdisk data is moved to a specified location.
1204 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001205 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1206 * start/end addresses if ramdisk image start and len were provided,
1207 * otherwise set initrd_start and initrd_end set to zeros.
1208 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001209 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001210 * 0 - success
1211 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001212 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001213int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001214 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001215{
1216 char *s;
1217 ulong initrd_high;
1218 int initrd_copy_to_ram = 1;
1219
Stephen Warren712fbcf2011-10-18 11:11:49 +00001220 if ((s = getenv("initrd_high")) != NULL) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001221 /* a value of "no" or a similar string will act like 0,
1222 * turning the "load high" feature off. This is intentional.
1223 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001224 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001225 if (initrd_high == ~0)
1226 initrd_copy_to_ram = 0;
1227 } else {
Masahiro Yamada20e072f2015-12-17 17:19:35 +09001228 initrd_high = getenv_bootm_mapsize() + getenv_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001229 }
1230
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001231
1232#ifdef CONFIG_LOGBUFFER
1233 /* Prevent initrd from overwriting logbuffer */
1234 lmb_reserve(lmb, logbuffer_base() - LOGBUFF_OVERHEAD, LOGBUFF_RESERVE);
1235#endif
1236
Stephen Warren712fbcf2011-10-18 11:11:49 +00001237 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001238 initrd_high, initrd_copy_to_ram);
1239
1240 if (rd_data) {
1241 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001242 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001243 *initrd_start = rd_data;
1244 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001245 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001246 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001247 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001248 *initrd_start = (ulong)lmb_alloc_base(lmb,
1249 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001250 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001251 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1252 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001253
Kumar Galae822d7f2008-02-27 21:51:49 -06001254 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001255 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001256 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001257 }
Simon Glass770605e2012-02-13 13:51:18 +00001258 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001259
1260 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001261 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001262 *initrd_start, *initrd_end);
1263
Stephen Warren712fbcf2011-10-18 11:11:49 +00001264 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001265 (void *)rd_data, rd_len, CHUNKSZ);
1266
Kumar Gala3b200112011-12-07 04:42:58 +00001267#ifdef CONFIG_MP
1268 /*
1269 * Ensure the image is flushed to memory to handle
1270 * AMP boot scenarios in which we might not be
1271 * HW cache coherent
1272 */
1273 flush_cache((unsigned long)*initrd_start, rd_len);
1274#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001275 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001276 }
1277 } else {
1278 *initrd_start = 0;
1279 *initrd_end = 0;
1280 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001281 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001282 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001283
Kumar Galae822d7f2008-02-27 21:51:49 -06001284 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001285
Kumar Galae822d7f2008-02-27 21:51:49 -06001286error:
1287 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001288}
John Rigbyfca43cc2010-10-13 13:57:35 -06001289#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001290
Simon Glass90268b82014-10-19 21:11:24 -06001291int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1292 ulong *setup_start, ulong *setup_len)
1293{
Simon Glass73223f02016-02-22 22:55:43 -07001294#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001295 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1296#else
1297 return -ENOENT;
1298#endif
1299}
1300
Simon Glass73223f02016-02-22 22:55:43 -07001301#if IMAGE_ENABLE_FIT
Michal Simek62afc602016-05-17 14:03:50 +02001302#if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_XILINX)
1303int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1304 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1305{
1306 ulong tmp_img_addr, img_data, img_len;
1307 void *buf;
1308 int conf_noffset;
1309 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001310 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001311 int err;
1312 int devnum = 0; /* TODO support multi fpga platforms */
1313 const fpga_desc * const desc = fpga_get_desc(devnum);
1314 xilinx_desc *desc_xilinx = desc->devdesc;
1315
1316 /* Check to see if the images struct has a FIT configuration */
1317 if (!genimg_has_config(images)) {
1318 debug("## FIT configuration was not specified\n");
1319 return 0;
1320 }
1321
1322 /*
1323 * Obtain the os FIT header from the images struct
1324 * copy from dataflash if needed
1325 */
1326 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1327 tmp_img_addr = genimg_get_image(tmp_img_addr);
1328 buf = map_sysmem(tmp_img_addr, 0);
1329 /*
1330 * Check image type. For FIT images get FIT node
1331 * and attempt to locate a generic binary.
1332 */
1333 switch (genimg_get_format(buf)) {
1334 case IMAGE_FORMAT_FIT:
1335 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1336
Simon Glassb02e4042016-10-02 17:59:28 -06001337 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1338 NULL);
1339 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001340 debug("## FPGA image is not specified\n");
1341 return 0;
1342 }
1343 fit_img_result = fit_image_load(images,
1344 tmp_img_addr,
1345 (const char **)&uname,
1346 &(images->fit_uname_cfg),
1347 arch,
1348 IH_TYPE_FPGA,
1349 BOOTSTAGE_ID_FPGA_INIT,
1350 FIT_LOAD_OPTIONAL_NON_ZERO,
1351 &img_data, &img_len);
1352
1353 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1354 uname, img_data, img_len);
1355
1356 if (fit_img_result < 0) {
1357 /* Something went wrong! */
1358 return fit_img_result;
1359 }
1360
1361 if (img_len >= desc_xilinx->size) {
1362 name = "full";
1363 err = fpga_loadbitstream(devnum, (char *)img_data,
1364 img_len, BIT_FULL);
1365 if (err)
1366 err = fpga_load(devnum, (const void *)img_data,
1367 img_len, BIT_FULL);
1368 } else {
1369 name = "partial";
1370 err = fpga_loadbitstream(devnum, (char *)img_data,
1371 img_len, BIT_PARTIAL);
1372 if (err)
1373 err = fpga_load(devnum, (const void *)img_data,
1374 img_len, BIT_PARTIAL);
1375 }
1376
1377 printf(" Programming %s bitstream... ", name);
1378 if (err)
1379 printf("failed\n");
1380 else
1381 printf("OK\n");
1382 break;
1383 default:
1384 printf("The given image format is not supported (corrupt?)\n");
1385 return 1;
1386 }
1387
1388 return 0;
1389}
1390#endif
1391
Karl Apsite84a07db2015-05-21 09:52:48 -04001392int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1393 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1394{
1395 /*
1396 * These variables are used to hold the current image location
1397 * in system memory.
1398 */
1399 ulong tmp_img_addr;
1400 /*
1401 * These two variables are requirements for fit_image_load, but
1402 * their values are not used
1403 */
1404 ulong img_data, img_len;
1405 void *buf;
1406 int loadables_index;
1407 int conf_noffset;
1408 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001409 const char *uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001410
1411 /* Check to see if the images struct has a FIT configuration */
1412 if (!genimg_has_config(images)) {
1413 debug("## FIT configuration was not specified\n");
1414 return 0;
1415 }
1416
1417 /*
1418 * Obtain the os FIT header from the images struct
1419 * copy from dataflash if needed
1420 */
1421 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
1422 tmp_img_addr = genimg_get_image(tmp_img_addr);
1423 buf = map_sysmem(tmp_img_addr, 0);
1424 /*
1425 * Check image type. For FIT images get FIT node
1426 * and attempt to locate a generic binary.
1427 */
1428 switch (genimg_get_format(buf)) {
1429 case IMAGE_FORMAT_FIT:
1430 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1431
1432 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001433 uname = fdt_stringlist_get(buf, conf_noffset,
1434 FIT_LOADABLE_PROP, loadables_index,
1435 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001436 loadables_index++)
1437 {
1438 fit_img_result = fit_image_load(images,
1439 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001440 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001441 &(images->fit_uname_cfg), arch,
1442 IH_TYPE_LOADABLE,
1443 BOOTSTAGE_ID_FIT_LOADABLE_START,
1444 FIT_LOAD_OPTIONAL_NON_ZERO,
1445 &img_data, &img_len);
1446 if (fit_img_result < 0) {
1447 /* Something went wrong! */
1448 return fit_img_result;
1449 }
1450 }
1451 break;
1452 default:
1453 printf("The given image format is not supported (corrupt?)\n");
1454 return 1;
1455 }
1456
1457 return 0;
1458}
1459#endif
1460
John Rigbyfca43cc2010-10-13 13:57:35 -06001461#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001462/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001463 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001464 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001465 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1466 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1467 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001468 * boot_get_cmdline() allocates space for kernel command line below
Bin Menga1875592016-02-05 19:30:11 -08001469 * BOOTMAPSZ + getenv_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001470 * variable is present its contents is copied to allocated kernel
1471 * command line.
1472 *
1473 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001474 * 0 - success
1475 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001476 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001477int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001478{
1479 char *cmdline;
1480 char *s;
1481
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001482 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001483 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001484
1485 if (cmdline == NULL)
1486 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001487
1488 if ((s = getenv("bootargs")) == NULL)
1489 s = "";
1490
1491 strcpy(cmdline, s);
1492
1493 *cmd_start = (ulong) & cmdline[0];
1494 *cmd_end = *cmd_start + strlen(cmdline);
1495
Stephen Warren712fbcf2011-10-18 11:11:49 +00001496 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001497
Kumar Galae822d7f2008-02-27 21:51:49 -06001498 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001499}
John Rigbyfca43cc2010-10-13 13:57:35 -06001500#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001501
John Rigbyfca43cc2010-10-13 13:57:35 -06001502#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001503/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001504 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001505 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001506 * @kbd: double pointer to board info data
1507 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001508 * boot_get_kbd() allocates space for kernel copy of board info data below
Grant Likely590d3ca2011-03-28 09:58:34 +00001509 * BOOTMAPSZ + getenv_bootm_low() address and kernel board info is initialized
1510 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001511 *
1512 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001513 * 0 - success
1514 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001515 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001516int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001517{
Becky Bruce391fd932008-06-09 20:37:18 -05001518 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Grant Likelyc3624e62011-03-28 09:58:43 +00001519 getenv_bootm_mapsize() + getenv_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001520 if (*kbd == NULL)
1521 return -1;
1522
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001523 **kbd = *(gd->bd);
1524
Stephen Warren712fbcf2011-10-18 11:11:49 +00001525 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001526
1527#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1528 do_bdinfo(NULL, 0, 0, NULL);
1529#endif
1530
Kumar Galae822d7f2008-02-27 21:51:49 -06001531 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001532}
John Rigbyfca43cc2010-10-13 13:57:35 -06001533#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001534
1535#ifdef CONFIG_LMB
1536int image_setup_linux(bootm_headers_t *images)
1537{
1538 ulong of_size = images->ft_len;
1539 char **of_flat_tree = &images->ft_addr;
1540 ulong *initrd_start = &images->initrd_start;
1541 ulong *initrd_end = &images->initrd_end;
1542 struct lmb *lmb = &images->lmb;
1543 ulong rd_len;
1544 int ret;
1545
1546 if (IMAGE_ENABLE_OF_LIBFDT)
1547 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1548
1549 if (IMAGE_BOOT_GET_CMDLINE) {
1550 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1551 &images->cmdline_end);
1552 if (ret) {
1553 puts("ERROR with allocation of cmdline\n");
1554 return ret;
1555 }
1556 }
1557 if (IMAGE_ENABLE_RAMDISK_HIGH) {
1558 rd_len = images->rd_end - images->rd_start;
1559 ret = boot_ramdisk_high(lmb, images->rd_start, rd_len,
1560 initrd_start, initrd_end);
1561 if (ret)
1562 return ret;
1563 }
1564
1565 if (IMAGE_ENABLE_OF_LIBFDT) {
1566 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1567 if (ret)
1568 return ret;
1569 }
1570
1571 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1572 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1573 if (ret)
1574 return ret;
1575 }
1576
1577 return 0;
1578}
1579#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001580#endif /* !USE_HOSTCC */