blob: 6923dac7c079cf617b73e1c5b30f998492d5d1de [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"},
Andre Przywara6d295092018-12-20 01:15:18 +0000192 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100193 { -1, "", "", },
194};
195
Mike Frysinger7edb1862010-10-20 07:17:39 -0400196static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100197 { IH_COMP_NONE, "none", "uncompressed", },
198 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
199 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200200 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100201 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700202 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Marko26073f92020-04-25 19:37:21 +0200203 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100204 { -1, "", "", },
205};
206
Simon Glass56d7ab72016-06-30 10:52:14 -0600207struct table_info {
208 const char *desc;
209 int count;
210 const table_entry_t *table;
211};
212
Atish Patra155d6a32020-03-05 16:24:22 -0800213static const struct comp_magic_map image_comp[] = {
214 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
215 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
216 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
217 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
218 { IH_COMP_NONE, "none", {}, },
219};
220
Simon Glass56d7ab72016-06-30 10:52:14 -0600221static const struct table_info table_info[IH_COUNT] = {
222 { "architecture", IH_ARCH_COUNT, uimage_arch },
223 { "compression", IH_COMP_COUNT, uimage_comp },
224 { "operating system", IH_OS_COUNT, uimage_os },
225 { "image type", IH_TYPE_COUNT, uimage_type },
226};
227
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100228/*****************************************************************************/
229/* Legacy format routines */
230/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000231int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100232{
233 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000234 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100235 image_header_t header;
236
237 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000238 memmove(&header, (char *)hdr, image_get_header_size());
239 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100240
Stephen Warren712fbcf2011-10-18 11:11:49 +0000241 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100242
Stephen Warren712fbcf2011-10-18 11:11:49 +0000243 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100244}
245
Stephen Warren712fbcf2011-10-18 11:11:49 +0000246int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100247{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000248 ulong data = image_get_data(hdr);
249 ulong len = image_get_data_size(hdr);
250 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100251
Stephen Warren712fbcf2011-10-18 11:11:49 +0000252 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100253}
254
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100255/**
256 * image_multi_count - get component (sub-image) count
257 * @hdr: pointer to the header of the multi component image
258 *
259 * image_multi_count() returns number of components in a multi
260 * component image.
261 *
262 * Note: no checking of the image type is done, caller must pass
263 * a valid multi component image.
264 *
265 * returns:
266 * number of components
267 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100269{
270 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100271 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100272
273 /* get start of the image payload, which in case of multi
274 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000275 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100276
277 /* count non empty slots */
278 for (i = 0; size[i]; ++i)
279 count++;
280
281 return count;
282}
283
284/**
285 * image_multi_getimg - get component data address and size
286 * @hdr: pointer to the header of the multi component image
287 * @idx: index of the requested component
288 * @data: pointer to a ulong variable, will hold component data address
289 * @len: pointer to a ulong variable, will hold component size
290 *
291 * image_multi_getimg() returns size and data address for the requested
292 * component in a multi component image.
293 *
294 * Note: no checking of the image type is done, caller must pass
295 * a valid multi component image.
296 *
297 * returns:
298 * data address and size of the component, if idx is valid
299 * 0 in data and len, if idx is out of range
300 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000301void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100302 ulong *data, ulong *len)
303{
304 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100305 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700306 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100307
308 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000309 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100310
311 /* get start of the image payload, which in case of multi
312 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100314
315 /* get address of the proper component data start, which means
316 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000317 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100318
319 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000320 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100321 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100322
323 /* go over all indices preceding requested component idx */
324 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700325 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000326 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100327 }
328
329 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700330 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100331 } else {
332 *len = 0;
333 *data = 0;
334 }
335}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100336
Stephen Warren712fbcf2011-10-18 11:11:49 +0000337static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100338{
Heiko Schocher80402f32015-06-29 09:10:46 +0200339 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100340
Stephen Warren712fbcf2011-10-18 11:11:49 +0000341 os = genimg_get_os_name(image_get_os(hdr));
342 arch = genimg_get_arch_name(image_get_arch(hdr));
343 type = genimg_get_type_name(image_get_type(hdr));
344 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100345
Stephen Warren712fbcf2011-10-18 11:11:49 +0000346 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100347}
348
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100349/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200350 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200351 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100352 * @p: pointer to prefix string
353 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200354 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100355 * The routine prints out all header fields followed by the size/offset data
356 * for MULTI/SCRIPT images.
357 *
358 * returns:
359 * no returned results
360 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000361void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100362{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200363 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200364 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200365
Simon Glass1fe7d932013-05-08 08:05:58 +0000366 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000367 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000368 if (IMAGE_ENABLE_TIMESTAMP) {
369 printf("%sCreated: ", p);
370 genimg_print_time((time_t)image_get_time(hdr));
371 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000372 printf("%sImage Type: ", p);
373 image_print_type(hdr);
374 printf("%sData Size: ", p);
375 genimg_print_size(image_get_data_size(hdr));
376 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
377 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100378
Stephen Warren712fbcf2011-10-18 11:11:49 +0000379 if (image_check_type(hdr, IH_TYPE_MULTI) ||
380 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100381 int i;
382 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000383 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100384
Stephen Warren712fbcf2011-10-18 11:11:49 +0000385 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100386 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000387 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100388
Stephen Warren712fbcf2011-10-18 11:11:49 +0000389 printf("%s Image %d: ", p, i);
390 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100391
Stephen Warren712fbcf2011-10-18 11:11:49 +0000392 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100393 /*
394 * the user may need to know offsets
395 * if planning to do something with
396 * multiple files
397 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000398 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100399 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100400 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100401 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
402 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000403 image_get_load(hdr) - image_get_header_size(),
404 (int)(image_get_size(hdr) + image_get_header_size()
405 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100406 }
407}
408
Julius Werner20908542019-07-24 19:37:54 -0700409/**
410 * print_decomp_msg() - Print a suitable decompression/loading message
411 *
412 * @type: OS type (IH_OS_...)
413 * @comp_type: Compression type being used (IH_COMP_...)
414 * @is_xip: true if the load address matches the image start
415 */
416static void print_decomp_msg(int comp_type, int type, bool is_xip)
417{
418 const char *name = genimg_get_type_name(type);
419
420 if (comp_type == IH_COMP_NONE)
421 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
422 else
423 printf(" Uncompressing %s\n", name);
424}
425
Atish Patra155d6a32020-03-05 16:24:22 -0800426int image_decomp_type(const unsigned char *buf, ulong len)
427{
428 const struct comp_magic_map *cmagic = image_comp;
429
430 if (len < 2)
431 return -EINVAL;
432
433 for (; cmagic->comp_id > 0; cmagic++) {
434 if (!memcmp(buf, cmagic->magic, 2))
435 break;
436 }
437
438 return cmagic->comp_id;
439}
440
Julius Werner20908542019-07-24 19:37:54 -0700441int image_decomp(int comp, ulong load, ulong image_start, int type,
442 void *load_buf, void *image_buf, ulong image_len,
443 uint unc_len, ulong *load_end)
444{
445 int ret = 0;
446
447 *load_end = load;
448 print_decomp_msg(comp, type, load == image_start);
449
450 /*
451 * Load the image to the right place, decompressing if needed. After
452 * this, image_len will be set to the number of uncompressed bytes
453 * loaded, ret will be non-zero on error.
454 */
455 switch (comp) {
456 case IH_COMP_NONE:
457 if (load == image_start)
458 break;
459 if (image_len <= unc_len)
460 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
461 else
462 ret = -ENOSPC;
463 break;
464#ifdef CONFIG_GZIP
465 case IH_COMP_GZIP: {
466 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
467 break;
468 }
469#endif /* CONFIG_GZIP */
470#ifdef CONFIG_BZIP2
471 case IH_COMP_BZIP2: {
472 uint size = unc_len;
473
474 /*
475 * If we've got less than 4 MB of malloc() space,
476 * use slower decompression algorithm which requires
477 * at most 2300 KB of memory.
478 */
479 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
480 image_buf, image_len,
481 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
482 image_len = size;
483 break;
484 }
485#endif /* CONFIG_BZIP2 */
486#ifdef CONFIG_LZMA
487 case IH_COMP_LZMA: {
488 SizeT lzma_len = unc_len;
489
490 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
491 image_buf, image_len);
492 image_len = lzma_len;
493 break;
494 }
495#endif /* CONFIG_LZMA */
496#ifdef CONFIG_LZO
497 case IH_COMP_LZO: {
498 size_t size = unc_len;
499
500 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
501 image_len = size;
502 break;
503 }
504#endif /* CONFIG_LZO */
505#ifdef CONFIG_LZ4
506 case IH_COMP_LZ4: {
507 size_t size = unc_len;
508
509 ret = ulz4fn(image_buf, image_len, load_buf, &size);
510 image_len = size;
511 break;
512 }
513#endif /* CONFIG_LZ4 */
Robert Marko26073f92020-04-25 19:37:21 +0200514#ifdef CONFIG_ZSTD
515 case IH_COMP_ZSTD: {
516 size_t size = unc_len;
517 ZSTD_DStream *dstream;
518 ZSTD_inBuffer in_buf;
519 ZSTD_outBuffer out_buf;
520 void *workspace;
521 size_t wsize;
522
523 wsize = ZSTD_DStreamWorkspaceBound(image_len);
524 workspace = malloc(wsize);
525 if (!workspace) {
526 debug("%s: cannot allocate workspace of size %zu\n", __func__,
527 wsize);
528 return -1;
529 }
530
531 dstream = ZSTD_initDStream(image_len, workspace, wsize);
532 if (!dstream) {
533 printf("%s: ZSTD_initDStream failed\n", __func__);
534 return ZSTD_getErrorCode(ret);
535 }
536
537 in_buf.src = image_buf;
538 in_buf.pos = 0;
539 in_buf.size = image_len;
540
541 out_buf.dst = load_buf;
542 out_buf.pos = 0;
543 out_buf.size = size;
544
545 while (1) {
546 size_t ret;
547
548 ret = ZSTD_decompressStream(dstream, &out_buf, &in_buf);
549 if (ZSTD_isError(ret)) {
550 printf("%s: ZSTD_decompressStream error %d\n", __func__,
551 ZSTD_getErrorCode(ret));
552 return ZSTD_getErrorCode(ret);
553 }
554
555 if (in_buf.pos >= image_len || !ret)
556 break;
557 }
558
559 image_len = out_buf.pos;
560
561 break;
562 }
563#endif /* CONFIG_ZSTD */
Julius Werner20908542019-07-24 19:37:54 -0700564 default:
565 printf("Unimplemented compression type %d\n", comp);
566 return -ENOSYS;
567 }
568
569 *load_end = load + image_len;
570
571 return ret;
572}
573
Marian Balakowicz570abb02008-02-29 15:59:59 +0100574
575#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400576#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100577/**
578 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100579 * @rd_addr: ramdisk image start address
580 * @arch: expected ramdisk architecture
581 * @verify: checksum verification flag
582 *
583 * image_get_ramdisk() returns a pointer to the verified ramdisk image
584 * header. Routine receives image start address and expected architecture
585 * flag. Verification done covers data and header integrity and os/type/arch
586 * fields checking.
587 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100588 * returns:
589 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600590 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100591 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000592static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100593 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100594{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200595 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100596
Stephen Warren712fbcf2011-10-18 11:11:49 +0000597 if (!image_check_magic(rd_hdr)) {
598 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000599 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600600 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100601 }
602
Stephen Warren712fbcf2011-10-18 11:11:49 +0000603 if (!image_check_hcrc(rd_hdr)) {
604 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000605 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600606 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100607 }
608
Simon Glass770605e2012-02-13 13:51:18 +0000609 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000610 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100611
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100612 if (verify) {
613 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000614 if (!image_check_dcrc(rd_hdr)) {
615 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000616 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600617 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100618 }
619 puts("OK\n");
620 }
621
Simon Glass770605e2012-02-13 13:51:18 +0000622 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100623
Stephen Warren712fbcf2011-10-18 11:11:49 +0000624 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
625 !image_check_arch(rd_hdr, arch) ||
626 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
627 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100628 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000629 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600630 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100631 }
632
633 return rd_hdr;
634}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200635#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100636#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100637
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100638/*****************************************************************************/
639/* Shared dual-format routines */
640/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100641#ifndef USE_HOSTCC
Simon Glassbb872dd2019-12-28 10:45:02 -0700642ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
643ulong image_save_addr; /* Default Save Address */
644ulong image_save_size; /* Default Save Size (in bytes) */
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600645
646static int on_loadaddr(const char *name, const char *value, enum env_op op,
647 int flags)
648{
649 switch (op) {
650 case env_op_create:
651 case env_op_overwrite:
Simon Glassbb872dd2019-12-28 10:45:02 -0700652 image_load_addr = simple_strtoul(value, NULL, 16);
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600653 break;
654 default:
655 break;
656 }
657
658 return 0;
659}
660U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
661
Simon Glass723806c2017-08-03 12:22:15 -0600662ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100663{
Simon Glass00caae62017-08-03 12:22:12 -0600664 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100665 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000666 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100667 return tmp;
668 }
669
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200670#if defined(CONFIG_SYS_SDRAM_BASE)
671 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200672#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100673 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100674#else
675 return 0;
676#endif
677}
678
Simon Glass723806c2017-08-03 12:22:15 -0600679phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100680{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900681 phys_size_t tmp, size;
682 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600683 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100684 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000685 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100686 return tmp;
687 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900688
Stefan Roese4963f632020-08-12 12:57:18 +0200689 start = gd->ram_base;
690 size = gd->ram_size;
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900691
Baruch Siach7f98b4e2020-08-24 20:14:05 +0300692 if (start + size > gd->ram_top)
693 size = gd->ram_top - start;
694
Simon Glass00caae62017-08-03 12:22:12 -0600695 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500696 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000697 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500698 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900699 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500700
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900701 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100702}
703
Simon Glass723806c2017-08-03 12:22:15 -0600704phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000705{
706 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600707 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000708 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000709 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000710 return tmp;
711 }
712
713#if defined(CONFIG_SYS_BOOTMAPSZ)
714 return CONFIG_SYS_BOOTMAPSZ;
715#else
Simon Glass723806c2017-08-03 12:22:15 -0600716 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000717#endif
718}
719
Stephen Warren712fbcf2011-10-18 11:11:49 +0000720void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100721{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400722 if (to == from)
723 return;
724
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100725#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800726 if (to > from) {
727 from += len;
728 to += len;
729 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100730 while (len > 0) {
731 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000732 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800733 if (to > from) {
734 to -= tail;
735 from -= tail;
736 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000737 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800738 if (to < from) {
739 to += tail;
740 from += tail;
741 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100742 len -= tail;
743 }
744#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000745 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100746#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
747}
Julius Werner20908542019-07-24 19:37:54 -0700748#else /* USE_HOSTCC */
749void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
750{
751 memmove(to, from, len);
752}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100753#endif /* !USE_HOSTCC */
754
Stephen Warren712fbcf2011-10-18 11:11:49 +0000755void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100756{
757#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000758 printf("%d Bytes = ", size);
759 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100760#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100761 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100762 size, (double)size / 1.024e3,
763 (double)size / 1.048576e6);
764#endif
765}
766
Simon Glass859e92b2013-05-07 06:11:51 +0000767#if IMAGE_ENABLE_TIMESTAMP
768void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100769{
770#ifndef USE_HOSTCC
771 struct rtc_time tm;
772
Simon Glass9f9276c2015-04-20 12:37:18 -0600773 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000774 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100775 tm.tm_year, tm.tm_mon, tm.tm_mday,
776 tm.tm_hour, tm.tm_min, tm.tm_sec);
777#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000778 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100779#endif
780}
Simon Glass859e92b2013-05-07 06:11:51 +0000781#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100782
Simon Glass5b9d44d2015-06-23 15:38:25 -0600783const table_entry_t *get_table_entry(const table_entry_t *table, int id)
784{
785 for (; table->id >= 0; ++table) {
786 if (table->id == id)
787 return table;
788 }
789 return NULL;
790}
791
Simon Glass14262202016-06-30 10:52:16 -0600792static const char *unknown_msg(enum ih_category category)
793{
Simon Glassae3de0d2016-10-31 10:21:09 -0600794 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600795 static char msg[30];
796
Simon Glassae3de0d2016-10-31 10:21:09 -0600797 strcpy(msg, unknown_str);
798 strncat(msg, table_info[category].desc,
799 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600800
801 return msg;
802}
803
804/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900805 * genimg_get_cat_name - translate entry id to long name
Simon Glass14262202016-06-30 10:52:16 -0600806 * @category: category to look up (enum ih_category)
807 * @id: entry id to be translated
808 *
809 * This will scan the translation table trying to find the entry that matches
810 * the given id.
811 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900812 * @return long entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600813 */
814const char *genimg_get_cat_name(enum ih_category category, uint id)
815{
816 const table_entry_t *entry;
817
818 entry = get_table_entry(table_info[category].table, id);
819 if (!entry)
820 return unknown_msg(category);
821#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
822 return entry->lname;
823#else
824 return entry->lname + gd->reloc_off;
825#endif
826}
827
828/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900829 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass14262202016-06-30 10:52:16 -0600830 * @category: category to look up (enum ih_category)
831 * @id: entry id to be translated
832 *
833 * This will scan the translation table trying to find the entry that matches
834 * the given id.
835 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900836 * @return short entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600837 */
838const char *genimg_get_cat_short_name(enum ih_category category, uint id)
839{
840 const table_entry_t *entry;
841
842 entry = get_table_entry(table_info[category].table, id);
843 if (!entry)
844 return unknown_msg(category);
845#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
846 return entry->sname;
847#else
848 return entry->sname + gd->reloc_off;
849#endif
850}
851
852int genimg_get_cat_count(enum ih_category category)
853{
854 return table_info[category].count;
855}
856
857const char *genimg_get_cat_desc(enum ih_category category)
858{
859 return table_info[category].desc;
860}
861
Marian Balakowicz570abb02008-02-29 15:59:59 +0100862/**
Naoki Hayama02d41b02020-10-07 11:21:25 +0900863 * genimg_cat_has_id - check whether category has entry id
864 * @category: category to look up (enum ih_category)
865 * @id: entry id to be checked
866 *
867 * This will scan the translation table trying to find the entry that matches
868 * the given id.
869 *
870 * @return true if category has entry id; false if not
871 */
872bool genimg_cat_has_id(enum ih_category category, uint id)
873{
874 if (get_table_entry(table_info[category].table, id))
875 return true;
876
877 return false;
878}
879
880/**
Marian Balakowicz570abb02008-02-29 15:59:59 +0100881 * get_table_entry_name - translate entry id to long name
882 * @table: pointer to a translation table for entries of a specific type
883 * @msg: message to be returned when translation fails
884 * @id: entry id to be translated
885 *
886 * get_table_entry_name() will go over translation table trying to find
887 * entry that matches given id. If matching entry is found, its long
888 * name is returned to the caller.
889 *
890 * returns:
891 * long entry name if translation succeeds
892 * msg otherwise
893 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400894char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100895{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600896 table = get_table_entry(table, id);
897 if (!table)
898 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200899#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600900 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500901#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600902 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500903#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100904}
905
Stephen Warren712fbcf2011-10-18 11:11:49 +0000906const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100907{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000908 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100909}
910
Stephen Warren712fbcf2011-10-18 11:11:49 +0000911const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100912{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000913 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
914 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100915}
916
Stephen Warren712fbcf2011-10-18 11:11:49 +0000917const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100918{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000919 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100920}
921
Naoki Hayama898a0842020-10-07 11:22:24 +0900922const char *genimg_get_comp_name(uint8_t comp)
923{
924 return (get_table_entry_name(uimage_comp, "Unknown Compression",
925 comp));
926}
927
Simon Glasscef2e512016-02-22 22:55:50 -0700928static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600929{
Simon Glasscef2e512016-02-22 22:55:50 -0700930 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600931 if (!table)
932 return "unknown";
933#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
934 return table->sname;
935#else
936 return table->sname + gd->reloc_off;
937#endif
938}
939
Simon Glasscef2e512016-02-22 22:55:50 -0700940const char *genimg_get_type_short_name(uint8_t type)
941{
942 return genimg_get_short_name(uimage_type, type);
943}
944
Simon Glasscef2e512016-02-22 22:55:50 -0700945const char *genimg_get_comp_short_name(uint8_t comp)
946{
947 return genimg_get_short_name(uimage_comp, comp);
948}
949
950const char *genimg_get_os_short_name(uint8_t os)
951{
952 return genimg_get_short_name(uimage_os, os);
953}
954
955const char *genimg_get_arch_short_name(uint8_t arch)
956{
957 return genimg_get_short_name(uimage_arch, arch);
958}
959
Marian Balakowicz570abb02008-02-29 15:59:59 +0100960/**
961 * get_table_entry_id - translate short entry name to id
962 * @table: pointer to a translation table for entries of a specific type
963 * @table_name: to be used in case of error
964 * @name: entry short name to be translated
965 *
966 * get_table_entry_id() will go over translation table trying to find
967 * entry that matches given short name. If matching entry is found,
968 * its id returned to the caller.
969 *
970 * returns:
971 * entry id if translation succeeds
972 * -1 otherwise
973 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400974int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100975 const char *table_name, const char *name)
976{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400977 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100978
979 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200980#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600981 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200982#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600983 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500984#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100985 return (t->id);
986 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000987 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600988
989 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100990}
991
Stephen Warren712fbcf2011-10-18 11:11:49 +0000992int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100993{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000994 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100995}
996
Stephen Warren712fbcf2011-10-18 11:11:49 +0000997int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100998{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000999 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001000}
1001
Stephen Warren712fbcf2011-10-18 11:11:49 +00001002int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001003{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001004 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001005}
1006
Stephen Warren712fbcf2011-10-18 11:11:49 +00001007int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +01001008{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001009 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +01001010}
1011
1012#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001013/**
Bryan Wu6c454fe2014-08-15 16:51:38 -07001014 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
1015 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -07001016 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -07001017 * @fit_uname_config: double pointer to a char, will hold pointer to a
1018 * configuration unit name
1019 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
1020 * name
Bryan Wu0f641402014-07-31 17:39:58 -07001021 *
Bryan Wu6c454fe2014-08-15 16:51:38 -07001022 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -07001023 * which is normally the first argv of bootm/bootz
1024 *
1025 * returns:
1026 * kernel start address
1027 */
Bryan Wu6c454fe2014-08-15 16:51:38 -07001028ulong genimg_get_kernel_addr_fit(char * const img_addr,
1029 const char **fit_uname_config,
1030 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -07001031{
Bryan Wu0f641402014-07-31 17:39:58 -07001032 ulong kernel_addr;
1033
1034 /* find out kernel image address */
1035 if (!img_addr) {
Simon Glassbb872dd2019-12-28 10:45:02 -07001036 kernel_addr = image_load_addr;
Bryan Wu0f641402014-07-31 17:39:58 -07001037 debug("* kernel: default image load address = 0x%08lx\n",
Simon Glassbb872dd2019-12-28 10:45:02 -07001038 image_load_addr);
Simon Glass73223f02016-02-22 22:55:43 -07001039#if CONFIG_IS_ENABLED(FIT)
Simon Glassbb872dd2019-12-28 10:45:02 -07001040 } else if (fit_parse_conf(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001041 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001042 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001043 *fit_uname_config, kernel_addr);
Simon Glassbb872dd2019-12-28 10:45:02 -07001044 } else if (fit_parse_subimage(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001045 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001046 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001047 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -07001048#endif
1049 } else {
1050 kernel_addr = simple_strtoul(img_addr, NULL, 16);
1051 debug("* kernel: cmdline image address = 0x%08lx\n",
1052 kernel_addr);
1053 }
1054
1055 return kernel_addr;
1056}
1057
1058/**
Bryan Wu6c454fe2014-08-15 16:51:38 -07001059 * genimg_get_kernel_addr() is the simple version of
1060 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
1061 */
1062ulong genimg_get_kernel_addr(char * const img_addr)
1063{
1064 const char *fit_uname_config = NULL;
1065 const char *fit_uname_kernel = NULL;
1066
1067 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
1068 &fit_uname_kernel);
1069}
1070
1071/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001072 * genimg_get_format - get image format type
1073 * @img_addr: image start address
1074 *
1075 * genimg_get_format() checks whether provided address points to a valid
1076 * legacy or FIT image.
1077 *
1078 * New uImage format and FDT blob are based on a libfdt. FDT blob
1079 * may be passed directly or embedded in a FIT image. In both situations
1080 * genimg_get_format() must be able to dectect libfdt header.
1081 *
1082 * returns:
1083 * image format type or IMAGE_FORMAT_INVALID if no image is present
1084 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001085int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001086{
Tom Rinic76c93a2019-05-23 07:14:07 -04001087#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001088 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001089
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001090 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001091 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +02001092 return IMAGE_FORMAT_LEGACY;
1093#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -07001094#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +02001095 if (fdt_check_header(img_addr) == 0)
1096 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001097#endif
1098#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001099 if (android_image_check_header(img_addr) == 0)
1100 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001101#endif
1102
Heiko Schocher21d29f72014-05-28 11:33:33 +02001103 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001104}
1105
1106/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001107 * fit_has_config - check if there is a valid FIT configuration
1108 * @images: pointer to the bootm command headers structure
1109 *
1110 * fit_has_config() checks if there is a FIT configuration in use
1111 * (if FTI support is present).
1112 *
1113 * returns:
1114 * 0, no FIT support or no configuration found
1115 * 1, configuration found
1116 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001117int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001118{
Simon Glass73223f02016-02-22 22:55:43 -07001119#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001120 if (images->fit_uname_cfg)
1121 return 1;
1122#endif
1123 return 0;
1124}
1125
1126/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001127 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001128 * @argc: command argument count
1129 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001130 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001131 * @arch: expected ramdisk architecture
1132 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1133 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1134 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001135 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001136 * Curently supported are the following ramdisk sources:
1137 * - multicomponent kernel/ramdisk image,
1138 * - commandline provided address of decicated ramdisk image.
1139 *
1140 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001141 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001142 * rd_start and rd_end are set to ramdisk start/end addresses if
1143 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001144 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001145 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001146 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001147 */
Simon Glass09140112020-05-10 11:40:03 -06001148int boot_get_ramdisk(int argc, char *const argv[], bootm_headers_t *images,
1149 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001150{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001151 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001152 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001153#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001154 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001155#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001156 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001157#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001158 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001159#endif
Simon Glass73223f02016-02-22 22:55:43 -07001160#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001161 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001162 const char *fit_uname_ramdisk = NULL;
1163 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001164 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001165#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001166 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001167
Marian Balakowiczc8779642008-03-12 10:12:37 +01001168 *rd_start = 0;
1169 *rd_end = 0;
1170
Tom Rini1fec3c52015-08-27 15:42:41 -04001171#ifdef CONFIG_ANDROID_BOOT_IMAGE
1172 /*
1173 * Look for an Android boot image.
1174 */
1175 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001176 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001177 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001178#endif
1179
Simon Glass983c72f2013-06-11 11:14:46 -07001180 if (argc >= 2)
1181 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001182
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001183 /*
1184 * Look for a '-' which indicates to ignore the
1185 * ramdisk argument
1186 */
Simon Glass983c72f2013-06-11 11:14:46 -07001187 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001188 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001189 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001190 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001191#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001192 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001193 /*
1194 * If the init ramdisk comes from the FIT image and
1195 * the FIT image address is omitted in the command
1196 * line argument, try to use os FIT image address or
1197 * default load address.
1198 */
1199 if (images->fit_uname_os)
1200 default_addr = (ulong)images->fit_hdr_os;
1201 else
Simon Glassbb872dd2019-12-28 10:45:02 -07001202 default_addr = image_load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001203
Simon Glass983c72f2013-06-11 11:14:46 -07001204 if (fit_parse_conf(select, default_addr,
1205 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001206 debug("* ramdisk: config '%s' from image at "
1207 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001208 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001209 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001210 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001211 debug("* ramdisk: subimage '%s' from image at "
1212 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001213 fit_uname_ramdisk, rd_addr);
1214 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001215#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001216 {
Simon Glass983c72f2013-06-11 11:14:46 -07001217 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001218 debug("* ramdisk: cmdline image address = "
1219 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001220 rd_addr);
1221 }
Simon Glass73223f02016-02-22 22:55:43 -07001222#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001223 } else {
1224 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001225 * command argument. If the property is not defined,
1226 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001227 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001228 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001229 rd_noffset = fit_get_node_from_config(images,
1230 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001231 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001232 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001233 else if (rd_noffset < 0)
1234 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001235 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001236#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001237
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001238 /*
1239 * Check if there is an initrd image at the
1240 * address provided in the second bootm argument
1241 * check image type, for FIT images get FIT node.
1242 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001243 buf = map_sysmem(rd_addr, 0);
1244 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001245#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001246 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001247 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001248 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001249
Simon Glass770605e2012-02-13 13:51:18 +00001250 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001251 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001252 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001253
Marian Balakowiczc8779642008-03-12 10:12:37 +01001254 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001255 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001256
Stephen Warren712fbcf2011-10-18 11:11:49 +00001257 rd_data = image_get_data(rd_hdr);
1258 rd_len = image_get_data_size(rd_hdr);
1259 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001260 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001261#endif
Simon Glass73223f02016-02-22 22:55:43 -07001262#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001263 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001264 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001265 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001266 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001267 IH_TYPE_RAMDISK,
1268 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001269 FIT_LOAD_OPTIONAL_NON_ZERO,
1270 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001271 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001272 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001273
Simon Glassa51ec632013-05-16 13:53:22 +00001274 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001275 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001276 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001277 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001278#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001279#ifdef CONFIG_ANDROID_BOOT_IMAGE
1280 case IMAGE_FORMAT_ANDROID:
1281 android_image_get_ramdisk((void *)images->os.start,
1282 &rd_data, &rd_len);
1283 break;
1284#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001285 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001286#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001287 end = NULL;
1288 if (select)
1289 end = strchr(select, ':');
1290 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001291 rd_len = simple_strtoul(++end, NULL, 16);
1292 rd_data = rd_addr;
1293 } else
1294#endif
1295 {
1296 puts("Wrong Ramdisk Image Format\n");
1297 rd_data = rd_len = rd_load = 0;
1298 return 1;
1299 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001300 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001301 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001302 image_check_type(&images->legacy_hdr_os_copy,
1303 IH_TYPE_MULTI)) {
1304
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001305 /*
1306 * Now check if we have a legacy mult-component image,
1307 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001308 */
Simon Glass770605e2012-02-13 13:51:18 +00001309 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001310 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001311 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001312 (ulong)images->legacy_hdr_os);
1313
Stephen Warren712fbcf2011-10-18 11:11:49 +00001314 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001315 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001316 /*
1317 * no initrd image
1318 */
Simon Glass770605e2012-02-13 13:51:18 +00001319 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001320 rd_len = rd_data = 0;
1321 }
1322
1323 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001324 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001325 } else {
1326 *rd_start = rd_data;
1327 *rd_end = rd_data + rd_len;
1328 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001329 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001330 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001331
1332 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001333}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001334
John Rigbyfca43cc2010-10-13 13:57:35 -06001335#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001336/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001337 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001338 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001339 * @rd_data: ramdisk data start address
1340 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001341 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1342 * start address (after possible relocation)
1343 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1344 * end address (after possible relocation)
1345 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001346 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001347 * variable and if requested ramdisk data is moved to a specified location.
1348 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001349 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1350 * start/end addresses if ramdisk image start and len were provided,
1351 * otherwise set initrd_start and initrd_end set to zeros.
1352 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001353 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001354 * 0 - success
1355 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001356 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001357int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001358 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001359{
1360 char *s;
1361 ulong initrd_high;
1362 int initrd_copy_to_ram = 1;
1363
Simon Glass00caae62017-08-03 12:22:12 -06001364 s = env_get("initrd_high");
1365 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001366 /* a value of "no" or a similar string will act like 0,
1367 * turning the "load high" feature off. This is intentional.
1368 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001369 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001370 if (initrd_high == ~0)
1371 initrd_copy_to_ram = 0;
1372 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001373 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001374 }
1375
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001376
Stephen Warren712fbcf2011-10-18 11:11:49 +00001377 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001378 initrd_high, initrd_copy_to_ram);
1379
1380 if (rd_data) {
1381 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001382 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001383 *initrd_start = rd_data;
1384 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001385 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001386 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001387 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001388 *initrd_start = (ulong)lmb_alloc_base(lmb,
1389 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001390 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001391 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1392 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001393
Kumar Galae822d7f2008-02-27 21:51:49 -06001394 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001395 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001396 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001397 }
Simon Glass770605e2012-02-13 13:51:18 +00001398 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001399
1400 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001401 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001402 *initrd_start, *initrd_end);
1403
Stephen Warren712fbcf2011-10-18 11:11:49 +00001404 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001405 (void *)rd_data, rd_len, CHUNKSZ);
1406
Kumar Gala3b200112011-12-07 04:42:58 +00001407#ifdef CONFIG_MP
1408 /*
1409 * Ensure the image is flushed to memory to handle
1410 * AMP boot scenarios in which we might not be
1411 * HW cache coherent
1412 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001413 flush_cache((unsigned long)*initrd_start,
1414 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001415#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001416 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001417 }
1418 } else {
1419 *initrd_start = 0;
1420 *initrd_end = 0;
1421 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001422 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001423 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001424
Kumar Galae822d7f2008-02-27 21:51:49 -06001425 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001426
Kumar Galae822d7f2008-02-27 21:51:49 -06001427error:
1428 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001429}
John Rigbyfca43cc2010-10-13 13:57:35 -06001430#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001431
Simon Glass90268b82014-10-19 21:11:24 -06001432int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1433 ulong *setup_start, ulong *setup_len)
1434{
Simon Glass73223f02016-02-22 22:55:43 -07001435#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001436 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1437#else
1438 return -ENOENT;
1439#endif
1440}
1441
Simon Glass73223f02016-02-22 22:55:43 -07001442#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001443#if defined(CONFIG_FPGA)
Simon Glass09140112020-05-10 11:40:03 -06001444int boot_get_fpga(int argc, char *const argv[], bootm_headers_t *images,
Michal Simek62afc602016-05-17 14:03:50 +02001445 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1446{
1447 ulong tmp_img_addr, img_data, img_len;
1448 void *buf;
1449 int conf_noffset;
1450 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001451 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001452 int err;
1453 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001454
1455 /* Check to see if the images struct has a FIT configuration */
1456 if (!genimg_has_config(images)) {
1457 debug("## FIT configuration was not specified\n");
1458 return 0;
1459 }
1460
1461 /*
1462 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001463 */
1464 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001465 buf = map_sysmem(tmp_img_addr, 0);
1466 /*
1467 * Check image type. For FIT images get FIT node
1468 * and attempt to locate a generic binary.
1469 */
1470 switch (genimg_get_format(buf)) {
1471 case IMAGE_FORMAT_FIT:
1472 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1473
Simon Glassb02e4042016-10-02 17:59:28 -06001474 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1475 NULL);
1476 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001477 debug("## FPGA image is not specified\n");
1478 return 0;
1479 }
1480 fit_img_result = fit_image_load(images,
1481 tmp_img_addr,
1482 (const char **)&uname,
1483 &(images->fit_uname_cfg),
1484 arch,
1485 IH_TYPE_FPGA,
1486 BOOTSTAGE_ID_FPGA_INIT,
1487 FIT_LOAD_OPTIONAL_NON_ZERO,
1488 &img_data, &img_len);
1489
1490 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1491 uname, img_data, img_len);
1492
1493 if (fit_img_result < 0) {
1494 /* Something went wrong! */
1495 return fit_img_result;
1496 }
1497
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001498 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001499 name = "full";
1500 err = fpga_loadbitstream(devnum, (char *)img_data,
1501 img_len, BIT_FULL);
1502 if (err)
1503 err = fpga_load(devnum, (const void *)img_data,
1504 img_len, BIT_FULL);
1505 } else {
1506 name = "partial";
1507 err = fpga_loadbitstream(devnum, (char *)img_data,
1508 img_len, BIT_PARTIAL);
1509 if (err)
1510 err = fpga_load(devnum, (const void *)img_data,
1511 img_len, BIT_PARTIAL);
1512 }
1513
Michal Simek62afc602016-05-17 14:03:50 +02001514 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001515 return err;
1516
1517 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001518 break;
1519 default:
1520 printf("The given image format is not supported (corrupt?)\n");
1521 return 1;
1522 }
1523
1524 return 0;
1525}
1526#endif
1527
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001528static void fit_loadable_process(uint8_t img_type,
1529 ulong img_data,
1530 ulong img_len)
1531{
1532 int i;
1533 const unsigned int count =
1534 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1535 struct fit_loadable_tbl *fit_loadable_handler =
1536 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1537 /* For each loadable handler */
1538 for (i = 0; i < count; i++, fit_loadable_handler++)
1539 /* matching this type */
1540 if (fit_loadable_handler->type == img_type)
1541 /* call that handler with this image data */
1542 fit_loadable_handler->handler(img_data, img_len);
1543}
1544
Simon Glass09140112020-05-10 11:40:03 -06001545int boot_get_loadable(int argc, char *const argv[], bootm_headers_t *images,
1546 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
Karl Apsite84a07db2015-05-21 09:52:48 -04001547{
1548 /*
1549 * These variables are used to hold the current image location
1550 * in system memory.
1551 */
1552 ulong tmp_img_addr;
1553 /*
1554 * These two variables are requirements for fit_image_load, but
1555 * their values are not used
1556 */
1557 ulong img_data, img_len;
1558 void *buf;
1559 int loadables_index;
1560 int conf_noffset;
1561 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001562 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001563 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001564
1565 /* Check to see if the images struct has a FIT configuration */
1566 if (!genimg_has_config(images)) {
1567 debug("## FIT configuration was not specified\n");
1568 return 0;
1569 }
1570
1571 /*
1572 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001573 */
1574 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001575 buf = map_sysmem(tmp_img_addr, 0);
1576 /*
1577 * Check image type. For FIT images get FIT node
1578 * and attempt to locate a generic binary.
1579 */
1580 switch (genimg_get_format(buf)) {
1581 case IMAGE_FORMAT_FIT:
1582 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1583
1584 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001585 uname = fdt_stringlist_get(buf, conf_noffset,
1586 FIT_LOADABLE_PROP, loadables_index,
1587 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001588 loadables_index++)
1589 {
1590 fit_img_result = fit_image_load(images,
1591 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001592 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001593 &(images->fit_uname_cfg), arch,
1594 IH_TYPE_LOADABLE,
1595 BOOTSTAGE_ID_FIT_LOADABLE_START,
1596 FIT_LOAD_OPTIONAL_NON_ZERO,
1597 &img_data, &img_len);
1598 if (fit_img_result < 0) {
1599 /* Something went wrong! */
1600 return fit_img_result;
1601 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001602
1603 fit_img_result = fit_image_get_node(buf, uname);
1604 if (fit_img_result < 0) {
1605 /* Something went wrong! */
1606 return fit_img_result;
1607 }
1608 fit_img_result = fit_image_get_type(buf,
1609 fit_img_result,
1610 &img_type);
1611 if (fit_img_result < 0) {
1612 /* Something went wrong! */
1613 return fit_img_result;
1614 }
1615
1616 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001617 }
1618 break;
1619 default:
1620 printf("The given image format is not supported (corrupt?)\n");
1621 return 1;
1622 }
1623
1624 return 0;
1625}
1626#endif
1627
John Rigbyfca43cc2010-10-13 13:57:35 -06001628#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001629/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001630 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001631 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001632 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1633 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1634 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001635 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301636 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001637 * variable is present its contents is copied to allocated kernel
1638 * command line.
1639 *
1640 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001641 * 0 - success
1642 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001643 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001644int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001645{
1646 char *cmdline;
1647 char *s;
1648
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001649 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001650 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001651
1652 if (cmdline == NULL)
1653 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001654
Simon Glass00caae62017-08-03 12:22:12 -06001655 s = env_get("bootargs");
1656 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001657 s = "";
1658
1659 strcpy(cmdline, s);
1660
1661 *cmd_start = (ulong) & cmdline[0];
1662 *cmd_end = *cmd_start + strlen(cmdline);
1663
Stephen Warren712fbcf2011-10-18 11:11:49 +00001664 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001665
Kumar Galae822d7f2008-02-27 21:51:49 -06001666 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001667}
John Rigbyfca43cc2010-10-13 13:57:35 -06001668#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001669
John Rigbyfca43cc2010-10-13 13:57:35 -06001670#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001671/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001672 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001673 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001674 * @kbd: double pointer to board info data
1675 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001676 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001677 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001678 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001679 *
1680 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001681 * 0 - success
1682 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001683 */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001684int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001685{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001686 *kbd = (struct bd_info *)(ulong)lmb_alloc_base(lmb,
1687 sizeof(struct bd_info),
1688 0xf,
1689 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001690 if (*kbd == NULL)
1691 return -1;
1692
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001693 **kbd = *(gd->bd);
1694
Stephen Warren712fbcf2011-10-18 11:11:49 +00001695 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001696
1697#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1698 do_bdinfo(NULL, 0, 0, NULL);
1699#endif
1700
Kumar Galae822d7f2008-02-27 21:51:49 -06001701 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001702}
John Rigbyfca43cc2010-10-13 13:57:35 -06001703#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001704
1705#ifdef CONFIG_LMB
1706int image_setup_linux(bootm_headers_t *images)
1707{
1708 ulong of_size = images->ft_len;
1709 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001710 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001711 int ret;
1712
1713 if (IMAGE_ENABLE_OF_LIBFDT)
1714 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1715
1716 if (IMAGE_BOOT_GET_CMDLINE) {
1717 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1718 &images->cmdline_end);
1719 if (ret) {
1720 puts("ERROR with allocation of cmdline\n");
1721 return ret;
1722 }
1723 }
Simon Glass13d06982013-05-08 08:06:01 +00001724
1725 if (IMAGE_ENABLE_OF_LIBFDT) {
1726 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1727 if (ret)
1728 return ret;
1729 }
1730
1731 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1732 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1733 if (ret)
1734 return ret;
1735 }
1736
1737 return 0;
1738}
1739#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001740#endif /* !USE_HOSTCC */