blob: 1c3a7720cbc8eb6bb0c777c7da812566862a94cf [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01002/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2006
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01007 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01008
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01009#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010010#include <common.h>
11#include <watchdog.h>
12
13#ifdef CONFIG_SHOW_BOOT_PROGRESS
14#include <status_led.h>
15#endif
16
Marian Balakowicz2242f532008-02-21 17:27:41 +010017#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010018
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060019#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010020#include <image.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050021#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010022
Simon Glassaa34fbc2016-02-22 22:55:45 -070023#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090024#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010025#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020026#include <fpga.h>
27#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010028#endif
29
Andy Fleming20a14a42008-04-02 16:19:07 -050030#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020031#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090032#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000033#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010034
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010035#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020036extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010037#endif
38
39DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010040
Heiko Schocher21d29f72014-05-28 11:33:33 +020041#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Stephen Warren712fbcf2011-10-18 11:11:49 +000042static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010043 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020044#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010045#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010046#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050047#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010048#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010049#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020050
51#ifndef __maybe_unused
52# define __maybe_unused /* unimplemented */
53#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010054#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055
Simon Glass0ccff502013-02-24 17:33:25 +000056#include <u-boot/crc.h>
57
Simon Glass13d06982013-05-08 08:06:01 +000058#ifndef CONFIG_SYS_BARGSIZE
59#define CONFIG_SYS_BARGSIZE 512
60#endif
61
Mike Frysinger7edb1862010-10-20 07:17:39 -040062static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060063 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010064 { IH_ARCH_ALPHA, "alpha", "Alpha", },
65 { IH_ARCH_ARM, "arm", "ARM", },
66 { IH_ARCH_I386, "x86", "Intel x86", },
67 { IH_ARCH_IA64, "ia64", "IA64", },
68 { IH_ARCH_M68K, "m68k", "M68K", },
69 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
70 { IH_ARCH_MIPS, "mips", "MIPS", },
71 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010072 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070073 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010074 { IH_ARCH_PPC, "ppc", "PowerPC", },
75 { IH_ARCH_S390, "s390", "IBM S390", },
76 { IH_ARCH_SH, "sh", "SuperH", },
77 { IH_ARCH_SPARC, "sparc", "SPARC", },
78 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
79 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
80 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000081 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000082 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000083 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080084 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040085 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060086 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030087 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +080088 { IH_ARCH_RISCV, "riscv", "RISC-V", },
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",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000142 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600143 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100144 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000145 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000146 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100147 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
148 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200149 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
150 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100151 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000152 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200153 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200154 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600155 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200156 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600157 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600158 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600159 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200160 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000161 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200162 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200163 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200164 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600165 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100166 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500167 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100168 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100169 { -1, "", "", },
170};
171
Mike Frysinger7edb1862010-10-20 07:17:39 -0400172static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100173 { IH_COMP_NONE, "none", "uncompressed", },
174 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
175 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200176 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100177 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700178 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100179 { -1, "", "", },
180};
181
Simon Glass56d7ab72016-06-30 10:52:14 -0600182struct table_info {
183 const char *desc;
184 int count;
185 const table_entry_t *table;
186};
187
188static const struct table_info table_info[IH_COUNT] = {
189 { "architecture", IH_ARCH_COUNT, uimage_arch },
190 { "compression", IH_COMP_COUNT, uimage_comp },
191 { "operating system", IH_OS_COUNT, uimage_os },
192 { "image type", IH_TYPE_COUNT, uimage_type },
193};
194
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100195/*****************************************************************************/
196/* Legacy format routines */
197/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000198int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100199{
200 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000201 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100202 image_header_t header;
203
204 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000205 memmove(&header, (char *)hdr, image_get_header_size());
206 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100207
Stephen Warren712fbcf2011-10-18 11:11:49 +0000208 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100209
Stephen Warren712fbcf2011-10-18 11:11:49 +0000210 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100211}
212
Stephen Warren712fbcf2011-10-18 11:11:49 +0000213int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100214{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000215 ulong data = image_get_data(hdr);
216 ulong len = image_get_data_size(hdr);
217 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100218
Stephen Warren712fbcf2011-10-18 11:11:49 +0000219 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100220}
221
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100222/**
223 * image_multi_count - get component (sub-image) count
224 * @hdr: pointer to the header of the multi component image
225 *
226 * image_multi_count() returns number of components in a multi
227 * component image.
228 *
229 * Note: no checking of the image type is done, caller must pass
230 * a valid multi component image.
231 *
232 * returns:
233 * number of components
234 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100236{
237 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100238 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100239
240 /* get start of the image payload, which in case of multi
241 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100243
244 /* count non empty slots */
245 for (i = 0; size[i]; ++i)
246 count++;
247
248 return count;
249}
250
251/**
252 * image_multi_getimg - get component data address and size
253 * @hdr: pointer to the header of the multi component image
254 * @idx: index of the requested component
255 * @data: pointer to a ulong variable, will hold component data address
256 * @len: pointer to a ulong variable, will hold component size
257 *
258 * image_multi_getimg() returns size and data address for the requested
259 * component in a multi component image.
260 *
261 * Note: no checking of the image type is done, caller must pass
262 * a valid multi component image.
263 *
264 * returns:
265 * data address and size of the component, if idx is valid
266 * 0 in data and len, if idx is out of range
267 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100269 ulong *data, ulong *len)
270{
271 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100272 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700273 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100274
275 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000276 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100277
278 /* get start of the image payload, which in case of multi
279 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000280 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100281
282 /* get address of the proper component data start, which means
283 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000284 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100285
286 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000287 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100288 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100289
290 /* go over all indices preceding requested component idx */
291 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700292 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000293 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100294 }
295
296 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700297 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100298 } else {
299 *len = 0;
300 *data = 0;
301 }
302}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100303
Stephen Warren712fbcf2011-10-18 11:11:49 +0000304static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100305{
Heiko Schocher80402f32015-06-29 09:10:46 +0200306 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100307
Stephen Warren712fbcf2011-10-18 11:11:49 +0000308 os = genimg_get_os_name(image_get_os(hdr));
309 arch = genimg_get_arch_name(image_get_arch(hdr));
310 type = genimg_get_type_name(image_get_type(hdr));
311 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100312
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100314}
315
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100316/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200317 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200318 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100319 * @p: pointer to prefix string
320 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200321 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100322 * The routine prints out all header fields followed by the size/offset data
323 * for MULTI/SCRIPT images.
324 *
325 * returns:
326 * no returned results
327 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000328void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100329{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200330 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200331 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200332
Simon Glass1fe7d932013-05-08 08:05:58 +0000333 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000335 if (IMAGE_ENABLE_TIMESTAMP) {
336 printf("%sCreated: ", p);
337 genimg_print_time((time_t)image_get_time(hdr));
338 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000339 printf("%sImage Type: ", p);
340 image_print_type(hdr);
341 printf("%sData Size: ", p);
342 genimg_print_size(image_get_data_size(hdr));
343 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
344 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100345
Stephen Warren712fbcf2011-10-18 11:11:49 +0000346 if (image_check_type(hdr, IH_TYPE_MULTI) ||
347 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100348 int i;
349 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000350 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100351
Stephen Warren712fbcf2011-10-18 11:11:49 +0000352 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100353 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000354 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100355
Stephen Warren712fbcf2011-10-18 11:11:49 +0000356 printf("%s Image %d: ", p, i);
357 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100358
Stephen Warren712fbcf2011-10-18 11:11:49 +0000359 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100360 /*
361 * the user may need to know offsets
362 * if planning to do something with
363 * multiple files
364 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100366 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100367 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100368 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
369 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
370 image_get_load(hdr) - image_get_header_size(),
371 image_get_size(hdr) + image_get_header_size()
372 - 0x1FE0);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100373 }
374}
375
Marian Balakowicz570abb02008-02-29 15:59:59 +0100376
377#ifndef USE_HOSTCC
Heiko Schocher21d29f72014-05-28 11:33:33 +0200378#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100379/**
380 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100381 * @rd_addr: ramdisk image start address
382 * @arch: expected ramdisk architecture
383 * @verify: checksum verification flag
384 *
385 * image_get_ramdisk() returns a pointer to the verified ramdisk image
386 * header. Routine receives image start address and expected architecture
387 * flag. Verification done covers data and header integrity and os/type/arch
388 * fields checking.
389 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100390 * returns:
391 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600392 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100393 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000394static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100395 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100396{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200397 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100398
Stephen Warren712fbcf2011-10-18 11:11:49 +0000399 if (!image_check_magic(rd_hdr)) {
400 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000401 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600402 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100403 }
404
Stephen Warren712fbcf2011-10-18 11:11:49 +0000405 if (!image_check_hcrc(rd_hdr)) {
406 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000407 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600408 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100409 }
410
Simon Glass770605e2012-02-13 13:51:18 +0000411 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000412 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100413
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100414 if (verify) {
415 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000416 if (!image_check_dcrc(rd_hdr)) {
417 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000418 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600419 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100420 }
421 puts("OK\n");
422 }
423
Simon Glass770605e2012-02-13 13:51:18 +0000424 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100425
Stephen Warren712fbcf2011-10-18 11:11:49 +0000426 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
427 !image_check_arch(rd_hdr, arch) ||
428 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
429 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100430 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000431 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600432 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100433 }
434
435 return rd_hdr;
436}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200437#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100438#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100439
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100440/*****************************************************************************/
441/* Shared dual-format routines */
442/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100443#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600444ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
445ulong save_addr; /* Default Save Address */
446ulong save_size; /* Default Save Size (in bytes) */
447
448static int on_loadaddr(const char *name, const char *value, enum env_op op,
449 int flags)
450{
451 switch (op) {
452 case env_op_create:
453 case env_op_overwrite:
454 load_addr = simple_strtoul(value, NULL, 16);
455 break;
456 default:
457 break;
458 }
459
460 return 0;
461}
462U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
463
Simon Glass723806c2017-08-03 12:22:15 -0600464ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100465{
Simon Glass00caae62017-08-03 12:22:12 -0600466 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100467 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000468 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100469 return tmp;
470 }
471
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200472#if defined(CONFIG_SYS_SDRAM_BASE)
473 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100474#elif defined(CONFIG_ARM)
475 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100476#else
477 return 0;
478#endif
479}
480
Simon Glass723806c2017-08-03 12:22:15 -0600481phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100482{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900483 phys_size_t tmp, size;
484 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600485 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100486 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000487 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100488 return tmp;
489 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900490
491#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
492 start = gd->bd->bi_dram[0].start;
493 size = gd->bd->bi_dram[0].size;
494#else
495 start = gd->bd->bi_memstart;
496 size = gd->bd->bi_memsize;
497#endif
498
Simon Glass00caae62017-08-03 12:22:12 -0600499 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500500 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000501 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500502 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900503 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500504
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900505 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100506}
507
Simon Glass723806c2017-08-03 12:22:15 -0600508phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000509{
510 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600511 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000512 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000513 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000514 return tmp;
515 }
516
517#if defined(CONFIG_SYS_BOOTMAPSZ)
518 return CONFIG_SYS_BOOTMAPSZ;
519#else
Simon Glass723806c2017-08-03 12:22:15 -0600520 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000521#endif
522}
523
Stephen Warren712fbcf2011-10-18 11:11:49 +0000524void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100525{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400526 if (to == from)
527 return;
528
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100529#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800530 if (to > from) {
531 from += len;
532 to += len;
533 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100534 while (len > 0) {
535 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000536 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800537 if (to > from) {
538 to -= tail;
539 from -= tail;
540 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000541 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800542 if (to < from) {
543 to += tail;
544 from += tail;
545 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100546 len -= tail;
547 }
548#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000549 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100550#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
551}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100552#endif /* !USE_HOSTCC */
553
Stephen Warren712fbcf2011-10-18 11:11:49 +0000554void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100555{
556#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000557 printf("%d Bytes = ", size);
558 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100560 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100561 size, (double)size / 1.024e3,
562 (double)size / 1.048576e6);
563#endif
564}
565
Simon Glass859e92b2013-05-07 06:11:51 +0000566#if IMAGE_ENABLE_TIMESTAMP
567void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100568{
569#ifndef USE_HOSTCC
570 struct rtc_time tm;
571
Simon Glass9f9276c2015-04-20 12:37:18 -0600572 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000573 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100574 tm.tm_year, tm.tm_mon, tm.tm_mday,
575 tm.tm_hour, tm.tm_min, tm.tm_sec);
576#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000577 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100578#endif
579}
Simon Glass859e92b2013-05-07 06:11:51 +0000580#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100581
Simon Glass5b9d44d2015-06-23 15:38:25 -0600582const table_entry_t *get_table_entry(const table_entry_t *table, int id)
583{
584 for (; table->id >= 0; ++table) {
585 if (table->id == id)
586 return table;
587 }
588 return NULL;
589}
590
Simon Glass14262202016-06-30 10:52:16 -0600591static const char *unknown_msg(enum ih_category category)
592{
Simon Glassae3de0d2016-10-31 10:21:09 -0600593 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600594 static char msg[30];
595
Simon Glassae3de0d2016-10-31 10:21:09 -0600596 strcpy(msg, unknown_str);
597 strncat(msg, table_info[category].desc,
598 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600599
600 return msg;
601}
602
603/**
604 * get_cat_table_entry_name - translate entry id to long name
605 * @category: category to look up (enum ih_category)
606 * @id: entry id to be translated
607 *
608 * This will scan the translation table trying to find the entry that matches
609 * the given id.
610 *
611 * @retur long entry name if translation succeeds; error string on failure
612 */
613const char *genimg_get_cat_name(enum ih_category category, uint id)
614{
615 const table_entry_t *entry;
616
617 entry = get_table_entry(table_info[category].table, id);
618 if (!entry)
619 return unknown_msg(category);
620#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
621 return entry->lname;
622#else
623 return entry->lname + gd->reloc_off;
624#endif
625}
626
627/**
628 * get_cat_table_entry_short_name - translate entry id to short name
629 * @category: category to look up (enum ih_category)
630 * @id: entry id to be translated
631 *
632 * This will scan the translation table trying to find the entry that matches
633 * the given id.
634 *
635 * @retur short entry name if translation succeeds; error string on failure
636 */
637const char *genimg_get_cat_short_name(enum ih_category category, uint id)
638{
639 const table_entry_t *entry;
640
641 entry = get_table_entry(table_info[category].table, id);
642 if (!entry)
643 return unknown_msg(category);
644#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
645 return entry->sname;
646#else
647 return entry->sname + gd->reloc_off;
648#endif
649}
650
651int genimg_get_cat_count(enum ih_category category)
652{
653 return table_info[category].count;
654}
655
656const char *genimg_get_cat_desc(enum ih_category category)
657{
658 return table_info[category].desc;
659}
660
Marian Balakowicz570abb02008-02-29 15:59:59 +0100661/**
662 * get_table_entry_name - translate entry id to long name
663 * @table: pointer to a translation table for entries of a specific type
664 * @msg: message to be returned when translation fails
665 * @id: entry id to be translated
666 *
667 * get_table_entry_name() will go over translation table trying to find
668 * entry that matches given id. If matching entry is found, its long
669 * name is returned to the caller.
670 *
671 * returns:
672 * long entry name if translation succeeds
673 * msg otherwise
674 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400675char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100676{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600677 table = get_table_entry(table, id);
678 if (!table)
679 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200680#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600681 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500682#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600683 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500684#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100685}
686
Stephen Warren712fbcf2011-10-18 11:11:49 +0000687const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100688{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000689 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100690}
691
Stephen Warren712fbcf2011-10-18 11:11:49 +0000692const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100693{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000694 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
695 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100696}
697
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100699{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000700 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100701}
702
Simon Glasscef2e512016-02-22 22:55:50 -0700703static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600704{
Simon Glasscef2e512016-02-22 22:55:50 -0700705 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600706 if (!table)
707 return "unknown";
708#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
709 return table->sname;
710#else
711 return table->sname + gd->reloc_off;
712#endif
713}
714
Simon Glasscef2e512016-02-22 22:55:50 -0700715const char *genimg_get_type_short_name(uint8_t type)
716{
717 return genimg_get_short_name(uimage_type, type);
718}
719
Stephen Warren712fbcf2011-10-18 11:11:49 +0000720const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100721{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000722 return (get_table_entry_name(uimage_comp, "Unknown Compression",
723 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100724}
725
Simon Glasscef2e512016-02-22 22:55:50 -0700726const char *genimg_get_comp_short_name(uint8_t comp)
727{
728 return genimg_get_short_name(uimage_comp, comp);
729}
730
731const char *genimg_get_os_short_name(uint8_t os)
732{
733 return genimg_get_short_name(uimage_os, os);
734}
735
736const char *genimg_get_arch_short_name(uint8_t arch)
737{
738 return genimg_get_short_name(uimage_arch, arch);
739}
740
Marian Balakowicz570abb02008-02-29 15:59:59 +0100741/**
742 * get_table_entry_id - translate short entry name to id
743 * @table: pointer to a translation table for entries of a specific type
744 * @table_name: to be used in case of error
745 * @name: entry short name to be translated
746 *
747 * get_table_entry_id() will go over translation table trying to find
748 * entry that matches given short name. If matching entry is found,
749 * its id returned to the caller.
750 *
751 * returns:
752 * entry id if translation succeeds
753 * -1 otherwise
754 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400755int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100756 const char *table_name, const char *name)
757{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400758 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100759
760 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200761#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600762 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200763#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600764 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500765#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100766 return (t->id);
767 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000768 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600769
770 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100771}
772
Stephen Warren712fbcf2011-10-18 11:11:49 +0000773int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100774{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000775 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100776}
777
Stephen Warren712fbcf2011-10-18 11:11:49 +0000778int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100779{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000780 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100781}
782
Stephen Warren712fbcf2011-10-18 11:11:49 +0000783int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100784{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000785 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100786}
787
Stephen Warren712fbcf2011-10-18 11:11:49 +0000788int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100789{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000790 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100791}
792
793#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100794/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700795 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
796 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700797 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700798 * @fit_uname_config: double pointer to a char, will hold pointer to a
799 * configuration unit name
800 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
801 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700802 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700803 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700804 * which is normally the first argv of bootm/bootz
805 *
806 * returns:
807 * kernel start address
808 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700809ulong genimg_get_kernel_addr_fit(char * const img_addr,
810 const char **fit_uname_config,
811 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700812{
Bryan Wu0f641402014-07-31 17:39:58 -0700813 ulong kernel_addr;
814
815 /* find out kernel image address */
816 if (!img_addr) {
817 kernel_addr = load_addr;
818 debug("* kernel: default image load address = 0x%08lx\n",
819 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700820#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700821 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700822 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700823 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700824 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700825 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700826 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700827 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700828 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700829#endif
830 } else {
831 kernel_addr = simple_strtoul(img_addr, NULL, 16);
832 debug("* kernel: cmdline image address = 0x%08lx\n",
833 kernel_addr);
834 }
835
836 return kernel_addr;
837}
838
839/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700840 * genimg_get_kernel_addr() is the simple version of
841 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
842 */
843ulong genimg_get_kernel_addr(char * const img_addr)
844{
845 const char *fit_uname_config = NULL;
846 const char *fit_uname_kernel = NULL;
847
848 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
849 &fit_uname_kernel);
850}
851
852/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100853 * genimg_get_format - get image format type
854 * @img_addr: image start address
855 *
856 * genimg_get_format() checks whether provided address points to a valid
857 * legacy or FIT image.
858 *
859 * New uImage format and FDT blob are based on a libfdt. FDT blob
860 * may be passed directly or embedded in a FIT image. In both situations
861 * genimg_get_format() must be able to dectect libfdt header.
862 *
863 * returns:
864 * image format type or IMAGE_FORMAT_INVALID if no image is present
865 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000866int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100867{
Heiko Schocher21d29f72014-05-28 11:33:33 +0200868#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200869 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100870
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200871 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100872 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200873 return IMAGE_FORMAT_LEGACY;
874#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700875#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200876 if (fdt_check_header(img_addr) == 0)
877 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500878#endif
879#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200880 if (android_image_check_header(img_addr) == 0)
881 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100882#endif
883
Heiko Schocher21d29f72014-05-28 11:33:33 +0200884 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100885}
886
887/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100888 * fit_has_config - check if there is a valid FIT configuration
889 * @images: pointer to the bootm command headers structure
890 *
891 * fit_has_config() checks if there is a FIT configuration in use
892 * (if FTI support is present).
893 *
894 * returns:
895 * 0, no FIT support or no configuration found
896 * 1, configuration found
897 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000898int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100899{
Simon Glass73223f02016-02-22 22:55:43 -0700900#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100901 if (images->fit_uname_cfg)
902 return 1;
903#endif
904 return 0;
905}
906
907/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100908 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100909 * @argc: command argument count
910 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100911 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100912 * @arch: expected ramdisk architecture
913 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
914 * @rd_end: pointer to a ulong variable, will hold ramdisk end
915 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100916 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100917 * Curently supported are the following ramdisk sources:
918 * - multicomponent kernel/ramdisk image,
919 * - commandline provided address of decicated ramdisk image.
920 *
921 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +0100922 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100923 * rd_start and rd_end are set to ramdisk start/end addresses if
924 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +0100925 *
Kumar Galaea86b9e2008-08-29 19:08:29 -0500926 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100927 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100928 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000929int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100930 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100931{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100932 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100933 ulong rd_data, rd_len;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200934#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200935 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200936#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +0000937 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200938#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +0000939 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +0200940#endif
Simon Glass73223f02016-02-22 22:55:43 -0700941#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -0700942 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100943 const char *fit_uname_ramdisk = NULL;
944 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +0100945 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100946#endif
Simon Glass983c72f2013-06-11 11:14:46 -0700947 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100948
Marian Balakowiczc8779642008-03-12 10:12:37 +0100949 *rd_start = 0;
950 *rd_end = 0;
951
Tom Rini1fec3c52015-08-27 15:42:41 -0400952#ifdef CONFIG_ANDROID_BOOT_IMAGE
953 /*
954 * Look for an Android boot image.
955 */
956 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -0400957 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Tom Rini1fec3c52015-08-27 15:42:41 -0400958 select = argv[0];
959#endif
960
Simon Glass983c72f2013-06-11 11:14:46 -0700961 if (argc >= 2)
962 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -0500963
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100964 /*
965 * Look for a '-' which indicates to ignore the
966 * ramdisk argument
967 */
Simon Glass983c72f2013-06-11 11:14:46 -0700968 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000969 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100970 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -0700971 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -0700972#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -0700973 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100974 /*
975 * If the init ramdisk comes from the FIT image and
976 * the FIT image address is omitted in the command
977 * line argument, try to use os FIT image address or
978 * default load address.
979 */
980 if (images->fit_uname_os)
981 default_addr = (ulong)images->fit_hdr_os;
982 else
983 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100984
Simon Glass983c72f2013-06-11 11:14:46 -0700985 if (fit_parse_conf(select, default_addr,
986 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000987 debug("* ramdisk: config '%s' from image at "
988 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100989 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700990 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100991 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000992 debug("* ramdisk: subimage '%s' from image at "
993 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100994 fit_uname_ramdisk, rd_addr);
995 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100996#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100997 {
Simon Glass983c72f2013-06-11 11:14:46 -0700998 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000999 debug("* ramdisk: cmdline image address = "
1000 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001001 rd_addr);
1002 }
Simon Glass73223f02016-02-22 22:55:43 -07001003#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001004 } else {
1005 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001006 * command argument. If the property is not defined,
1007 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001008 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001009 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001010 rd_noffset = fit_get_node_from_config(images,
1011 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001012 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001013 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001014 else if (rd_noffset < 0)
1015 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001016 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001017#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001018
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001019 /*
1020 * Check if there is an initrd image at the
1021 * address provided in the second bootm argument
1022 * check image type, for FIT images get FIT node.
1023 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001024 buf = map_sysmem(rd_addr, 0);
1025 switch (genimg_get_format(buf)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +02001026#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001027 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001028 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001029 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001030
Simon Glass770605e2012-02-13 13:51:18 +00001031 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001032 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001033 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001034
Marian Balakowiczc8779642008-03-12 10:12:37 +01001035 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001036 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001037
Stephen Warren712fbcf2011-10-18 11:11:49 +00001038 rd_data = image_get_data(rd_hdr);
1039 rd_len = image_get_data_size(rd_hdr);
1040 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001041 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001042#endif
Simon Glass73223f02016-02-22 22:55:43 -07001043#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001044 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001045 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001046 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001047 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001048 IH_TYPE_RAMDISK,
1049 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001050 FIT_LOAD_OPTIONAL_NON_ZERO,
1051 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001052 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001053 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001054
Simon Glassa51ec632013-05-16 13:53:22 +00001055 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001056 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001057 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001058 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001059#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001060#ifdef CONFIG_ANDROID_BOOT_IMAGE
1061 case IMAGE_FORMAT_ANDROID:
1062 android_image_get_ramdisk((void *)images->os.start,
1063 &rd_data, &rd_len);
1064 break;
1065#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001066 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001067#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001068 end = NULL;
1069 if (select)
1070 end = strchr(select, ':');
1071 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001072 rd_len = simple_strtoul(++end, NULL, 16);
1073 rd_data = rd_addr;
1074 } else
1075#endif
1076 {
1077 puts("Wrong Ramdisk Image Format\n");
1078 rd_data = rd_len = rd_load = 0;
1079 return 1;
1080 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001081 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001082 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001083 image_check_type(&images->legacy_hdr_os_copy,
1084 IH_TYPE_MULTI)) {
1085
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001086 /*
1087 * Now check if we have a legacy mult-component image,
1088 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001089 */
Simon Glass770605e2012-02-13 13:51:18 +00001090 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001091 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001092 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001093 (ulong)images->legacy_hdr_os);
1094
Stephen Warren712fbcf2011-10-18 11:11:49 +00001095 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001096 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001097 /*
1098 * no initrd image
1099 */
Simon Glass770605e2012-02-13 13:51:18 +00001100 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001101 rd_len = rd_data = 0;
1102 }
1103
1104 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001105 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001106 } else {
1107 *rd_start = rd_data;
1108 *rd_end = rd_data + rd_len;
1109 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001110 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001111 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001112
1113 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001114}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001115
John Rigbyfca43cc2010-10-13 13:57:35 -06001116#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001117/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001118 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001119 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001120 * @rd_data: ramdisk data start address
1121 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001122 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1123 * start address (after possible relocation)
1124 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1125 * end address (after possible relocation)
1126 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001127 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001128 * variable and if requested ramdisk data is moved to a specified location.
1129 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001130 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1131 * start/end addresses if ramdisk image start and len were provided,
1132 * otherwise set initrd_start and initrd_end set to zeros.
1133 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001134 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001135 * 0 - success
1136 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001137 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001138int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001139 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001140{
1141 char *s;
1142 ulong initrd_high;
1143 int initrd_copy_to_ram = 1;
1144
Simon Glass00caae62017-08-03 12:22:12 -06001145 s = env_get("initrd_high");
1146 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001147 /* a value of "no" or a similar string will act like 0,
1148 * turning the "load high" feature off. This is intentional.
1149 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001150 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001151 if (initrd_high == ~0)
1152 initrd_copy_to_ram = 0;
1153 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001154 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001155 }
1156
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001157
Stephen Warren712fbcf2011-10-18 11:11:49 +00001158 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001159 initrd_high, initrd_copy_to_ram);
1160
1161 if (rd_data) {
1162 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001163 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001164 *initrd_start = rd_data;
1165 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001166 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001167 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001168 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001169 *initrd_start = (ulong)lmb_alloc_base(lmb,
1170 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001171 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001172 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1173 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001174
Kumar Galae822d7f2008-02-27 21:51:49 -06001175 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001176 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001177 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001178 }
Simon Glass770605e2012-02-13 13:51:18 +00001179 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001180
1181 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001182 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001183 *initrd_start, *initrd_end);
1184
Stephen Warren712fbcf2011-10-18 11:11:49 +00001185 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001186 (void *)rd_data, rd_len, CHUNKSZ);
1187
Kumar Gala3b200112011-12-07 04:42:58 +00001188#ifdef CONFIG_MP
1189 /*
1190 * Ensure the image is flushed to memory to handle
1191 * AMP boot scenarios in which we might not be
1192 * HW cache coherent
1193 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001194 flush_cache((unsigned long)*initrd_start,
1195 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001196#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001197 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001198 }
1199 } else {
1200 *initrd_start = 0;
1201 *initrd_end = 0;
1202 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001203 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001204 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001205
Kumar Galae822d7f2008-02-27 21:51:49 -06001206 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001207
Kumar Galae822d7f2008-02-27 21:51:49 -06001208error:
1209 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001210}
John Rigbyfca43cc2010-10-13 13:57:35 -06001211#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001212
Simon Glass90268b82014-10-19 21:11:24 -06001213int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1214 ulong *setup_start, ulong *setup_len)
1215{
Simon Glass73223f02016-02-22 22:55:43 -07001216#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001217 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1218#else
1219 return -ENOENT;
1220#endif
1221}
1222
Simon Glass73223f02016-02-22 22:55:43 -07001223#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001224#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001225int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1226 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1227{
1228 ulong tmp_img_addr, img_data, img_len;
1229 void *buf;
1230 int conf_noffset;
1231 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001232 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001233 int err;
1234 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001235
1236 /* Check to see if the images struct has a FIT configuration */
1237 if (!genimg_has_config(images)) {
1238 debug("## FIT configuration was not specified\n");
1239 return 0;
1240 }
1241
1242 /*
1243 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001244 */
1245 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001246 buf = map_sysmem(tmp_img_addr, 0);
1247 /*
1248 * Check image type. For FIT images get FIT node
1249 * and attempt to locate a generic binary.
1250 */
1251 switch (genimg_get_format(buf)) {
1252 case IMAGE_FORMAT_FIT:
1253 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1254
Simon Glassb02e4042016-10-02 17:59:28 -06001255 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1256 NULL);
1257 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001258 debug("## FPGA image is not specified\n");
1259 return 0;
1260 }
1261 fit_img_result = fit_image_load(images,
1262 tmp_img_addr,
1263 (const char **)&uname,
1264 &(images->fit_uname_cfg),
1265 arch,
1266 IH_TYPE_FPGA,
1267 BOOTSTAGE_ID_FPGA_INIT,
1268 FIT_LOAD_OPTIONAL_NON_ZERO,
1269 &img_data, &img_len);
1270
1271 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1272 uname, img_data, img_len);
1273
1274 if (fit_img_result < 0) {
1275 /* Something went wrong! */
1276 return fit_img_result;
1277 }
1278
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001279 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001280 name = "full";
1281 err = fpga_loadbitstream(devnum, (char *)img_data,
1282 img_len, BIT_FULL);
1283 if (err)
1284 err = fpga_load(devnum, (const void *)img_data,
1285 img_len, BIT_FULL);
1286 } else {
1287 name = "partial";
1288 err = fpga_loadbitstream(devnum, (char *)img_data,
1289 img_len, BIT_PARTIAL);
1290 if (err)
1291 err = fpga_load(devnum, (const void *)img_data,
1292 img_len, BIT_PARTIAL);
1293 }
1294
Michal Simek62afc602016-05-17 14:03:50 +02001295 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001296 return err;
1297
1298 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001299 break;
1300 default:
1301 printf("The given image format is not supported (corrupt?)\n");
1302 return 1;
1303 }
1304
1305 return 0;
1306}
1307#endif
1308
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001309static void fit_loadable_process(uint8_t img_type,
1310 ulong img_data,
1311 ulong img_len)
1312{
1313 int i;
1314 const unsigned int count =
1315 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1316 struct fit_loadable_tbl *fit_loadable_handler =
1317 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1318 /* For each loadable handler */
1319 for (i = 0; i < count; i++, fit_loadable_handler++)
1320 /* matching this type */
1321 if (fit_loadable_handler->type == img_type)
1322 /* call that handler with this image data */
1323 fit_loadable_handler->handler(img_data, img_len);
1324}
1325
Karl Apsite84a07db2015-05-21 09:52:48 -04001326int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1327 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1328{
1329 /*
1330 * These variables are used to hold the current image location
1331 * in system memory.
1332 */
1333 ulong tmp_img_addr;
1334 /*
1335 * These two variables are requirements for fit_image_load, but
1336 * their values are not used
1337 */
1338 ulong img_data, img_len;
1339 void *buf;
1340 int loadables_index;
1341 int conf_noffset;
1342 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001343 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001344 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001345
1346 /* Check to see if the images struct has a FIT configuration */
1347 if (!genimg_has_config(images)) {
1348 debug("## FIT configuration was not specified\n");
1349 return 0;
1350 }
1351
1352 /*
1353 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001354 */
1355 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001356 buf = map_sysmem(tmp_img_addr, 0);
1357 /*
1358 * Check image type. For FIT images get FIT node
1359 * and attempt to locate a generic binary.
1360 */
1361 switch (genimg_get_format(buf)) {
1362 case IMAGE_FORMAT_FIT:
1363 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1364
1365 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001366 uname = fdt_stringlist_get(buf, conf_noffset,
1367 FIT_LOADABLE_PROP, loadables_index,
1368 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001369 loadables_index++)
1370 {
1371 fit_img_result = fit_image_load(images,
1372 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001373 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001374 &(images->fit_uname_cfg), arch,
1375 IH_TYPE_LOADABLE,
1376 BOOTSTAGE_ID_FIT_LOADABLE_START,
1377 FIT_LOAD_OPTIONAL_NON_ZERO,
1378 &img_data, &img_len);
1379 if (fit_img_result < 0) {
1380 /* Something went wrong! */
1381 return fit_img_result;
1382 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001383
1384 fit_img_result = fit_image_get_node(buf, uname);
1385 if (fit_img_result < 0) {
1386 /* Something went wrong! */
1387 return fit_img_result;
1388 }
1389 fit_img_result = fit_image_get_type(buf,
1390 fit_img_result,
1391 &img_type);
1392 if (fit_img_result < 0) {
1393 /* Something went wrong! */
1394 return fit_img_result;
1395 }
1396
1397 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001398 }
1399 break;
1400 default:
1401 printf("The given image format is not supported (corrupt?)\n");
1402 return 1;
1403 }
1404
1405 return 0;
1406}
1407#endif
1408
John Rigbyfca43cc2010-10-13 13:57:35 -06001409#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001410/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001411 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001412 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001413 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1414 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1415 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001416 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301417 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001418 * variable is present its contents is copied to allocated kernel
1419 * command line.
1420 *
1421 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001422 * 0 - success
1423 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001424 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001425int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001426{
1427 char *cmdline;
1428 char *s;
1429
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001430 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001431 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001432
1433 if (cmdline == NULL)
1434 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001435
Simon Glass00caae62017-08-03 12:22:12 -06001436 s = env_get("bootargs");
1437 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001438 s = "";
1439
1440 strcpy(cmdline, s);
1441
1442 *cmd_start = (ulong) & cmdline[0];
1443 *cmd_end = *cmd_start + strlen(cmdline);
1444
Stephen Warren712fbcf2011-10-18 11:11:49 +00001445 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001446
Kumar Galae822d7f2008-02-27 21:51:49 -06001447 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001448}
John Rigbyfca43cc2010-10-13 13:57:35 -06001449#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001450
John Rigbyfca43cc2010-10-13 13:57:35 -06001451#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001452/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001453 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001454 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001455 * @kbd: double pointer to board info data
1456 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001457 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001458 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001459 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001460 *
1461 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001462 * 0 - success
1463 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001464 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001465int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001466{
Becky Bruce391fd932008-06-09 20:37:18 -05001467 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001468 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001469 if (*kbd == NULL)
1470 return -1;
1471
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001472 **kbd = *(gd->bd);
1473
Stephen Warren712fbcf2011-10-18 11:11:49 +00001474 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001475
1476#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1477 do_bdinfo(NULL, 0, 0, NULL);
1478#endif
1479
Kumar Galae822d7f2008-02-27 21:51:49 -06001480 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001481}
John Rigbyfca43cc2010-10-13 13:57:35 -06001482#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001483
1484#ifdef CONFIG_LMB
1485int image_setup_linux(bootm_headers_t *images)
1486{
1487 ulong of_size = images->ft_len;
1488 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001489 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001490 int ret;
1491
1492 if (IMAGE_ENABLE_OF_LIBFDT)
1493 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1494
1495 if (IMAGE_BOOT_GET_CMDLINE) {
1496 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1497 &images->cmdline_end);
1498 if (ret) {
1499 puts("ERROR with allocation of cmdline\n");
1500 return ret;
1501 }
1502 }
Simon Glass13d06982013-05-08 08:06:01 +00001503
1504 if (IMAGE_ENABLE_OF_LIBFDT) {
1505 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1506 if (ret)
1507 return ret;
1508 }
1509
1510 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1511 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1512 if (ret)
1513 return ret;
1514 }
1515
1516 return 0;
1517}
1518#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001519#endif /* !USE_HOSTCC */