blob: 75d5dd944ff0487bb0d712b1388c149343ac30fc [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 Glass3db71102019-11-14 12:57:16 -070013#include <u-boot/crc.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010014#include <watchdog.h>
15
16#ifdef CONFIG_SHOW_BOOT_PROGRESS
17#include <status_led.h>
18#endif
19
Marian Balakowicz2242f532008-02-21 17:27:41 +010020#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010021
Simon Glass0c670fc2019-08-01 09:46:36 -060022#include <gzip.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010023#include <image.h>
Simon Glass6c03f9e2019-11-14 12:57:25 -070024#include <lz4.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050025#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010026
Simon Glassaa34fbc2016-02-22 22:55:45 -070027#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090028#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010029#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020030#include <fpga.h>
31#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010032#endif
33
Andy Fleming20a14a42008-04-02 16:19:07 -050034#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020035#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090036#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000037#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010038
Julius Werner20908542019-07-24 19:37:54 -070039#include <bzlib.h>
40#include <linux/lzo.h>
41#include <lzma/LzmaTypes.h>
42#include <lzma/LzmaDec.h>
43#include <lzma/LzmaTools.h>
44
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010045#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020046extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010047#endif
48
49DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010050
Tom Rinic76c93a2019-05-23 07:14:07 -040051#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000052static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010053 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020054#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010056#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050057#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010058#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010059#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020060
61#ifndef __maybe_unused
62# define __maybe_unused /* unimplemented */
63#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010064#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010065
Simon Glass0ccff502013-02-24 17:33:25 +000066#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000067#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000068
Simon Glass13d06982013-05-08 08:06:01 +000069#ifndef CONFIG_SYS_BARGSIZE
70#define CONFIG_SYS_BARGSIZE 512
71#endif
72
Mike Frysinger7edb1862010-10-20 07:17:39 -040073static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060074 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010075 { IH_ARCH_ALPHA, "alpha", "Alpha", },
76 { IH_ARCH_ARM, "arm", "ARM", },
77 { IH_ARCH_I386, "x86", "Intel x86", },
78 { IH_ARCH_IA64, "ia64", "IA64", },
79 { IH_ARCH_M68K, "m68k", "M68K", },
80 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
81 { IH_ARCH_MIPS, "mips", "MIPS", },
82 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010083 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070084 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010085 { IH_ARCH_PPC, "ppc", "PowerPC", },
86 { IH_ARCH_S390, "s390", "IBM S390", },
87 { IH_ARCH_SH, "sh", "SuperH", },
88 { IH_ARCH_SPARC, "sparc", "SPARC", },
89 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
90 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
91 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000092 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000093 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000094 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080095 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040096 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060097 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030098 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +080099 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100100 { -1, "", "", },
101};
102
Mike Frysinger7edb1862010-10-20 07:17:39 -0400103static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600104 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200105 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100106 { IH_OS_LINUX, "linux", "Linux", },
107#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
108 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
109#endif
110 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200111 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000112 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100113 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000114 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800116 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100117#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
118 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100119#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500120#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
121 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
122#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100123#ifdef USE_HOSTCC
124 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
125 { IH_OS_DELL, "dell", "Dell", },
126 { IH_OS_ESIX, "esix", "Esix", },
127 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
128 { IH_OS_IRIX, "irix", "Irix", },
129 { IH_OS_NCR, "ncr", "NCR", },
130 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
131 { IH_OS_PSOS, "psos", "pSOS", },
132 { IH_OS_SCO, "sco", "SCO", },
133 { IH_OS_SOLARIS, "solaris", "Solaris", },
134 { IH_OS_SVR4, "svr4", "SVR4", },
135#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100136#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
137 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
138#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200139 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200140 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100141
Marian Balakowicz570abb02008-02-29 15:59:59 +0100142 { -1, "", "", },
143};
144
Mike Frysinger7edb1862010-10-20 07:17:39 -0400145static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000146 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100147 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
148 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400149 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400150 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100151 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700152 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000153 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
154 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000155 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000156 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600157 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100158 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000159 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000160 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100161 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
162 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200163 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
164 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100165 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000166 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200167 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200168 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600169 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200170 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600171 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600172 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600173 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200174 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000175 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200176 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200177 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200178 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600179 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100180 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500181 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100182 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800183 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200184 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100185 { -1, "", "", },
186};
187
Mike Frysinger7edb1862010-10-20 07:17:39 -0400188static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100189 { IH_COMP_NONE, "none", "uncompressed", },
190 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
191 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200192 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100193 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700194 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100195 { -1, "", "", },
196};
197
Simon Glass56d7ab72016-06-30 10:52:14 -0600198struct table_info {
199 const char *desc;
200 int count;
201 const table_entry_t *table;
202};
203
204static const struct table_info table_info[IH_COUNT] = {
205 { "architecture", IH_ARCH_COUNT, uimage_arch },
206 { "compression", IH_COMP_COUNT, uimage_comp },
207 { "operating system", IH_OS_COUNT, uimage_os },
208 { "image type", IH_TYPE_COUNT, uimage_type },
209};
210
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100211/*****************************************************************************/
212/* Legacy format routines */
213/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000214int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100215{
216 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000217 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100218 image_header_t header;
219
220 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000221 memmove(&header, (char *)hdr, image_get_header_size());
222 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100223
Stephen Warren712fbcf2011-10-18 11:11:49 +0000224 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100225
Stephen Warren712fbcf2011-10-18 11:11:49 +0000226 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100227}
228
Stephen Warren712fbcf2011-10-18 11:11:49 +0000229int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100230{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000231 ulong data = image_get_data(hdr);
232 ulong len = image_get_data_size(hdr);
233 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100234
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100236}
237
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100238/**
239 * image_multi_count - get component (sub-image) count
240 * @hdr: pointer to the header of the multi component image
241 *
242 * image_multi_count() returns number of components in a multi
243 * component image.
244 *
245 * Note: no checking of the image type is done, caller must pass
246 * a valid multi component image.
247 *
248 * returns:
249 * number of components
250 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000251ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100252{
253 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100254 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100255
256 /* get start of the image payload, which in case of multi
257 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000258 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100259
260 /* count non empty slots */
261 for (i = 0; size[i]; ++i)
262 count++;
263
264 return count;
265}
266
267/**
268 * image_multi_getimg - get component data address and size
269 * @hdr: pointer to the header of the multi component image
270 * @idx: index of the requested component
271 * @data: pointer to a ulong variable, will hold component data address
272 * @len: pointer to a ulong variable, will hold component size
273 *
274 * image_multi_getimg() returns size and data address for the requested
275 * component in a multi component image.
276 *
277 * Note: no checking of the image type is done, caller must pass
278 * a valid multi component image.
279 *
280 * returns:
281 * data address and size of the component, if idx is valid
282 * 0 in data and len, if idx is out of range
283 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000284void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100285 ulong *data, ulong *len)
286{
287 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100288 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700289 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100290
291 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000292 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100293
294 /* get start of the image payload, which in case of multi
295 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000296 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100297
298 /* get address of the proper component data start, which means
299 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000300 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100301
302 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000303 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100304 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100305
306 /* go over all indices preceding requested component idx */
307 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700308 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000309 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100310 }
311
312 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700313 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100314 } else {
315 *len = 0;
316 *data = 0;
317 }
318}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100319
Stephen Warren712fbcf2011-10-18 11:11:49 +0000320static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100321{
Heiko Schocher80402f32015-06-29 09:10:46 +0200322 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100323
Stephen Warren712fbcf2011-10-18 11:11:49 +0000324 os = genimg_get_os_name(image_get_os(hdr));
325 arch = genimg_get_arch_name(image_get_arch(hdr));
326 type = genimg_get_type_name(image_get_type(hdr));
327 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100328
Stephen Warren712fbcf2011-10-18 11:11:49 +0000329 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100330}
331
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100332/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200333 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200334 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100335 * @p: pointer to prefix string
336 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200337 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100338 * The routine prints out all header fields followed by the size/offset data
339 * for MULTI/SCRIPT images.
340 *
341 * returns:
342 * no returned results
343 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000344void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100345{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200346 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200347 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200348
Simon Glass1fe7d932013-05-08 08:05:58 +0000349 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000350 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000351 if (IMAGE_ENABLE_TIMESTAMP) {
352 printf("%sCreated: ", p);
353 genimg_print_time((time_t)image_get_time(hdr));
354 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000355 printf("%sImage Type: ", p);
356 image_print_type(hdr);
357 printf("%sData Size: ", p);
358 genimg_print_size(image_get_data_size(hdr));
359 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
360 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100361
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362 if (image_check_type(hdr, IH_TYPE_MULTI) ||
363 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100364 int i;
365 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000366 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100367
Stephen Warren712fbcf2011-10-18 11:11:49 +0000368 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100369 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000370 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100371
Stephen Warren712fbcf2011-10-18 11:11:49 +0000372 printf("%s Image %d: ", p, i);
373 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100374
Stephen Warren712fbcf2011-10-18 11:11:49 +0000375 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100376 /*
377 * the user may need to know offsets
378 * if planning to do something with
379 * multiple files
380 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000381 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100382 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100383 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100384 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
385 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000386 image_get_load(hdr) - image_get_header_size(),
387 (int)(image_get_size(hdr) + image_get_header_size()
388 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100389 }
390}
391
Julius Werner20908542019-07-24 19:37:54 -0700392/**
393 * print_decomp_msg() - Print a suitable decompression/loading message
394 *
395 * @type: OS type (IH_OS_...)
396 * @comp_type: Compression type being used (IH_COMP_...)
397 * @is_xip: true if the load address matches the image start
398 */
399static void print_decomp_msg(int comp_type, int type, bool is_xip)
400{
401 const char *name = genimg_get_type_name(type);
402
403 if (comp_type == IH_COMP_NONE)
404 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
405 else
406 printf(" Uncompressing %s\n", name);
407}
408
409int image_decomp(int comp, ulong load, ulong image_start, int type,
410 void *load_buf, void *image_buf, ulong image_len,
411 uint unc_len, ulong *load_end)
412{
413 int ret = 0;
414
415 *load_end = load;
416 print_decomp_msg(comp, type, load == image_start);
417
418 /*
419 * Load the image to the right place, decompressing if needed. After
420 * this, image_len will be set to the number of uncompressed bytes
421 * loaded, ret will be non-zero on error.
422 */
423 switch (comp) {
424 case IH_COMP_NONE:
425 if (load == image_start)
426 break;
427 if (image_len <= unc_len)
428 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
429 else
430 ret = -ENOSPC;
431 break;
432#ifdef CONFIG_GZIP
433 case IH_COMP_GZIP: {
434 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
435 break;
436 }
437#endif /* CONFIG_GZIP */
438#ifdef CONFIG_BZIP2
439 case IH_COMP_BZIP2: {
440 uint size = unc_len;
441
442 /*
443 * If we've got less than 4 MB of malloc() space,
444 * use slower decompression algorithm which requires
445 * at most 2300 KB of memory.
446 */
447 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
448 image_buf, image_len,
449 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
450 image_len = size;
451 break;
452 }
453#endif /* CONFIG_BZIP2 */
454#ifdef CONFIG_LZMA
455 case IH_COMP_LZMA: {
456 SizeT lzma_len = unc_len;
457
458 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
459 image_buf, image_len);
460 image_len = lzma_len;
461 break;
462 }
463#endif /* CONFIG_LZMA */
464#ifdef CONFIG_LZO
465 case IH_COMP_LZO: {
466 size_t size = unc_len;
467
468 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
469 image_len = size;
470 break;
471 }
472#endif /* CONFIG_LZO */
473#ifdef CONFIG_LZ4
474 case IH_COMP_LZ4: {
475 size_t size = unc_len;
476
477 ret = ulz4fn(image_buf, image_len, load_buf, &size);
478 image_len = size;
479 break;
480 }
481#endif /* CONFIG_LZ4 */
482 default:
483 printf("Unimplemented compression type %d\n", comp);
484 return -ENOSYS;
485 }
486
487 *load_end = load + image_len;
488
489 return ret;
490}
491
Marian Balakowicz570abb02008-02-29 15:59:59 +0100492
493#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400494#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100495/**
496 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100497 * @rd_addr: ramdisk image start address
498 * @arch: expected ramdisk architecture
499 * @verify: checksum verification flag
500 *
501 * image_get_ramdisk() returns a pointer to the verified ramdisk image
502 * header. Routine receives image start address and expected architecture
503 * flag. Verification done covers data and header integrity and os/type/arch
504 * fields checking.
505 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100506 * returns:
507 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600508 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100509 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000510static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100511 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100512{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200513 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100514
Stephen Warren712fbcf2011-10-18 11:11:49 +0000515 if (!image_check_magic(rd_hdr)) {
516 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000517 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600518 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100519 }
520
Stephen Warren712fbcf2011-10-18 11:11:49 +0000521 if (!image_check_hcrc(rd_hdr)) {
522 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000523 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600524 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100525 }
526
Simon Glass770605e2012-02-13 13:51:18 +0000527 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000528 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100529
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100530 if (verify) {
531 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000532 if (!image_check_dcrc(rd_hdr)) {
533 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000534 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600535 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100536 }
537 puts("OK\n");
538 }
539
Simon Glass770605e2012-02-13 13:51:18 +0000540 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100541
Stephen Warren712fbcf2011-10-18 11:11:49 +0000542 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
543 !image_check_arch(rd_hdr, arch) ||
544 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
545 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100546 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000547 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600548 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100549 }
550
551 return rd_hdr;
552}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200553#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100554#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100555
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100556/*****************************************************************************/
557/* Shared dual-format routines */
558/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100559#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600560ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
561ulong save_addr; /* Default Save Address */
562ulong save_size; /* Default Save Size (in bytes) */
563
564static int on_loadaddr(const char *name, const char *value, enum env_op op,
565 int flags)
566{
567 switch (op) {
568 case env_op_create:
569 case env_op_overwrite:
570 load_addr = simple_strtoul(value, NULL, 16);
571 break;
572 default:
573 break;
574 }
575
576 return 0;
577}
578U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
579
Simon Glass723806c2017-08-03 12:22:15 -0600580ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100581{
Simon Glass00caae62017-08-03 12:22:12 -0600582 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100583 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000584 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100585 return tmp;
586 }
587
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200588#if defined(CONFIG_SYS_SDRAM_BASE)
589 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200590#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100591 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100592#else
593 return 0;
594#endif
595}
596
Simon Glass723806c2017-08-03 12:22:15 -0600597phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100598{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900599 phys_size_t tmp, size;
600 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600601 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100602 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000603 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100604 return tmp;
605 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900606
Michal Simeka750ded2019-09-25 09:11:48 +0200607#if (defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)) && \
608 defined(CONFIG_NR_DRAM_BANKS)
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900609 start = gd->bd->bi_dram[0].start;
610 size = gd->bd->bi_dram[0].size;
611#else
612 start = gd->bd->bi_memstart;
613 size = gd->bd->bi_memsize;
614#endif
615
Simon Glass00caae62017-08-03 12:22:12 -0600616 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500617 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000618 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500619 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900620 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500621
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900622 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100623}
624
Simon Glass723806c2017-08-03 12:22:15 -0600625phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000626{
627 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600628 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000629 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000630 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000631 return tmp;
632 }
633
634#if defined(CONFIG_SYS_BOOTMAPSZ)
635 return CONFIG_SYS_BOOTMAPSZ;
636#else
Simon Glass723806c2017-08-03 12:22:15 -0600637 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000638#endif
639}
640
Stephen Warren712fbcf2011-10-18 11:11:49 +0000641void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100642{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400643 if (to == from)
644 return;
645
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100646#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800647 if (to > from) {
648 from += len;
649 to += len;
650 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100651 while (len > 0) {
652 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000653 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800654 if (to > from) {
655 to -= tail;
656 from -= tail;
657 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000658 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800659 if (to < from) {
660 to += tail;
661 from += tail;
662 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100663 len -= tail;
664 }
665#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000666 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100667#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
668}
Julius Werner20908542019-07-24 19:37:54 -0700669#else /* USE_HOSTCC */
670void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
671{
672 memmove(to, from, len);
673}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100674#endif /* !USE_HOSTCC */
675
Stephen Warren712fbcf2011-10-18 11:11:49 +0000676void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100677{
678#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000679 printf("%d Bytes = ", size);
680 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100681#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100682 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100683 size, (double)size / 1.024e3,
684 (double)size / 1.048576e6);
685#endif
686}
687
Simon Glass859e92b2013-05-07 06:11:51 +0000688#if IMAGE_ENABLE_TIMESTAMP
689void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100690{
691#ifndef USE_HOSTCC
692 struct rtc_time tm;
693
Simon Glass9f9276c2015-04-20 12:37:18 -0600694 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000695 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100696 tm.tm_year, tm.tm_mon, tm.tm_mday,
697 tm.tm_hour, tm.tm_min, tm.tm_sec);
698#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000699 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100700#endif
701}
Simon Glass859e92b2013-05-07 06:11:51 +0000702#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100703
Simon Glass5b9d44d2015-06-23 15:38:25 -0600704const table_entry_t *get_table_entry(const table_entry_t *table, int id)
705{
706 for (; table->id >= 0; ++table) {
707 if (table->id == id)
708 return table;
709 }
710 return NULL;
711}
712
Simon Glass14262202016-06-30 10:52:16 -0600713static const char *unknown_msg(enum ih_category category)
714{
Simon Glassae3de0d2016-10-31 10:21:09 -0600715 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600716 static char msg[30];
717
Simon Glassae3de0d2016-10-31 10:21:09 -0600718 strcpy(msg, unknown_str);
719 strncat(msg, table_info[category].desc,
720 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600721
722 return msg;
723}
724
725/**
726 * get_cat_table_entry_name - translate entry id to long name
727 * @category: category to look up (enum ih_category)
728 * @id: entry id to be translated
729 *
730 * This will scan the translation table trying to find the entry that matches
731 * the given id.
732 *
733 * @retur long entry name if translation succeeds; error string on failure
734 */
735const char *genimg_get_cat_name(enum ih_category category, uint id)
736{
737 const table_entry_t *entry;
738
739 entry = get_table_entry(table_info[category].table, id);
740 if (!entry)
741 return unknown_msg(category);
742#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
743 return entry->lname;
744#else
745 return entry->lname + gd->reloc_off;
746#endif
747}
748
749/**
750 * get_cat_table_entry_short_name - translate entry id to short name
751 * @category: category to look up (enum ih_category)
752 * @id: entry id to be translated
753 *
754 * This will scan the translation table trying to find the entry that matches
755 * the given id.
756 *
757 * @retur short entry name if translation succeeds; error string on failure
758 */
759const char *genimg_get_cat_short_name(enum ih_category category, uint id)
760{
761 const table_entry_t *entry;
762
763 entry = get_table_entry(table_info[category].table, id);
764 if (!entry)
765 return unknown_msg(category);
766#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
767 return entry->sname;
768#else
769 return entry->sname + gd->reloc_off;
770#endif
771}
772
773int genimg_get_cat_count(enum ih_category category)
774{
775 return table_info[category].count;
776}
777
778const char *genimg_get_cat_desc(enum ih_category category)
779{
780 return table_info[category].desc;
781}
782
Marian Balakowicz570abb02008-02-29 15:59:59 +0100783/**
784 * get_table_entry_name - translate entry id to long name
785 * @table: pointer to a translation table for entries of a specific type
786 * @msg: message to be returned when translation fails
787 * @id: entry id to be translated
788 *
789 * get_table_entry_name() will go over translation table trying to find
790 * entry that matches given id. If matching entry is found, its long
791 * name is returned to the caller.
792 *
793 * returns:
794 * long entry name if translation succeeds
795 * msg otherwise
796 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400797char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100798{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600799 table = get_table_entry(table, id);
800 if (!table)
801 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200802#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600803 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500804#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600805 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500806#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100807}
808
Stephen Warren712fbcf2011-10-18 11:11:49 +0000809const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100810{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000811 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100812}
813
Stephen Warren712fbcf2011-10-18 11:11:49 +0000814const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100815{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000816 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
817 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100818}
819
Stephen Warren712fbcf2011-10-18 11:11:49 +0000820const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100821{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000822 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100823}
824
Simon Glasscef2e512016-02-22 22:55:50 -0700825static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600826{
Simon Glasscef2e512016-02-22 22:55:50 -0700827 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600828 if (!table)
829 return "unknown";
830#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
831 return table->sname;
832#else
833 return table->sname + gd->reloc_off;
834#endif
835}
836
Simon Glasscef2e512016-02-22 22:55:50 -0700837const char *genimg_get_type_short_name(uint8_t type)
838{
839 return genimg_get_short_name(uimage_type, type);
840}
841
Stephen Warren712fbcf2011-10-18 11:11:49 +0000842const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100843{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000844 return (get_table_entry_name(uimage_comp, "Unknown Compression",
845 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100846}
847
Simon Glasscef2e512016-02-22 22:55:50 -0700848const char *genimg_get_comp_short_name(uint8_t comp)
849{
850 return genimg_get_short_name(uimage_comp, comp);
851}
852
853const char *genimg_get_os_short_name(uint8_t os)
854{
855 return genimg_get_short_name(uimage_os, os);
856}
857
858const char *genimg_get_arch_short_name(uint8_t arch)
859{
860 return genimg_get_short_name(uimage_arch, arch);
861}
862
Marian Balakowicz570abb02008-02-29 15:59:59 +0100863/**
864 * get_table_entry_id - translate short entry name to id
865 * @table: pointer to a translation table for entries of a specific type
866 * @table_name: to be used in case of error
867 * @name: entry short name to be translated
868 *
869 * get_table_entry_id() will go over translation table trying to find
870 * entry that matches given short name. If matching entry is found,
871 * its id returned to the caller.
872 *
873 * returns:
874 * entry id if translation succeeds
875 * -1 otherwise
876 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400877int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100878 const char *table_name, const char *name)
879{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400880 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100881
882 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200883#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600884 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200885#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600886 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500887#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100888 return (t->id);
889 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000890 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600891
892 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100893}
894
Stephen Warren712fbcf2011-10-18 11:11:49 +0000895int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100896{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000897 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100898}
899
Stephen Warren712fbcf2011-10-18 11:11:49 +0000900int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100901{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000902 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100903}
904
Stephen Warren712fbcf2011-10-18 11:11:49 +0000905int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100906{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000907 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100908}
909
Stephen Warren712fbcf2011-10-18 11:11:49 +0000910int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100911{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000912 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100913}
914
915#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100916/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700917 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
918 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700919 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700920 * @fit_uname_config: double pointer to a char, will hold pointer to a
921 * configuration unit name
922 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
923 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700924 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700925 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700926 * which is normally the first argv of bootm/bootz
927 *
928 * returns:
929 * kernel start address
930 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700931ulong genimg_get_kernel_addr_fit(char * const img_addr,
932 const char **fit_uname_config,
933 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700934{
Bryan Wu0f641402014-07-31 17:39:58 -0700935 ulong kernel_addr;
936
937 /* find out kernel image address */
938 if (!img_addr) {
939 kernel_addr = load_addr;
940 debug("* kernel: default image load address = 0x%08lx\n",
941 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700942#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700943 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700944 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700945 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700946 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700947 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700948 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700949 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700950 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700951#endif
952 } else {
953 kernel_addr = simple_strtoul(img_addr, NULL, 16);
954 debug("* kernel: cmdline image address = 0x%08lx\n",
955 kernel_addr);
956 }
957
958 return kernel_addr;
959}
960
961/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700962 * genimg_get_kernel_addr() is the simple version of
963 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
964 */
965ulong genimg_get_kernel_addr(char * const img_addr)
966{
967 const char *fit_uname_config = NULL;
968 const char *fit_uname_kernel = NULL;
969
970 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
971 &fit_uname_kernel);
972}
973
974/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100975 * genimg_get_format - get image format type
976 * @img_addr: image start address
977 *
978 * genimg_get_format() checks whether provided address points to a valid
979 * legacy or FIT image.
980 *
981 * New uImage format and FDT blob are based on a libfdt. FDT blob
982 * may be passed directly or embedded in a FIT image. In both situations
983 * genimg_get_format() must be able to dectect libfdt header.
984 *
985 * returns:
986 * image format type or IMAGE_FORMAT_INVALID if no image is present
987 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000988int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100989{
Tom Rinic76c93a2019-05-23 07:14:07 -0400990#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200991 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100992
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200993 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100994 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200995 return IMAGE_FORMAT_LEGACY;
996#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700997#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200998 if (fdt_check_header(img_addr) == 0)
999 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001000#endif
1001#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001002 if (android_image_check_header(img_addr) == 0)
1003 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001004#endif
1005
Heiko Schocher21d29f72014-05-28 11:33:33 +02001006 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001007}
1008
1009/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001010 * fit_has_config - check if there is a valid FIT configuration
1011 * @images: pointer to the bootm command headers structure
1012 *
1013 * fit_has_config() checks if there is a FIT configuration in use
1014 * (if FTI support is present).
1015 *
1016 * returns:
1017 * 0, no FIT support or no configuration found
1018 * 1, configuration found
1019 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001020int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001021{
Simon Glass73223f02016-02-22 22:55:43 -07001022#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001023 if (images->fit_uname_cfg)
1024 return 1;
1025#endif
1026 return 0;
1027}
1028
1029/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001030 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001031 * @argc: command argument count
1032 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001033 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001034 * @arch: expected ramdisk architecture
1035 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1036 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1037 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001038 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001039 * Curently supported are the following ramdisk sources:
1040 * - multicomponent kernel/ramdisk image,
1041 * - commandline provided address of decicated ramdisk image.
1042 *
1043 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001044 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001045 * rd_start and rd_end are set to ramdisk start/end addresses if
1046 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001047 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001048 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001049 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001050 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001051int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001052 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001053{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001054 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001055 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001056#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001057 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001058#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001059 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001060#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001061 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001062#endif
Simon Glass73223f02016-02-22 22:55:43 -07001063#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001064 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001065 const char *fit_uname_ramdisk = NULL;
1066 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001067 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001068#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001069 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001070
Marian Balakowiczc8779642008-03-12 10:12:37 +01001071 *rd_start = 0;
1072 *rd_end = 0;
1073
Tom Rini1fec3c52015-08-27 15:42:41 -04001074#ifdef CONFIG_ANDROID_BOOT_IMAGE
1075 /*
1076 * Look for an Android boot image.
1077 */
1078 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001079 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001080 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001081#endif
1082
Simon Glass983c72f2013-06-11 11:14:46 -07001083 if (argc >= 2)
1084 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001085
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001086 /*
1087 * Look for a '-' which indicates to ignore the
1088 * ramdisk argument
1089 */
Simon Glass983c72f2013-06-11 11:14:46 -07001090 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001091 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001092 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001093 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001094#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001095 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001096 /*
1097 * If the init ramdisk comes from the FIT image and
1098 * the FIT image address is omitted in the command
1099 * line argument, try to use os FIT image address or
1100 * default load address.
1101 */
1102 if (images->fit_uname_os)
1103 default_addr = (ulong)images->fit_hdr_os;
1104 else
1105 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001106
Simon Glass983c72f2013-06-11 11:14:46 -07001107 if (fit_parse_conf(select, default_addr,
1108 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001109 debug("* ramdisk: config '%s' from image at "
1110 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001111 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001112 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001113 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001114 debug("* ramdisk: subimage '%s' from image at "
1115 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001116 fit_uname_ramdisk, rd_addr);
1117 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001118#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001119 {
Simon Glass983c72f2013-06-11 11:14:46 -07001120 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001121 debug("* ramdisk: cmdline image address = "
1122 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001123 rd_addr);
1124 }
Simon Glass73223f02016-02-22 22:55:43 -07001125#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001126 } else {
1127 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001128 * command argument. If the property is not defined,
1129 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001130 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001131 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001132 rd_noffset = fit_get_node_from_config(images,
1133 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001134 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001135 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001136 else if (rd_noffset < 0)
1137 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001138 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001139#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001140
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001141 /*
1142 * Check if there is an initrd image at the
1143 * address provided in the second bootm argument
1144 * check image type, for FIT images get FIT node.
1145 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001146 buf = map_sysmem(rd_addr, 0);
1147 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001148#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001149 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001150 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001151 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001152
Simon Glass770605e2012-02-13 13:51:18 +00001153 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001154 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001155 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001156
Marian Balakowiczc8779642008-03-12 10:12:37 +01001157 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001158 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001159
Stephen Warren712fbcf2011-10-18 11:11:49 +00001160 rd_data = image_get_data(rd_hdr);
1161 rd_len = image_get_data_size(rd_hdr);
1162 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001163 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001164#endif
Simon Glass73223f02016-02-22 22:55:43 -07001165#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001166 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001167 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001168 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001169 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001170 IH_TYPE_RAMDISK,
1171 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001172 FIT_LOAD_OPTIONAL_NON_ZERO,
1173 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001174 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001175 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001176
Simon Glassa51ec632013-05-16 13:53:22 +00001177 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001178 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001179 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001180 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001181#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001182#ifdef CONFIG_ANDROID_BOOT_IMAGE
1183 case IMAGE_FORMAT_ANDROID:
1184 android_image_get_ramdisk((void *)images->os.start,
1185 &rd_data, &rd_len);
1186 break;
1187#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001188 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001189#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001190 end = NULL;
1191 if (select)
1192 end = strchr(select, ':');
1193 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001194 rd_len = simple_strtoul(++end, NULL, 16);
1195 rd_data = rd_addr;
1196 } else
1197#endif
1198 {
1199 puts("Wrong Ramdisk Image Format\n");
1200 rd_data = rd_len = rd_load = 0;
1201 return 1;
1202 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001203 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001204 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001205 image_check_type(&images->legacy_hdr_os_copy,
1206 IH_TYPE_MULTI)) {
1207
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001208 /*
1209 * Now check if we have a legacy mult-component image,
1210 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001211 */
Simon Glass770605e2012-02-13 13:51:18 +00001212 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001213 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001214 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001215 (ulong)images->legacy_hdr_os);
1216
Stephen Warren712fbcf2011-10-18 11:11:49 +00001217 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001218 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001219 /*
1220 * no initrd image
1221 */
Simon Glass770605e2012-02-13 13:51:18 +00001222 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001223 rd_len = rd_data = 0;
1224 }
1225
1226 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001227 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001228 } else {
1229 *rd_start = rd_data;
1230 *rd_end = rd_data + rd_len;
1231 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001232 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001233 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001234
1235 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001236}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001237
John Rigbyfca43cc2010-10-13 13:57:35 -06001238#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001239/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001240 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001241 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001242 * @rd_data: ramdisk data start address
1243 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001244 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1245 * start address (after possible relocation)
1246 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1247 * end address (after possible relocation)
1248 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001249 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001250 * variable and if requested ramdisk data is moved to a specified location.
1251 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001252 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1253 * start/end addresses if ramdisk image start and len were provided,
1254 * otherwise set initrd_start and initrd_end set to zeros.
1255 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001256 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001257 * 0 - success
1258 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001259 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001260int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001261 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001262{
1263 char *s;
1264 ulong initrd_high;
1265 int initrd_copy_to_ram = 1;
1266
Simon Glass00caae62017-08-03 12:22:12 -06001267 s = env_get("initrd_high");
1268 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001269 /* a value of "no" or a similar string will act like 0,
1270 * turning the "load high" feature off. This is intentional.
1271 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001272 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001273 if (initrd_high == ~0)
1274 initrd_copy_to_ram = 0;
1275 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001276 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001277 }
1278
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001279
Stephen Warren712fbcf2011-10-18 11:11:49 +00001280 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001281 initrd_high, initrd_copy_to_ram);
1282
1283 if (rd_data) {
1284 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001285 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001286 *initrd_start = rd_data;
1287 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001288 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001289 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001290 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001291 *initrd_start = (ulong)lmb_alloc_base(lmb,
1292 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001293 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001294 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1295 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001296
Kumar Galae822d7f2008-02-27 21:51:49 -06001297 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001298 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001299 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001300 }
Simon Glass770605e2012-02-13 13:51:18 +00001301 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001302
1303 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001304 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001305 *initrd_start, *initrd_end);
1306
Stephen Warren712fbcf2011-10-18 11:11:49 +00001307 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001308 (void *)rd_data, rd_len, CHUNKSZ);
1309
Kumar Gala3b200112011-12-07 04:42:58 +00001310#ifdef CONFIG_MP
1311 /*
1312 * Ensure the image is flushed to memory to handle
1313 * AMP boot scenarios in which we might not be
1314 * HW cache coherent
1315 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001316 flush_cache((unsigned long)*initrd_start,
1317 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001318#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001319 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001320 }
1321 } else {
1322 *initrd_start = 0;
1323 *initrd_end = 0;
1324 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001325 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001326 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001327
Kumar Galae822d7f2008-02-27 21:51:49 -06001328 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001329
Kumar Galae822d7f2008-02-27 21:51:49 -06001330error:
1331 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001332}
John Rigbyfca43cc2010-10-13 13:57:35 -06001333#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001334
Simon Glass90268b82014-10-19 21:11:24 -06001335int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1336 ulong *setup_start, ulong *setup_len)
1337{
Simon Glass73223f02016-02-22 22:55:43 -07001338#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001339 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1340#else
1341 return -ENOENT;
1342#endif
1343}
1344
Simon Glass73223f02016-02-22 22:55:43 -07001345#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001346#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001347int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1348 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1349{
1350 ulong tmp_img_addr, img_data, img_len;
1351 void *buf;
1352 int conf_noffset;
1353 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001354 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001355 int err;
1356 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001357
1358 /* Check to see if the images struct has a FIT configuration */
1359 if (!genimg_has_config(images)) {
1360 debug("## FIT configuration was not specified\n");
1361 return 0;
1362 }
1363
1364 /*
1365 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001366 */
1367 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001368 buf = map_sysmem(tmp_img_addr, 0);
1369 /*
1370 * Check image type. For FIT images get FIT node
1371 * and attempt to locate a generic binary.
1372 */
1373 switch (genimg_get_format(buf)) {
1374 case IMAGE_FORMAT_FIT:
1375 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1376
Simon Glassb02e4042016-10-02 17:59:28 -06001377 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1378 NULL);
1379 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001380 debug("## FPGA image is not specified\n");
1381 return 0;
1382 }
1383 fit_img_result = fit_image_load(images,
1384 tmp_img_addr,
1385 (const char **)&uname,
1386 &(images->fit_uname_cfg),
1387 arch,
1388 IH_TYPE_FPGA,
1389 BOOTSTAGE_ID_FPGA_INIT,
1390 FIT_LOAD_OPTIONAL_NON_ZERO,
1391 &img_data, &img_len);
1392
1393 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1394 uname, img_data, img_len);
1395
1396 if (fit_img_result < 0) {
1397 /* Something went wrong! */
1398 return fit_img_result;
1399 }
1400
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001401 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001402 name = "full";
1403 err = fpga_loadbitstream(devnum, (char *)img_data,
1404 img_len, BIT_FULL);
1405 if (err)
1406 err = fpga_load(devnum, (const void *)img_data,
1407 img_len, BIT_FULL);
1408 } else {
1409 name = "partial";
1410 err = fpga_loadbitstream(devnum, (char *)img_data,
1411 img_len, BIT_PARTIAL);
1412 if (err)
1413 err = fpga_load(devnum, (const void *)img_data,
1414 img_len, BIT_PARTIAL);
1415 }
1416
Michal Simek62afc602016-05-17 14:03:50 +02001417 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001418 return err;
1419
1420 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001421 break;
1422 default:
1423 printf("The given image format is not supported (corrupt?)\n");
1424 return 1;
1425 }
1426
1427 return 0;
1428}
1429#endif
1430
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001431static void fit_loadable_process(uint8_t img_type,
1432 ulong img_data,
1433 ulong img_len)
1434{
1435 int i;
1436 const unsigned int count =
1437 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1438 struct fit_loadable_tbl *fit_loadable_handler =
1439 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1440 /* For each loadable handler */
1441 for (i = 0; i < count; i++, fit_loadable_handler++)
1442 /* matching this type */
1443 if (fit_loadable_handler->type == img_type)
1444 /* call that handler with this image data */
1445 fit_loadable_handler->handler(img_data, img_len);
1446}
1447
Karl Apsite84a07db2015-05-21 09:52:48 -04001448int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1449 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1450{
1451 /*
1452 * These variables are used to hold the current image location
1453 * in system memory.
1454 */
1455 ulong tmp_img_addr;
1456 /*
1457 * These two variables are requirements for fit_image_load, but
1458 * their values are not used
1459 */
1460 ulong img_data, img_len;
1461 void *buf;
1462 int loadables_index;
1463 int conf_noffset;
1464 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001465 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001466 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001467
1468 /* Check to see if the images struct has a FIT configuration */
1469 if (!genimg_has_config(images)) {
1470 debug("## FIT configuration was not specified\n");
1471 return 0;
1472 }
1473
1474 /*
1475 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001476 */
1477 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001478 buf = map_sysmem(tmp_img_addr, 0);
1479 /*
1480 * Check image type. For FIT images get FIT node
1481 * and attempt to locate a generic binary.
1482 */
1483 switch (genimg_get_format(buf)) {
1484 case IMAGE_FORMAT_FIT:
1485 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1486
1487 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001488 uname = fdt_stringlist_get(buf, conf_noffset,
1489 FIT_LOADABLE_PROP, loadables_index,
1490 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001491 loadables_index++)
1492 {
1493 fit_img_result = fit_image_load(images,
1494 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001495 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001496 &(images->fit_uname_cfg), arch,
1497 IH_TYPE_LOADABLE,
1498 BOOTSTAGE_ID_FIT_LOADABLE_START,
1499 FIT_LOAD_OPTIONAL_NON_ZERO,
1500 &img_data, &img_len);
1501 if (fit_img_result < 0) {
1502 /* Something went wrong! */
1503 return fit_img_result;
1504 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001505
1506 fit_img_result = fit_image_get_node(buf, uname);
1507 if (fit_img_result < 0) {
1508 /* Something went wrong! */
1509 return fit_img_result;
1510 }
1511 fit_img_result = fit_image_get_type(buf,
1512 fit_img_result,
1513 &img_type);
1514 if (fit_img_result < 0) {
1515 /* Something went wrong! */
1516 return fit_img_result;
1517 }
1518
1519 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001520 }
1521 break;
1522 default:
1523 printf("The given image format is not supported (corrupt?)\n");
1524 return 1;
1525 }
1526
1527 return 0;
1528}
1529#endif
1530
John Rigbyfca43cc2010-10-13 13:57:35 -06001531#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001532/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001533 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001534 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001535 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1536 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1537 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001538 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301539 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001540 * variable is present its contents is copied to allocated kernel
1541 * command line.
1542 *
1543 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001544 * 0 - success
1545 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001546 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001547int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001548{
1549 char *cmdline;
1550 char *s;
1551
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001552 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001553 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001554
1555 if (cmdline == NULL)
1556 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001557
Simon Glass00caae62017-08-03 12:22:12 -06001558 s = env_get("bootargs");
1559 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001560 s = "";
1561
1562 strcpy(cmdline, s);
1563
1564 *cmd_start = (ulong) & cmdline[0];
1565 *cmd_end = *cmd_start + strlen(cmdline);
1566
Stephen Warren712fbcf2011-10-18 11:11:49 +00001567 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001568
Kumar Galae822d7f2008-02-27 21:51:49 -06001569 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001570}
John Rigbyfca43cc2010-10-13 13:57:35 -06001571#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001572
John Rigbyfca43cc2010-10-13 13:57:35 -06001573#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001574/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001575 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001576 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001577 * @kbd: double pointer to board info data
1578 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001579 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001580 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001581 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001582 *
1583 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001584 * 0 - success
1585 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001586 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001587int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001588{
Becky Bruce391fd932008-06-09 20:37:18 -05001589 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001590 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001591 if (*kbd == NULL)
1592 return -1;
1593
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001594 **kbd = *(gd->bd);
1595
Stephen Warren712fbcf2011-10-18 11:11:49 +00001596 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001597
1598#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1599 do_bdinfo(NULL, 0, 0, NULL);
1600#endif
1601
Kumar Galae822d7f2008-02-27 21:51:49 -06001602 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001603}
John Rigbyfca43cc2010-10-13 13:57:35 -06001604#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001605
1606#ifdef CONFIG_LMB
1607int image_setup_linux(bootm_headers_t *images)
1608{
1609 ulong of_size = images->ft_len;
1610 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001611 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001612 int ret;
1613
1614 if (IMAGE_ENABLE_OF_LIBFDT)
1615 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1616
1617 if (IMAGE_BOOT_GET_CMDLINE) {
1618 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1619 &images->cmdline_end);
1620 if (ret) {
1621 puts("ERROR with allocation of cmdline\n");
1622 return ret;
1623 }
1624 }
Simon Glass13d06982013-05-08 08:06:01 +00001625
1626 if (IMAGE_ENABLE_OF_LIBFDT) {
1627 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1628 if (ret)
1629 return ret;
1630 }
1631
1632 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1633 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1634 if (ret)
1635 return ret;
1636 }
1637
1638 return 0;
1639}
1640#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001641#endif /* !USE_HOSTCC */