blob: e1ca1a7905ef4f0ba298318e0977f0aa5769d206 [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>
Simon Glass52f24232020-05-10 11:40:00 -060011#include <bootstage.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070012#include <cpu_func.h>
Simon Glass7b51b572019-08-01 09:46:52 -060013#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060014#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070016#include <malloc.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass3db71102019-11-14 12:57:16 -070018#include <u-boot/crc.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010019#include <watchdog.h>
20
21#ifdef CONFIG_SHOW_BOOT_PROGRESS
22#include <status_led.h>
23#endif
24
Marian Balakowicz2242f532008-02-21 17:27:41 +010025#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010026
Simon Glass0c670fc2019-08-01 09:46:36 -060027#include <gzip.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010028#include <image.h>
Simon Glass6c03f9e2019-11-14 12:57:25 -070029#include <lz4.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050030#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010031
Simon Glassaa34fbc2016-02-22 22:55:45 -070032#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090033#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010034#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020035#include <fpga.h>
36#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010037#endif
38
Andy Fleming20a14a42008-04-02 16:19:07 -050039#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020040#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090041#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000042#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010043
Julius Werner20908542019-07-24 19:37:54 -070044#include <bzlib.h>
45#include <linux/lzo.h>
46#include <lzma/LzmaTypes.h>
47#include <lzma/LzmaDec.h>
48#include <lzma/LzmaTools.h>
49
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010050#ifdef CONFIG_CMD_BDI
Simon Glass09140112020-05-10 11:40:03 -060051extern int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
52 char *const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010053#endif
54
55DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010056
Tom Rinic76c93a2019-05-23 07:14:07 -040057#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000058static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010059 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020060#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010061#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010062#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050063#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010064#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010065#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020066
67#ifndef __maybe_unused
68# define __maybe_unused /* unimplemented */
69#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010070#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010071
Simon Glass0ccff502013-02-24 17:33:25 +000072#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000073#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000074
Simon Glass13d06982013-05-08 08:06:01 +000075#ifndef CONFIG_SYS_BARGSIZE
76#define CONFIG_SYS_BARGSIZE 512
77#endif
78
Mike Frysinger7edb1862010-10-20 07:17:39 -040079static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060080 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010081 { IH_ARCH_ALPHA, "alpha", "Alpha", },
82 { IH_ARCH_ARM, "arm", "ARM", },
83 { IH_ARCH_I386, "x86", "Intel x86", },
84 { IH_ARCH_IA64, "ia64", "IA64", },
85 { IH_ARCH_M68K, "m68k", "M68K", },
86 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
87 { IH_ARCH_MIPS, "mips", "MIPS", },
88 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010089 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070090 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010091 { IH_ARCH_PPC, "ppc", "PowerPC", },
92 { IH_ARCH_S390, "s390", "IBM S390", },
93 { IH_ARCH_SH, "sh", "SuperH", },
94 { IH_ARCH_SPARC, "sparc", "SPARC", },
95 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
96 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
97 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000098 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000099 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +0000100 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +0800101 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +0400102 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -0600103 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300104 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +0800105 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100106 { -1, "", "", },
107};
108
Mike Frysinger7edb1862010-10-20 07:17:39 -0400109static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600110 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200111 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100112 { IH_OS_LINUX, "linux", "Linux", },
113#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
114 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
115#endif
116 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200117 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000118 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100119 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000120 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100121 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800122 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100123#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
124 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100125#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500126#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
127 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
128#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100129#ifdef USE_HOSTCC
130 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
131 { IH_OS_DELL, "dell", "Dell", },
132 { IH_OS_ESIX, "esix", "Esix", },
133 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
134 { IH_OS_IRIX, "irix", "Irix", },
135 { IH_OS_NCR, "ncr", "NCR", },
136 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
137 { IH_OS_PSOS, "psos", "pSOS", },
138 { IH_OS_SCO, "sco", "SCO", },
139 { IH_OS_SOLARIS, "solaris", "Solaris", },
140 { IH_OS_SVR4, "svr4", "SVR4", },
141#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100142#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
143 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
144#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200145 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200146 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100147
Marian Balakowicz570abb02008-02-29 15:59:59 +0100148 { -1, "", "", },
149};
150
Mike Frysinger7edb1862010-10-20 07:17:39 -0400151static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000152 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100153 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
154 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400155 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400156 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100157 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700158 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000159 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
160 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000161 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000162 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600163 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100164 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000165 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000166 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100167 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
168 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200169 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
170 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100171 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000172 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200173 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200174 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600175 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200176 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600177 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600178 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600179 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200180 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000181 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200182 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200183 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200184 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600185 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100186 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500187 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100188 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800189 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200190 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100191 { -1, "", "", },
192};
193
Mike Frysinger7edb1862010-10-20 07:17:39 -0400194static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100195 { IH_COMP_NONE, "none", "uncompressed", },
196 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
197 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200198 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100199 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700200 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100201 { -1, "", "", },
202};
203
Simon Glass56d7ab72016-06-30 10:52:14 -0600204struct table_info {
205 const char *desc;
206 int count;
207 const table_entry_t *table;
208};
209
Atish Patra155d6a32020-03-05 16:24:22 -0800210static const struct comp_magic_map image_comp[] = {
211 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
212 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
213 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
214 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
215 { IH_COMP_NONE, "none", {}, },
216};
217
Simon Glass56d7ab72016-06-30 10:52:14 -0600218static const struct table_info table_info[IH_COUNT] = {
219 { "architecture", IH_ARCH_COUNT, uimage_arch },
220 { "compression", IH_COMP_COUNT, uimage_comp },
221 { "operating system", IH_OS_COUNT, uimage_os },
222 { "image type", IH_TYPE_COUNT, uimage_type },
223};
224
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100225/*****************************************************************************/
226/* Legacy format routines */
227/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000228int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100229{
230 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000231 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100232 image_header_t header;
233
234 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235 memmove(&header, (char *)hdr, image_get_header_size());
236 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100237
Stephen Warren712fbcf2011-10-18 11:11:49 +0000238 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100239
Stephen Warren712fbcf2011-10-18 11:11:49 +0000240 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100241}
242
Stephen Warren712fbcf2011-10-18 11:11:49 +0000243int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100244{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000245 ulong data = image_get_data(hdr);
246 ulong len = image_get_data_size(hdr);
247 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100248
Stephen Warren712fbcf2011-10-18 11:11:49 +0000249 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100250}
251
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100252/**
253 * image_multi_count - get component (sub-image) count
254 * @hdr: pointer to the header of the multi component image
255 *
256 * image_multi_count() returns number of components in a multi
257 * component image.
258 *
259 * Note: no checking of the image type is done, caller must pass
260 * a valid multi component image.
261 *
262 * returns:
263 * number of components
264 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100266{
267 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100268 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100269
270 /* get start of the image payload, which in case of multi
271 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000272 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100273
274 /* count non empty slots */
275 for (i = 0; size[i]; ++i)
276 count++;
277
278 return count;
279}
280
281/**
282 * image_multi_getimg - get component data address and size
283 * @hdr: pointer to the header of the multi component image
284 * @idx: index of the requested component
285 * @data: pointer to a ulong variable, will hold component data address
286 * @len: pointer to a ulong variable, will hold component size
287 *
288 * image_multi_getimg() returns size and data address for the requested
289 * component in a multi component image.
290 *
291 * Note: no checking of the image type is done, caller must pass
292 * a valid multi component image.
293 *
294 * returns:
295 * data address and size of the component, if idx is valid
296 * 0 in data and len, if idx is out of range
297 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000298void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100299 ulong *data, ulong *len)
300{
301 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100302 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700303 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100304
305 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000306 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100307
308 /* get start of the image payload, which in case of multi
309 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100311
312 /* get address of the proper component data start, which means
313 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000314 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100315
316 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000317 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100318 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100319
320 /* go over all indices preceding requested component idx */
321 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700322 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100324 }
325
326 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700327 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100328 } else {
329 *len = 0;
330 *data = 0;
331 }
332}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100333
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100335{
Heiko Schocher80402f32015-06-29 09:10:46 +0200336 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100337
Stephen Warren712fbcf2011-10-18 11:11:49 +0000338 os = genimg_get_os_name(image_get_os(hdr));
339 arch = genimg_get_arch_name(image_get_arch(hdr));
340 type = genimg_get_type_name(image_get_type(hdr));
341 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100342
Stephen Warren712fbcf2011-10-18 11:11:49 +0000343 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344}
345
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100346/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200347 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200348 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100349 * @p: pointer to prefix string
350 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200351 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100352 * The routine prints out all header fields followed by the size/offset data
353 * for MULTI/SCRIPT images.
354 *
355 * returns:
356 * no returned results
357 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000358void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100359{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200360 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200361 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200362
Simon Glass1fe7d932013-05-08 08:05:58 +0000363 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000364 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000365 if (IMAGE_ENABLE_TIMESTAMP) {
366 printf("%sCreated: ", p);
367 genimg_print_time((time_t)image_get_time(hdr));
368 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000369 printf("%sImage Type: ", p);
370 image_print_type(hdr);
371 printf("%sData Size: ", p);
372 genimg_print_size(image_get_data_size(hdr));
373 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
374 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100375
Stephen Warren712fbcf2011-10-18 11:11:49 +0000376 if (image_check_type(hdr, IH_TYPE_MULTI) ||
377 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100378 int i;
379 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100381
Stephen Warren712fbcf2011-10-18 11:11:49 +0000382 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100383 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000384 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100385
Stephen Warren712fbcf2011-10-18 11:11:49 +0000386 printf("%s Image %d: ", p, i);
387 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100388
Stephen Warren712fbcf2011-10-18 11:11:49 +0000389 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100390 /*
391 * the user may need to know offsets
392 * if planning to do something with
393 * multiple files
394 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000395 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100396 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100397 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100398 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
399 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000400 image_get_load(hdr) - image_get_header_size(),
401 (int)(image_get_size(hdr) + image_get_header_size()
402 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100403 }
404}
405
Julius Werner20908542019-07-24 19:37:54 -0700406/**
407 * print_decomp_msg() - Print a suitable decompression/loading message
408 *
409 * @type: OS type (IH_OS_...)
410 * @comp_type: Compression type being used (IH_COMP_...)
411 * @is_xip: true if the load address matches the image start
412 */
413static void print_decomp_msg(int comp_type, int type, bool is_xip)
414{
415 const char *name = genimg_get_type_name(type);
416
417 if (comp_type == IH_COMP_NONE)
418 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
419 else
420 printf(" Uncompressing %s\n", name);
421}
422
Atish Patra155d6a32020-03-05 16:24:22 -0800423int image_decomp_type(const unsigned char *buf, ulong len)
424{
425 const struct comp_magic_map *cmagic = image_comp;
426
427 if (len < 2)
428 return -EINVAL;
429
430 for (; cmagic->comp_id > 0; cmagic++) {
431 if (!memcmp(buf, cmagic->magic, 2))
432 break;
433 }
434
435 return cmagic->comp_id;
436}
437
Julius Werner20908542019-07-24 19:37:54 -0700438int image_decomp(int comp, ulong load, ulong image_start, int type,
439 void *load_buf, void *image_buf, ulong image_len,
440 uint unc_len, ulong *load_end)
441{
442 int ret = 0;
443
444 *load_end = load;
445 print_decomp_msg(comp, type, load == image_start);
446
447 /*
448 * Load the image to the right place, decompressing if needed. After
449 * this, image_len will be set to the number of uncompressed bytes
450 * loaded, ret will be non-zero on error.
451 */
452 switch (comp) {
453 case IH_COMP_NONE:
454 if (load == image_start)
455 break;
456 if (image_len <= unc_len)
457 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
458 else
459 ret = -ENOSPC;
460 break;
461#ifdef CONFIG_GZIP
462 case IH_COMP_GZIP: {
463 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
464 break;
465 }
466#endif /* CONFIG_GZIP */
467#ifdef CONFIG_BZIP2
468 case IH_COMP_BZIP2: {
469 uint size = unc_len;
470
471 /*
472 * If we've got less than 4 MB of malloc() space,
473 * use slower decompression algorithm which requires
474 * at most 2300 KB of memory.
475 */
476 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
477 image_buf, image_len,
478 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
479 image_len = size;
480 break;
481 }
482#endif /* CONFIG_BZIP2 */
483#ifdef CONFIG_LZMA
484 case IH_COMP_LZMA: {
485 SizeT lzma_len = unc_len;
486
487 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
488 image_buf, image_len);
489 image_len = lzma_len;
490 break;
491 }
492#endif /* CONFIG_LZMA */
493#ifdef CONFIG_LZO
494 case IH_COMP_LZO: {
495 size_t size = unc_len;
496
497 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
498 image_len = size;
499 break;
500 }
501#endif /* CONFIG_LZO */
502#ifdef CONFIG_LZ4
503 case IH_COMP_LZ4: {
504 size_t size = unc_len;
505
506 ret = ulz4fn(image_buf, image_len, load_buf, &size);
507 image_len = size;
508 break;
509 }
510#endif /* CONFIG_LZ4 */
511 default:
512 printf("Unimplemented compression type %d\n", comp);
513 return -ENOSYS;
514 }
515
516 *load_end = load + image_len;
517
518 return ret;
519}
520
Marian Balakowicz570abb02008-02-29 15:59:59 +0100521
522#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400523#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100524/**
525 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100526 * @rd_addr: ramdisk image start address
527 * @arch: expected ramdisk architecture
528 * @verify: checksum verification flag
529 *
530 * image_get_ramdisk() returns a pointer to the verified ramdisk image
531 * header. Routine receives image start address and expected architecture
532 * flag. Verification done covers data and header integrity and os/type/arch
533 * fields checking.
534 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100535 * returns:
536 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600537 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100538 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000539static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100540 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100541{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200542 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100543
Stephen Warren712fbcf2011-10-18 11:11:49 +0000544 if (!image_check_magic(rd_hdr)) {
545 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000546 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600547 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100548 }
549
Stephen Warren712fbcf2011-10-18 11:11:49 +0000550 if (!image_check_hcrc(rd_hdr)) {
551 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000552 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600553 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100554 }
555
Simon Glass770605e2012-02-13 13:51:18 +0000556 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000557 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100558
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100559 if (verify) {
560 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000561 if (!image_check_dcrc(rd_hdr)) {
562 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000563 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600564 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100565 }
566 puts("OK\n");
567 }
568
Simon Glass770605e2012-02-13 13:51:18 +0000569 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100570
Stephen Warren712fbcf2011-10-18 11:11:49 +0000571 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
572 !image_check_arch(rd_hdr, arch) ||
573 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
574 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100575 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000576 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600577 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100578 }
579
580 return rd_hdr;
581}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200582#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100583#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100584
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100585/*****************************************************************************/
586/* Shared dual-format routines */
587/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100588#ifndef USE_HOSTCC
Simon Glassbb872dd2019-12-28 10:45:02 -0700589ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
590ulong image_save_addr; /* Default Save Address */
591ulong image_save_size; /* Default Save Size (in bytes) */
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600592
593static int on_loadaddr(const char *name, const char *value, enum env_op op,
594 int flags)
595{
596 switch (op) {
597 case env_op_create:
598 case env_op_overwrite:
Simon Glassbb872dd2019-12-28 10:45:02 -0700599 image_load_addr = simple_strtoul(value, NULL, 16);
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600600 break;
601 default:
602 break;
603 }
604
605 return 0;
606}
607U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
608
Simon Glass723806c2017-08-03 12:22:15 -0600609ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100610{
Simon Glass00caae62017-08-03 12:22:12 -0600611 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100612 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000613 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100614 return tmp;
615 }
616
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200617#if defined(CONFIG_SYS_SDRAM_BASE)
618 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200619#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100620 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100621#else
622 return 0;
623#endif
624}
625
Simon Glass723806c2017-08-03 12:22:15 -0600626phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100627{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900628 phys_size_t tmp, size;
629 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600630 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100631 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000632 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100633 return tmp;
634 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900635
Michal Simeka750ded2019-09-25 09:11:48 +0200636#if (defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)) && \
637 defined(CONFIG_NR_DRAM_BANKS)
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900638 start = gd->bd->bi_dram[0].start;
639 size = gd->bd->bi_dram[0].size;
640#else
641 start = gd->bd->bi_memstart;
642 size = gd->bd->bi_memsize;
643#endif
644
Simon Glass00caae62017-08-03 12:22:12 -0600645 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500646 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000647 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500648 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900649 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500650
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900651 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100652}
653
Simon Glass723806c2017-08-03 12:22:15 -0600654phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000655{
656 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600657 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000658 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000659 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000660 return tmp;
661 }
662
663#if defined(CONFIG_SYS_BOOTMAPSZ)
664 return CONFIG_SYS_BOOTMAPSZ;
665#else
Simon Glass723806c2017-08-03 12:22:15 -0600666 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000667#endif
668}
669
Stephen Warren712fbcf2011-10-18 11:11:49 +0000670void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100671{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400672 if (to == from)
673 return;
674
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100675#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800676 if (to > from) {
677 from += len;
678 to += len;
679 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100680 while (len > 0) {
681 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000682 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800683 if (to > from) {
684 to -= tail;
685 from -= tail;
686 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000687 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800688 if (to < from) {
689 to += tail;
690 from += tail;
691 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100692 len -= tail;
693 }
694#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000695 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100696#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
697}
Julius Werner20908542019-07-24 19:37:54 -0700698#else /* USE_HOSTCC */
699void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
700{
701 memmove(to, from, len);
702}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100703#endif /* !USE_HOSTCC */
704
Stephen Warren712fbcf2011-10-18 11:11:49 +0000705void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100706{
707#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000708 printf("%d Bytes = ", size);
709 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100710#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100711 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100712 size, (double)size / 1.024e3,
713 (double)size / 1.048576e6);
714#endif
715}
716
Simon Glass859e92b2013-05-07 06:11:51 +0000717#if IMAGE_ENABLE_TIMESTAMP
718void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100719{
720#ifndef USE_HOSTCC
721 struct rtc_time tm;
722
Simon Glass9f9276c2015-04-20 12:37:18 -0600723 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000724 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100725 tm.tm_year, tm.tm_mon, tm.tm_mday,
726 tm.tm_hour, tm.tm_min, tm.tm_sec);
727#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000728 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100729#endif
730}
Simon Glass859e92b2013-05-07 06:11:51 +0000731#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100732
Simon Glass5b9d44d2015-06-23 15:38:25 -0600733const table_entry_t *get_table_entry(const table_entry_t *table, int id)
734{
735 for (; table->id >= 0; ++table) {
736 if (table->id == id)
737 return table;
738 }
739 return NULL;
740}
741
Simon Glass14262202016-06-30 10:52:16 -0600742static const char *unknown_msg(enum ih_category category)
743{
Simon Glassae3de0d2016-10-31 10:21:09 -0600744 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600745 static char msg[30];
746
Simon Glassae3de0d2016-10-31 10:21:09 -0600747 strcpy(msg, unknown_str);
748 strncat(msg, table_info[category].desc,
749 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600750
751 return msg;
752}
753
754/**
755 * get_cat_table_entry_name - translate entry id to long name
756 * @category: category to look up (enum ih_category)
757 * @id: entry id to be translated
758 *
759 * This will scan the translation table trying to find the entry that matches
760 * the given id.
761 *
762 * @retur long entry name if translation succeeds; error string on failure
763 */
764const char *genimg_get_cat_name(enum ih_category category, uint id)
765{
766 const table_entry_t *entry;
767
768 entry = get_table_entry(table_info[category].table, id);
769 if (!entry)
770 return unknown_msg(category);
771#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
772 return entry->lname;
773#else
774 return entry->lname + gd->reloc_off;
775#endif
776}
777
778/**
779 * get_cat_table_entry_short_name - translate entry id to short name
780 * @category: category to look up (enum ih_category)
781 * @id: entry id to be translated
782 *
783 * This will scan the translation table trying to find the entry that matches
784 * the given id.
785 *
786 * @retur short entry name if translation succeeds; error string on failure
787 */
788const char *genimg_get_cat_short_name(enum ih_category category, uint id)
789{
790 const table_entry_t *entry;
791
792 entry = get_table_entry(table_info[category].table, id);
793 if (!entry)
794 return unknown_msg(category);
795#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
796 return entry->sname;
797#else
798 return entry->sname + gd->reloc_off;
799#endif
800}
801
802int genimg_get_cat_count(enum ih_category category)
803{
804 return table_info[category].count;
805}
806
807const char *genimg_get_cat_desc(enum ih_category category)
808{
809 return table_info[category].desc;
810}
811
Marian Balakowicz570abb02008-02-29 15:59:59 +0100812/**
813 * get_table_entry_name - translate entry id to long name
814 * @table: pointer to a translation table for entries of a specific type
815 * @msg: message to be returned when translation fails
816 * @id: entry id to be translated
817 *
818 * get_table_entry_name() will go over translation table trying to find
819 * entry that matches given id. If matching entry is found, its long
820 * name is returned to the caller.
821 *
822 * returns:
823 * long entry name if translation succeeds
824 * msg otherwise
825 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400826char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100827{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600828 table = get_table_entry(table, id);
829 if (!table)
830 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200831#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600832 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500833#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600834 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500835#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100836}
837
Stephen Warren712fbcf2011-10-18 11:11:49 +0000838const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100839{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000840 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100841}
842
Stephen Warren712fbcf2011-10-18 11:11:49 +0000843const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100844{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000845 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
846 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100847}
848
Stephen Warren712fbcf2011-10-18 11:11:49 +0000849const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100850{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000851 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100852}
853
Simon Glasscef2e512016-02-22 22:55:50 -0700854static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600855{
Simon Glasscef2e512016-02-22 22:55:50 -0700856 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600857 if (!table)
858 return "unknown";
859#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
860 return table->sname;
861#else
862 return table->sname + gd->reloc_off;
863#endif
864}
865
Simon Glasscef2e512016-02-22 22:55:50 -0700866const char *genimg_get_type_short_name(uint8_t type)
867{
868 return genimg_get_short_name(uimage_type, type);
869}
870
Stephen Warren712fbcf2011-10-18 11:11:49 +0000871const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100872{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000873 return (get_table_entry_name(uimage_comp, "Unknown Compression",
874 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100875}
876
Simon Glasscef2e512016-02-22 22:55:50 -0700877const char *genimg_get_comp_short_name(uint8_t comp)
878{
879 return genimg_get_short_name(uimage_comp, comp);
880}
881
882const char *genimg_get_os_short_name(uint8_t os)
883{
884 return genimg_get_short_name(uimage_os, os);
885}
886
887const char *genimg_get_arch_short_name(uint8_t arch)
888{
889 return genimg_get_short_name(uimage_arch, arch);
890}
891
Marian Balakowicz570abb02008-02-29 15:59:59 +0100892/**
893 * get_table_entry_id - translate short entry name to id
894 * @table: pointer to a translation table for entries of a specific type
895 * @table_name: to be used in case of error
896 * @name: entry short name to be translated
897 *
898 * get_table_entry_id() will go over translation table trying to find
899 * entry that matches given short name. If matching entry is found,
900 * its id returned to the caller.
901 *
902 * returns:
903 * entry id if translation succeeds
904 * -1 otherwise
905 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400906int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100907 const char *table_name, const char *name)
908{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400909 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100910
911 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200912#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600913 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200914#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600915 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500916#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100917 return (t->id);
918 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000919 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600920
921 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100922}
923
Stephen Warren712fbcf2011-10-18 11:11:49 +0000924int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100925{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000926 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100927}
928
Stephen Warren712fbcf2011-10-18 11:11:49 +0000929int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100930{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000931 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100932}
933
Stephen Warren712fbcf2011-10-18 11:11:49 +0000934int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100935{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000936 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100937}
938
Stephen Warren712fbcf2011-10-18 11:11:49 +0000939int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100940{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000941 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100942}
943
944#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100945/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700946 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
947 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700948 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700949 * @fit_uname_config: double pointer to a char, will hold pointer to a
950 * configuration unit name
951 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
952 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700953 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700954 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700955 * which is normally the first argv of bootm/bootz
956 *
957 * returns:
958 * kernel start address
959 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700960ulong genimg_get_kernel_addr_fit(char * const img_addr,
961 const char **fit_uname_config,
962 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700963{
Bryan Wu0f641402014-07-31 17:39:58 -0700964 ulong kernel_addr;
965
966 /* find out kernel image address */
967 if (!img_addr) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700968 kernel_addr = image_load_addr;
Bryan Wu0f641402014-07-31 17:39:58 -0700969 debug("* kernel: default image load address = 0x%08lx\n",
Simon Glassbb872dd2019-12-28 10:45:02 -0700970 image_load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700971#if CONFIG_IS_ENABLED(FIT)
Simon Glassbb872dd2019-12-28 10:45:02 -0700972 } else if (fit_parse_conf(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700973 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700974 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700975 *fit_uname_config, kernel_addr);
Simon Glassbb872dd2019-12-28 10:45:02 -0700976 } else if (fit_parse_subimage(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700977 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700978 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700979 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700980#endif
981 } else {
982 kernel_addr = simple_strtoul(img_addr, NULL, 16);
983 debug("* kernel: cmdline image address = 0x%08lx\n",
984 kernel_addr);
985 }
986
987 return kernel_addr;
988}
989
990/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700991 * genimg_get_kernel_addr() is the simple version of
992 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
993 */
994ulong genimg_get_kernel_addr(char * const img_addr)
995{
996 const char *fit_uname_config = NULL;
997 const char *fit_uname_kernel = NULL;
998
999 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
1000 &fit_uname_kernel);
1001}
1002
1003/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001004 * genimg_get_format - get image format type
1005 * @img_addr: image start address
1006 *
1007 * genimg_get_format() checks whether provided address points to a valid
1008 * legacy or FIT image.
1009 *
1010 * New uImage format and FDT blob are based on a libfdt. FDT blob
1011 * may be passed directly or embedded in a FIT image. In both situations
1012 * genimg_get_format() must be able to dectect libfdt header.
1013 *
1014 * returns:
1015 * image format type or IMAGE_FORMAT_INVALID if no image is present
1016 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001017int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001018{
Tom Rinic76c93a2019-05-23 07:14:07 -04001019#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001020 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001021
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001022 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001023 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +02001024 return IMAGE_FORMAT_LEGACY;
1025#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -07001026#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +02001027 if (fdt_check_header(img_addr) == 0)
1028 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001029#endif
1030#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001031 if (android_image_check_header(img_addr) == 0)
1032 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001033#endif
1034
Heiko Schocher21d29f72014-05-28 11:33:33 +02001035 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001036}
1037
1038/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001039 * fit_has_config - check if there is a valid FIT configuration
1040 * @images: pointer to the bootm command headers structure
1041 *
1042 * fit_has_config() checks if there is a FIT configuration in use
1043 * (if FTI support is present).
1044 *
1045 * returns:
1046 * 0, no FIT support or no configuration found
1047 * 1, configuration found
1048 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001049int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001050{
Simon Glass73223f02016-02-22 22:55:43 -07001051#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001052 if (images->fit_uname_cfg)
1053 return 1;
1054#endif
1055 return 0;
1056}
1057
1058/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001059 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001060 * @argc: command argument count
1061 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001062 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001063 * @arch: expected ramdisk architecture
1064 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1065 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1066 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001067 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001068 * Curently supported are the following ramdisk sources:
1069 * - multicomponent kernel/ramdisk image,
1070 * - commandline provided address of decicated ramdisk image.
1071 *
1072 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001073 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001074 * rd_start and rd_end are set to ramdisk start/end addresses if
1075 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001076 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001077 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001078 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001079 */
Simon Glass09140112020-05-10 11:40:03 -06001080int boot_get_ramdisk(int argc, char *const argv[], bootm_headers_t *images,
1081 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001082{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001083 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001084 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001085#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001086 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001087#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001088 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001089#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001090 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001091#endif
Simon Glass73223f02016-02-22 22:55:43 -07001092#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001093 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001094 const char *fit_uname_ramdisk = NULL;
1095 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001096 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001097#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001098 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001099
Marian Balakowiczc8779642008-03-12 10:12:37 +01001100 *rd_start = 0;
1101 *rd_end = 0;
1102
Tom Rini1fec3c52015-08-27 15:42:41 -04001103#ifdef CONFIG_ANDROID_BOOT_IMAGE
1104 /*
1105 * Look for an Android boot image.
1106 */
1107 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001108 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001109 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001110#endif
1111
Simon Glass983c72f2013-06-11 11:14:46 -07001112 if (argc >= 2)
1113 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001114
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001115 /*
1116 * Look for a '-' which indicates to ignore the
1117 * ramdisk argument
1118 */
Simon Glass983c72f2013-06-11 11:14:46 -07001119 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001120 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001121 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001122 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001123#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001124 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001125 /*
1126 * If the init ramdisk comes from the FIT image and
1127 * the FIT image address is omitted in the command
1128 * line argument, try to use os FIT image address or
1129 * default load address.
1130 */
1131 if (images->fit_uname_os)
1132 default_addr = (ulong)images->fit_hdr_os;
1133 else
Simon Glassbb872dd2019-12-28 10:45:02 -07001134 default_addr = image_load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001135
Simon Glass983c72f2013-06-11 11:14:46 -07001136 if (fit_parse_conf(select, default_addr,
1137 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001138 debug("* ramdisk: config '%s' from image at "
1139 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001140 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001141 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001142 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001143 debug("* ramdisk: subimage '%s' from image at "
1144 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001145 fit_uname_ramdisk, rd_addr);
1146 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001147#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001148 {
Simon Glass983c72f2013-06-11 11:14:46 -07001149 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001150 debug("* ramdisk: cmdline image address = "
1151 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001152 rd_addr);
1153 }
Simon Glass73223f02016-02-22 22:55:43 -07001154#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001155 } else {
1156 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001157 * command argument. If the property is not defined,
1158 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001159 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001160 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001161 rd_noffset = fit_get_node_from_config(images,
1162 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001163 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001164 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001165 else if (rd_noffset < 0)
1166 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001167 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001168#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001169
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001170 /*
1171 * Check if there is an initrd image at the
1172 * address provided in the second bootm argument
1173 * check image type, for FIT images get FIT node.
1174 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001175 buf = map_sysmem(rd_addr, 0);
1176 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001177#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001178 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001179 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001180 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001181
Simon Glass770605e2012-02-13 13:51:18 +00001182 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001183 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001184 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001185
Marian Balakowiczc8779642008-03-12 10:12:37 +01001186 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001187 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001188
Stephen Warren712fbcf2011-10-18 11:11:49 +00001189 rd_data = image_get_data(rd_hdr);
1190 rd_len = image_get_data_size(rd_hdr);
1191 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001192 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001193#endif
Simon Glass73223f02016-02-22 22:55:43 -07001194#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001195 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001196 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001197 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001198 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001199 IH_TYPE_RAMDISK,
1200 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001201 FIT_LOAD_OPTIONAL_NON_ZERO,
1202 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001203 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001204 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001205
Simon Glassa51ec632013-05-16 13:53:22 +00001206 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001207 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001208 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001209 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001210#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001211#ifdef CONFIG_ANDROID_BOOT_IMAGE
1212 case IMAGE_FORMAT_ANDROID:
1213 android_image_get_ramdisk((void *)images->os.start,
1214 &rd_data, &rd_len);
1215 break;
1216#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001217 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001218#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001219 end = NULL;
1220 if (select)
1221 end = strchr(select, ':');
1222 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001223 rd_len = simple_strtoul(++end, NULL, 16);
1224 rd_data = rd_addr;
1225 } else
1226#endif
1227 {
1228 puts("Wrong Ramdisk Image Format\n");
1229 rd_data = rd_len = rd_load = 0;
1230 return 1;
1231 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001232 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001233 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001234 image_check_type(&images->legacy_hdr_os_copy,
1235 IH_TYPE_MULTI)) {
1236
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001237 /*
1238 * Now check if we have a legacy mult-component image,
1239 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001240 */
Simon Glass770605e2012-02-13 13:51:18 +00001241 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001242 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001243 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001244 (ulong)images->legacy_hdr_os);
1245
Stephen Warren712fbcf2011-10-18 11:11:49 +00001246 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001247 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001248 /*
1249 * no initrd image
1250 */
Simon Glass770605e2012-02-13 13:51:18 +00001251 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001252 rd_len = rd_data = 0;
1253 }
1254
1255 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001256 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001257 } else {
1258 *rd_start = rd_data;
1259 *rd_end = rd_data + rd_len;
1260 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001261 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001262 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001263
1264 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001265}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001266
John Rigbyfca43cc2010-10-13 13:57:35 -06001267#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001268/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001269 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001270 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001271 * @rd_data: ramdisk data start address
1272 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001273 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1274 * start address (after possible relocation)
1275 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1276 * end address (after possible relocation)
1277 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001278 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001279 * variable and if requested ramdisk data is moved to a specified location.
1280 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001281 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1282 * start/end addresses if ramdisk image start and len were provided,
1283 * otherwise set initrd_start and initrd_end set to zeros.
1284 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001285 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001286 * 0 - success
1287 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001288 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001289int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001290 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001291{
1292 char *s;
1293 ulong initrd_high;
1294 int initrd_copy_to_ram = 1;
1295
Simon Glass00caae62017-08-03 12:22:12 -06001296 s = env_get("initrd_high");
1297 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001298 /* a value of "no" or a similar string will act like 0,
1299 * turning the "load high" feature off. This is intentional.
1300 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001301 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001302 if (initrd_high == ~0)
1303 initrd_copy_to_ram = 0;
1304 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001305 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001306 }
1307
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001308
Stephen Warren712fbcf2011-10-18 11:11:49 +00001309 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001310 initrd_high, initrd_copy_to_ram);
1311
1312 if (rd_data) {
1313 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001314 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001315 *initrd_start = rd_data;
1316 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001317 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001318 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001319 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001320 *initrd_start = (ulong)lmb_alloc_base(lmb,
1321 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001322 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001323 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1324 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001325
Kumar Galae822d7f2008-02-27 21:51:49 -06001326 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001327 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001328 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001329 }
Simon Glass770605e2012-02-13 13:51:18 +00001330 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001331
1332 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001333 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001334 *initrd_start, *initrd_end);
1335
Stephen Warren712fbcf2011-10-18 11:11:49 +00001336 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001337 (void *)rd_data, rd_len, CHUNKSZ);
1338
Kumar Gala3b200112011-12-07 04:42:58 +00001339#ifdef CONFIG_MP
1340 /*
1341 * Ensure the image is flushed to memory to handle
1342 * AMP boot scenarios in which we might not be
1343 * HW cache coherent
1344 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001345 flush_cache((unsigned long)*initrd_start,
1346 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001347#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001348 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001349 }
1350 } else {
1351 *initrd_start = 0;
1352 *initrd_end = 0;
1353 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001354 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001355 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001356
Kumar Galae822d7f2008-02-27 21:51:49 -06001357 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001358
Kumar Galae822d7f2008-02-27 21:51:49 -06001359error:
1360 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001361}
John Rigbyfca43cc2010-10-13 13:57:35 -06001362#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001363
Simon Glass90268b82014-10-19 21:11:24 -06001364int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1365 ulong *setup_start, ulong *setup_len)
1366{
Simon Glass73223f02016-02-22 22:55:43 -07001367#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001368 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1369#else
1370 return -ENOENT;
1371#endif
1372}
1373
Simon Glass73223f02016-02-22 22:55:43 -07001374#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001375#if defined(CONFIG_FPGA)
Simon Glass09140112020-05-10 11:40:03 -06001376int boot_get_fpga(int argc, char *const argv[], bootm_headers_t *images,
Michal Simek62afc602016-05-17 14:03:50 +02001377 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1378{
1379 ulong tmp_img_addr, img_data, img_len;
1380 void *buf;
1381 int conf_noffset;
1382 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001383 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001384 int err;
1385 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001386
1387 /* Check to see if the images struct has a FIT configuration */
1388 if (!genimg_has_config(images)) {
1389 debug("## FIT configuration was not specified\n");
1390 return 0;
1391 }
1392
1393 /*
1394 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001395 */
1396 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001397 buf = map_sysmem(tmp_img_addr, 0);
1398 /*
1399 * Check image type. For FIT images get FIT node
1400 * and attempt to locate a generic binary.
1401 */
1402 switch (genimg_get_format(buf)) {
1403 case IMAGE_FORMAT_FIT:
1404 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1405
Simon Glassb02e4042016-10-02 17:59:28 -06001406 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1407 NULL);
1408 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001409 debug("## FPGA image is not specified\n");
1410 return 0;
1411 }
1412 fit_img_result = fit_image_load(images,
1413 tmp_img_addr,
1414 (const char **)&uname,
1415 &(images->fit_uname_cfg),
1416 arch,
1417 IH_TYPE_FPGA,
1418 BOOTSTAGE_ID_FPGA_INIT,
1419 FIT_LOAD_OPTIONAL_NON_ZERO,
1420 &img_data, &img_len);
1421
1422 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1423 uname, img_data, img_len);
1424
1425 if (fit_img_result < 0) {
1426 /* Something went wrong! */
1427 return fit_img_result;
1428 }
1429
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001430 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001431 name = "full";
1432 err = fpga_loadbitstream(devnum, (char *)img_data,
1433 img_len, BIT_FULL);
1434 if (err)
1435 err = fpga_load(devnum, (const void *)img_data,
1436 img_len, BIT_FULL);
1437 } else {
1438 name = "partial";
1439 err = fpga_loadbitstream(devnum, (char *)img_data,
1440 img_len, BIT_PARTIAL);
1441 if (err)
1442 err = fpga_load(devnum, (const void *)img_data,
1443 img_len, BIT_PARTIAL);
1444 }
1445
Michal Simek62afc602016-05-17 14:03:50 +02001446 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001447 return err;
1448
1449 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001450 break;
1451 default:
1452 printf("The given image format is not supported (corrupt?)\n");
1453 return 1;
1454 }
1455
1456 return 0;
1457}
1458#endif
1459
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001460static void fit_loadable_process(uint8_t img_type,
1461 ulong img_data,
1462 ulong img_len)
1463{
1464 int i;
1465 const unsigned int count =
1466 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1467 struct fit_loadable_tbl *fit_loadable_handler =
1468 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1469 /* For each loadable handler */
1470 for (i = 0; i < count; i++, fit_loadable_handler++)
1471 /* matching this type */
1472 if (fit_loadable_handler->type == img_type)
1473 /* call that handler with this image data */
1474 fit_loadable_handler->handler(img_data, img_len);
1475}
1476
Simon Glass09140112020-05-10 11:40:03 -06001477int boot_get_loadable(int argc, char *const argv[], bootm_headers_t *images,
1478 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
Karl Apsite84a07db2015-05-21 09:52:48 -04001479{
1480 /*
1481 * These variables are used to hold the current image location
1482 * in system memory.
1483 */
1484 ulong tmp_img_addr;
1485 /*
1486 * These two variables are requirements for fit_image_load, but
1487 * their values are not used
1488 */
1489 ulong img_data, img_len;
1490 void *buf;
1491 int loadables_index;
1492 int conf_noffset;
1493 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001494 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001495 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001496
1497 /* Check to see if the images struct has a FIT configuration */
1498 if (!genimg_has_config(images)) {
1499 debug("## FIT configuration was not specified\n");
1500 return 0;
1501 }
1502
1503 /*
1504 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001505 */
1506 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001507 buf = map_sysmem(tmp_img_addr, 0);
1508 /*
1509 * Check image type. For FIT images get FIT node
1510 * and attempt to locate a generic binary.
1511 */
1512 switch (genimg_get_format(buf)) {
1513 case IMAGE_FORMAT_FIT:
1514 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1515
1516 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001517 uname = fdt_stringlist_get(buf, conf_noffset,
1518 FIT_LOADABLE_PROP, loadables_index,
1519 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001520 loadables_index++)
1521 {
1522 fit_img_result = fit_image_load(images,
1523 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001524 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001525 &(images->fit_uname_cfg), arch,
1526 IH_TYPE_LOADABLE,
1527 BOOTSTAGE_ID_FIT_LOADABLE_START,
1528 FIT_LOAD_OPTIONAL_NON_ZERO,
1529 &img_data, &img_len);
1530 if (fit_img_result < 0) {
1531 /* Something went wrong! */
1532 return fit_img_result;
1533 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001534
1535 fit_img_result = fit_image_get_node(buf, uname);
1536 if (fit_img_result < 0) {
1537 /* Something went wrong! */
1538 return fit_img_result;
1539 }
1540 fit_img_result = fit_image_get_type(buf,
1541 fit_img_result,
1542 &img_type);
1543 if (fit_img_result < 0) {
1544 /* Something went wrong! */
1545 return fit_img_result;
1546 }
1547
1548 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001549 }
1550 break;
1551 default:
1552 printf("The given image format is not supported (corrupt?)\n");
1553 return 1;
1554 }
1555
1556 return 0;
1557}
1558#endif
1559
John Rigbyfca43cc2010-10-13 13:57:35 -06001560#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001561/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001562 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001563 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001564 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1565 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1566 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001567 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301568 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001569 * variable is present its contents is copied to allocated kernel
1570 * command line.
1571 *
1572 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001573 * 0 - success
1574 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001575 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001576int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001577{
1578 char *cmdline;
1579 char *s;
1580
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001581 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001582 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001583
1584 if (cmdline == NULL)
1585 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001586
Simon Glass00caae62017-08-03 12:22:12 -06001587 s = env_get("bootargs");
1588 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001589 s = "";
1590
1591 strcpy(cmdline, s);
1592
1593 *cmd_start = (ulong) & cmdline[0];
1594 *cmd_end = *cmd_start + strlen(cmdline);
1595
Stephen Warren712fbcf2011-10-18 11:11:49 +00001596 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001597
Kumar Galae822d7f2008-02-27 21:51:49 -06001598 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001599}
John Rigbyfca43cc2010-10-13 13:57:35 -06001600#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001601
John Rigbyfca43cc2010-10-13 13:57:35 -06001602#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001603/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001604 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001605 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001606 * @kbd: double pointer to board info data
1607 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001608 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001609 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001610 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001611 *
1612 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001613 * 0 - success
1614 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001615 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001616int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001617{
Becky Bruce391fd932008-06-09 20:37:18 -05001618 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001619 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001620 if (*kbd == NULL)
1621 return -1;
1622
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001623 **kbd = *(gd->bd);
1624
Stephen Warren712fbcf2011-10-18 11:11:49 +00001625 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001626
1627#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1628 do_bdinfo(NULL, 0, 0, NULL);
1629#endif
1630
Kumar Galae822d7f2008-02-27 21:51:49 -06001631 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001632}
John Rigbyfca43cc2010-10-13 13:57:35 -06001633#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001634
1635#ifdef CONFIG_LMB
1636int image_setup_linux(bootm_headers_t *images)
1637{
1638 ulong of_size = images->ft_len;
1639 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001640 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001641 int ret;
1642
1643 if (IMAGE_ENABLE_OF_LIBFDT)
1644 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1645
1646 if (IMAGE_BOOT_GET_CMDLINE) {
1647 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1648 &images->cmdline_end);
1649 if (ret) {
1650 puts("ERROR with allocation of cmdline\n");
1651 return ret;
1652 }
1653 }
Simon Glass13d06982013-05-08 08:06:01 +00001654
1655 if (IMAGE_ENABLE_OF_LIBFDT) {
1656 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1657 if (ret)
1658 return ret;
1659 }
1660
1661 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1662 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1663 if (ret)
1664 return ret;
1665 }
1666
1667 return 0;
1668}
1669#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001670#endif /* !USE_HOSTCC */