blob: 451fc689a89805536cc41053fe68bf8919ce7762 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01002/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2006
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01007 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01008
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01009#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010010#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -060011#include <bootstage.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070012#include <cpu_func.h>
Simon Glass7b51b572019-08-01 09:46:52 -060013#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060014#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070016#include <malloc.h>
Simon Glass90526e92020-05-10 11:39:56 -060017#include <asm/cache.h>
Simon Glass3db71102019-11-14 12:57:16 -070018#include <u-boot/crc.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010019#include <watchdog.h>
20
21#ifdef CONFIG_SHOW_BOOT_PROGRESS
22#include <status_led.h>
23#endif
24
Marian Balakowicz2242f532008-02-21 17:27:41 +010025#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010026
Simon Glass0c670fc2019-08-01 09:46:36 -060027#include <gzip.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010028#include <image.h>
Simon Glass6c03f9e2019-11-14 12:57:25 -070029#include <lz4.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050030#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010031
Simon Glassaa34fbc2016-02-22 22:55:45 -070032#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090033#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010034#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020035#include <fpga.h>
36#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010037#endif
38
Andy Fleming20a14a42008-04-02 16:19:07 -050039#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020040#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090041#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000042#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010043
Julius Werner20908542019-07-24 19:37:54 -070044#include <bzlib.h>
45#include <linux/lzo.h>
46#include <lzma/LzmaTypes.h>
47#include <lzma/LzmaDec.h>
48#include <lzma/LzmaTools.h>
Robert Marko26073f92020-04-25 19:37:21 +020049#include <linux/zstd.h>
Julius Werner20908542019-07-24 19:37:54 -070050
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010051#ifdef CONFIG_CMD_BDI
Simon Glass09140112020-05-10 11:40:03 -060052extern int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
53 char *const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010054#endif
55
56DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010057
Tom Rinic76c93a2019-05-23 07:14:07 -040058#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000059static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010060 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020061#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010062#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010063#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050064#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010065#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010066#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020067
68#ifndef __maybe_unused
69# define __maybe_unused /* unimplemented */
70#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010071#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010072
Simon Glass0ccff502013-02-24 17:33:25 +000073#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000074#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000075
Simon Glass13d06982013-05-08 08:06:01 +000076#ifndef CONFIG_SYS_BARGSIZE
77#define CONFIG_SYS_BARGSIZE 512
78#endif
79
Mike Frysinger7edb1862010-10-20 07:17:39 -040080static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060081 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010082 { IH_ARCH_ALPHA, "alpha", "Alpha", },
83 { IH_ARCH_ARM, "arm", "ARM", },
84 { IH_ARCH_I386, "x86", "Intel x86", },
85 { IH_ARCH_IA64, "ia64", "IA64", },
86 { IH_ARCH_M68K, "m68k", "M68K", },
87 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
88 { IH_ARCH_MIPS, "mips", "MIPS", },
89 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010090 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070091 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010092 { IH_ARCH_PPC, "ppc", "PowerPC", },
93 { IH_ARCH_S390, "s390", "IBM S390", },
94 { IH_ARCH_SH, "sh", "SuperH", },
95 { IH_ARCH_SPARC, "sparc", "SPARC", },
96 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
97 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
98 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000099 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +0000100 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +0000101 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +0800102 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +0400103 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -0600104 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300105 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +0800106 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100107 { -1, "", "", },
108};
109
Mike Frysinger7edb1862010-10-20 07:17:39 -0400110static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600111 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200112 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100113 { IH_OS_LINUX, "linux", "Linux", },
114#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
115 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
116#endif
117 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200118 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000119 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100120 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000121 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100122 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800123 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100124#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
125 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100126#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500127#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
128 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
129#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100130#ifdef USE_HOSTCC
131 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
132 { IH_OS_DELL, "dell", "Dell", },
133 { IH_OS_ESIX, "esix", "Esix", },
134 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
135 { IH_OS_IRIX, "irix", "Irix", },
136 { IH_OS_NCR, "ncr", "NCR", },
137 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
138 { IH_OS_PSOS, "psos", "pSOS", },
139 { IH_OS_SCO, "sco", "SCO", },
140 { IH_OS_SOLARIS, "solaris", "Solaris", },
141 { IH_OS_SVR4, "svr4", "SVR4", },
142#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100143#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
144 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
145#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200146 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200147 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100148
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { -1, "", "", },
150};
151
Mike Frysinger7edb1862010-10-20 07:17:39 -0400152static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000153 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100154 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
155 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400156 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400157 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100158 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700159 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000160 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
161 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000162 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000163 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600164 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100165 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000166 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000167 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100168 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
169 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200170 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
171 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100172 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000173 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200174 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200175 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600176 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200177 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600178 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600179 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600180 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200181 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000182 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200183 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200184 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200185 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600186 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100187 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500188 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100189 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800190 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200191 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100192 { -1, "", "", },
193};
194
Mike Frysinger7edb1862010-10-20 07:17:39 -0400195static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100196 { IH_COMP_NONE, "none", "uncompressed", },
197 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
198 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200199 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100200 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700201 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Marko26073f92020-04-25 19:37:21 +0200202 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100203 { -1, "", "", },
204};
205
Simon Glass56d7ab72016-06-30 10:52:14 -0600206struct table_info {
207 const char *desc;
208 int count;
209 const table_entry_t *table;
210};
211
Atish Patra155d6a32020-03-05 16:24:22 -0800212static const struct comp_magic_map image_comp[] = {
213 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
214 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
215 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
216 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
217 { IH_COMP_NONE, "none", {}, },
218};
219
Simon Glass56d7ab72016-06-30 10:52:14 -0600220static const struct table_info table_info[IH_COUNT] = {
221 { "architecture", IH_ARCH_COUNT, uimage_arch },
222 { "compression", IH_COMP_COUNT, uimage_comp },
223 { "operating system", IH_OS_COUNT, uimage_os },
224 { "image type", IH_TYPE_COUNT, uimage_type },
225};
226
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100227/*****************************************************************************/
228/* Legacy format routines */
229/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000230int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100231{
232 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000233 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100234 image_header_t header;
235
236 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000237 memmove(&header, (char *)hdr, image_get_header_size());
238 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100239
Stephen Warren712fbcf2011-10-18 11:11:49 +0000240 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100241
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100243}
244
Stephen Warren712fbcf2011-10-18 11:11:49 +0000245int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100246{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000247 ulong data = image_get_data(hdr);
248 ulong len = image_get_data_size(hdr);
249 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100250
Stephen Warren712fbcf2011-10-18 11:11:49 +0000251 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100252}
253
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100254/**
255 * image_multi_count - get component (sub-image) count
256 * @hdr: pointer to the header of the multi component image
257 *
258 * image_multi_count() returns number of components in a multi
259 * component image.
260 *
261 * Note: no checking of the image type is done, caller must pass
262 * a valid multi component image.
263 *
264 * returns:
265 * number of components
266 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000267ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100268{
269 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100270 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100271
272 /* get start of the image payload, which in case of multi
273 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000274 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100275
276 /* count non empty slots */
277 for (i = 0; size[i]; ++i)
278 count++;
279
280 return count;
281}
282
283/**
284 * image_multi_getimg - get component data address and size
285 * @hdr: pointer to the header of the multi component image
286 * @idx: index of the requested component
287 * @data: pointer to a ulong variable, will hold component data address
288 * @len: pointer to a ulong variable, will hold component size
289 *
290 * image_multi_getimg() returns size and data address for the requested
291 * component in a multi component image.
292 *
293 * Note: no checking of the image type is done, caller must pass
294 * a valid multi component image.
295 *
296 * returns:
297 * data address and size of the component, if idx is valid
298 * 0 in data and len, if idx is out of range
299 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000300void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100301 ulong *data, ulong *len)
302{
303 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100304 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700305 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100306
307 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000308 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100309
310 /* get start of the image payload, which in case of multi
311 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000312 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100313
314 /* get address of the proper component data start, which means
315 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100317
318 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000319 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100320 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100321
322 /* go over all indices preceding requested component idx */
323 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700324 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100326 }
327
328 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700329 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100330 } else {
331 *len = 0;
332 *data = 0;
333 }
334}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100335
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100337{
Heiko Schocher80402f32015-06-29 09:10:46 +0200338 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100339
Stephen Warren712fbcf2011-10-18 11:11:49 +0000340 os = genimg_get_os_name(image_get_os(hdr));
341 arch = genimg_get_arch_name(image_get_arch(hdr));
342 type = genimg_get_type_name(image_get_type(hdr));
343 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344
Stephen Warren712fbcf2011-10-18 11:11:49 +0000345 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100346}
347
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100348/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200349 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200350 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100351 * @p: pointer to prefix string
352 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200353 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100354 * The routine prints out all header fields followed by the size/offset data
355 * for MULTI/SCRIPT images.
356 *
357 * returns:
358 * no returned results
359 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000360void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100361{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200362 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200363 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200364
Simon Glass1fe7d932013-05-08 08:05:58 +0000365 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000366 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000367 if (IMAGE_ENABLE_TIMESTAMP) {
368 printf("%sCreated: ", p);
369 genimg_print_time((time_t)image_get_time(hdr));
370 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000371 printf("%sImage Type: ", p);
372 image_print_type(hdr);
373 printf("%sData Size: ", p);
374 genimg_print_size(image_get_data_size(hdr));
375 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
376 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100377
Stephen Warren712fbcf2011-10-18 11:11:49 +0000378 if (image_check_type(hdr, IH_TYPE_MULTI) ||
379 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100380 int i;
381 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000382 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100383
Stephen Warren712fbcf2011-10-18 11:11:49 +0000384 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100385 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000386 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100387
Stephen Warren712fbcf2011-10-18 11:11:49 +0000388 printf("%s Image %d: ", p, i);
389 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100390
Stephen Warren712fbcf2011-10-18 11:11:49 +0000391 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100392 /*
393 * the user may need to know offsets
394 * if planning to do something with
395 * multiple files
396 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000397 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100398 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100399 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100400 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
401 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000402 image_get_load(hdr) - image_get_header_size(),
403 (int)(image_get_size(hdr) + image_get_header_size()
404 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100405 }
406}
407
Julius Werner20908542019-07-24 19:37:54 -0700408/**
409 * print_decomp_msg() - Print a suitable decompression/loading message
410 *
411 * @type: OS type (IH_OS_...)
412 * @comp_type: Compression type being used (IH_COMP_...)
413 * @is_xip: true if the load address matches the image start
414 */
415static void print_decomp_msg(int comp_type, int type, bool is_xip)
416{
417 const char *name = genimg_get_type_name(type);
418
419 if (comp_type == IH_COMP_NONE)
420 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
421 else
422 printf(" Uncompressing %s\n", name);
423}
424
Atish Patra155d6a32020-03-05 16:24:22 -0800425int image_decomp_type(const unsigned char *buf, ulong len)
426{
427 const struct comp_magic_map *cmagic = image_comp;
428
429 if (len < 2)
430 return -EINVAL;
431
432 for (; cmagic->comp_id > 0; cmagic++) {
433 if (!memcmp(buf, cmagic->magic, 2))
434 break;
435 }
436
437 return cmagic->comp_id;
438}
439
Julius Werner20908542019-07-24 19:37:54 -0700440int image_decomp(int comp, ulong load, ulong image_start, int type,
441 void *load_buf, void *image_buf, ulong image_len,
442 uint unc_len, ulong *load_end)
443{
444 int ret = 0;
445
446 *load_end = load;
447 print_decomp_msg(comp, type, load == image_start);
448
449 /*
450 * Load the image to the right place, decompressing if needed. After
451 * this, image_len will be set to the number of uncompressed bytes
452 * loaded, ret will be non-zero on error.
453 */
454 switch (comp) {
455 case IH_COMP_NONE:
456 if (load == image_start)
457 break;
458 if (image_len <= unc_len)
459 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
460 else
461 ret = -ENOSPC;
462 break;
463#ifdef CONFIG_GZIP
464 case IH_COMP_GZIP: {
465 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
466 break;
467 }
468#endif /* CONFIG_GZIP */
469#ifdef CONFIG_BZIP2
470 case IH_COMP_BZIP2: {
471 uint size = unc_len;
472
473 /*
474 * If we've got less than 4 MB of malloc() space,
475 * use slower decompression algorithm which requires
476 * at most 2300 KB of memory.
477 */
478 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
479 image_buf, image_len,
480 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
481 image_len = size;
482 break;
483 }
484#endif /* CONFIG_BZIP2 */
485#ifdef CONFIG_LZMA
486 case IH_COMP_LZMA: {
487 SizeT lzma_len = unc_len;
488
489 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
490 image_buf, image_len);
491 image_len = lzma_len;
492 break;
493 }
494#endif /* CONFIG_LZMA */
495#ifdef CONFIG_LZO
496 case IH_COMP_LZO: {
497 size_t size = unc_len;
498
499 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
500 image_len = size;
501 break;
502 }
503#endif /* CONFIG_LZO */
504#ifdef CONFIG_LZ4
505 case IH_COMP_LZ4: {
506 size_t size = unc_len;
507
508 ret = ulz4fn(image_buf, image_len, load_buf, &size);
509 image_len = size;
510 break;
511 }
512#endif /* CONFIG_LZ4 */
Robert Marko26073f92020-04-25 19:37:21 +0200513#ifdef CONFIG_ZSTD
514 case IH_COMP_ZSTD: {
515 size_t size = unc_len;
516 ZSTD_DStream *dstream;
517 ZSTD_inBuffer in_buf;
518 ZSTD_outBuffer out_buf;
519 void *workspace;
520 size_t wsize;
521
522 wsize = ZSTD_DStreamWorkspaceBound(image_len);
523 workspace = malloc(wsize);
524 if (!workspace) {
525 debug("%s: cannot allocate workspace of size %zu\n", __func__,
526 wsize);
527 return -1;
528 }
529
530 dstream = ZSTD_initDStream(image_len, workspace, wsize);
531 if (!dstream) {
532 printf("%s: ZSTD_initDStream failed\n", __func__);
533 return ZSTD_getErrorCode(ret);
534 }
535
536 in_buf.src = image_buf;
537 in_buf.pos = 0;
538 in_buf.size = image_len;
539
540 out_buf.dst = load_buf;
541 out_buf.pos = 0;
542 out_buf.size = size;
543
544 while (1) {
545 size_t ret;
546
547 ret = ZSTD_decompressStream(dstream, &out_buf, &in_buf);
548 if (ZSTD_isError(ret)) {
549 printf("%s: ZSTD_decompressStream error %d\n", __func__,
550 ZSTD_getErrorCode(ret));
551 return ZSTD_getErrorCode(ret);
552 }
553
554 if (in_buf.pos >= image_len || !ret)
555 break;
556 }
557
558 image_len = out_buf.pos;
559
560 break;
561 }
562#endif /* CONFIG_ZSTD */
Julius Werner20908542019-07-24 19:37:54 -0700563 default:
564 printf("Unimplemented compression type %d\n", comp);
565 return -ENOSYS;
566 }
567
568 *load_end = load + image_len;
569
570 return ret;
571}
572
Marian Balakowicz570abb02008-02-29 15:59:59 +0100573
574#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400575#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100576/**
577 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100578 * @rd_addr: ramdisk image start address
579 * @arch: expected ramdisk architecture
580 * @verify: checksum verification flag
581 *
582 * image_get_ramdisk() returns a pointer to the verified ramdisk image
583 * header. Routine receives image start address and expected architecture
584 * flag. Verification done covers data and header integrity and os/type/arch
585 * fields checking.
586 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100587 * returns:
588 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600589 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100590 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000591static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100592 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100593{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200594 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100595
Stephen Warren712fbcf2011-10-18 11:11:49 +0000596 if (!image_check_magic(rd_hdr)) {
597 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000598 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600599 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100600 }
601
Stephen Warren712fbcf2011-10-18 11:11:49 +0000602 if (!image_check_hcrc(rd_hdr)) {
603 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000604 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600605 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100606 }
607
Simon Glass770605e2012-02-13 13:51:18 +0000608 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000609 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100610
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100611 if (verify) {
612 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000613 if (!image_check_dcrc(rd_hdr)) {
614 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000615 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600616 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100617 }
618 puts("OK\n");
619 }
620
Simon Glass770605e2012-02-13 13:51:18 +0000621 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100622
Stephen Warren712fbcf2011-10-18 11:11:49 +0000623 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
624 !image_check_arch(rd_hdr, arch) ||
625 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
626 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100627 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000628 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600629 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100630 }
631
632 return rd_hdr;
633}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200634#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100635#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100636
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100637/*****************************************************************************/
638/* Shared dual-format routines */
639/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100640#ifndef USE_HOSTCC
Simon Glassbb872dd2019-12-28 10:45:02 -0700641ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
642ulong image_save_addr; /* Default Save Address */
643ulong image_save_size; /* Default Save Size (in bytes) */
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600644
645static int on_loadaddr(const char *name, const char *value, enum env_op op,
646 int flags)
647{
648 switch (op) {
649 case env_op_create:
650 case env_op_overwrite:
Simon Glassbb872dd2019-12-28 10:45:02 -0700651 image_load_addr = simple_strtoul(value, NULL, 16);
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600652 break;
653 default:
654 break;
655 }
656
657 return 0;
658}
659U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
660
Simon Glass723806c2017-08-03 12:22:15 -0600661ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100662{
Simon Glass00caae62017-08-03 12:22:12 -0600663 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100664 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000665 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100666 return tmp;
667 }
668
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200669#if defined(CONFIG_SYS_SDRAM_BASE)
670 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200671#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100672 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100673#else
674 return 0;
675#endif
676}
677
Simon Glass723806c2017-08-03 12:22:15 -0600678phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100679{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900680 phys_size_t tmp, size;
681 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600682 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100683 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000684 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100685 return tmp;
686 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900687
Stefan Roese4963f632020-08-12 12:57:18 +0200688 start = gd->ram_base;
689 size = gd->ram_size;
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900690
Baruch Siach7f98b4e2020-08-24 20:14:05 +0300691 if (start + size > gd->ram_top)
692 size = gd->ram_top - start;
693
Simon Glass00caae62017-08-03 12:22:12 -0600694 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500695 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000696 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500697 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900698 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500699
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900700 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100701}
702
Simon Glass723806c2017-08-03 12:22:15 -0600703phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000704{
705 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600706 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000707 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000708 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000709 return tmp;
710 }
711
712#if defined(CONFIG_SYS_BOOTMAPSZ)
713 return CONFIG_SYS_BOOTMAPSZ;
714#else
Simon Glass723806c2017-08-03 12:22:15 -0600715 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000716#endif
717}
718
Stephen Warren712fbcf2011-10-18 11:11:49 +0000719void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100720{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400721 if (to == from)
722 return;
723
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100724#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800725 if (to > from) {
726 from += len;
727 to += len;
728 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100729 while (len > 0) {
730 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000731 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800732 if (to > from) {
733 to -= tail;
734 from -= tail;
735 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000736 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800737 if (to < from) {
738 to += tail;
739 from += tail;
740 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100741 len -= tail;
742 }
743#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000744 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100745#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
746}
Julius Werner20908542019-07-24 19:37:54 -0700747#else /* USE_HOSTCC */
748void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
749{
750 memmove(to, from, len);
751}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100752#endif /* !USE_HOSTCC */
753
Stephen Warren712fbcf2011-10-18 11:11:49 +0000754void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100755{
756#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000757 printf("%d Bytes = ", size);
758 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100759#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100760 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100761 size, (double)size / 1.024e3,
762 (double)size / 1.048576e6);
763#endif
764}
765
Simon Glass859e92b2013-05-07 06:11:51 +0000766#if IMAGE_ENABLE_TIMESTAMP
767void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100768{
769#ifndef USE_HOSTCC
770 struct rtc_time tm;
771
Simon Glass9f9276c2015-04-20 12:37:18 -0600772 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000773 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100774 tm.tm_year, tm.tm_mon, tm.tm_mday,
775 tm.tm_hour, tm.tm_min, tm.tm_sec);
776#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000777 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100778#endif
779}
Simon Glass859e92b2013-05-07 06:11:51 +0000780#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100781
Simon Glass5b9d44d2015-06-23 15:38:25 -0600782const table_entry_t *get_table_entry(const table_entry_t *table, int id)
783{
784 for (; table->id >= 0; ++table) {
785 if (table->id == id)
786 return table;
787 }
788 return NULL;
789}
790
Simon Glass14262202016-06-30 10:52:16 -0600791static const char *unknown_msg(enum ih_category category)
792{
Simon Glassae3de0d2016-10-31 10:21:09 -0600793 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600794 static char msg[30];
795
Simon Glassae3de0d2016-10-31 10:21:09 -0600796 strcpy(msg, unknown_str);
797 strncat(msg, table_info[category].desc,
798 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600799
800 return msg;
801}
802
803/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900804 * genimg_get_cat_name - translate entry id to long name
Simon Glass14262202016-06-30 10:52:16 -0600805 * @category: category to look up (enum ih_category)
806 * @id: entry id to be translated
807 *
808 * This will scan the translation table trying to find the entry that matches
809 * the given id.
810 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900811 * @return long entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600812 */
813const char *genimg_get_cat_name(enum ih_category category, uint id)
814{
815 const table_entry_t *entry;
816
817 entry = get_table_entry(table_info[category].table, id);
818 if (!entry)
819 return unknown_msg(category);
820#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
821 return entry->lname;
822#else
823 return entry->lname + gd->reloc_off;
824#endif
825}
826
827/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900828 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass14262202016-06-30 10:52:16 -0600829 * @category: category to look up (enum ih_category)
830 * @id: entry id to be translated
831 *
832 * This will scan the translation table trying to find the entry that matches
833 * the given id.
834 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900835 * @return short entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600836 */
837const char *genimg_get_cat_short_name(enum ih_category category, uint id)
838{
839 const table_entry_t *entry;
840
841 entry = get_table_entry(table_info[category].table, id);
842 if (!entry)
843 return unknown_msg(category);
844#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
845 return entry->sname;
846#else
847 return entry->sname + gd->reloc_off;
848#endif
849}
850
851int genimg_get_cat_count(enum ih_category category)
852{
853 return table_info[category].count;
854}
855
856const char *genimg_get_cat_desc(enum ih_category category)
857{
858 return table_info[category].desc;
859}
860
Marian Balakowicz570abb02008-02-29 15:59:59 +0100861/**
Naoki Hayama02d41b02020-10-07 11:21:25 +0900862 * genimg_cat_has_id - check whether category has entry id
863 * @category: category to look up (enum ih_category)
864 * @id: entry id to be checked
865 *
866 * This will scan the translation table trying to find the entry that matches
867 * the given id.
868 *
869 * @return true if category has entry id; false if not
870 */
871bool genimg_cat_has_id(enum ih_category category, uint id)
872{
873 if (get_table_entry(table_info[category].table, id))
874 return true;
875
876 return false;
877}
878
879/**
Marian Balakowicz570abb02008-02-29 15:59:59 +0100880 * get_table_entry_name - translate entry id to long name
881 * @table: pointer to a translation table for entries of a specific type
882 * @msg: message to be returned when translation fails
883 * @id: entry id to be translated
884 *
885 * get_table_entry_name() will go over translation table trying to find
886 * entry that matches given id. If matching entry is found, its long
887 * name is returned to the caller.
888 *
889 * returns:
890 * long entry name if translation succeeds
891 * msg otherwise
892 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400893char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100894{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600895 table = get_table_entry(table, id);
896 if (!table)
897 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200898#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600899 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500900#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600901 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500902#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100903}
904
Stephen Warren712fbcf2011-10-18 11:11:49 +0000905const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100906{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000907 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100908}
909
Stephen Warren712fbcf2011-10-18 11:11:49 +0000910const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100911{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000912 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
913 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100914}
915
Stephen Warren712fbcf2011-10-18 11:11:49 +0000916const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100917{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000918 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100919}
920
Naoki Hayama898a0842020-10-07 11:22:24 +0900921const char *genimg_get_comp_name(uint8_t comp)
922{
923 return (get_table_entry_name(uimage_comp, "Unknown Compression",
924 comp));
925}
926
Simon Glasscef2e512016-02-22 22:55:50 -0700927static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600928{
Simon Glasscef2e512016-02-22 22:55:50 -0700929 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600930 if (!table)
931 return "unknown";
932#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
933 return table->sname;
934#else
935 return table->sname + gd->reloc_off;
936#endif
937}
938
Simon Glasscef2e512016-02-22 22:55:50 -0700939const char *genimg_get_type_short_name(uint8_t type)
940{
941 return genimg_get_short_name(uimage_type, type);
942}
943
Simon Glasscef2e512016-02-22 22:55:50 -0700944const char *genimg_get_comp_short_name(uint8_t comp)
945{
946 return genimg_get_short_name(uimage_comp, comp);
947}
948
949const char *genimg_get_os_short_name(uint8_t os)
950{
951 return genimg_get_short_name(uimage_os, os);
952}
953
954const char *genimg_get_arch_short_name(uint8_t arch)
955{
956 return genimg_get_short_name(uimage_arch, arch);
957}
958
Marian Balakowicz570abb02008-02-29 15:59:59 +0100959/**
960 * get_table_entry_id - translate short entry name to id
961 * @table: pointer to a translation table for entries of a specific type
962 * @table_name: to be used in case of error
963 * @name: entry short name to be translated
964 *
965 * get_table_entry_id() will go over translation table trying to find
966 * entry that matches given short name. If matching entry is found,
967 * its id returned to the caller.
968 *
969 * returns:
970 * entry id if translation succeeds
971 * -1 otherwise
972 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400973int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100974 const char *table_name, const char *name)
975{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400976 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100977
978 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200979#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600980 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200981#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600982 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500983#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100984 return (t->id);
985 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000986 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600987
988 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100989}
990
Stephen Warren712fbcf2011-10-18 11:11:49 +0000991int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100992{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000993 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100994}
995
Stephen Warren712fbcf2011-10-18 11:11:49 +0000996int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100997{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000998 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100999}
1000
Stephen Warren712fbcf2011-10-18 11:11:49 +00001001int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001002{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001003 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001004}
1005
Stephen Warren712fbcf2011-10-18 11:11:49 +00001006int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +01001007{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001008 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +01001009}
1010
1011#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001012/**
Bryan Wu6c454fe2014-08-15 16:51:38 -07001013 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
1014 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -07001015 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -07001016 * @fit_uname_config: double pointer to a char, will hold pointer to a
1017 * configuration unit name
1018 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
1019 * name
Bryan Wu0f641402014-07-31 17:39:58 -07001020 *
Bryan Wu6c454fe2014-08-15 16:51:38 -07001021 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -07001022 * which is normally the first argv of bootm/bootz
1023 *
1024 * returns:
1025 * kernel start address
1026 */
Bryan Wu6c454fe2014-08-15 16:51:38 -07001027ulong genimg_get_kernel_addr_fit(char * const img_addr,
1028 const char **fit_uname_config,
1029 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -07001030{
Bryan Wu0f641402014-07-31 17:39:58 -07001031 ulong kernel_addr;
1032
1033 /* find out kernel image address */
1034 if (!img_addr) {
Simon Glassbb872dd2019-12-28 10:45:02 -07001035 kernel_addr = image_load_addr;
Bryan Wu0f641402014-07-31 17:39:58 -07001036 debug("* kernel: default image load address = 0x%08lx\n",
Simon Glassbb872dd2019-12-28 10:45:02 -07001037 image_load_addr);
Simon Glass73223f02016-02-22 22:55:43 -07001038#if CONFIG_IS_ENABLED(FIT)
Simon Glassbb872dd2019-12-28 10:45:02 -07001039 } else if (fit_parse_conf(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001040 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001041 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001042 *fit_uname_config, kernel_addr);
Simon Glassbb872dd2019-12-28 10:45:02 -07001043 } else if (fit_parse_subimage(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001044 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001045 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001046 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -07001047#endif
1048 } else {
1049 kernel_addr = simple_strtoul(img_addr, NULL, 16);
1050 debug("* kernel: cmdline image address = 0x%08lx\n",
1051 kernel_addr);
1052 }
1053
1054 return kernel_addr;
1055}
1056
1057/**
Bryan Wu6c454fe2014-08-15 16:51:38 -07001058 * genimg_get_kernel_addr() is the simple version of
1059 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
1060 */
1061ulong genimg_get_kernel_addr(char * const img_addr)
1062{
1063 const char *fit_uname_config = NULL;
1064 const char *fit_uname_kernel = NULL;
1065
1066 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
1067 &fit_uname_kernel);
1068}
1069
1070/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001071 * genimg_get_format - get image format type
1072 * @img_addr: image start address
1073 *
1074 * genimg_get_format() checks whether provided address points to a valid
1075 * legacy or FIT image.
1076 *
1077 * New uImage format and FDT blob are based on a libfdt. FDT blob
1078 * may be passed directly or embedded in a FIT image. In both situations
1079 * genimg_get_format() must be able to dectect libfdt header.
1080 *
1081 * returns:
1082 * image format type or IMAGE_FORMAT_INVALID if no image is present
1083 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001084int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001085{
Tom Rinic76c93a2019-05-23 07:14:07 -04001086#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001087 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001088
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001089 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001090 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +02001091 return IMAGE_FORMAT_LEGACY;
1092#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -07001093#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +02001094 if (fdt_check_header(img_addr) == 0)
1095 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001096#endif
1097#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001098 if (android_image_check_header(img_addr) == 0)
1099 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001100#endif
1101
Heiko Schocher21d29f72014-05-28 11:33:33 +02001102 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001103}
1104
1105/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001106 * fit_has_config - check if there is a valid FIT configuration
1107 * @images: pointer to the bootm command headers structure
1108 *
1109 * fit_has_config() checks if there is a FIT configuration in use
1110 * (if FTI support is present).
1111 *
1112 * returns:
1113 * 0, no FIT support or no configuration found
1114 * 1, configuration found
1115 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001116int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001117{
Simon Glass73223f02016-02-22 22:55:43 -07001118#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001119 if (images->fit_uname_cfg)
1120 return 1;
1121#endif
1122 return 0;
1123}
1124
1125/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001126 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001127 * @argc: command argument count
1128 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001129 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001130 * @arch: expected ramdisk architecture
1131 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1132 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1133 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001134 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001135 * Curently supported are the following ramdisk sources:
1136 * - multicomponent kernel/ramdisk image,
1137 * - commandline provided address of decicated ramdisk image.
1138 *
1139 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001140 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001141 * rd_start and rd_end are set to ramdisk start/end addresses if
1142 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001143 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001144 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001145 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001146 */
Simon Glass09140112020-05-10 11:40:03 -06001147int boot_get_ramdisk(int argc, char *const argv[], bootm_headers_t *images,
1148 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001149{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001150 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001151 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001152#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001153 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001154#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001155 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001156#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001157 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001158#endif
Simon Glass73223f02016-02-22 22:55:43 -07001159#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001160 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001161 const char *fit_uname_ramdisk = NULL;
1162 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001163 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001164#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001165 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001166
Marian Balakowiczc8779642008-03-12 10:12:37 +01001167 *rd_start = 0;
1168 *rd_end = 0;
1169
Tom Rini1fec3c52015-08-27 15:42:41 -04001170#ifdef CONFIG_ANDROID_BOOT_IMAGE
1171 /*
1172 * Look for an Android boot image.
1173 */
1174 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001175 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001176 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001177#endif
1178
Simon Glass983c72f2013-06-11 11:14:46 -07001179 if (argc >= 2)
1180 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001181
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001182 /*
1183 * Look for a '-' which indicates to ignore the
1184 * ramdisk argument
1185 */
Simon Glass983c72f2013-06-11 11:14:46 -07001186 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001187 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001188 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001189 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001190#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001191 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001192 /*
1193 * If the init ramdisk comes from the FIT image and
1194 * the FIT image address is omitted in the command
1195 * line argument, try to use os FIT image address or
1196 * default load address.
1197 */
1198 if (images->fit_uname_os)
1199 default_addr = (ulong)images->fit_hdr_os;
1200 else
Simon Glassbb872dd2019-12-28 10:45:02 -07001201 default_addr = image_load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001202
Simon Glass983c72f2013-06-11 11:14:46 -07001203 if (fit_parse_conf(select, default_addr,
1204 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001205 debug("* ramdisk: config '%s' from image at "
1206 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001207 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001208 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001209 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001210 debug("* ramdisk: subimage '%s' from image at "
1211 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001212 fit_uname_ramdisk, rd_addr);
1213 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001214#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001215 {
Simon Glass983c72f2013-06-11 11:14:46 -07001216 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001217 debug("* ramdisk: cmdline image address = "
1218 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001219 rd_addr);
1220 }
Simon Glass73223f02016-02-22 22:55:43 -07001221#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001222 } else {
1223 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001224 * command argument. If the property is not defined,
1225 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001226 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001227 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001228 rd_noffset = fit_get_node_from_config(images,
1229 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001230 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001231 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001232 else if (rd_noffset < 0)
1233 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001234 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001235#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001236
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001237 /*
1238 * Check if there is an initrd image at the
1239 * address provided in the second bootm argument
1240 * check image type, for FIT images get FIT node.
1241 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001242 buf = map_sysmem(rd_addr, 0);
1243 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001244#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001245 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001246 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001247 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001248
Simon Glass770605e2012-02-13 13:51:18 +00001249 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001250 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001251 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001252
Marian Balakowiczc8779642008-03-12 10:12:37 +01001253 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001254 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001255
Stephen Warren712fbcf2011-10-18 11:11:49 +00001256 rd_data = image_get_data(rd_hdr);
1257 rd_len = image_get_data_size(rd_hdr);
1258 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001259 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001260#endif
Simon Glass73223f02016-02-22 22:55:43 -07001261#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001262 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001263 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001264 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001265 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001266 IH_TYPE_RAMDISK,
1267 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001268 FIT_LOAD_OPTIONAL_NON_ZERO,
1269 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001270 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001271 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001272
Simon Glassa51ec632013-05-16 13:53:22 +00001273 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001274 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001275 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001276 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001277#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001278#ifdef CONFIG_ANDROID_BOOT_IMAGE
1279 case IMAGE_FORMAT_ANDROID:
1280 android_image_get_ramdisk((void *)images->os.start,
1281 &rd_data, &rd_len);
1282 break;
1283#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001284 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001285#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001286 end = NULL;
1287 if (select)
1288 end = strchr(select, ':');
1289 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001290 rd_len = simple_strtoul(++end, NULL, 16);
1291 rd_data = rd_addr;
1292 } else
1293#endif
1294 {
1295 puts("Wrong Ramdisk Image Format\n");
1296 rd_data = rd_len = rd_load = 0;
1297 return 1;
1298 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001299 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001300 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001301 image_check_type(&images->legacy_hdr_os_copy,
1302 IH_TYPE_MULTI)) {
1303
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001304 /*
1305 * Now check if we have a legacy mult-component image,
1306 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001307 */
Simon Glass770605e2012-02-13 13:51:18 +00001308 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001309 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001310 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001311 (ulong)images->legacy_hdr_os);
1312
Stephen Warren712fbcf2011-10-18 11:11:49 +00001313 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001314 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001315 /*
1316 * no initrd image
1317 */
Simon Glass770605e2012-02-13 13:51:18 +00001318 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001319 rd_len = rd_data = 0;
1320 }
1321
1322 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001323 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001324 } else {
1325 *rd_start = rd_data;
1326 *rd_end = rd_data + rd_len;
1327 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001328 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001329 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001330
1331 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001332}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001333
John Rigbyfca43cc2010-10-13 13:57:35 -06001334#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001335/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001336 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001337 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001338 * @rd_data: ramdisk data start address
1339 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001340 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1341 * start address (after possible relocation)
1342 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1343 * end address (after possible relocation)
1344 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001345 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001346 * variable and if requested ramdisk data is moved to a specified location.
1347 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001348 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1349 * start/end addresses if ramdisk image start and len were provided,
1350 * otherwise set initrd_start and initrd_end set to zeros.
1351 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001352 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001353 * 0 - success
1354 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001355 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001356int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001357 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001358{
1359 char *s;
1360 ulong initrd_high;
1361 int initrd_copy_to_ram = 1;
1362
Simon Glass00caae62017-08-03 12:22:12 -06001363 s = env_get("initrd_high");
1364 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001365 /* a value of "no" or a similar string will act like 0,
1366 * turning the "load high" feature off. This is intentional.
1367 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001368 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001369 if (initrd_high == ~0)
1370 initrd_copy_to_ram = 0;
1371 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001372 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001373 }
1374
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001375
Stephen Warren712fbcf2011-10-18 11:11:49 +00001376 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001377 initrd_high, initrd_copy_to_ram);
1378
1379 if (rd_data) {
1380 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001381 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001382 *initrd_start = rd_data;
1383 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001384 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001385 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001386 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001387 *initrd_start = (ulong)lmb_alloc_base(lmb,
1388 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001389 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001390 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1391 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001392
Kumar Galae822d7f2008-02-27 21:51:49 -06001393 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001394 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001395 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001396 }
Simon Glass770605e2012-02-13 13:51:18 +00001397 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001398
1399 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001400 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001401 *initrd_start, *initrd_end);
1402
Stephen Warren712fbcf2011-10-18 11:11:49 +00001403 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001404 (void *)rd_data, rd_len, CHUNKSZ);
1405
Kumar Gala3b200112011-12-07 04:42:58 +00001406#ifdef CONFIG_MP
1407 /*
1408 * Ensure the image is flushed to memory to handle
1409 * AMP boot scenarios in which we might not be
1410 * HW cache coherent
1411 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001412 flush_cache((unsigned long)*initrd_start,
1413 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001414#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001415 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001416 }
1417 } else {
1418 *initrd_start = 0;
1419 *initrd_end = 0;
1420 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001421 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001422 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001423
Kumar Galae822d7f2008-02-27 21:51:49 -06001424 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001425
Kumar Galae822d7f2008-02-27 21:51:49 -06001426error:
1427 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001428}
John Rigbyfca43cc2010-10-13 13:57:35 -06001429#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001430
Simon Glass90268b82014-10-19 21:11:24 -06001431int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1432 ulong *setup_start, ulong *setup_len)
1433{
Simon Glass73223f02016-02-22 22:55:43 -07001434#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001435 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1436#else
1437 return -ENOENT;
1438#endif
1439}
1440
Simon Glass73223f02016-02-22 22:55:43 -07001441#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001442#if defined(CONFIG_FPGA)
Simon Glass09140112020-05-10 11:40:03 -06001443int boot_get_fpga(int argc, char *const argv[], bootm_headers_t *images,
Michal Simek62afc602016-05-17 14:03:50 +02001444 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1445{
1446 ulong tmp_img_addr, img_data, img_len;
1447 void *buf;
1448 int conf_noffset;
1449 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001450 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001451 int err;
1452 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001453
1454 /* Check to see if the images struct has a FIT configuration */
1455 if (!genimg_has_config(images)) {
1456 debug("## FIT configuration was not specified\n");
1457 return 0;
1458 }
1459
1460 /*
1461 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001462 */
1463 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001464 buf = map_sysmem(tmp_img_addr, 0);
1465 /*
1466 * Check image type. For FIT images get FIT node
1467 * and attempt to locate a generic binary.
1468 */
1469 switch (genimg_get_format(buf)) {
1470 case IMAGE_FORMAT_FIT:
1471 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1472
Simon Glassb02e4042016-10-02 17:59:28 -06001473 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1474 NULL);
1475 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001476 debug("## FPGA image is not specified\n");
1477 return 0;
1478 }
1479 fit_img_result = fit_image_load(images,
1480 tmp_img_addr,
1481 (const char **)&uname,
1482 &(images->fit_uname_cfg),
1483 arch,
1484 IH_TYPE_FPGA,
1485 BOOTSTAGE_ID_FPGA_INIT,
1486 FIT_LOAD_OPTIONAL_NON_ZERO,
1487 &img_data, &img_len);
1488
1489 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1490 uname, img_data, img_len);
1491
1492 if (fit_img_result < 0) {
1493 /* Something went wrong! */
1494 return fit_img_result;
1495 }
1496
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001497 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001498 name = "full";
1499 err = fpga_loadbitstream(devnum, (char *)img_data,
1500 img_len, BIT_FULL);
1501 if (err)
1502 err = fpga_load(devnum, (const void *)img_data,
1503 img_len, BIT_FULL);
1504 } else {
1505 name = "partial";
1506 err = fpga_loadbitstream(devnum, (char *)img_data,
1507 img_len, BIT_PARTIAL);
1508 if (err)
1509 err = fpga_load(devnum, (const void *)img_data,
1510 img_len, BIT_PARTIAL);
1511 }
1512
Michal Simek62afc602016-05-17 14:03:50 +02001513 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001514 return err;
1515
1516 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001517 break;
1518 default:
1519 printf("The given image format is not supported (corrupt?)\n");
1520 return 1;
1521 }
1522
1523 return 0;
1524}
1525#endif
1526
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001527static void fit_loadable_process(uint8_t img_type,
1528 ulong img_data,
1529 ulong img_len)
1530{
1531 int i;
1532 const unsigned int count =
1533 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1534 struct fit_loadable_tbl *fit_loadable_handler =
1535 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1536 /* For each loadable handler */
1537 for (i = 0; i < count; i++, fit_loadable_handler++)
1538 /* matching this type */
1539 if (fit_loadable_handler->type == img_type)
1540 /* call that handler with this image data */
1541 fit_loadable_handler->handler(img_data, img_len);
1542}
1543
Simon Glass09140112020-05-10 11:40:03 -06001544int boot_get_loadable(int argc, char *const argv[], bootm_headers_t *images,
1545 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
Karl Apsite84a07db2015-05-21 09:52:48 -04001546{
1547 /*
1548 * These variables are used to hold the current image location
1549 * in system memory.
1550 */
1551 ulong tmp_img_addr;
1552 /*
1553 * These two variables are requirements for fit_image_load, but
1554 * their values are not used
1555 */
1556 ulong img_data, img_len;
1557 void *buf;
1558 int loadables_index;
1559 int conf_noffset;
1560 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001561 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001562 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001563
1564 /* Check to see if the images struct has a FIT configuration */
1565 if (!genimg_has_config(images)) {
1566 debug("## FIT configuration was not specified\n");
1567 return 0;
1568 }
1569
1570 /*
1571 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001572 */
1573 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001574 buf = map_sysmem(tmp_img_addr, 0);
1575 /*
1576 * Check image type. For FIT images get FIT node
1577 * and attempt to locate a generic binary.
1578 */
1579 switch (genimg_get_format(buf)) {
1580 case IMAGE_FORMAT_FIT:
1581 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1582
1583 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001584 uname = fdt_stringlist_get(buf, conf_noffset,
1585 FIT_LOADABLE_PROP, loadables_index,
1586 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001587 loadables_index++)
1588 {
1589 fit_img_result = fit_image_load(images,
1590 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001591 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001592 &(images->fit_uname_cfg), arch,
1593 IH_TYPE_LOADABLE,
1594 BOOTSTAGE_ID_FIT_LOADABLE_START,
1595 FIT_LOAD_OPTIONAL_NON_ZERO,
1596 &img_data, &img_len);
1597 if (fit_img_result < 0) {
1598 /* Something went wrong! */
1599 return fit_img_result;
1600 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001601
1602 fit_img_result = fit_image_get_node(buf, uname);
1603 if (fit_img_result < 0) {
1604 /* Something went wrong! */
1605 return fit_img_result;
1606 }
1607 fit_img_result = fit_image_get_type(buf,
1608 fit_img_result,
1609 &img_type);
1610 if (fit_img_result < 0) {
1611 /* Something went wrong! */
1612 return fit_img_result;
1613 }
1614
1615 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001616 }
1617 break;
1618 default:
1619 printf("The given image format is not supported (corrupt?)\n");
1620 return 1;
1621 }
1622
1623 return 0;
1624}
1625#endif
1626
John Rigbyfca43cc2010-10-13 13:57:35 -06001627#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001628/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001629 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001630 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001631 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1632 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1633 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001634 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301635 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001636 * variable is present its contents is copied to allocated kernel
1637 * command line.
1638 *
1639 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001640 * 0 - success
1641 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001642 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001643int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001644{
1645 char *cmdline;
1646 char *s;
1647
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001648 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001649 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001650
1651 if (cmdline == NULL)
1652 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001653
Simon Glass00caae62017-08-03 12:22:12 -06001654 s = env_get("bootargs");
1655 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001656 s = "";
1657
1658 strcpy(cmdline, s);
1659
1660 *cmd_start = (ulong) & cmdline[0];
1661 *cmd_end = *cmd_start + strlen(cmdline);
1662
Stephen Warren712fbcf2011-10-18 11:11:49 +00001663 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001664
Kumar Galae822d7f2008-02-27 21:51:49 -06001665 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001666}
John Rigbyfca43cc2010-10-13 13:57:35 -06001667#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001668
John Rigbyfca43cc2010-10-13 13:57:35 -06001669#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001670/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001671 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001672 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001673 * @kbd: double pointer to board info data
1674 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001675 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001676 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001677 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001678 *
1679 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001680 * 0 - success
1681 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001682 */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001683int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001684{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001685 *kbd = (struct bd_info *)(ulong)lmb_alloc_base(lmb,
1686 sizeof(struct bd_info),
1687 0xf,
1688 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001689 if (*kbd == NULL)
1690 return -1;
1691
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001692 **kbd = *(gd->bd);
1693
Stephen Warren712fbcf2011-10-18 11:11:49 +00001694 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001695
1696#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1697 do_bdinfo(NULL, 0, 0, NULL);
1698#endif
1699
Kumar Galae822d7f2008-02-27 21:51:49 -06001700 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001701}
John Rigbyfca43cc2010-10-13 13:57:35 -06001702#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001703
1704#ifdef CONFIG_LMB
1705int image_setup_linux(bootm_headers_t *images)
1706{
1707 ulong of_size = images->ft_len;
1708 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001709 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001710 int ret;
1711
1712 if (IMAGE_ENABLE_OF_LIBFDT)
1713 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1714
1715 if (IMAGE_BOOT_GET_CMDLINE) {
1716 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1717 &images->cmdline_end);
1718 if (ret) {
1719 puts("ERROR with allocation of cmdline\n");
1720 return ret;
1721 }
1722 }
Simon Glass13d06982013-05-08 08:06:01 +00001723
1724 if (IMAGE_ENABLE_OF_LIBFDT) {
1725 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1726 if (ret)
1727 return ret;
1728 }
1729
1730 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1731 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1732 if (ret)
1733 return ret;
1734 }
1735
1736 return 0;
1737}
1738#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001739#endif /* !USE_HOSTCC */