blob: 14e27fbe3ca8f8cb98add21cddcdf3d29b54407e [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 Glass1eb69ae2019-11-14 12:57:39 -070011#include <cpu_func.h>
Simon Glass7b51b572019-08-01 09:46:52 -060012#include <env.h>
Simon Glass336d4612020-02-03 07:36:16 -070013#include <malloc.h>
Simon Glass90526e92020-05-10 11:39:56 -060014#include <asm/cache.h>
Simon Glass3db71102019-11-14 12:57:16 -070015#include <u-boot/crc.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010016#include <watchdog.h>
17
18#ifdef CONFIG_SHOW_BOOT_PROGRESS
19#include <status_led.h>
20#endif
21
Marian Balakowicz2242f532008-02-21 17:27:41 +010022#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010023
Simon Glass0c670fc2019-08-01 09:46:36 -060024#include <gzip.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010025#include <image.h>
Simon Glass6c03f9e2019-11-14 12:57:25 -070026#include <lz4.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050027#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010028
Simon Glassaa34fbc2016-02-22 22:55:45 -070029#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090030#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010031#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020032#include <fpga.h>
33#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010034#endif
35
Andy Fleming20a14a42008-04-02 16:19:07 -050036#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020037#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090038#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000039#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010040
Julius Werner20908542019-07-24 19:37:54 -070041#include <bzlib.h>
42#include <linux/lzo.h>
43#include <lzma/LzmaTypes.h>
44#include <lzma/LzmaDec.h>
45#include <lzma/LzmaTools.h>
46
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010047#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020048extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010049#endif
50
51DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010052
Tom Rinic76c93a2019-05-23 07:14:07 -040053#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000054static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010055 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020056#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010057#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010058#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050059#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010060#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010061#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020062
63#ifndef __maybe_unused
64# define __maybe_unused /* unimplemented */
65#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010066#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010067
Simon Glass0ccff502013-02-24 17:33:25 +000068#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000069#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000070
Simon Glass13d06982013-05-08 08:06:01 +000071#ifndef CONFIG_SYS_BARGSIZE
72#define CONFIG_SYS_BARGSIZE 512
73#endif
74
Mike Frysinger7edb1862010-10-20 07:17:39 -040075static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060076 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010077 { IH_ARCH_ALPHA, "alpha", "Alpha", },
78 { IH_ARCH_ARM, "arm", "ARM", },
79 { IH_ARCH_I386, "x86", "Intel x86", },
80 { IH_ARCH_IA64, "ia64", "IA64", },
81 { IH_ARCH_M68K, "m68k", "M68K", },
82 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
83 { IH_ARCH_MIPS, "mips", "MIPS", },
84 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010085 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070086 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010087 { IH_ARCH_PPC, "ppc", "PowerPC", },
88 { IH_ARCH_S390, "s390", "IBM S390", },
89 { IH_ARCH_SH, "sh", "SuperH", },
90 { IH_ARCH_SPARC, "sparc", "SPARC", },
91 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
92 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
93 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000094 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000095 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000096 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080097 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040098 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060099 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300100 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +0800101 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100102 { -1, "", "", },
103};
104
Mike Frysinger7edb1862010-10-20 07:17:39 -0400105static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600106 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200107 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100108 { IH_OS_LINUX, "linux", "Linux", },
109#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
110 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
111#endif
112 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200113 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000114 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000116 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100117 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800118 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100119#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
120 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100121#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500122#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
123 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
124#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100125#ifdef USE_HOSTCC
126 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
127 { IH_OS_DELL, "dell", "Dell", },
128 { IH_OS_ESIX, "esix", "Esix", },
129 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
130 { IH_OS_IRIX, "irix", "Irix", },
131 { IH_OS_NCR, "ncr", "NCR", },
132 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
133 { IH_OS_PSOS, "psos", "pSOS", },
134 { IH_OS_SCO, "sco", "SCO", },
135 { IH_OS_SOLARIS, "solaris", "Solaris", },
136 { IH_OS_SVR4, "svr4", "SVR4", },
137#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100138#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
139 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
140#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200141 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200142 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100143
Marian Balakowicz570abb02008-02-29 15:59:59 +0100144 { -1, "", "", },
145};
146
Mike Frysinger7edb1862010-10-20 07:17:39 -0400147static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000148 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
150 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400151 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400152 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100153 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e82011-11-10 13:17:53 -0700154 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000155 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
156 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000157 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000158 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600159 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100160 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000161 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000162 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100163 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
164 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200165 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
166 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100167 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000168 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200169 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200170 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600171 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200172 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600173 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600174 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600175 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200176 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000177 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200178 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200179 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200180 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600181 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100182 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500183 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100184 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800185 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200186 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100187 { -1, "", "", },
188};
189
Mike Frysinger7edb1862010-10-20 07:17:39 -0400190static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100191 { IH_COMP_NONE, "none", "uncompressed", },
192 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
193 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200194 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100195 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700196 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100197 { -1, "", "", },
198};
199
Simon Glass56d7ab72016-06-30 10:52:14 -0600200struct table_info {
201 const char *desc;
202 int count;
203 const table_entry_t *table;
204};
205
Atish Patra155d6a32020-03-05 16:24:22 -0800206static const struct comp_magic_map image_comp[] = {
207 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
208 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
209 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
210 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
211 { IH_COMP_NONE, "none", {}, },
212};
213
Simon Glass56d7ab72016-06-30 10:52:14 -0600214static const struct table_info table_info[IH_COUNT] = {
215 { "architecture", IH_ARCH_COUNT, uimage_arch },
216 { "compression", IH_COMP_COUNT, uimage_comp },
217 { "operating system", IH_OS_COUNT, uimage_os },
218 { "image type", IH_TYPE_COUNT, uimage_type },
219};
220
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100221/*****************************************************************************/
222/* Legacy format routines */
223/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000224int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100225{
226 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000227 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100228 image_header_t header;
229
230 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000231 memmove(&header, (char *)hdr, image_get_header_size());
232 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100233
Stephen Warren712fbcf2011-10-18 11:11:49 +0000234 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100235
Stephen Warren712fbcf2011-10-18 11:11:49 +0000236 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100237}
238
Stephen Warren712fbcf2011-10-18 11:11:49 +0000239int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100240{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000241 ulong data = image_get_data(hdr);
242 ulong len = image_get_data_size(hdr);
243 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100244
Stephen Warren712fbcf2011-10-18 11:11:49 +0000245 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100246}
247
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100248/**
249 * image_multi_count - get component (sub-image) count
250 * @hdr: pointer to the header of the multi component image
251 *
252 * image_multi_count() returns number of components in a multi
253 * component image.
254 *
255 * Note: no checking of the image type is done, caller must pass
256 * a valid multi component image.
257 *
258 * returns:
259 * number of components
260 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000261ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100262{
263 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100264 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100265
266 /* get start of the image payload, which in case of multi
267 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100269
270 /* count non empty slots */
271 for (i = 0; size[i]; ++i)
272 count++;
273
274 return count;
275}
276
277/**
278 * image_multi_getimg - get component data address and size
279 * @hdr: pointer to the header of the multi component image
280 * @idx: index of the requested component
281 * @data: pointer to a ulong variable, will hold component data address
282 * @len: pointer to a ulong variable, will hold component size
283 *
284 * image_multi_getimg() returns size and data address for the requested
285 * component in a multi component image.
286 *
287 * Note: no checking of the image type is done, caller must pass
288 * a valid multi component image.
289 *
290 * returns:
291 * data address and size of the component, if idx is valid
292 * 0 in data and len, if idx is out of range
293 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000294void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100295 ulong *data, ulong *len)
296{
297 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100298 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700299 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100300
301 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000302 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100303
304 /* get start of the image payload, which in case of multi
305 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000306 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100307
308 /* get address of the proper component data start, which means
309 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100311
312 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100314 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100315
316 /* go over all indices preceding requested component idx */
317 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700318 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000319 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100320 }
321
322 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700323 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100324 } else {
325 *len = 0;
326 *data = 0;
327 }
328}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100329
Stephen Warren712fbcf2011-10-18 11:11:49 +0000330static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100331{
Heiko Schocher80402f32015-06-29 09:10:46 +0200332 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100333
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334 os = genimg_get_os_name(image_get_os(hdr));
335 arch = genimg_get_arch_name(image_get_arch(hdr));
336 type = genimg_get_type_name(image_get_type(hdr));
337 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100338
Stephen Warren712fbcf2011-10-18 11:11:49 +0000339 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100340}
341
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100342/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200343 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200344 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100345 * @p: pointer to prefix string
346 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200347 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100348 * The routine prints out all header fields followed by the size/offset data
349 * for MULTI/SCRIPT images.
350 *
351 * returns:
352 * no returned results
353 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000354void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100355{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200356 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200357 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200358
Simon Glass1fe7d932013-05-08 08:05:58 +0000359 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000360 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000361 if (IMAGE_ENABLE_TIMESTAMP) {
362 printf("%sCreated: ", p);
363 genimg_print_time((time_t)image_get_time(hdr));
364 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365 printf("%sImage Type: ", p);
366 image_print_type(hdr);
367 printf("%sData Size: ", p);
368 genimg_print_size(image_get_data_size(hdr));
369 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
370 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100371
Stephen Warren712fbcf2011-10-18 11:11:49 +0000372 if (image_check_type(hdr, IH_TYPE_MULTI) ||
373 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100374 int i;
375 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000376 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100377
Stephen Warren712fbcf2011-10-18 11:11:49 +0000378 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100379 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100381
Stephen Warren712fbcf2011-10-18 11:11:49 +0000382 printf("%s Image %d: ", p, i);
383 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100384
Stephen Warren712fbcf2011-10-18 11:11:49 +0000385 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100386 /*
387 * the user may need to know offsets
388 * if planning to do something with
389 * multiple files
390 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000391 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100392 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100393 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100394 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
395 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000396 image_get_load(hdr) - image_get_header_size(),
397 (int)(image_get_size(hdr) + image_get_header_size()
398 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100399 }
400}
401
Julius Werner20908542019-07-24 19:37:54 -0700402/**
403 * print_decomp_msg() - Print a suitable decompression/loading message
404 *
405 * @type: OS type (IH_OS_...)
406 * @comp_type: Compression type being used (IH_COMP_...)
407 * @is_xip: true if the load address matches the image start
408 */
409static void print_decomp_msg(int comp_type, int type, bool is_xip)
410{
411 const char *name = genimg_get_type_name(type);
412
413 if (comp_type == IH_COMP_NONE)
414 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
415 else
416 printf(" Uncompressing %s\n", name);
417}
418
Atish Patra155d6a32020-03-05 16:24:22 -0800419int image_decomp_type(const unsigned char *buf, ulong len)
420{
421 const struct comp_magic_map *cmagic = image_comp;
422
423 if (len < 2)
424 return -EINVAL;
425
426 for (; cmagic->comp_id > 0; cmagic++) {
427 if (!memcmp(buf, cmagic->magic, 2))
428 break;
429 }
430
431 return cmagic->comp_id;
432}
433
Julius Werner20908542019-07-24 19:37:54 -0700434int image_decomp(int comp, ulong load, ulong image_start, int type,
435 void *load_buf, void *image_buf, ulong image_len,
436 uint unc_len, ulong *load_end)
437{
438 int ret = 0;
439
440 *load_end = load;
441 print_decomp_msg(comp, type, load == image_start);
442
443 /*
444 * Load the image to the right place, decompressing if needed. After
445 * this, image_len will be set to the number of uncompressed bytes
446 * loaded, ret will be non-zero on error.
447 */
448 switch (comp) {
449 case IH_COMP_NONE:
450 if (load == image_start)
451 break;
452 if (image_len <= unc_len)
453 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
454 else
455 ret = -ENOSPC;
456 break;
457#ifdef CONFIG_GZIP
458 case IH_COMP_GZIP: {
459 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
460 break;
461 }
462#endif /* CONFIG_GZIP */
463#ifdef CONFIG_BZIP2
464 case IH_COMP_BZIP2: {
465 uint size = unc_len;
466
467 /*
468 * If we've got less than 4 MB of malloc() space,
469 * use slower decompression algorithm which requires
470 * at most 2300 KB of memory.
471 */
472 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
473 image_buf, image_len,
474 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
475 image_len = size;
476 break;
477 }
478#endif /* CONFIG_BZIP2 */
479#ifdef CONFIG_LZMA
480 case IH_COMP_LZMA: {
481 SizeT lzma_len = unc_len;
482
483 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
484 image_buf, image_len);
485 image_len = lzma_len;
486 break;
487 }
488#endif /* CONFIG_LZMA */
489#ifdef CONFIG_LZO
490 case IH_COMP_LZO: {
491 size_t size = unc_len;
492
493 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
494 image_len = size;
495 break;
496 }
497#endif /* CONFIG_LZO */
498#ifdef CONFIG_LZ4
499 case IH_COMP_LZ4: {
500 size_t size = unc_len;
501
502 ret = ulz4fn(image_buf, image_len, load_buf, &size);
503 image_len = size;
504 break;
505 }
506#endif /* CONFIG_LZ4 */
507 default:
508 printf("Unimplemented compression type %d\n", comp);
509 return -ENOSYS;
510 }
511
512 *load_end = load + image_len;
513
514 return ret;
515}
516
Marian Balakowicz570abb02008-02-29 15:59:59 +0100517
518#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400519#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100520/**
521 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100522 * @rd_addr: ramdisk image start address
523 * @arch: expected ramdisk architecture
524 * @verify: checksum verification flag
525 *
526 * image_get_ramdisk() returns a pointer to the verified ramdisk image
527 * header. Routine receives image start address and expected architecture
528 * flag. Verification done covers data and header integrity and os/type/arch
529 * fields checking.
530 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100531 * returns:
532 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600533 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100534 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000535static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100536 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100537{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200538 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100539
Stephen Warren712fbcf2011-10-18 11:11:49 +0000540 if (!image_check_magic(rd_hdr)) {
541 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000542 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600543 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100544 }
545
Stephen Warren712fbcf2011-10-18 11:11:49 +0000546 if (!image_check_hcrc(rd_hdr)) {
547 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000548 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600549 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100550 }
551
Simon Glass770605e2012-02-13 13:51:18 +0000552 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000553 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100554
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100555 if (verify) {
556 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000557 if (!image_check_dcrc(rd_hdr)) {
558 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000559 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600560 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100561 }
562 puts("OK\n");
563 }
564
Simon Glass770605e2012-02-13 13:51:18 +0000565 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100566
Stephen Warren712fbcf2011-10-18 11:11:49 +0000567 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
568 !image_check_arch(rd_hdr, arch) ||
569 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
570 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100571 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000572 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600573 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100574 }
575
576 return rd_hdr;
577}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200578#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100579#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100580
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100581/*****************************************************************************/
582/* Shared dual-format routines */
583/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100584#ifndef USE_HOSTCC
Simon Glassbb872dd2019-12-28 10:45:02 -0700585ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
586ulong image_save_addr; /* Default Save Address */
587ulong image_save_size; /* Default Save Size (in bytes) */
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600588
589static int on_loadaddr(const char *name, const char *value, enum env_op op,
590 int flags)
591{
592 switch (op) {
593 case env_op_create:
594 case env_op_overwrite:
Simon Glassbb872dd2019-12-28 10:45:02 -0700595 image_load_addr = simple_strtoul(value, NULL, 16);
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600596 break;
597 default:
598 break;
599 }
600
601 return 0;
602}
603U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
604
Simon Glass723806c2017-08-03 12:22:15 -0600605ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100606{
Simon Glass00caae62017-08-03 12:22:12 -0600607 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100608 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000609 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100610 return tmp;
611 }
612
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200613#if defined(CONFIG_SYS_SDRAM_BASE)
614 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200615#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100616 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100617#else
618 return 0;
619#endif
620}
621
Simon Glass723806c2017-08-03 12:22:15 -0600622phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100623{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900624 phys_size_t tmp, size;
625 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600626 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100627 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000628 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100629 return tmp;
630 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900631
Michal Simeka750ded2019-09-25 09:11:48 +0200632#if (defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)) && \
633 defined(CONFIG_NR_DRAM_BANKS)
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900634 start = gd->bd->bi_dram[0].start;
635 size = gd->bd->bi_dram[0].size;
636#else
637 start = gd->bd->bi_memstart;
638 size = gd->bd->bi_memsize;
639#endif
640
Simon Glass00caae62017-08-03 12:22:12 -0600641 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500642 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000643 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500644 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900645 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500646
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900647 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100648}
649
Simon Glass723806c2017-08-03 12:22:15 -0600650phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000651{
652 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600653 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000654 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000655 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000656 return tmp;
657 }
658
659#if defined(CONFIG_SYS_BOOTMAPSZ)
660 return CONFIG_SYS_BOOTMAPSZ;
661#else
Simon Glass723806c2017-08-03 12:22:15 -0600662 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000663#endif
664}
665
Stephen Warren712fbcf2011-10-18 11:11:49 +0000666void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100667{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400668 if (to == from)
669 return;
670
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100671#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800672 if (to > from) {
673 from += len;
674 to += len;
675 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100676 while (len > 0) {
677 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000678 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800679 if (to > from) {
680 to -= tail;
681 from -= tail;
682 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000683 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800684 if (to < from) {
685 to += tail;
686 from += tail;
687 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100688 len -= tail;
689 }
690#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000691 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100692#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
693}
Julius Werner20908542019-07-24 19:37:54 -0700694#else /* USE_HOSTCC */
695void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
696{
697 memmove(to, from, len);
698}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100699#endif /* !USE_HOSTCC */
700
Stephen Warren712fbcf2011-10-18 11:11:49 +0000701void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100702{
703#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000704 printf("%d Bytes = ", size);
705 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100706#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100707 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100708 size, (double)size / 1.024e3,
709 (double)size / 1.048576e6);
710#endif
711}
712
Simon Glass859e92b2013-05-07 06:11:51 +0000713#if IMAGE_ENABLE_TIMESTAMP
714void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100715{
716#ifndef USE_HOSTCC
717 struct rtc_time tm;
718
Simon Glass9f9276c2015-04-20 12:37:18 -0600719 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000720 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100721 tm.tm_year, tm.tm_mon, tm.tm_mday,
722 tm.tm_hour, tm.tm_min, tm.tm_sec);
723#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000724 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100725#endif
726}
Simon Glass859e92b2013-05-07 06:11:51 +0000727#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100728
Simon Glass5b9d44d2015-06-23 15:38:25 -0600729const table_entry_t *get_table_entry(const table_entry_t *table, int id)
730{
731 for (; table->id >= 0; ++table) {
732 if (table->id == id)
733 return table;
734 }
735 return NULL;
736}
737
Simon Glass14262202016-06-30 10:52:16 -0600738static const char *unknown_msg(enum ih_category category)
739{
Simon Glassae3de0d2016-10-31 10:21:09 -0600740 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600741 static char msg[30];
742
Simon Glassae3de0d2016-10-31 10:21:09 -0600743 strcpy(msg, unknown_str);
744 strncat(msg, table_info[category].desc,
745 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600746
747 return msg;
748}
749
750/**
751 * get_cat_table_entry_name - translate entry id to long name
752 * @category: category to look up (enum ih_category)
753 * @id: entry id to be translated
754 *
755 * This will scan the translation table trying to find the entry that matches
756 * the given id.
757 *
758 * @retur long entry name if translation succeeds; error string on failure
759 */
760const char *genimg_get_cat_name(enum ih_category category, uint id)
761{
762 const table_entry_t *entry;
763
764 entry = get_table_entry(table_info[category].table, id);
765 if (!entry)
766 return unknown_msg(category);
767#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
768 return entry->lname;
769#else
770 return entry->lname + gd->reloc_off;
771#endif
772}
773
774/**
775 * get_cat_table_entry_short_name - translate entry id to short name
776 * @category: category to look up (enum ih_category)
777 * @id: entry id to be translated
778 *
779 * This will scan the translation table trying to find the entry that matches
780 * the given id.
781 *
782 * @retur short entry name if translation succeeds; error string on failure
783 */
784const char *genimg_get_cat_short_name(enum ih_category category, uint id)
785{
786 const table_entry_t *entry;
787
788 entry = get_table_entry(table_info[category].table, id);
789 if (!entry)
790 return unknown_msg(category);
791#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
792 return entry->sname;
793#else
794 return entry->sname + gd->reloc_off;
795#endif
796}
797
798int genimg_get_cat_count(enum ih_category category)
799{
800 return table_info[category].count;
801}
802
803const char *genimg_get_cat_desc(enum ih_category category)
804{
805 return table_info[category].desc;
806}
807
Marian Balakowicz570abb02008-02-29 15:59:59 +0100808/**
809 * get_table_entry_name - translate entry id to long name
810 * @table: pointer to a translation table for entries of a specific type
811 * @msg: message to be returned when translation fails
812 * @id: entry id to be translated
813 *
814 * get_table_entry_name() will go over translation table trying to find
815 * entry that matches given id. If matching entry is found, its long
816 * name is returned to the caller.
817 *
818 * returns:
819 * long entry name if translation succeeds
820 * msg otherwise
821 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400822char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100823{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600824 table = get_table_entry(table, id);
825 if (!table)
826 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200827#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600828 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500829#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600830 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500831#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100832}
833
Stephen Warren712fbcf2011-10-18 11:11:49 +0000834const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100835{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000836 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100837}
838
Stephen Warren712fbcf2011-10-18 11:11:49 +0000839const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100840{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000841 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
842 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100843}
844
Stephen Warren712fbcf2011-10-18 11:11:49 +0000845const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100846{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000847 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100848}
849
Simon Glasscef2e512016-02-22 22:55:50 -0700850static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600851{
Simon Glasscef2e512016-02-22 22:55:50 -0700852 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600853 if (!table)
854 return "unknown";
855#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
856 return table->sname;
857#else
858 return table->sname + gd->reloc_off;
859#endif
860}
861
Simon Glasscef2e512016-02-22 22:55:50 -0700862const char *genimg_get_type_short_name(uint8_t type)
863{
864 return genimg_get_short_name(uimage_type, type);
865}
866
Stephen Warren712fbcf2011-10-18 11:11:49 +0000867const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100868{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000869 return (get_table_entry_name(uimage_comp, "Unknown Compression",
870 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100871}
872
Simon Glasscef2e512016-02-22 22:55:50 -0700873const char *genimg_get_comp_short_name(uint8_t comp)
874{
875 return genimg_get_short_name(uimage_comp, comp);
876}
877
878const char *genimg_get_os_short_name(uint8_t os)
879{
880 return genimg_get_short_name(uimage_os, os);
881}
882
883const char *genimg_get_arch_short_name(uint8_t arch)
884{
885 return genimg_get_short_name(uimage_arch, arch);
886}
887
Marian Balakowicz570abb02008-02-29 15:59:59 +0100888/**
889 * get_table_entry_id - translate short entry name to id
890 * @table: pointer to a translation table for entries of a specific type
891 * @table_name: to be used in case of error
892 * @name: entry short name to be translated
893 *
894 * get_table_entry_id() will go over translation table trying to find
895 * entry that matches given short name. If matching entry is found,
896 * its id returned to the caller.
897 *
898 * returns:
899 * entry id if translation succeeds
900 * -1 otherwise
901 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400902int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100903 const char *table_name, const char *name)
904{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400905 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100906
907 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200908#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600909 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200910#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600911 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500912#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100913 return (t->id);
914 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000915 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600916
917 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100918}
919
Stephen Warren712fbcf2011-10-18 11:11:49 +0000920int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100921{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000922 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100923}
924
Stephen Warren712fbcf2011-10-18 11:11:49 +0000925int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100926{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000927 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100928}
929
Stephen Warren712fbcf2011-10-18 11:11:49 +0000930int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100931{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000932 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100933}
934
Stephen Warren712fbcf2011-10-18 11:11:49 +0000935int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100936{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000937 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100938}
939
940#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100941/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700942 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
943 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700944 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700945 * @fit_uname_config: double pointer to a char, will hold pointer to a
946 * configuration unit name
947 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
948 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700949 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700950 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700951 * which is normally the first argv of bootm/bootz
952 *
953 * returns:
954 * kernel start address
955 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700956ulong genimg_get_kernel_addr_fit(char * const img_addr,
957 const char **fit_uname_config,
958 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700959{
Bryan Wu0f641402014-07-31 17:39:58 -0700960 ulong kernel_addr;
961
962 /* find out kernel image address */
963 if (!img_addr) {
Simon Glassbb872dd2019-12-28 10:45:02 -0700964 kernel_addr = image_load_addr;
Bryan Wu0f641402014-07-31 17:39:58 -0700965 debug("* kernel: default image load address = 0x%08lx\n",
Simon Glassbb872dd2019-12-28 10:45:02 -0700966 image_load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700967#if CONFIG_IS_ENABLED(FIT)
Simon Glassbb872dd2019-12-28 10:45:02 -0700968 } else if (fit_parse_conf(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700969 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700970 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700971 *fit_uname_config, kernel_addr);
Simon Glassbb872dd2019-12-28 10:45:02 -0700972 } else if (fit_parse_subimage(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700973 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700974 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700975 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700976#endif
977 } else {
978 kernel_addr = simple_strtoul(img_addr, NULL, 16);
979 debug("* kernel: cmdline image address = 0x%08lx\n",
980 kernel_addr);
981 }
982
983 return kernel_addr;
984}
985
986/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700987 * genimg_get_kernel_addr() is the simple version of
988 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
989 */
990ulong genimg_get_kernel_addr(char * const img_addr)
991{
992 const char *fit_uname_config = NULL;
993 const char *fit_uname_kernel = NULL;
994
995 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
996 &fit_uname_kernel);
997}
998
999/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001000 * genimg_get_format - get image format type
1001 * @img_addr: image start address
1002 *
1003 * genimg_get_format() checks whether provided address points to a valid
1004 * legacy or FIT image.
1005 *
1006 * New uImage format and FDT blob are based on a libfdt. FDT blob
1007 * may be passed directly or embedded in a FIT image. In both situations
1008 * genimg_get_format() must be able to dectect libfdt header.
1009 *
1010 * returns:
1011 * image format type or IMAGE_FORMAT_INVALID if no image is present
1012 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001013int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001014{
Tom Rinic76c93a2019-05-23 07:14:07 -04001015#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001016 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001017
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001018 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001019 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +02001020 return IMAGE_FORMAT_LEGACY;
1021#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -07001022#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +02001023 if (fdt_check_header(img_addr) == 0)
1024 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001025#endif
1026#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001027 if (android_image_check_header(img_addr) == 0)
1028 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001029#endif
1030
Heiko Schocher21d29f72014-05-28 11:33:33 +02001031 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001032}
1033
1034/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001035 * fit_has_config - check if there is a valid FIT configuration
1036 * @images: pointer to the bootm command headers structure
1037 *
1038 * fit_has_config() checks if there is a FIT configuration in use
1039 * (if FTI support is present).
1040 *
1041 * returns:
1042 * 0, no FIT support or no configuration found
1043 * 1, configuration found
1044 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001045int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001046{
Simon Glass73223f02016-02-22 22:55:43 -07001047#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001048 if (images->fit_uname_cfg)
1049 return 1;
1050#endif
1051 return 0;
1052}
1053
1054/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001055 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001056 * @argc: command argument count
1057 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001058 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001059 * @arch: expected ramdisk architecture
1060 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1061 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1062 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001063 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001064 * Curently supported are the following ramdisk sources:
1065 * - multicomponent kernel/ramdisk image,
1066 * - commandline provided address of decicated ramdisk image.
1067 *
1068 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001069 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001070 * rd_start and rd_end are set to ramdisk start/end addresses if
1071 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001072 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001073 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001074 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001075 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001076int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001077 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001078{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001079 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001080 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001081#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001082 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001083#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001084 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001085#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001086 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001087#endif
Simon Glass73223f02016-02-22 22:55:43 -07001088#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001089 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001090 const char *fit_uname_ramdisk = NULL;
1091 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001092 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001093#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001094 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001095
Marian Balakowiczc8779642008-03-12 10:12:37 +01001096 *rd_start = 0;
1097 *rd_end = 0;
1098
Tom Rini1fec3c52015-08-27 15:42:41 -04001099#ifdef CONFIG_ANDROID_BOOT_IMAGE
1100 /*
1101 * Look for an Android boot image.
1102 */
1103 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001104 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001105 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001106#endif
1107
Simon Glass983c72f2013-06-11 11:14:46 -07001108 if (argc >= 2)
1109 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001110
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001111 /*
1112 * Look for a '-' which indicates to ignore the
1113 * ramdisk argument
1114 */
Simon Glass983c72f2013-06-11 11:14:46 -07001115 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001116 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001117 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001118 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001119#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001120 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001121 /*
1122 * If the init ramdisk comes from the FIT image and
1123 * the FIT image address is omitted in the command
1124 * line argument, try to use os FIT image address or
1125 * default load address.
1126 */
1127 if (images->fit_uname_os)
1128 default_addr = (ulong)images->fit_hdr_os;
1129 else
Simon Glassbb872dd2019-12-28 10:45:02 -07001130 default_addr = image_load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001131
Simon Glass983c72f2013-06-11 11:14:46 -07001132 if (fit_parse_conf(select, default_addr,
1133 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001134 debug("* ramdisk: config '%s' from image at "
1135 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001136 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001137 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001138 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001139 debug("* ramdisk: subimage '%s' from image at "
1140 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001141 fit_uname_ramdisk, rd_addr);
1142 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001143#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001144 {
Simon Glass983c72f2013-06-11 11:14:46 -07001145 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001146 debug("* ramdisk: cmdline image address = "
1147 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001148 rd_addr);
1149 }
Simon Glass73223f02016-02-22 22:55:43 -07001150#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001151 } else {
1152 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001153 * command argument. If the property is not defined,
1154 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001155 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001156 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001157 rd_noffset = fit_get_node_from_config(images,
1158 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001159 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001160 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001161 else if (rd_noffset < 0)
1162 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001163 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001164#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001165
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001166 /*
1167 * Check if there is an initrd image at the
1168 * address provided in the second bootm argument
1169 * check image type, for FIT images get FIT node.
1170 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001171 buf = map_sysmem(rd_addr, 0);
1172 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001173#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001174 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001175 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001176 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001177
Simon Glass770605e2012-02-13 13:51:18 +00001178 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001179 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001180 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001181
Marian Balakowiczc8779642008-03-12 10:12:37 +01001182 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001183 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001184
Stephen Warren712fbcf2011-10-18 11:11:49 +00001185 rd_data = image_get_data(rd_hdr);
1186 rd_len = image_get_data_size(rd_hdr);
1187 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001188 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001189#endif
Simon Glass73223f02016-02-22 22:55:43 -07001190#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001191 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001192 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001193 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001194 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001195 IH_TYPE_RAMDISK,
1196 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001197 FIT_LOAD_OPTIONAL_NON_ZERO,
1198 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001199 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001200 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001201
Simon Glassa51ec632013-05-16 13:53:22 +00001202 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001203 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001204 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001205 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001206#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001207#ifdef CONFIG_ANDROID_BOOT_IMAGE
1208 case IMAGE_FORMAT_ANDROID:
1209 android_image_get_ramdisk((void *)images->os.start,
1210 &rd_data, &rd_len);
1211 break;
1212#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001213 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001214#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001215 end = NULL;
1216 if (select)
1217 end = strchr(select, ':');
1218 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001219 rd_len = simple_strtoul(++end, NULL, 16);
1220 rd_data = rd_addr;
1221 } else
1222#endif
1223 {
1224 puts("Wrong Ramdisk Image Format\n");
1225 rd_data = rd_len = rd_load = 0;
1226 return 1;
1227 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001228 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001229 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001230 image_check_type(&images->legacy_hdr_os_copy,
1231 IH_TYPE_MULTI)) {
1232
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001233 /*
1234 * Now check if we have a legacy mult-component image,
1235 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001236 */
Simon Glass770605e2012-02-13 13:51:18 +00001237 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001238 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001239 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001240 (ulong)images->legacy_hdr_os);
1241
Stephen Warren712fbcf2011-10-18 11:11:49 +00001242 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001243 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001244 /*
1245 * no initrd image
1246 */
Simon Glass770605e2012-02-13 13:51:18 +00001247 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001248 rd_len = rd_data = 0;
1249 }
1250
1251 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001252 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001253 } else {
1254 *rd_start = rd_data;
1255 *rd_end = rd_data + rd_len;
1256 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001257 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001258 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001259
1260 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001261}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001262
John Rigbyfca43cc2010-10-13 13:57:35 -06001263#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001264/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001265 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001266 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001267 * @rd_data: ramdisk data start address
1268 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001269 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1270 * start address (after possible relocation)
1271 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1272 * end address (after possible relocation)
1273 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001274 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001275 * variable and if requested ramdisk data is moved to a specified location.
1276 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001277 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1278 * start/end addresses if ramdisk image start and len were provided,
1279 * otherwise set initrd_start and initrd_end set to zeros.
1280 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001281 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001282 * 0 - success
1283 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001284 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001285int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001286 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001287{
1288 char *s;
1289 ulong initrd_high;
1290 int initrd_copy_to_ram = 1;
1291
Simon Glass00caae62017-08-03 12:22:12 -06001292 s = env_get("initrd_high");
1293 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001294 /* a value of "no" or a similar string will act like 0,
1295 * turning the "load high" feature off. This is intentional.
1296 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001297 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001298 if (initrd_high == ~0)
1299 initrd_copy_to_ram = 0;
1300 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001301 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001302 }
1303
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001304
Stephen Warren712fbcf2011-10-18 11:11:49 +00001305 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001306 initrd_high, initrd_copy_to_ram);
1307
1308 if (rd_data) {
1309 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001310 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001311 *initrd_start = rd_data;
1312 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001313 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001314 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001315 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001316 *initrd_start = (ulong)lmb_alloc_base(lmb,
1317 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001318 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001319 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1320 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001321
Kumar Galae822d7f2008-02-27 21:51:49 -06001322 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001323 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001324 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001325 }
Simon Glass770605e2012-02-13 13:51:18 +00001326 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001327
1328 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001329 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001330 *initrd_start, *initrd_end);
1331
Stephen Warren712fbcf2011-10-18 11:11:49 +00001332 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001333 (void *)rd_data, rd_len, CHUNKSZ);
1334
Kumar Gala3b200112011-12-07 04:42:58 +00001335#ifdef CONFIG_MP
1336 /*
1337 * Ensure the image is flushed to memory to handle
1338 * AMP boot scenarios in which we might not be
1339 * HW cache coherent
1340 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001341 flush_cache((unsigned long)*initrd_start,
1342 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001343#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001344 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001345 }
1346 } else {
1347 *initrd_start = 0;
1348 *initrd_end = 0;
1349 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001350 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001351 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001352
Kumar Galae822d7f2008-02-27 21:51:49 -06001353 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001354
Kumar Galae822d7f2008-02-27 21:51:49 -06001355error:
1356 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001357}
John Rigbyfca43cc2010-10-13 13:57:35 -06001358#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001359
Simon Glass90268b82014-10-19 21:11:24 -06001360int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1361 ulong *setup_start, ulong *setup_len)
1362{
Simon Glass73223f02016-02-22 22:55:43 -07001363#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001364 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1365#else
1366 return -ENOENT;
1367#endif
1368}
1369
Simon Glass73223f02016-02-22 22:55:43 -07001370#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001371#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001372int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1373 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1374{
1375 ulong tmp_img_addr, img_data, img_len;
1376 void *buf;
1377 int conf_noffset;
1378 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001379 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001380 int err;
1381 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001382
1383 /* Check to see if the images struct has a FIT configuration */
1384 if (!genimg_has_config(images)) {
1385 debug("## FIT configuration was not specified\n");
1386 return 0;
1387 }
1388
1389 /*
1390 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001391 */
1392 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001393 buf = map_sysmem(tmp_img_addr, 0);
1394 /*
1395 * Check image type. For FIT images get FIT node
1396 * and attempt to locate a generic binary.
1397 */
1398 switch (genimg_get_format(buf)) {
1399 case IMAGE_FORMAT_FIT:
1400 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1401
Simon Glassb02e4042016-10-02 17:59:28 -06001402 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1403 NULL);
1404 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001405 debug("## FPGA image is not specified\n");
1406 return 0;
1407 }
1408 fit_img_result = fit_image_load(images,
1409 tmp_img_addr,
1410 (const char **)&uname,
1411 &(images->fit_uname_cfg),
1412 arch,
1413 IH_TYPE_FPGA,
1414 BOOTSTAGE_ID_FPGA_INIT,
1415 FIT_LOAD_OPTIONAL_NON_ZERO,
1416 &img_data, &img_len);
1417
1418 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1419 uname, img_data, img_len);
1420
1421 if (fit_img_result < 0) {
1422 /* Something went wrong! */
1423 return fit_img_result;
1424 }
1425
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001426 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001427 name = "full";
1428 err = fpga_loadbitstream(devnum, (char *)img_data,
1429 img_len, BIT_FULL);
1430 if (err)
1431 err = fpga_load(devnum, (const void *)img_data,
1432 img_len, BIT_FULL);
1433 } else {
1434 name = "partial";
1435 err = fpga_loadbitstream(devnum, (char *)img_data,
1436 img_len, BIT_PARTIAL);
1437 if (err)
1438 err = fpga_load(devnum, (const void *)img_data,
1439 img_len, BIT_PARTIAL);
1440 }
1441
Michal Simek62afc602016-05-17 14:03:50 +02001442 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001443 return err;
1444
1445 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001446 break;
1447 default:
1448 printf("The given image format is not supported (corrupt?)\n");
1449 return 1;
1450 }
1451
1452 return 0;
1453}
1454#endif
1455
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001456static void fit_loadable_process(uint8_t img_type,
1457 ulong img_data,
1458 ulong img_len)
1459{
1460 int i;
1461 const unsigned int count =
1462 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1463 struct fit_loadable_tbl *fit_loadable_handler =
1464 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1465 /* For each loadable handler */
1466 for (i = 0; i < count; i++, fit_loadable_handler++)
1467 /* matching this type */
1468 if (fit_loadable_handler->type == img_type)
1469 /* call that handler with this image data */
1470 fit_loadable_handler->handler(img_data, img_len);
1471}
1472
Karl Apsite84a07db2015-05-21 09:52:48 -04001473int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1474 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1475{
1476 /*
1477 * These variables are used to hold the current image location
1478 * in system memory.
1479 */
1480 ulong tmp_img_addr;
1481 /*
1482 * These two variables are requirements for fit_image_load, but
1483 * their values are not used
1484 */
1485 ulong img_data, img_len;
1486 void *buf;
1487 int loadables_index;
1488 int conf_noffset;
1489 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001490 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001491 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001492
1493 /* Check to see if the images struct has a FIT configuration */
1494 if (!genimg_has_config(images)) {
1495 debug("## FIT configuration was not specified\n");
1496 return 0;
1497 }
1498
1499 /*
1500 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001501 */
1502 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001503 buf = map_sysmem(tmp_img_addr, 0);
1504 /*
1505 * Check image type. For FIT images get FIT node
1506 * and attempt to locate a generic binary.
1507 */
1508 switch (genimg_get_format(buf)) {
1509 case IMAGE_FORMAT_FIT:
1510 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1511
1512 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001513 uname = fdt_stringlist_get(buf, conf_noffset,
1514 FIT_LOADABLE_PROP, loadables_index,
1515 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001516 loadables_index++)
1517 {
1518 fit_img_result = fit_image_load(images,
1519 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001520 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001521 &(images->fit_uname_cfg), arch,
1522 IH_TYPE_LOADABLE,
1523 BOOTSTAGE_ID_FIT_LOADABLE_START,
1524 FIT_LOAD_OPTIONAL_NON_ZERO,
1525 &img_data, &img_len);
1526 if (fit_img_result < 0) {
1527 /* Something went wrong! */
1528 return fit_img_result;
1529 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001530
1531 fit_img_result = fit_image_get_node(buf, uname);
1532 if (fit_img_result < 0) {
1533 /* Something went wrong! */
1534 return fit_img_result;
1535 }
1536 fit_img_result = fit_image_get_type(buf,
1537 fit_img_result,
1538 &img_type);
1539 if (fit_img_result < 0) {
1540 /* Something went wrong! */
1541 return fit_img_result;
1542 }
1543
1544 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001545 }
1546 break;
1547 default:
1548 printf("The given image format is not supported (corrupt?)\n");
1549 return 1;
1550 }
1551
1552 return 0;
1553}
1554#endif
1555
John Rigbyfca43cc2010-10-13 13:57:35 -06001556#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001557/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001558 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001559 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001560 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1561 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1562 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001563 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301564 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001565 * variable is present its contents is copied to allocated kernel
1566 * command line.
1567 *
1568 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001569 * 0 - success
1570 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001571 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001572int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001573{
1574 char *cmdline;
1575 char *s;
1576
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001577 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001578 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001579
1580 if (cmdline == NULL)
1581 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001582
Simon Glass00caae62017-08-03 12:22:12 -06001583 s = env_get("bootargs");
1584 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001585 s = "";
1586
1587 strcpy(cmdline, s);
1588
1589 *cmd_start = (ulong) & cmdline[0];
1590 *cmd_end = *cmd_start + strlen(cmdline);
1591
Stephen Warren712fbcf2011-10-18 11:11:49 +00001592 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001593
Kumar Galae822d7f2008-02-27 21:51:49 -06001594 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001595}
John Rigbyfca43cc2010-10-13 13:57:35 -06001596#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001597
John Rigbyfca43cc2010-10-13 13:57:35 -06001598#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001599/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001600 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001601 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001602 * @kbd: double pointer to board info data
1603 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001604 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001605 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001606 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001607 *
1608 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001609 * 0 - success
1610 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001611 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001612int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001613{
Becky Bruce391fd932008-06-09 20:37:18 -05001614 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001615 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001616 if (*kbd == NULL)
1617 return -1;
1618
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001619 **kbd = *(gd->bd);
1620
Stephen Warren712fbcf2011-10-18 11:11:49 +00001621 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001622
1623#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1624 do_bdinfo(NULL, 0, 0, NULL);
1625#endif
1626
Kumar Galae822d7f2008-02-27 21:51:49 -06001627 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001628}
John Rigbyfca43cc2010-10-13 13:57:35 -06001629#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001630
1631#ifdef CONFIG_LMB
1632int image_setup_linux(bootm_headers_t *images)
1633{
1634 ulong of_size = images->ft_len;
1635 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001636 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001637 int ret;
1638
1639 if (IMAGE_ENABLE_OF_LIBFDT)
1640 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1641
1642 if (IMAGE_BOOT_GET_CMDLINE) {
1643 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1644 &images->cmdline_end);
1645 if (ret) {
1646 puts("ERROR with allocation of cmdline\n");
1647 return ret;
1648 }
1649 }
Simon Glass13d06982013-05-08 08:06:01 +00001650
1651 if (IMAGE_ENABLE_OF_LIBFDT) {
1652 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1653 if (ret)
1654 return ret;
1655 }
1656
1657 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1658 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1659 if (ret)
1660 return ret;
1661 }
1662
1663 return 0;
1664}
1665#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001666#endif /* !USE_HOSTCC */