blob: a6500f5f5c7e3902953567fc996b9217a1c0b650 [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
Simon Glass401d1c42020-10-30 21:38:53 -060039#include <asm/global_data.h>
Andy Fleming20a14a42008-04-02 16:19:07 -050040#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020041#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090042#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000043#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010044
Julius Werner20908542019-07-24 19:37:54 -070045#include <bzlib.h>
46#include <linux/lzo.h>
47#include <lzma/LzmaTypes.h>
48#include <lzma/LzmaDec.h>
49#include <lzma/LzmaTools.h>
Robert Marko26073f92020-04-25 19:37:21 +020050#include <linux/zstd.h>
Julius Werner20908542019-07-24 19:37:54 -070051
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010052#ifdef CONFIG_CMD_BDI
Simon Glass09140112020-05-10 11:40:03 -060053extern int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
54 char *const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010055#endif
56
57DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010058
Tom Rinic76c93a2019-05-23 07:14:07 -040059#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000060static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010061 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020062#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010063#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010064#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050065#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010066#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010067#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020068
69#ifndef __maybe_unused
70# define __maybe_unused /* unimplemented */
71#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010072#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010073
Simon Glass0ccff502013-02-24 17:33:25 +000074#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000075#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000076
Simon Glass13d06982013-05-08 08:06:01 +000077#ifndef CONFIG_SYS_BARGSIZE
78#define CONFIG_SYS_BARGSIZE 512
79#endif
80
Mike Frysinger7edb1862010-10-20 07:17:39 -040081static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060082 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010083 { IH_ARCH_ALPHA, "alpha", "Alpha", },
84 { IH_ARCH_ARM, "arm", "ARM", },
85 { IH_ARCH_I386, "x86", "Intel x86", },
86 { IH_ARCH_IA64, "ia64", "IA64", },
87 { IH_ARCH_M68K, "m68k", "M68K", },
88 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
89 { IH_ARCH_MIPS, "mips", "MIPS", },
90 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010091 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070092 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010093 { IH_ARCH_PPC, "ppc", "PowerPC", },
94 { IH_ARCH_S390, "s390", "IBM S390", },
95 { IH_ARCH_SH, "sh", "SuperH", },
96 { IH_ARCH_SPARC, "sparc", "SPARC", },
97 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
98 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
99 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +0000100 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +0000101 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +0000102 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +0800103 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +0400104 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -0600105 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300106 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +0800107 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100108 { -1, "", "", },
109};
110
Mike Frysinger7edb1862010-10-20 07:17:39 -0400111static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600112 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200113 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100114 { IH_OS_LINUX, "linux", "Linux", },
115#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
116 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
117#endif
118 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200119 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000120 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100121 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000122 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100123 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800124 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100125#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
126 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100127#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500128#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
129 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
130#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100131#ifdef USE_HOSTCC
132 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
133 { IH_OS_DELL, "dell", "Dell", },
134 { IH_OS_ESIX, "esix", "Esix", },
135 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
136 { IH_OS_IRIX, "irix", "Irix", },
137 { IH_OS_NCR, "ncr", "NCR", },
138 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
139 { IH_OS_PSOS, "psos", "pSOS", },
140 { IH_OS_SCO, "sco", "SCO", },
141 { IH_OS_SOLARIS, "solaris", "Solaris", },
142 { IH_OS_SVR4, "svr4", "SVR4", },
143#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100144#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
145 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
146#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200147 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200148 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100149
Marian Balakowicz570abb02008-02-29 15:59:59 +0100150 { -1, "", "", },
151};
152
Mike Frysinger7edb1862010-10-20 07:17:39 -0400153static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000154 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100155 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
156 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400157 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400158 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100159 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700160 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000161 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
162 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000163 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000164 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600165 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100166 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000167 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000168 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100169 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
170 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200171 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
172 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100173 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000174 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200175 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200176 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600177 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200178 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600179 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600180 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600181 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200182 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000183 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200184 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200185 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200186 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600187 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100188 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500189 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100190 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800191 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200192 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywara6d295092018-12-20 01:15:18 +0000193 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100194 { -1, "", "", },
195};
196
Mike Frysinger7edb1862010-10-20 07:17:39 -0400197static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100198 { IH_COMP_NONE, "none", "uncompressed", },
199 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
200 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200201 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100202 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700203 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Marko26073f92020-04-25 19:37:21 +0200204 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100205 { -1, "", "", },
206};
207
Simon Glass56d7ab72016-06-30 10:52:14 -0600208struct table_info {
209 const char *desc;
210 int count;
211 const table_entry_t *table;
212};
213
Atish Patra155d6a32020-03-05 16:24:22 -0800214static const struct comp_magic_map image_comp[] = {
215 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
216 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
217 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
218 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
219 { IH_COMP_NONE, "none", {}, },
220};
221
Simon Glass56d7ab72016-06-30 10:52:14 -0600222static const struct table_info table_info[IH_COUNT] = {
223 { "architecture", IH_ARCH_COUNT, uimage_arch },
224 { "compression", IH_COMP_COUNT, uimage_comp },
225 { "operating system", IH_OS_COUNT, uimage_os },
226 { "image type", IH_TYPE_COUNT, uimage_type },
227};
228
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100229/*****************************************************************************/
230/* Legacy format routines */
231/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000232int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100233{
234 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100236 image_header_t header;
237
238 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000239 memmove(&header, (char *)hdr, image_get_header_size());
240 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100241
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100243
Stephen Warren712fbcf2011-10-18 11:11:49 +0000244 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100245}
246
Stephen Warren712fbcf2011-10-18 11:11:49 +0000247int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100248{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000249 ulong data = image_get_data(hdr);
250 ulong len = image_get_data_size(hdr);
251 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100252
Stephen Warren712fbcf2011-10-18 11:11:49 +0000253 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100254}
255
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100256/**
257 * image_multi_count - get component (sub-image) count
258 * @hdr: pointer to the header of the multi component image
259 *
260 * image_multi_count() returns number of components in a multi
261 * component image.
262 *
263 * Note: no checking of the image type is done, caller must pass
264 * a valid multi component image.
265 *
266 * returns:
267 * number of components
268 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000269ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100270{
271 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100272 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100273
274 /* get start of the image payload, which in case of multi
275 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000276 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100277
278 /* count non empty slots */
279 for (i = 0; size[i]; ++i)
280 count++;
281
282 return count;
283}
284
285/**
286 * image_multi_getimg - get component data address and size
287 * @hdr: pointer to the header of the multi component image
288 * @idx: index of the requested component
289 * @data: pointer to a ulong variable, will hold component data address
290 * @len: pointer to a ulong variable, will hold component size
291 *
292 * image_multi_getimg() returns size and data address for the requested
293 * component in a multi component image.
294 *
295 * Note: no checking of the image type is done, caller must pass
296 * a valid multi component image.
297 *
298 * returns:
299 * data address and size of the component, if idx is valid
300 * 0 in data and len, if idx is out of range
301 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000302void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100303 ulong *data, ulong *len)
304{
305 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100306 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700307 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100308
309 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100311
312 /* get start of the image payload, which in case of multi
313 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000314 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100315
316 /* get address of the proper component data start, which means
317 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000318 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100319
320 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000321 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100322 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100323
324 /* go over all indices preceding requested component idx */
325 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700326 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000327 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100328 }
329
330 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700331 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100332 } else {
333 *len = 0;
334 *data = 0;
335 }
336}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100337
Stephen Warren712fbcf2011-10-18 11:11:49 +0000338static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100339{
Heiko Schocher80402f32015-06-29 09:10:46 +0200340 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100341
Stephen Warren712fbcf2011-10-18 11:11:49 +0000342 os = genimg_get_os_name(image_get_os(hdr));
343 arch = genimg_get_arch_name(image_get_arch(hdr));
344 type = genimg_get_type_name(image_get_type(hdr));
345 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100346
Stephen Warren712fbcf2011-10-18 11:11:49 +0000347 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100348}
349
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100350/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200351 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200352 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100353 * @p: pointer to prefix string
354 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200355 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100356 * The routine prints out all header fields followed by the size/offset data
357 * for MULTI/SCRIPT images.
358 *
359 * returns:
360 * no returned results
361 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100363{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200364 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200365 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200366
Simon Glass1fe7d932013-05-08 08:05:58 +0000367 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000368 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000369 if (IMAGE_ENABLE_TIMESTAMP) {
370 printf("%sCreated: ", p);
371 genimg_print_time((time_t)image_get_time(hdr));
372 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000373 printf("%sImage Type: ", p);
374 image_print_type(hdr);
375 printf("%sData Size: ", p);
376 genimg_print_size(image_get_data_size(hdr));
377 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
378 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100379
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 if (image_check_type(hdr, IH_TYPE_MULTI) ||
381 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100382 int i;
383 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000384 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100385
Stephen Warren712fbcf2011-10-18 11:11:49 +0000386 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100387 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000388 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100389
Stephen Warren712fbcf2011-10-18 11:11:49 +0000390 printf("%s Image %d: ", p, i);
391 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100392
Stephen Warren712fbcf2011-10-18 11:11:49 +0000393 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100394 /*
395 * the user may need to know offsets
396 * if planning to do something with
397 * multiple files
398 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000399 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100400 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100401 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100402 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
403 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000404 image_get_load(hdr) - image_get_header_size(),
405 (int)(image_get_size(hdr) + image_get_header_size()
406 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100407 }
408}
409
Julius Werner20908542019-07-24 19:37:54 -0700410/**
411 * print_decomp_msg() - Print a suitable decompression/loading message
412 *
413 * @type: OS type (IH_OS_...)
414 * @comp_type: Compression type being used (IH_COMP_...)
415 * @is_xip: true if the load address matches the image start
416 */
417static void print_decomp_msg(int comp_type, int type, bool is_xip)
418{
419 const char *name = genimg_get_type_name(type);
420
421 if (comp_type == IH_COMP_NONE)
422 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
423 else
424 printf(" Uncompressing %s\n", name);
425}
426
Atish Patra155d6a32020-03-05 16:24:22 -0800427int image_decomp_type(const unsigned char *buf, ulong len)
428{
429 const struct comp_magic_map *cmagic = image_comp;
430
431 if (len < 2)
432 return -EINVAL;
433
434 for (; cmagic->comp_id > 0; cmagic++) {
435 if (!memcmp(buf, cmagic->magic, 2))
436 break;
437 }
438
439 return cmagic->comp_id;
440}
441
Julius Werner20908542019-07-24 19:37:54 -0700442int image_decomp(int comp, ulong load, ulong image_start, int type,
443 void *load_buf, void *image_buf, ulong image_len,
444 uint unc_len, ulong *load_end)
445{
446 int ret = 0;
447
448 *load_end = load;
449 print_decomp_msg(comp, type, load == image_start);
450
451 /*
452 * Load the image to the right place, decompressing if needed. After
453 * this, image_len will be set to the number of uncompressed bytes
454 * loaded, ret will be non-zero on error.
455 */
456 switch (comp) {
457 case IH_COMP_NONE:
458 if (load == image_start)
459 break;
460 if (image_len <= unc_len)
461 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
462 else
463 ret = -ENOSPC;
464 break;
465#ifdef CONFIG_GZIP
466 case IH_COMP_GZIP: {
467 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
468 break;
469 }
470#endif /* CONFIG_GZIP */
471#ifdef CONFIG_BZIP2
472 case IH_COMP_BZIP2: {
473 uint size = unc_len;
474
475 /*
476 * If we've got less than 4 MB of malloc() space,
477 * use slower decompression algorithm which requires
478 * at most 2300 KB of memory.
479 */
480 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
481 image_buf, image_len,
482 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
483 image_len = size;
484 break;
485 }
486#endif /* CONFIG_BZIP2 */
487#ifdef CONFIG_LZMA
488 case IH_COMP_LZMA: {
489 SizeT lzma_len = unc_len;
490
491 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
492 image_buf, image_len);
493 image_len = lzma_len;
494 break;
495 }
496#endif /* CONFIG_LZMA */
497#ifdef CONFIG_LZO
498 case IH_COMP_LZO: {
499 size_t size = unc_len;
500
501 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
502 image_len = size;
503 break;
504 }
505#endif /* CONFIG_LZO */
506#ifdef CONFIG_LZ4
507 case IH_COMP_LZ4: {
508 size_t size = unc_len;
509
510 ret = ulz4fn(image_buf, image_len, load_buf, &size);
511 image_len = size;
512 break;
513 }
514#endif /* CONFIG_LZ4 */
Robert Marko26073f92020-04-25 19:37:21 +0200515#ifdef CONFIG_ZSTD
516 case IH_COMP_ZSTD: {
517 size_t size = unc_len;
518 ZSTD_DStream *dstream;
519 ZSTD_inBuffer in_buf;
520 ZSTD_outBuffer out_buf;
521 void *workspace;
522 size_t wsize;
523
524 wsize = ZSTD_DStreamWorkspaceBound(image_len);
525 workspace = malloc(wsize);
526 if (!workspace) {
527 debug("%s: cannot allocate workspace of size %zu\n", __func__,
528 wsize);
529 return -1;
530 }
531
532 dstream = ZSTD_initDStream(image_len, workspace, wsize);
533 if (!dstream) {
534 printf("%s: ZSTD_initDStream failed\n", __func__);
535 return ZSTD_getErrorCode(ret);
536 }
537
538 in_buf.src = image_buf;
539 in_buf.pos = 0;
540 in_buf.size = image_len;
541
542 out_buf.dst = load_buf;
543 out_buf.pos = 0;
544 out_buf.size = size;
545
546 while (1) {
547 size_t ret;
548
549 ret = ZSTD_decompressStream(dstream, &out_buf, &in_buf);
550 if (ZSTD_isError(ret)) {
551 printf("%s: ZSTD_decompressStream error %d\n", __func__,
552 ZSTD_getErrorCode(ret));
553 return ZSTD_getErrorCode(ret);
554 }
555
556 if (in_buf.pos >= image_len || !ret)
557 break;
558 }
559
560 image_len = out_buf.pos;
561
562 break;
563 }
564#endif /* CONFIG_ZSTD */
Julius Werner20908542019-07-24 19:37:54 -0700565 default:
566 printf("Unimplemented compression type %d\n", comp);
567 return -ENOSYS;
568 }
569
570 *load_end = load + image_len;
571
572 return ret;
573}
574
Marian Balakowicz570abb02008-02-29 15:59:59 +0100575
576#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400577#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100578/**
579 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100580 * @rd_addr: ramdisk image start address
581 * @arch: expected ramdisk architecture
582 * @verify: checksum verification flag
583 *
584 * image_get_ramdisk() returns a pointer to the verified ramdisk image
585 * header. Routine receives image start address and expected architecture
586 * flag. Verification done covers data and header integrity and os/type/arch
587 * fields checking.
588 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100589 * returns:
590 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600591 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100592 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000593static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100594 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100595{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200596 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100597
Stephen Warren712fbcf2011-10-18 11:11:49 +0000598 if (!image_check_magic(rd_hdr)) {
599 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000600 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600601 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100602 }
603
Stephen Warren712fbcf2011-10-18 11:11:49 +0000604 if (!image_check_hcrc(rd_hdr)) {
605 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000606 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600607 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100608 }
609
Simon Glass770605e2012-02-13 13:51:18 +0000610 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000611 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100612
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100613 if (verify) {
614 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000615 if (!image_check_dcrc(rd_hdr)) {
616 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000617 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600618 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100619 }
620 puts("OK\n");
621 }
622
Simon Glass770605e2012-02-13 13:51:18 +0000623 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100624
Stephen Warren712fbcf2011-10-18 11:11:49 +0000625 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
626 !image_check_arch(rd_hdr, arch) ||
627 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
628 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100629 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000630 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600631 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100632 }
633
634 return rd_hdr;
635}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200636#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100637#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100638
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100639/*****************************************************************************/
640/* Shared dual-format routines */
641/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100642#ifndef USE_HOSTCC
Simon Glassbb872dd2019-12-28 10:45:02 -0700643ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
644ulong image_save_addr; /* Default Save Address */
645ulong image_save_size; /* Default Save Size (in bytes) */
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600646
647static int on_loadaddr(const char *name, const char *value, enum env_op op,
648 int flags)
649{
650 switch (op) {
651 case env_op_create:
652 case env_op_overwrite:
Simon Glassbb872dd2019-12-28 10:45:02 -0700653 image_load_addr = simple_strtoul(value, NULL, 16);
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600654 break;
655 default:
656 break;
657 }
658
659 return 0;
660}
661U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
662
Simon Glass723806c2017-08-03 12:22:15 -0600663ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100664{
Simon Glass00caae62017-08-03 12:22:12 -0600665 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100666 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000667 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100668 return tmp;
669 }
670
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200671#if defined(CONFIG_SYS_SDRAM_BASE)
672 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200673#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100674 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100675#else
676 return 0;
677#endif
678}
679
Simon Glass723806c2017-08-03 12:22:15 -0600680phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100681{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900682 phys_size_t tmp, size;
683 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600684 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100685 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000686 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100687 return tmp;
688 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900689
Stefan Roese4963f632020-08-12 12:57:18 +0200690 start = gd->ram_base;
691 size = gd->ram_size;
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900692
Baruch Siach7f98b4e2020-08-24 20:14:05 +0300693 if (start + size > gd->ram_top)
694 size = gd->ram_top - start;
695
Simon Glass00caae62017-08-03 12:22:12 -0600696 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500697 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500699 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900700 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500701
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900702 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100703}
704
Simon Glass723806c2017-08-03 12:22:15 -0600705phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000706{
707 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600708 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000709 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000710 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000711 return tmp;
712 }
713
714#if defined(CONFIG_SYS_BOOTMAPSZ)
715 return CONFIG_SYS_BOOTMAPSZ;
716#else
Simon Glass723806c2017-08-03 12:22:15 -0600717 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000718#endif
719}
720
Stephen Warren712fbcf2011-10-18 11:11:49 +0000721void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100722{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400723 if (to == from)
724 return;
725
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100726#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800727 if (to > from) {
728 from += len;
729 to += len;
730 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100731 while (len > 0) {
732 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000733 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800734 if (to > from) {
735 to -= tail;
736 from -= tail;
737 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000738 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800739 if (to < from) {
740 to += tail;
741 from += tail;
742 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100743 len -= tail;
744 }
745#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000746 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100747#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
748}
Julius Werner20908542019-07-24 19:37:54 -0700749#else /* USE_HOSTCC */
750void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
751{
752 memmove(to, from, len);
753}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100754#endif /* !USE_HOSTCC */
755
Stephen Warren712fbcf2011-10-18 11:11:49 +0000756void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100757{
758#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000759 printf("%d Bytes = ", size);
760 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100761#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100762 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100763 size, (double)size / 1.024e3,
764 (double)size / 1.048576e6);
765#endif
766}
767
Simon Glass859e92b2013-05-07 06:11:51 +0000768#if IMAGE_ENABLE_TIMESTAMP
769void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100770{
771#ifndef USE_HOSTCC
772 struct rtc_time tm;
773
Simon Glass9f9276c2015-04-20 12:37:18 -0600774 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000775 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100776 tm.tm_year, tm.tm_mon, tm.tm_mday,
777 tm.tm_hour, tm.tm_min, tm.tm_sec);
778#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000779 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100780#endif
781}
Simon Glass859e92b2013-05-07 06:11:51 +0000782#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100783
Simon Glass5b9d44d2015-06-23 15:38:25 -0600784const table_entry_t *get_table_entry(const table_entry_t *table, int id)
785{
786 for (; table->id >= 0; ++table) {
787 if (table->id == id)
788 return table;
789 }
790 return NULL;
791}
792
Simon Glass14262202016-06-30 10:52:16 -0600793static const char *unknown_msg(enum ih_category category)
794{
Simon Glassae3de0d2016-10-31 10:21:09 -0600795 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600796 static char msg[30];
797
Simon Glassae3de0d2016-10-31 10:21:09 -0600798 strcpy(msg, unknown_str);
799 strncat(msg, table_info[category].desc,
800 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600801
802 return msg;
803}
804
805/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900806 * genimg_get_cat_name - translate entry id to long name
Simon Glass14262202016-06-30 10:52:16 -0600807 * @category: category to look up (enum ih_category)
808 * @id: entry id to be translated
809 *
810 * This will scan the translation table trying to find the entry that matches
811 * the given id.
812 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900813 * @return long entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600814 */
815const char *genimg_get_cat_name(enum ih_category category, uint id)
816{
817 const table_entry_t *entry;
818
819 entry = get_table_entry(table_info[category].table, id);
820 if (!entry)
821 return unknown_msg(category);
822#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
823 return entry->lname;
824#else
825 return entry->lname + gd->reloc_off;
826#endif
827}
828
829/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900830 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass14262202016-06-30 10:52:16 -0600831 * @category: category to look up (enum ih_category)
832 * @id: entry id to be translated
833 *
834 * This will scan the translation table trying to find the entry that matches
835 * the given id.
836 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900837 * @return short entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600838 */
839const char *genimg_get_cat_short_name(enum ih_category category, uint id)
840{
841 const table_entry_t *entry;
842
843 entry = get_table_entry(table_info[category].table, id);
844 if (!entry)
845 return unknown_msg(category);
846#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
847 return entry->sname;
848#else
849 return entry->sname + gd->reloc_off;
850#endif
851}
852
853int genimg_get_cat_count(enum ih_category category)
854{
855 return table_info[category].count;
856}
857
858const char *genimg_get_cat_desc(enum ih_category category)
859{
860 return table_info[category].desc;
861}
862
Marian Balakowicz570abb02008-02-29 15:59:59 +0100863/**
Naoki Hayama02d41b02020-10-07 11:21:25 +0900864 * genimg_cat_has_id - check whether category has entry id
865 * @category: category to look up (enum ih_category)
866 * @id: entry id to be checked
867 *
868 * This will scan the translation table trying to find the entry that matches
869 * the given id.
870 *
871 * @return true if category has entry id; false if not
872 */
873bool genimg_cat_has_id(enum ih_category category, uint id)
874{
875 if (get_table_entry(table_info[category].table, id))
876 return true;
877
878 return false;
879}
880
881/**
Marian Balakowicz570abb02008-02-29 15:59:59 +0100882 * get_table_entry_name - translate entry id to long name
883 * @table: pointer to a translation table for entries of a specific type
884 * @msg: message to be returned when translation fails
885 * @id: entry id to be translated
886 *
887 * get_table_entry_name() will go over translation table trying to find
888 * entry that matches given id. If matching entry is found, its long
889 * name is returned to the caller.
890 *
891 * returns:
892 * long entry name if translation succeeds
893 * msg otherwise
894 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400895char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100896{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600897 table = get_table_entry(table, id);
898 if (!table)
899 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200900#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600901 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500902#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600903 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500904#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100905}
906
Stephen Warren712fbcf2011-10-18 11:11:49 +0000907const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100908{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000909 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100910}
911
Stephen Warren712fbcf2011-10-18 11:11:49 +0000912const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100913{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000914 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
915 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100916}
917
Stephen Warren712fbcf2011-10-18 11:11:49 +0000918const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100919{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000920 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100921}
922
Naoki Hayama898a0842020-10-07 11:22:24 +0900923const char *genimg_get_comp_name(uint8_t comp)
924{
925 return (get_table_entry_name(uimage_comp, "Unknown Compression",
926 comp));
927}
928
Simon Glasscef2e512016-02-22 22:55:50 -0700929static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600930{
Simon Glasscef2e512016-02-22 22:55:50 -0700931 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600932 if (!table)
933 return "unknown";
934#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
935 return table->sname;
936#else
937 return table->sname + gd->reloc_off;
938#endif
939}
940
Simon Glasscef2e512016-02-22 22:55:50 -0700941const char *genimg_get_type_short_name(uint8_t type)
942{
943 return genimg_get_short_name(uimage_type, type);
944}
945
Simon Glasscef2e512016-02-22 22:55:50 -0700946const char *genimg_get_comp_short_name(uint8_t comp)
947{
948 return genimg_get_short_name(uimage_comp, comp);
949}
950
951const char *genimg_get_os_short_name(uint8_t os)
952{
953 return genimg_get_short_name(uimage_os, os);
954}
955
956const char *genimg_get_arch_short_name(uint8_t arch)
957{
958 return genimg_get_short_name(uimage_arch, arch);
959}
960
Marian Balakowicz570abb02008-02-29 15:59:59 +0100961/**
962 * get_table_entry_id - translate short entry name to id
963 * @table: pointer to a translation table for entries of a specific type
964 * @table_name: to be used in case of error
965 * @name: entry short name to be translated
966 *
967 * get_table_entry_id() will go over translation table trying to find
968 * entry that matches given short name. If matching entry is found,
969 * its id returned to the caller.
970 *
971 * returns:
972 * entry id if translation succeeds
973 * -1 otherwise
974 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400975int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100976 const char *table_name, const char *name)
977{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400978 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100979
980 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200981#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600982 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200983#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600984 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500985#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100986 return (t->id);
987 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000988 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600989
990 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100991}
992
Stephen Warren712fbcf2011-10-18 11:11:49 +0000993int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100994{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000995 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100996}
997
Stephen Warren712fbcf2011-10-18 11:11:49 +0000998int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100999{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001000 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001001}
1002
Stephen Warren712fbcf2011-10-18 11:11:49 +00001003int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001004{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001005 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001006}
1007
Stephen Warren712fbcf2011-10-18 11:11:49 +00001008int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +01001009{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001010 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +01001011}
1012
1013#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001014/**
Bryan Wu6c454fe2014-08-15 16:51:38 -07001015 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
1016 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -07001017 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -07001018 * @fit_uname_config: double pointer to a char, will hold pointer to a
1019 * configuration unit name
1020 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
1021 * name
Bryan Wu0f641402014-07-31 17:39:58 -07001022 *
Bryan Wu6c454fe2014-08-15 16:51:38 -07001023 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -07001024 * which is normally the first argv of bootm/bootz
1025 *
1026 * returns:
1027 * kernel start address
1028 */
Bryan Wu6c454fe2014-08-15 16:51:38 -07001029ulong genimg_get_kernel_addr_fit(char * const img_addr,
1030 const char **fit_uname_config,
1031 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -07001032{
Bryan Wu0f641402014-07-31 17:39:58 -07001033 ulong kernel_addr;
1034
1035 /* find out kernel image address */
1036 if (!img_addr) {
Simon Glassbb872dd2019-12-28 10:45:02 -07001037 kernel_addr = image_load_addr;
Bryan Wu0f641402014-07-31 17:39:58 -07001038 debug("* kernel: default image load address = 0x%08lx\n",
Simon Glassbb872dd2019-12-28 10:45:02 -07001039 image_load_addr);
Simon Glass73223f02016-02-22 22:55:43 -07001040#if CONFIG_IS_ENABLED(FIT)
Simon Glassbb872dd2019-12-28 10:45:02 -07001041 } else if (fit_parse_conf(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001042 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001043 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001044 *fit_uname_config, kernel_addr);
Simon Glassbb872dd2019-12-28 10:45:02 -07001045 } else if (fit_parse_subimage(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001046 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001047 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001048 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -07001049#endif
1050 } else {
1051 kernel_addr = simple_strtoul(img_addr, NULL, 16);
1052 debug("* kernel: cmdline image address = 0x%08lx\n",
1053 kernel_addr);
1054 }
1055
1056 return kernel_addr;
1057}
1058
1059/**
Bryan Wu6c454fe2014-08-15 16:51:38 -07001060 * genimg_get_kernel_addr() is the simple version of
1061 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
1062 */
1063ulong genimg_get_kernel_addr(char * const img_addr)
1064{
1065 const char *fit_uname_config = NULL;
1066 const char *fit_uname_kernel = NULL;
1067
1068 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
1069 &fit_uname_kernel);
1070}
1071
1072/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001073 * genimg_get_format - get image format type
1074 * @img_addr: image start address
1075 *
1076 * genimg_get_format() checks whether provided address points to a valid
1077 * legacy or FIT image.
1078 *
1079 * New uImage format and FDT blob are based on a libfdt. FDT blob
1080 * may be passed directly or embedded in a FIT image. In both situations
1081 * genimg_get_format() must be able to dectect libfdt header.
1082 *
1083 * returns:
1084 * image format type or IMAGE_FORMAT_INVALID if no image is present
1085 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001086int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001087{
Tom Rinic76c93a2019-05-23 07:14:07 -04001088#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001089 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001090
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001091 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001092 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +02001093 return IMAGE_FORMAT_LEGACY;
1094#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -07001095#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +02001096 if (fdt_check_header(img_addr) == 0)
1097 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001098#endif
1099#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001100 if (android_image_check_header(img_addr) == 0)
1101 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001102#endif
1103
Heiko Schocher21d29f72014-05-28 11:33:33 +02001104 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001105}
1106
1107/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001108 * fit_has_config - check if there is a valid FIT configuration
1109 * @images: pointer to the bootm command headers structure
1110 *
1111 * fit_has_config() checks if there is a FIT configuration in use
1112 * (if FTI support is present).
1113 *
1114 * returns:
1115 * 0, no FIT support or no configuration found
1116 * 1, configuration found
1117 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001118int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001119{
Simon Glass73223f02016-02-22 22:55:43 -07001120#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001121 if (images->fit_uname_cfg)
1122 return 1;
1123#endif
1124 return 0;
1125}
1126
1127/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001128 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001129 * @argc: command argument count
1130 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001131 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001132 * @arch: expected ramdisk architecture
1133 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1134 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1135 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001136 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001137 * Curently supported are the following ramdisk sources:
1138 * - multicomponent kernel/ramdisk image,
1139 * - commandline provided address of decicated ramdisk image.
1140 *
1141 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001142 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001143 * rd_start and rd_end are set to ramdisk start/end addresses if
1144 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001145 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001146 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001147 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001148 */
Simon Glass09140112020-05-10 11:40:03 -06001149int boot_get_ramdisk(int argc, char *const argv[], bootm_headers_t *images,
1150 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001151{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001152 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001153 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001154#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001155 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001156#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001157 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001158#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001159 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001160#endif
Simon Glass73223f02016-02-22 22:55:43 -07001161#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001162 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001163 const char *fit_uname_ramdisk = NULL;
1164 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001165 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001166#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001167 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001168
Marian Balakowiczc8779642008-03-12 10:12:37 +01001169 *rd_start = 0;
1170 *rd_end = 0;
1171
Tom Rini1fec3c52015-08-27 15:42:41 -04001172#ifdef CONFIG_ANDROID_BOOT_IMAGE
1173 /*
1174 * Look for an Android boot image.
1175 */
1176 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001177 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001178 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001179#endif
1180
Simon Glass983c72f2013-06-11 11:14:46 -07001181 if (argc >= 2)
1182 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001183
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001184 /*
1185 * Look for a '-' which indicates to ignore the
1186 * ramdisk argument
1187 */
Simon Glass983c72f2013-06-11 11:14:46 -07001188 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001189 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001190 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001191 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001192#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001193 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001194 /*
1195 * If the init ramdisk comes from the FIT image and
1196 * the FIT image address is omitted in the command
1197 * line argument, try to use os FIT image address or
1198 * default load address.
1199 */
1200 if (images->fit_uname_os)
1201 default_addr = (ulong)images->fit_hdr_os;
1202 else
Simon Glassbb872dd2019-12-28 10:45:02 -07001203 default_addr = image_load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001204
Simon Glass983c72f2013-06-11 11:14:46 -07001205 if (fit_parse_conf(select, default_addr,
1206 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001207 debug("* ramdisk: config '%s' from image at "
1208 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001209 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001210 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001211 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001212 debug("* ramdisk: subimage '%s' from image at "
1213 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001214 fit_uname_ramdisk, rd_addr);
1215 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001216#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001217 {
Simon Glass983c72f2013-06-11 11:14:46 -07001218 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001219 debug("* ramdisk: cmdline image address = "
1220 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001221 rd_addr);
1222 }
Simon Glass73223f02016-02-22 22:55:43 -07001223#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001224 } else {
1225 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001226 * command argument. If the property is not defined,
1227 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001228 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001229 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001230 rd_noffset = fit_get_node_from_config(images,
1231 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001232 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001233 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001234 else if (rd_noffset < 0)
1235 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001236 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001237#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001238
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001239 /*
1240 * Check if there is an initrd image at the
1241 * address provided in the second bootm argument
1242 * check image type, for FIT images get FIT node.
1243 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001244 buf = map_sysmem(rd_addr, 0);
1245 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001246#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001247 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001248 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001249 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001250
Simon Glass770605e2012-02-13 13:51:18 +00001251 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001252 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001253 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001254
Marian Balakowiczc8779642008-03-12 10:12:37 +01001255 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001256 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001257
Stephen Warren712fbcf2011-10-18 11:11:49 +00001258 rd_data = image_get_data(rd_hdr);
1259 rd_len = image_get_data_size(rd_hdr);
1260 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001261 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001262#endif
Simon Glass73223f02016-02-22 22:55:43 -07001263#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001264 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001265 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001266 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001267 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001268 IH_TYPE_RAMDISK,
1269 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001270 FIT_LOAD_OPTIONAL_NON_ZERO,
1271 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001272 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001273 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001274
Simon Glassa51ec632013-05-16 13:53:22 +00001275 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001276 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001277 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001278 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001279#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001280#ifdef CONFIG_ANDROID_BOOT_IMAGE
1281 case IMAGE_FORMAT_ANDROID:
1282 android_image_get_ramdisk((void *)images->os.start,
1283 &rd_data, &rd_len);
1284 break;
1285#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001286 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001287#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001288 end = NULL;
1289 if (select)
1290 end = strchr(select, ':');
1291 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001292 rd_len = simple_strtoul(++end, NULL, 16);
1293 rd_data = rd_addr;
1294 } else
1295#endif
1296 {
1297 puts("Wrong Ramdisk Image Format\n");
1298 rd_data = rd_len = rd_load = 0;
1299 return 1;
1300 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001301 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001302 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001303 image_check_type(&images->legacy_hdr_os_copy,
1304 IH_TYPE_MULTI)) {
1305
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001306 /*
1307 * Now check if we have a legacy mult-component image,
1308 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001309 */
Simon Glass770605e2012-02-13 13:51:18 +00001310 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001311 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001312 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001313 (ulong)images->legacy_hdr_os);
1314
Stephen Warren712fbcf2011-10-18 11:11:49 +00001315 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001316 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001317 /*
1318 * no initrd image
1319 */
Simon Glass770605e2012-02-13 13:51:18 +00001320 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001321 rd_len = rd_data = 0;
1322 }
1323
1324 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001325 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001326 } else {
1327 *rd_start = rd_data;
1328 *rd_end = rd_data + rd_len;
1329 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001330 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001331 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001332
1333 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001334}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001335
John Rigbyfca43cc2010-10-13 13:57:35 -06001336#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001337/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001338 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001339 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001340 * @rd_data: ramdisk data start address
1341 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001342 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1343 * start address (after possible relocation)
1344 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1345 * end address (after possible relocation)
1346 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001347 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001348 * variable and if requested ramdisk data is moved to a specified location.
1349 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001350 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1351 * start/end addresses if ramdisk image start and len were provided,
1352 * otherwise set initrd_start and initrd_end set to zeros.
1353 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001354 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001355 * 0 - success
1356 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001357 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001358int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001359 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001360{
1361 char *s;
1362 ulong initrd_high;
1363 int initrd_copy_to_ram = 1;
1364
Simon Glass00caae62017-08-03 12:22:12 -06001365 s = env_get("initrd_high");
1366 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001367 /* a value of "no" or a similar string will act like 0,
1368 * turning the "load high" feature off. This is intentional.
1369 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001370 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001371 if (initrd_high == ~0)
1372 initrd_copy_to_ram = 0;
1373 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001374 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001375 }
1376
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001377
Stephen Warren712fbcf2011-10-18 11:11:49 +00001378 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001379 initrd_high, initrd_copy_to_ram);
1380
1381 if (rd_data) {
1382 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001383 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001384 *initrd_start = rd_data;
1385 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001386 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001387 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001388 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001389 *initrd_start = (ulong)lmb_alloc_base(lmb,
1390 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001391 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001392 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1393 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001394
Kumar Galae822d7f2008-02-27 21:51:49 -06001395 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001396 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001397 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001398 }
Simon Glass770605e2012-02-13 13:51:18 +00001399 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001400
1401 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001402 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001403 *initrd_start, *initrd_end);
1404
Stephen Warren712fbcf2011-10-18 11:11:49 +00001405 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001406 (void *)rd_data, rd_len, CHUNKSZ);
1407
Kumar Gala3b200112011-12-07 04:42:58 +00001408#ifdef CONFIG_MP
1409 /*
1410 * Ensure the image is flushed to memory to handle
1411 * AMP boot scenarios in which we might not be
1412 * HW cache coherent
1413 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001414 flush_cache((unsigned long)*initrd_start,
1415 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001416#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001417 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001418 }
1419 } else {
1420 *initrd_start = 0;
1421 *initrd_end = 0;
1422 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001423 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001424 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001425
Kumar Galae822d7f2008-02-27 21:51:49 -06001426 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001427
Kumar Galae822d7f2008-02-27 21:51:49 -06001428error:
1429 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001430}
John Rigbyfca43cc2010-10-13 13:57:35 -06001431#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001432
Simon Glass90268b82014-10-19 21:11:24 -06001433int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1434 ulong *setup_start, ulong *setup_len)
1435{
Simon Glass73223f02016-02-22 22:55:43 -07001436#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001437 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1438#else
1439 return -ENOENT;
1440#endif
1441}
1442
Simon Glass73223f02016-02-22 22:55:43 -07001443#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001444#if defined(CONFIG_FPGA)
Simon Glass09140112020-05-10 11:40:03 -06001445int boot_get_fpga(int argc, char *const argv[], bootm_headers_t *images,
Michal Simek62afc602016-05-17 14:03:50 +02001446 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1447{
1448 ulong tmp_img_addr, img_data, img_len;
1449 void *buf;
1450 int conf_noffset;
1451 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001452 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001453 int err;
1454 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001455
1456 /* Check to see if the images struct has a FIT configuration */
1457 if (!genimg_has_config(images)) {
1458 debug("## FIT configuration was not specified\n");
1459 return 0;
1460 }
1461
1462 /*
1463 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001464 */
1465 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001466 buf = map_sysmem(tmp_img_addr, 0);
1467 /*
1468 * Check image type. For FIT images get FIT node
1469 * and attempt to locate a generic binary.
1470 */
1471 switch (genimg_get_format(buf)) {
1472 case IMAGE_FORMAT_FIT:
1473 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1474
Simon Glassb02e4042016-10-02 17:59:28 -06001475 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1476 NULL);
1477 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001478 debug("## FPGA image is not specified\n");
1479 return 0;
1480 }
1481 fit_img_result = fit_image_load(images,
1482 tmp_img_addr,
1483 (const char **)&uname,
1484 &(images->fit_uname_cfg),
1485 arch,
1486 IH_TYPE_FPGA,
1487 BOOTSTAGE_ID_FPGA_INIT,
1488 FIT_LOAD_OPTIONAL_NON_ZERO,
1489 &img_data, &img_len);
1490
1491 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1492 uname, img_data, img_len);
1493
1494 if (fit_img_result < 0) {
1495 /* Something went wrong! */
1496 return fit_img_result;
1497 }
1498
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001499 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001500 name = "full";
1501 err = fpga_loadbitstream(devnum, (char *)img_data,
1502 img_len, BIT_FULL);
1503 if (err)
1504 err = fpga_load(devnum, (const void *)img_data,
1505 img_len, BIT_FULL);
1506 } else {
1507 name = "partial";
1508 err = fpga_loadbitstream(devnum, (char *)img_data,
1509 img_len, BIT_PARTIAL);
1510 if (err)
1511 err = fpga_load(devnum, (const void *)img_data,
1512 img_len, BIT_PARTIAL);
1513 }
1514
Michal Simek62afc602016-05-17 14:03:50 +02001515 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001516 return err;
1517
1518 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001519 break;
1520 default:
1521 printf("The given image format is not supported (corrupt?)\n");
1522 return 1;
1523 }
1524
1525 return 0;
1526}
1527#endif
1528
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001529static void fit_loadable_process(uint8_t img_type,
1530 ulong img_data,
1531 ulong img_len)
1532{
1533 int i;
1534 const unsigned int count =
1535 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1536 struct fit_loadable_tbl *fit_loadable_handler =
1537 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1538 /* For each loadable handler */
1539 for (i = 0; i < count; i++, fit_loadable_handler++)
1540 /* matching this type */
1541 if (fit_loadable_handler->type == img_type)
1542 /* call that handler with this image data */
1543 fit_loadable_handler->handler(img_data, img_len);
1544}
1545
Simon Glass09140112020-05-10 11:40:03 -06001546int boot_get_loadable(int argc, char *const argv[], bootm_headers_t *images,
1547 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
Karl Apsite84a07db2015-05-21 09:52:48 -04001548{
1549 /*
1550 * These variables are used to hold the current image location
1551 * in system memory.
1552 */
1553 ulong tmp_img_addr;
1554 /*
1555 * These two variables are requirements for fit_image_load, but
1556 * their values are not used
1557 */
1558 ulong img_data, img_len;
1559 void *buf;
1560 int loadables_index;
1561 int conf_noffset;
1562 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001563 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001564 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001565
1566 /* Check to see if the images struct has a FIT configuration */
1567 if (!genimg_has_config(images)) {
1568 debug("## FIT configuration was not specified\n");
1569 return 0;
1570 }
1571
1572 /*
1573 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001574 */
1575 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001576 buf = map_sysmem(tmp_img_addr, 0);
1577 /*
1578 * Check image type. For FIT images get FIT node
1579 * and attempt to locate a generic binary.
1580 */
1581 switch (genimg_get_format(buf)) {
1582 case IMAGE_FORMAT_FIT:
1583 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1584
1585 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001586 uname = fdt_stringlist_get(buf, conf_noffset,
1587 FIT_LOADABLE_PROP, loadables_index,
1588 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001589 loadables_index++)
1590 {
1591 fit_img_result = fit_image_load(images,
1592 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001593 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001594 &(images->fit_uname_cfg), arch,
1595 IH_TYPE_LOADABLE,
1596 BOOTSTAGE_ID_FIT_LOADABLE_START,
1597 FIT_LOAD_OPTIONAL_NON_ZERO,
1598 &img_data, &img_len);
1599 if (fit_img_result < 0) {
1600 /* Something went wrong! */
1601 return fit_img_result;
1602 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001603
1604 fit_img_result = fit_image_get_node(buf, uname);
1605 if (fit_img_result < 0) {
1606 /* Something went wrong! */
1607 return fit_img_result;
1608 }
1609 fit_img_result = fit_image_get_type(buf,
1610 fit_img_result,
1611 &img_type);
1612 if (fit_img_result < 0) {
1613 /* Something went wrong! */
1614 return fit_img_result;
1615 }
1616
1617 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001618 }
1619 break;
1620 default:
1621 printf("The given image format is not supported (corrupt?)\n");
1622 return 1;
1623 }
1624
1625 return 0;
1626}
1627#endif
1628
John Rigbyfca43cc2010-10-13 13:57:35 -06001629#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001630/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001631 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001632 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001633 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1634 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1635 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001636 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301637 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001638 * variable is present its contents is copied to allocated kernel
1639 * command line.
1640 *
1641 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001642 * 0 - success
1643 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001644 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001645int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001646{
1647 char *cmdline;
1648 char *s;
1649
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001650 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001651 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001652
1653 if (cmdline == NULL)
1654 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001655
Simon Glass00caae62017-08-03 12:22:12 -06001656 s = env_get("bootargs");
1657 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001658 s = "";
1659
1660 strcpy(cmdline, s);
1661
1662 *cmd_start = (ulong) & cmdline[0];
1663 *cmd_end = *cmd_start + strlen(cmdline);
1664
Stephen Warren712fbcf2011-10-18 11:11:49 +00001665 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001666
Kumar Galae822d7f2008-02-27 21:51:49 -06001667 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001668}
John Rigbyfca43cc2010-10-13 13:57:35 -06001669#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001670
John Rigbyfca43cc2010-10-13 13:57:35 -06001671#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001672/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001673 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001674 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001675 * @kbd: double pointer to board info data
1676 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001677 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001678 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001679 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001680 *
1681 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001682 * 0 - success
1683 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001684 */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001685int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001686{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001687 *kbd = (struct bd_info *)(ulong)lmb_alloc_base(lmb,
1688 sizeof(struct bd_info),
1689 0xf,
1690 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001691 if (*kbd == NULL)
1692 return -1;
1693
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001694 **kbd = *(gd->bd);
1695
Stephen Warren712fbcf2011-10-18 11:11:49 +00001696 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001697
1698#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1699 do_bdinfo(NULL, 0, 0, NULL);
1700#endif
1701
Kumar Galae822d7f2008-02-27 21:51:49 -06001702 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001703}
John Rigbyfca43cc2010-10-13 13:57:35 -06001704#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001705
1706#ifdef CONFIG_LMB
1707int image_setup_linux(bootm_headers_t *images)
1708{
1709 ulong of_size = images->ft_len;
1710 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001711 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001712 int ret;
1713
1714 if (IMAGE_ENABLE_OF_LIBFDT)
1715 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1716
1717 if (IMAGE_BOOT_GET_CMDLINE) {
1718 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1719 &images->cmdline_end);
1720 if (ret) {
1721 puts("ERROR with allocation of cmdline\n");
1722 return ret;
1723 }
1724 }
Simon Glass13d06982013-05-08 08:06:01 +00001725
1726 if (IMAGE_ENABLE_OF_LIBFDT) {
1727 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1728 if (ret)
1729 return ret;
1730 }
1731
1732 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1733 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1734 if (ret)
1735 return ret;
1736 }
1737
1738 return 0;
1739}
1740#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001741#endif /* !USE_HOSTCC */