blob: f5278a0df4512320ef92294be615aa20c181e89a [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
Marian Balakowicz2242f532008-02-21 17:27:41 +010018#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010019
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060020#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010021#include <image.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050022#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010023
Simon Glassaa34fbc2016-02-22 22:55:45 -070024#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090025#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010026#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020027#include <fpga.h>
28#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010029#endif
30
Andy Fleming20a14a42008-04-02 16:19:07 -050031#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020032#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090033#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000034#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010035
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010036#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020037extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010038#endif
39
40DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010041
Heiko Schocher21d29f72014-05-28 11:33:33 +020042#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren712fbcf2011-10-18 11:11:49 +000043static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010044 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020045#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010046#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010047#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050048#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010049#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010050#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020051
52#ifndef __maybe_unused
53# define __maybe_unused /* unimplemented */
54#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010055#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010056
Simon Glass0ccff502013-02-24 17:33:25 +000057#include <u-boot/crc.h>
58
Simon Glass13d06982013-05-08 08:06:01 +000059#ifndef CONFIG_SYS_BARGSIZE
60#define CONFIG_SYS_BARGSIZE 512
61#endif
62
Mike Frysinger7edb1862010-10-20 07:17:39 -040063static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060064 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010065 { IH_ARCH_ALPHA, "alpha", "Alpha", },
66 { IH_ARCH_ARM, "arm", "ARM", },
67 { IH_ARCH_I386, "x86", "Intel x86", },
68 { IH_ARCH_IA64, "ia64", "IA64", },
69 { IH_ARCH_M68K, "m68k", "M68K", },
70 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
71 { IH_ARCH_MIPS, "mips", "MIPS", },
72 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010073 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070074 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010075 { IH_ARCH_PPC, "ppc", "PowerPC", },
76 { IH_ARCH_S390, "s390", "IBM S390", },
77 { IH_ARCH_SH, "sh", "SuperH", },
78 { IH_ARCH_SPARC, "sparc", "SPARC", },
79 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
80 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
81 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000082 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000083 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000084 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080085 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040086 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060087 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030088 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010089 { -1, "", "", },
90};
91
Mike Frysinger7edb1862010-10-20 07:17:39 -040092static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060093 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +020094 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +010095 { IH_OS_LINUX, "linux", "Linux", },
96#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
97 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
98#endif
99 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200100 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000101 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100102 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000103 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100104 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800105 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100106#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
107 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100108#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500109#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
110 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
111#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100112#ifdef USE_HOSTCC
113 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
114 { IH_OS_DELL, "dell", "Dell", },
115 { IH_OS_ESIX, "esix", "Esix", },
116 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
117 { IH_OS_IRIX, "irix", "Irix", },
118 { IH_OS_NCR, "ncr", "NCR", },
119 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
120 { IH_OS_PSOS, "psos", "pSOS", },
121 { IH_OS_SCO, "sco", "SCO", },
122 { IH_OS_SOLARIS, "solaris", "Solaris", },
123 { IH_OS_SVR4, "svr4", "SVR4", },
124#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100125#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
126 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
127#endif
128
Marian Balakowicz570abb02008-02-29 15:59:59 +0100129 { -1, "", "", },
130};
131
Mike Frysinger7edb1862010-10-20 07:17:39 -0400132static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000133 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100134 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
135 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400136 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400137 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100138 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700139 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000140 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
141 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600142 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100143 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000144 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000145 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100146 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
147 { IH_TYPE_SCRIPT, "script", "Script", },
Charles Manning832472a2014-03-06 15:40:50 +1300148 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SOCFPGA preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000150 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200151 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200152 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600153 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200154 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600155 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600156 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600157 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200158 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000159 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200160 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Michal Simeked0cea72016-05-17 13:58:44 +0200161 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600162 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100163 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500164 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100165 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100166 { -1, "", "", },
167};
168
Mike Frysinger7edb1862010-10-20 07:17:39 -0400169static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100170 { IH_COMP_NONE, "none", "uncompressed", },
171 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
172 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200173 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100174 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700175 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100176 { -1, "", "", },
177};
178
Simon Glass56d7ab72016-06-30 10:52:14 -0600179struct table_info {
180 const char *desc;
181 int count;
182 const table_entry_t *table;
183};
184
185static const struct table_info table_info[IH_COUNT] = {
186 { "architecture", IH_ARCH_COUNT, uimage_arch },
187 { "compression", IH_COMP_COUNT, uimage_comp },
188 { "operating system", IH_OS_COUNT, uimage_os },
189 { "image type", IH_TYPE_COUNT, uimage_type },
190};
191
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100192/*****************************************************************************/
193/* Legacy format routines */
194/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000195int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100196{
197 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000198 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100199 image_header_t header;
200
201 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000202 memmove(&header, (char *)hdr, image_get_header_size());
203 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100204
Stephen Warren712fbcf2011-10-18 11:11:49 +0000205 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100206
Stephen Warren712fbcf2011-10-18 11:11:49 +0000207 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100208}
209
Stephen Warren712fbcf2011-10-18 11:11:49 +0000210int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100211{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000212 ulong data = image_get_data(hdr);
213 ulong len = image_get_data_size(hdr);
214 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100215
Stephen Warren712fbcf2011-10-18 11:11:49 +0000216 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100217}
218
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100219/**
220 * image_multi_count - get component (sub-image) count
221 * @hdr: pointer to the header of the multi component image
222 *
223 * image_multi_count() returns number of components in a multi
224 * component image.
225 *
226 * Note: no checking of the image type is done, caller must pass
227 * a valid multi component image.
228 *
229 * returns:
230 * number of components
231 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000232ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100233{
234 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100235 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100236
237 /* get start of the image payload, which in case of multi
238 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000239 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100240
241 /* count non empty slots */
242 for (i = 0; size[i]; ++i)
243 count++;
244
245 return count;
246}
247
248/**
249 * image_multi_getimg - get component data address and size
250 * @hdr: pointer to the header of the multi component image
251 * @idx: index of the requested component
252 * @data: pointer to a ulong variable, will hold component data address
253 * @len: pointer to a ulong variable, will hold component size
254 *
255 * image_multi_getimg() returns size and data address for the requested
256 * component in a multi component image.
257 *
258 * Note: no checking of the image type is done, caller must pass
259 * a valid multi component image.
260 *
261 * returns:
262 * data address and size of the component, if idx is valid
263 * 0 in data and len, if idx is out of range
264 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100266 ulong *data, ulong *len)
267{
268 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100269 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700270 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100271
272 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000273 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100274
275 /* get start of the image payload, which in case of multi
276 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000277 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100278
279 /* get address of the proper component data start, which means
280 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000281 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100282
283 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000284 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100285 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100286
287 /* go over all indices preceding requested component idx */
288 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700289 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000290 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100291 }
292
293 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700294 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100295 } else {
296 *len = 0;
297 *data = 0;
298 }
299}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100300
Stephen Warren712fbcf2011-10-18 11:11:49 +0000301static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100302{
Heiko Schocher80402f32015-06-29 09:10:46 +0200303 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100304
Stephen Warren712fbcf2011-10-18 11:11:49 +0000305 os = genimg_get_os_name(image_get_os(hdr));
306 arch = genimg_get_arch_name(image_get_arch(hdr));
307 type = genimg_get_type_name(image_get_type(hdr));
308 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100309
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100311}
312
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100313/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200314 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200315 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100316 * @p: pointer to prefix string
317 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200318 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100319 * The routine prints out all header fields followed by the size/offset data
320 * for MULTI/SCRIPT images.
321 *
322 * returns:
323 * no returned results
324 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100326{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200327 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200328 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200329
Simon Glass1fe7d932013-05-08 08:05:58 +0000330 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000331 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000332 if (IMAGE_ENABLE_TIMESTAMP) {
333 printf("%sCreated: ", p);
334 genimg_print_time((time_t)image_get_time(hdr));
335 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 printf("%sImage Type: ", p);
337 image_print_type(hdr);
338 printf("%sData Size: ", p);
339 genimg_print_size(image_get_data_size(hdr));
340 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
341 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100342
Stephen Warren712fbcf2011-10-18 11:11:49 +0000343 if (image_check_type(hdr, IH_TYPE_MULTI) ||
344 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100345 int i;
346 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000347 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100348
Stephen Warren712fbcf2011-10-18 11:11:49 +0000349 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100350 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000351 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100352
Stephen Warren712fbcf2011-10-18 11:11:49 +0000353 printf("%s Image %d: ", p, i);
354 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100355
Stephen Warren712fbcf2011-10-18 11:11:49 +0000356 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100357 /*
358 * the user may need to know offsets
359 * if planning to do something with
360 * multiple files
361 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100363 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100364 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100365 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
366 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
367 image_get_load(hdr) - image_get_header_size(),
368 image_get_size(hdr) + image_get_header_size()
369 - 0x1FE0);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100370 }
371}
372
Marian Balakowicz570abb02008-02-29 15:59:59 +0100373
374#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200375#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100376/**
377 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100378 * @rd_addr: ramdisk image start address
379 * @arch: expected ramdisk architecture
380 * @verify: checksum verification flag
381 *
382 * image_get_ramdisk() returns a pointer to the verified ramdisk image
383 * header. Routine receives image start address and expected architecture
384 * flag. Verification done covers data and header integrity and os/type/arch
385 * fields checking.
386 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100387 * 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
Simon Glass723806c2017-08-03 12:22:15 -0600461ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100462{
Simon Glass00caae62017-08-03 12:22:12 -0600463 char *s = env_get("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
Simon Glass723806c2017-08-03 12:22:15 -0600478phys_size_t env_get_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;
Simon Glass00caae62017-08-03 12:22:12 -0600482 char *s = env_get("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
Simon Glass00caae62017-08-03 12:22:12 -0600496 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500497 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
Simon Glass723806c2017-08-03 12:22:15 -0600505phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000506{
507 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600508 char *s = env_get("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
Simon Glass723806c2017-08-03 12:22:15 -0600517 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000518#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
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100557 printf("%d Bytes = %.2f KiB = %.2f MiB\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/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100885 * fit_has_config - check if there is a valid FIT configuration
886 * @images: pointer to the bootm command headers structure
887 *
888 * fit_has_config() checks if there is a FIT configuration in use
889 * (if FTI support is present).
890 *
891 * returns:
892 * 0, no FIT support or no configuration found
893 * 1, configuration found
894 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000895int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100896{
Simon Glass73223f02016-02-22 22:55:43 -0700897#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100898 if (images->fit_uname_cfg)
899 return 1;
900#endif
901 return 0;
902}
903
904/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100905 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100906 * @argc: command argument count
907 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100908 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100909 * @arch: expected ramdisk architecture
910 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
911 * @rd_end: pointer to a ulong variable, will hold ramdisk end
912 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100913 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100914 * Curently supported are the following ramdisk sources:
915 * - multicomponent kernel/ramdisk image,
916 * - commandline provided address of decicated ramdisk image.
917 *
918 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100919 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100920 * rd_start and rd_end are set to ramdisk start/end addresses if
921 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100922 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500923 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100924 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100925 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000926int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100927 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100928{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100929 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100930 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200931#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200932 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200933#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +0000934 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200935#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000936 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200937#endif
Simon Glass73223f02016-02-22 22:55:43 -0700938#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -0700939 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100940 const char *fit_uname_ramdisk = NULL;
941 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100942 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100943#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700944 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100945
Marian Balakowiczc8779642008-03-12 10:12:37 +0100946 *rd_start = 0;
947 *rd_end = 0;
948
Tom Rini1fec3c52015-08-27 15:42:41 -0400949#ifdef CONFIG_ANDROID_BOOT_IMAGE
950 /*
951 * Look for an Android boot image.
952 */
953 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -0400954 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -0400955 select = argv[0];
956#endif
957
Simon Glass983c72f2013-06-11 11:14:46 -0700958 if (argc >= 2)
959 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -0500960
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100961 /*
962 * Look for a '-' which indicates to ignore the
963 * ramdisk argument
964 */
Simon Glass983c72f2013-06-11 11:14:46 -0700965 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000966 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100967 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700968 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -0700969#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -0700970 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100971 /*
972 * If the init ramdisk comes from the FIT image and
973 * the FIT image address is omitted in the command
974 * line argument, try to use os FIT image address or
975 * default load address.
976 */
977 if (images->fit_uname_os)
978 default_addr = (ulong)images->fit_hdr_os;
979 else
980 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100981
Simon Glass983c72f2013-06-11 11:14:46 -0700982 if (fit_parse_conf(select, default_addr,
983 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000984 debug("* ramdisk: config '%s' from image at "
985 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100986 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700987 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100988 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000989 debug("* ramdisk: subimage '%s' from image at "
990 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100991 fit_uname_ramdisk, rd_addr);
992 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100993#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100994 {
Simon Glass983c72f2013-06-11 11:14:46 -0700995 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000996 debug("* ramdisk: cmdline image address = "
997 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100998 rd_addr);
999 }
Simon Glass73223f02016-02-22 22:55:43 -07001000#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001001 } else {
1002 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001003 * command argument. If the property is not defined,
1004 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001005 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001006 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001007 rd_noffset = fit_get_node_from_config(images,
1008 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001009 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001010 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001011 else if (rd_noffset < 0)
1012 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001013 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001014#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001015
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001016 /*
1017 * Check if there is an initrd image at the
1018 * address provided in the second bootm argument
1019 * check image type, for FIT images get FIT node.
1020 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001021 buf = map_sysmem(rd_addr, 0);
1022 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001023#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001024 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001025 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001026 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001027
Simon Glass770605e2012-02-13 13:51:18 +00001028 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001029 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001030 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001031
Marian Balakowiczc8779642008-03-12 10:12:37 +01001032 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001033 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001034
Stephen Warren712fbcf2011-10-18 11:11:49 +00001035 rd_data = image_get_data(rd_hdr);
1036 rd_len = image_get_data_size(rd_hdr);
1037 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001038 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001039#endif
Simon Glass73223f02016-02-22 22:55:43 -07001040#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001041 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001042 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001043 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001044 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001045 IH_TYPE_RAMDISK,
1046 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001047 FIT_LOAD_OPTIONAL_NON_ZERO,
1048 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001049 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001050 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001051
Simon Glassa51ec632013-05-16 13:53:22 +00001052 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001053 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001054 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001055 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001056#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001057#ifdef CONFIG_ANDROID_BOOT_IMAGE
1058 case IMAGE_FORMAT_ANDROID:
1059 android_image_get_ramdisk((void *)images->os.start,
1060 &rd_data, &rd_len);
1061 break;
1062#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001063 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001064#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001065 end = NULL;
1066 if (select)
1067 end = strchr(select, ':');
1068 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001069 rd_len = simple_strtoul(++end, NULL, 16);
1070 rd_data = rd_addr;
1071 } else
1072#endif
1073 {
1074 puts("Wrong Ramdisk Image Format\n");
1075 rd_data = rd_len = rd_load = 0;
1076 return 1;
1077 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001078 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001079 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001080 image_check_type(&images->legacy_hdr_os_copy,
1081 IH_TYPE_MULTI)) {
1082
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001083 /*
1084 * Now check if we have a legacy mult-component image,
1085 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001086 */
Simon Glass770605e2012-02-13 13:51:18 +00001087 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001088 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001089 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001090 (ulong)images->legacy_hdr_os);
1091
Stephen Warren712fbcf2011-10-18 11:11:49 +00001092 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001093 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001094 /*
1095 * no initrd image
1096 */
Simon Glass770605e2012-02-13 13:51:18 +00001097 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001098 rd_len = rd_data = 0;
1099 }
1100
1101 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001102 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001103 } else {
1104 *rd_start = rd_data;
1105 *rd_end = rd_data + rd_len;
1106 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001107 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001108 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001109
1110 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001111}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001112
John Rigbyfca43cc2010-10-13 13:57:35 -06001113#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001114/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001115 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001116 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001117 * @rd_data: ramdisk data start address
1118 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001119 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1120 * start address (after possible relocation)
1121 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1122 * end address (after possible relocation)
1123 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001124 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001125 * variable and if requested ramdisk data is moved to a specified location.
1126 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001127 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1128 * start/end addresses if ramdisk image start and len were provided,
1129 * otherwise set initrd_start and initrd_end set to zeros.
1130 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001131 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001132 * 0 - success
1133 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001134 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001135int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001136 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001137{
1138 char *s;
1139 ulong initrd_high;
1140 int initrd_copy_to_ram = 1;
1141
Simon Glass00caae62017-08-03 12:22:12 -06001142 s = env_get("initrd_high");
1143 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001144 /* a value of "no" or a similar string will act like 0,
1145 * turning the "load high" feature off. This is intentional.
1146 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001147 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001148 if (initrd_high == ~0)
1149 initrd_copy_to_ram = 0;
1150 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001151 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001152 }
1153
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001154
Stephen Warren712fbcf2011-10-18 11:11:49 +00001155 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001156 initrd_high, initrd_copy_to_ram);
1157
1158 if (rd_data) {
1159 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001160 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001161 *initrd_start = rd_data;
1162 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001163 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001164 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001165 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001166 *initrd_start = (ulong)lmb_alloc_base(lmb,
1167 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001168 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001169 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1170 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001171
Kumar Galae822d7f2008-02-27 21:51:49 -06001172 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001173 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001174 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001175 }
Simon Glass770605e2012-02-13 13:51:18 +00001176 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001177
1178 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001179 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001180 *initrd_start, *initrd_end);
1181
Stephen Warren712fbcf2011-10-18 11:11:49 +00001182 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001183 (void *)rd_data, rd_len, CHUNKSZ);
1184
Kumar Gala3b200112011-12-07 04:42:58 +00001185#ifdef CONFIG_MP
1186 /*
1187 * Ensure the image is flushed to memory to handle
1188 * AMP boot scenarios in which we might not be
1189 * HW cache coherent
1190 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001191 flush_cache((unsigned long)*initrd_start,
1192 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001193#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001194 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001195 }
1196 } else {
1197 *initrd_start = 0;
1198 *initrd_end = 0;
1199 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001200 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001201 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001202
Kumar Galae822d7f2008-02-27 21:51:49 -06001203 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001204
Kumar Galae822d7f2008-02-27 21:51:49 -06001205error:
1206 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001207}
John Rigbyfca43cc2010-10-13 13:57:35 -06001208#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001209
Simon Glass90268b82014-10-19 21:11:24 -06001210int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1211 ulong *setup_start, ulong *setup_len)
1212{
Simon Glass73223f02016-02-22 22:55:43 -07001213#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001214 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1215#else
1216 return -ENOENT;
1217#endif
1218}
1219
Simon Glass73223f02016-02-22 22:55:43 -07001220#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001221#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001222int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1223 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1224{
1225 ulong tmp_img_addr, img_data, img_len;
1226 void *buf;
1227 int conf_noffset;
1228 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001229 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001230 int err;
1231 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001232
1233 /* Check to see if the images struct has a FIT configuration */
1234 if (!genimg_has_config(images)) {
1235 debug("## FIT configuration was not specified\n");
1236 return 0;
1237 }
1238
1239 /*
1240 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001241 */
1242 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001243 buf = map_sysmem(tmp_img_addr, 0);
1244 /*
1245 * Check image type. For FIT images get FIT node
1246 * and attempt to locate a generic binary.
1247 */
1248 switch (genimg_get_format(buf)) {
1249 case IMAGE_FORMAT_FIT:
1250 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1251
Simon Glassb02e4042016-10-02 17:59:28 -06001252 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1253 NULL);
1254 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001255 debug("## FPGA image is not specified\n");
1256 return 0;
1257 }
1258 fit_img_result = fit_image_load(images,
1259 tmp_img_addr,
1260 (const char **)&uname,
1261 &(images->fit_uname_cfg),
1262 arch,
1263 IH_TYPE_FPGA,
1264 BOOTSTAGE_ID_FPGA_INIT,
1265 FIT_LOAD_OPTIONAL_NON_ZERO,
1266 &img_data, &img_len);
1267
1268 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1269 uname, img_data, img_len);
1270
1271 if (fit_img_result < 0) {
1272 /* Something went wrong! */
1273 return fit_img_result;
1274 }
1275
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001276 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001277 name = "full";
1278 err = fpga_loadbitstream(devnum, (char *)img_data,
1279 img_len, BIT_FULL);
1280 if (err)
1281 err = fpga_load(devnum, (const void *)img_data,
1282 img_len, BIT_FULL);
1283 } else {
1284 name = "partial";
1285 err = fpga_loadbitstream(devnum, (char *)img_data,
1286 img_len, BIT_PARTIAL);
1287 if (err)
1288 err = fpga_load(devnum, (const void *)img_data,
1289 img_len, BIT_PARTIAL);
1290 }
1291
Michal Simek62afc602016-05-17 14:03:50 +02001292 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001293 return err;
1294
1295 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001296 break;
1297 default:
1298 printf("The given image format is not supported (corrupt?)\n");
1299 return 1;
1300 }
1301
1302 return 0;
1303}
1304#endif
1305
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001306static void fit_loadable_process(uint8_t img_type,
1307 ulong img_data,
1308 ulong img_len)
1309{
1310 int i;
1311 const unsigned int count =
1312 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1313 struct fit_loadable_tbl *fit_loadable_handler =
1314 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1315 /* For each loadable handler */
1316 for (i = 0; i < count; i++, fit_loadable_handler++)
1317 /* matching this type */
1318 if (fit_loadable_handler->type == img_type)
1319 /* call that handler with this image data */
1320 fit_loadable_handler->handler(img_data, img_len);
1321}
1322
Karl Apsite84a07db2015-05-21 09:52:48 -04001323int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1324 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1325{
1326 /*
1327 * These variables are used to hold the current image location
1328 * in system memory.
1329 */
1330 ulong tmp_img_addr;
1331 /*
1332 * These two variables are requirements for fit_image_load, but
1333 * their values are not used
1334 */
1335 ulong img_data, img_len;
1336 void *buf;
1337 int loadables_index;
1338 int conf_noffset;
1339 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001340 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001341 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001342
1343 /* Check to see if the images struct has a FIT configuration */
1344 if (!genimg_has_config(images)) {
1345 debug("## FIT configuration was not specified\n");
1346 return 0;
1347 }
1348
1349 /*
1350 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001351 */
1352 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001353 buf = map_sysmem(tmp_img_addr, 0);
1354 /*
1355 * Check image type. For FIT images get FIT node
1356 * and attempt to locate a generic binary.
1357 */
1358 switch (genimg_get_format(buf)) {
1359 case IMAGE_FORMAT_FIT:
1360 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1361
1362 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001363 uname = fdt_stringlist_get(buf, conf_noffset,
1364 FIT_LOADABLE_PROP, loadables_index,
1365 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001366 loadables_index++)
1367 {
1368 fit_img_result = fit_image_load(images,
1369 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001370 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001371 &(images->fit_uname_cfg), arch,
1372 IH_TYPE_LOADABLE,
1373 BOOTSTAGE_ID_FIT_LOADABLE_START,
1374 FIT_LOAD_OPTIONAL_NON_ZERO,
1375 &img_data, &img_len);
1376 if (fit_img_result < 0) {
1377 /* Something went wrong! */
1378 return fit_img_result;
1379 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001380
1381 fit_img_result = fit_image_get_node(buf, uname);
1382 if (fit_img_result < 0) {
1383 /* Something went wrong! */
1384 return fit_img_result;
1385 }
1386 fit_img_result = fit_image_get_type(buf,
1387 fit_img_result,
1388 &img_type);
1389 if (fit_img_result < 0) {
1390 /* Something went wrong! */
1391 return fit_img_result;
1392 }
1393
1394 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001395 }
1396 break;
1397 default:
1398 printf("The given image format is not supported (corrupt?)\n");
1399 return 1;
1400 }
1401
1402 return 0;
1403}
1404#endif
1405
John Rigbyfca43cc2010-10-13 13:57:35 -06001406#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001407/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001408 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001409 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001410 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1411 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1412 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001413 * boot_get_cmdline() allocates space for kernel command line below
Simon Glass723806c2017-08-03 12:22:15 -06001414 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environemnt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001415 * variable is present its contents is copied to allocated kernel
1416 * command line.
1417 *
1418 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001419 * 0 - success
1420 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001421 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001422int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001423{
1424 char *cmdline;
1425 char *s;
1426
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001427 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001428 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001429
1430 if (cmdline == NULL)
1431 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001432
Simon Glass00caae62017-08-03 12:22:12 -06001433 s = env_get("bootargs");
1434 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001435 s = "";
1436
1437 strcpy(cmdline, s);
1438
1439 *cmd_start = (ulong) & cmdline[0];
1440 *cmd_end = *cmd_start + strlen(cmdline);
1441
Stephen Warren712fbcf2011-10-18 11:11:49 +00001442 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001443
Kumar Galae822d7f2008-02-27 21:51:49 -06001444 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001445}
John Rigbyfca43cc2010-10-13 13:57:35 -06001446#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001447
John Rigbyfca43cc2010-10-13 13:57:35 -06001448#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001449/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001450 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001451 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001452 * @kbd: double pointer to board info data
1453 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001454 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001455 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001456 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001457 *
1458 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001459 * 0 - success
1460 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001461 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001462int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001463{
Becky Bruce391fd932008-06-09 20:37:18 -05001464 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001465 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001466 if (*kbd == NULL)
1467 return -1;
1468
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001469 **kbd = *(gd->bd);
1470
Stephen Warren712fbcf2011-10-18 11:11:49 +00001471 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001472
1473#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1474 do_bdinfo(NULL, 0, 0, NULL);
1475#endif
1476
Kumar Galae822d7f2008-02-27 21:51:49 -06001477 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001478}
John Rigbyfca43cc2010-10-13 13:57:35 -06001479#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001480
1481#ifdef CONFIG_LMB
1482int image_setup_linux(bootm_headers_t *images)
1483{
1484 ulong of_size = images->ft_len;
1485 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001486 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001487 int ret;
1488
1489 if (IMAGE_ENABLE_OF_LIBFDT)
1490 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1491
1492 if (IMAGE_BOOT_GET_CMDLINE) {
1493 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1494 &images->cmdline_end);
1495 if (ret) {
1496 puts("ERROR with allocation of cmdline\n");
1497 return ret;
1498 }
1499 }
Simon Glass13d06982013-05-08 08:06:01 +00001500
1501 if (IMAGE_ENABLE_OF_LIBFDT) {
1502 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1503 if (ret)
1504 return ret;
1505 }
1506
1507 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1508 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1509 if (ret)
1510 return ret;
1511 }
1512
1513 return 0;
1514}
1515#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001516#endif /* !USE_HOSTCC */