blob: 1102483e0a31aeaaa07e05d3babfc1487165aa80 [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
Simon Glass94d0a2e2021-09-25 07:03:09 -060025#include <abuf.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010026#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010027
Simon Glass0c670fc2019-08-01 09:46:36 -060028#include <gzip.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010029#include <image.h>
Simon Glass6c03f9e2019-11-14 12:57:25 -070030#include <lz4.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050031#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010032
Simon Glassaa34fbc2016-02-22 22:55:45 -070033#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090034#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010035#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020036#include <fpga.h>
37#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010038#endif
39
Simon Glass401d1c42020-10-30 21:38:53 -060040#include <asm/global_data.h>
Andy Fleming20a14a42008-04-02 16:19:07 -050041#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020042#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090043#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000044#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010045
Julius Werner20908542019-07-24 19:37:54 -070046#include <bzlib.h>
47#include <linux/lzo.h>
48#include <lzma/LzmaTypes.h>
49#include <lzma/LzmaDec.h>
50#include <lzma/LzmaTools.h>
Robert Marko26073f92020-04-25 19:37:21 +020051#include <linux/zstd.h>
Julius Werner20908542019-07-24 19:37:54 -070052
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010053#ifdef CONFIG_CMD_BDI
Simon Glass09140112020-05-10 11:40:03 -060054extern int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
55 char *const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010056#endif
57
58DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010059
Tom Rinic76c93a2019-05-23 07:14:07 -040060#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000061static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010062 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020063#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010064#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010065#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050066#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010067#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010068#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020069
70#ifndef __maybe_unused
71# define __maybe_unused /* unimplemented */
72#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010073#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010074
Simon Glass0ccff502013-02-24 17:33:25 +000075#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000076#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000077
Simon Glass13d06982013-05-08 08:06:01 +000078#ifndef CONFIG_SYS_BARGSIZE
79#define CONFIG_SYS_BARGSIZE 512
80#endif
81
Mike Frysinger7edb1862010-10-20 07:17:39 -040082static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060083 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010084 { IH_ARCH_ALPHA, "alpha", "Alpha", },
85 { IH_ARCH_ARM, "arm", "ARM", },
86 { IH_ARCH_I386, "x86", "Intel x86", },
87 { IH_ARCH_IA64, "ia64", "IA64", },
88 { IH_ARCH_M68K, "m68k", "M68K", },
89 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
90 { IH_ARCH_MIPS, "mips", "MIPS", },
91 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010092 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070093 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010094 { IH_ARCH_PPC, "ppc", "PowerPC", },
95 { IH_ARCH_S390, "s390", "IBM S390", },
96 { IH_ARCH_SH, "sh", "SuperH", },
97 { IH_ARCH_SPARC, "sparc", "SPARC", },
98 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
99 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
100 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +0000101 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +0000102 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +0000103 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +0800104 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +0400105 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -0600106 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300107 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +0800108 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100109 { -1, "", "", },
110};
111
Mike Frysinger7edb1862010-10-20 07:17:39 -0400112static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600113 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200114 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115 { IH_OS_LINUX, "linux", "Linux", },
116#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
117 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
118#endif
119 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200120 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000121 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100122 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000123 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100124 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800125 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100126#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
127 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100128#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500129#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
130 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
131#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100132#ifdef USE_HOSTCC
133 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
134 { IH_OS_DELL, "dell", "Dell", },
135 { IH_OS_ESIX, "esix", "Esix", },
136 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
137 { IH_OS_IRIX, "irix", "Irix", },
138 { IH_OS_NCR, "ncr", "NCR", },
139 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
140 { IH_OS_PSOS, "psos", "pSOS", },
141 { IH_OS_SCO, "sco", "SCO", },
142 { IH_OS_SOLARIS, "solaris", "Solaris", },
143 { IH_OS_SVR4, "svr4", "SVR4", },
144#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100145#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
146 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
147#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200148 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200149 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100150
Marian Balakowicz570abb02008-02-29 15:59:59 +0100151 { -1, "", "", },
152};
153
Mike Frysinger7edb1862010-10-20 07:17:39 -0400154static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000155 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100156 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
157 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400158 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400159 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100160 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e82011-11-10 13:17:53 -0700161 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000162 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
163 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000164 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000165 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600166 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100167 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000168 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000169 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100170 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
171 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200172 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
173 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100174 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000175 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200176 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200177 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600178 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200179 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600180 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600181 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600182 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200183 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000184 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200185 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200186 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200187 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600188 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100189 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500190 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100191 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800192 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200193 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywara6d295092018-12-20 01:15:18 +0000194 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100195 { -1, "", "", },
196};
197
Mike Frysinger7edb1862010-10-20 07:17:39 -0400198static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100199 { IH_COMP_NONE, "none", "uncompressed", },
200 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
201 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200202 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100203 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700204 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Marko26073f92020-04-25 19:37:21 +0200205 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100206 { -1, "", "", },
207};
208
Simon Glass56d7ab72016-06-30 10:52:14 -0600209struct table_info {
210 const char *desc;
211 int count;
212 const table_entry_t *table;
213};
214
Atish Patra155d6a32020-03-05 16:24:22 -0800215static const struct comp_magic_map image_comp[] = {
216 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
217 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
218 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
219 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkin2ddb8fc2021-08-31 18:22:18 +0800220 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
221 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra155d6a32020-03-05 16:24:22 -0800222 { IH_COMP_NONE, "none", {}, },
223};
224
Simon Glass56d7ab72016-06-30 10:52:14 -0600225static const struct table_info table_info[IH_COUNT] = {
226 { "architecture", IH_ARCH_COUNT, uimage_arch },
227 { "compression", IH_COMP_COUNT, uimage_comp },
228 { "operating system", IH_OS_COUNT, uimage_os },
229 { "image type", IH_TYPE_COUNT, uimage_type },
230};
231
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100232/*****************************************************************************/
233/* Legacy format routines */
234/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100236{
237 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000238 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100239 image_header_t header;
240
241 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 memmove(&header, (char *)hdr, image_get_header_size());
243 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100244
Stephen Warren712fbcf2011-10-18 11:11:49 +0000245 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100246
Stephen Warren712fbcf2011-10-18 11:11:49 +0000247 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100248}
249
Stephen Warren712fbcf2011-10-18 11:11:49 +0000250int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100251{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000252 ulong data = image_get_data(hdr);
253 ulong len = image_get_data_size(hdr);
254 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100255
Stephen Warren712fbcf2011-10-18 11:11:49 +0000256 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100257}
258
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100259/**
260 * image_multi_count - get component (sub-image) count
261 * @hdr: pointer to the header of the multi component image
262 *
263 * image_multi_count() returns number of components in a multi
264 * component image.
265 *
266 * Note: no checking of the image type is done, caller must pass
267 * a valid multi component image.
268 *
269 * returns:
270 * number of components
271 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000272ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100273{
274 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100275 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100276
277 /* get start of the image payload, which in case of multi
278 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000279 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100280
281 /* count non empty slots */
282 for (i = 0; size[i]; ++i)
283 count++;
284
285 return count;
286}
287
288/**
289 * image_multi_getimg - get component data address and size
290 * @hdr: pointer to the header of the multi component image
291 * @idx: index of the requested component
292 * @data: pointer to a ulong variable, will hold component data address
293 * @len: pointer to a ulong variable, will hold component size
294 *
295 * image_multi_getimg() returns size and data address for the requested
296 * component in a multi component image.
297 *
298 * Note: no checking of the image type is done, caller must pass
299 * a valid multi component image.
300 *
301 * returns:
302 * data address and size of the component, if idx is valid
303 * 0 in data and len, if idx is out of range
304 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000305void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100306 ulong *data, ulong *len)
307{
308 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100309 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700310 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100311
312 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100314
315 /* get start of the image payload, which in case of multi
316 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000317 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100318
319 /* get address of the proper component data start, which means
320 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000321 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100322
323 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000324 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100325 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100326
327 /* go over all indices preceding requested component idx */
328 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700329 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000330 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100331 }
332
333 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700334 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100335 } else {
336 *len = 0;
337 *data = 0;
338 }
339}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100340
Stephen Warren712fbcf2011-10-18 11:11:49 +0000341static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100342{
Heiko Schocher80402f32015-06-29 09:10:46 +0200343 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344
Stephen Warren712fbcf2011-10-18 11:11:49 +0000345 os = genimg_get_os_name(image_get_os(hdr));
346 arch = genimg_get_arch_name(image_get_arch(hdr));
347 type = genimg_get_type_name(image_get_type(hdr));
348 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100349
Stephen Warren712fbcf2011-10-18 11:11:49 +0000350 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100351}
352
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100353/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200354 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200355 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100356 * @p: pointer to prefix string
357 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200358 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100359 * The routine prints out all header fields followed by the size/offset data
360 * for MULTI/SCRIPT images.
361 *
362 * returns:
363 * no returned results
364 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100366{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200367 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200368 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200369
Simon Glass1fe7d932013-05-08 08:05:58 +0000370 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000371 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000372 if (IMAGE_ENABLE_TIMESTAMP) {
373 printf("%sCreated: ", p);
374 genimg_print_time((time_t)image_get_time(hdr));
375 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000376 printf("%sImage Type: ", p);
377 image_print_type(hdr);
378 printf("%sData Size: ", p);
379 genimg_print_size(image_get_data_size(hdr));
380 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
381 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100382
Stephen Warren712fbcf2011-10-18 11:11:49 +0000383 if (image_check_type(hdr, IH_TYPE_MULTI) ||
384 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100385 int i;
386 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000387 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100388
Stephen Warren712fbcf2011-10-18 11:11:49 +0000389 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100390 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000391 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100392
Stephen Warren712fbcf2011-10-18 11:11:49 +0000393 printf("%s Image %d: ", p, i);
394 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100395
Stephen Warren712fbcf2011-10-18 11:11:49 +0000396 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100397 /*
398 * the user may need to know offsets
399 * if planning to do something with
400 * multiple files
401 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000402 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100403 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100404 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100405 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
406 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000407 image_get_load(hdr) - image_get_header_size(),
408 (int)(image_get_size(hdr) + image_get_header_size()
409 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100410 }
411}
412
Julius Werner20908542019-07-24 19:37:54 -0700413/**
414 * print_decomp_msg() - Print a suitable decompression/loading message
415 *
416 * @type: OS type (IH_OS_...)
417 * @comp_type: Compression type being used (IH_COMP_...)
418 * @is_xip: true if the load address matches the image start
419 */
420static void print_decomp_msg(int comp_type, int type, bool is_xip)
421{
422 const char *name = genimg_get_type_name(type);
423
424 if (comp_type == IH_COMP_NONE)
425 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
426 else
427 printf(" Uncompressing %s\n", name);
428}
429
Atish Patra155d6a32020-03-05 16:24:22 -0800430int image_decomp_type(const unsigned char *buf, ulong len)
431{
432 const struct comp_magic_map *cmagic = image_comp;
433
434 if (len < 2)
435 return -EINVAL;
436
437 for (; cmagic->comp_id > 0; cmagic++) {
438 if (!memcmp(buf, cmagic->magic, 2))
439 break;
440 }
441
442 return cmagic->comp_id;
443}
444
Julius Werner20908542019-07-24 19:37:54 -0700445int image_decomp(int comp, ulong load, ulong image_start, int type,
446 void *load_buf, void *image_buf, ulong image_len,
447 uint unc_len, ulong *load_end)
448{
Simon Glassb876eb82021-09-25 07:03:11 -0600449 int ret = -ENOSYS;
Julius Werner20908542019-07-24 19:37:54 -0700450
451 *load_end = load;
452 print_decomp_msg(comp, type, load == image_start);
453
454 /*
455 * Load the image to the right place, decompressing if needed. After
456 * this, image_len will be set to the number of uncompressed bytes
457 * loaded, ret will be non-zero on error.
458 */
459 switch (comp) {
460 case IH_COMP_NONE:
Simon Glassb876eb82021-09-25 07:03:11 -0600461 ret = 0;
Julius Werner20908542019-07-24 19:37:54 -0700462 if (load == image_start)
463 break;
464 if (image_len <= unc_len)
465 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
466 else
467 ret = -ENOSPC;
468 break;
Frieder Schrempf3bbe1a72021-02-05 16:11:06 -0800469#ifndef USE_HOSTCC
470#if CONFIG_IS_ENABLED(GZIP)
Julius Werner20908542019-07-24 19:37:54 -0700471 case IH_COMP_GZIP: {
472 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
473 break;
474 }
475#endif /* CONFIG_GZIP */
Frieder Schrempf3bbe1a72021-02-05 16:11:06 -0800476#endif
477#ifndef USE_HOSTCC
478#if CONFIG_IS_ENABLED(BZIP2)
Julius Werner20908542019-07-24 19:37:54 -0700479 case IH_COMP_BZIP2: {
480 uint size = unc_len;
481
482 /*
483 * If we've got less than 4 MB of malloc() space,
484 * use slower decompression algorithm which requires
485 * at most 2300 KB of memory.
486 */
487 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
488 image_buf, image_len,
489 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
490 image_len = size;
491 break;
492 }
493#endif /* CONFIG_BZIP2 */
Frieder Schrempf3bbe1a72021-02-05 16:11:06 -0800494#endif
495#ifndef USE_HOSTCC
496#if CONFIG_IS_ENABLED(LZMA)
Julius Werner20908542019-07-24 19:37:54 -0700497 case IH_COMP_LZMA: {
498 SizeT lzma_len = unc_len;
499
500 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
501 image_buf, image_len);
502 image_len = lzma_len;
503 break;
504 }
505#endif /* CONFIG_LZMA */
Frieder Schrempf3bbe1a72021-02-05 16:11:06 -0800506#endif
507#ifndef USE_HOSTCC
508#if CONFIG_IS_ENABLED(LZO)
Julius Werner20908542019-07-24 19:37:54 -0700509 case IH_COMP_LZO: {
510 size_t size = unc_len;
511
512 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
513 image_len = size;
514 break;
515 }
516#endif /* CONFIG_LZO */
Frieder Schrempf3bbe1a72021-02-05 16:11:06 -0800517#endif
518#ifndef USE_HOSTCC
519#if CONFIG_IS_ENABLED(LZ4)
Julius Werner20908542019-07-24 19:37:54 -0700520 case IH_COMP_LZ4: {
521 size_t size = unc_len;
522
523 ret = ulz4fn(image_buf, image_len, load_buf, &size);
524 image_len = size;
525 break;
526 }
527#endif /* CONFIG_LZ4 */
Frieder Schrempf3bbe1a72021-02-05 16:11:06 -0800528#endif
529#ifndef USE_HOSTCC
530#if CONFIG_IS_ENABLED(ZSTD)
Robert Marko26073f92020-04-25 19:37:21 +0200531 case IH_COMP_ZSTD: {
Simon Glass94d0a2e2021-09-25 07:03:09 -0600532 struct abuf in, out;
Robert Marko26073f92020-04-25 19:37:21 +0200533
Simon Glass94d0a2e2021-09-25 07:03:09 -0600534 abuf_init_set(&in, image_buf, image_len);
535 abuf_init_set(&in, load_buf, unc_len);
536 ret = zstd_decompress(&in, &out);
537 if (ret < 0) {
538 printf("ZSTD decompression failed\n");
539 return ret;
Robert Marko26073f92020-04-25 19:37:21 +0200540 }
541
Simon Glass94d0a2e2021-09-25 07:03:09 -0600542 image_len = ret;
Robert Marko26073f92020-04-25 19:37:21 +0200543 break;
544 }
545#endif /* CONFIG_ZSTD */
Frieder Schrempf3bbe1a72021-02-05 16:11:06 -0800546#endif
Julius Werner20908542019-07-24 19:37:54 -0700547 }
Simon Glassb876eb82021-09-25 07:03:11 -0600548 if (ret == -ENOSYS) {
549 printf("Unimplemented compression type %d\n", comp);
550 return ret;
551 }
552 if (ret)
553 return ret;
Julius Werner20908542019-07-24 19:37:54 -0700554
555 *load_end = load + image_len;
556
Simon Glassb876eb82021-09-25 07:03:11 -0600557 return 0;
Julius Werner20908542019-07-24 19:37:54 -0700558}
559
Marian Balakowicz570abb02008-02-29 15:59:59 +0100560#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400561#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100562/**
563 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100564 * @rd_addr: ramdisk image start address
565 * @arch: expected ramdisk architecture
566 * @verify: checksum verification flag
567 *
568 * image_get_ramdisk() returns a pointer to the verified ramdisk image
569 * header. Routine receives image start address and expected architecture
570 * flag. Verification done covers data and header integrity and os/type/arch
571 * fields checking.
572 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100573 * returns:
574 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600575 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100576 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000577static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100578 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100579{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200580 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100581
Stephen Warren712fbcf2011-10-18 11:11:49 +0000582 if (!image_check_magic(rd_hdr)) {
583 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000584 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600585 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100586 }
587
Stephen Warren712fbcf2011-10-18 11:11:49 +0000588 if (!image_check_hcrc(rd_hdr)) {
589 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000590 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600591 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100592 }
593
Simon Glass770605e2012-02-13 13:51:18 +0000594 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000595 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100596
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100597 if (verify) {
598 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000599 if (!image_check_dcrc(rd_hdr)) {
600 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000601 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600602 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100603 }
604 puts("OK\n");
605 }
606
Simon Glass770605e2012-02-13 13:51:18 +0000607 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100608
Stephen Warren712fbcf2011-10-18 11:11:49 +0000609 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
610 !image_check_arch(rd_hdr, arch) ||
611 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
612 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100613 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000614 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600615 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100616 }
617
618 return rd_hdr;
619}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200620#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100621#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100622
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100623/*****************************************************************************/
624/* Shared dual-format routines */
625/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100626#ifndef USE_HOSTCC
Simon Glassbb872dd2019-12-28 10:45:02 -0700627ulong image_load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
628ulong image_save_addr; /* Default Save Address */
629ulong image_save_size; /* Default Save Size (in bytes) */
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600630
631static int on_loadaddr(const char *name, const char *value, enum env_op op,
632 int flags)
633{
634 switch (op) {
635 case env_op_create:
636 case env_op_overwrite:
Simon Glass7e5f4602021-07-24 09:03:29 -0600637 image_load_addr = hextoul(value, NULL);
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600638 break;
639 default:
640 break;
641 }
642
643 return 0;
644}
645U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
646
Simon Glass723806c2017-08-03 12:22:15 -0600647ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100648{
Simon Glass00caae62017-08-03 12:22:12 -0600649 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100650 if (s) {
Simon Glass7e5f4602021-07-24 09:03:29 -0600651 ulong tmp = hextoul(s, NULL);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100652 return tmp;
653 }
654
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200655#if defined(CONFIG_SYS_SDRAM_BASE)
656 return CONFIG_SYS_SDRAM_BASE;
Samuel Hollanddd573b62021-09-12 11:26:45 -0500657#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE) || defined(CONFIG_RISCV)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100658 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100659#else
660 return 0;
661#endif
662}
663
Simon Glass723806c2017-08-03 12:22:15 -0600664phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100665{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900666 phys_size_t tmp, size;
667 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600668 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100669 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000670 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100671 return tmp;
672 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900673
Stefan Roese4963f632020-08-12 12:57:18 +0200674 start = gd->ram_base;
675 size = gd->ram_size;
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900676
Baruch Siach7f98b4e2020-08-24 20:14:05 +0300677 if (start + size > gd->ram_top)
678 size = gd->ram_top - start;
679
Simon Glass00caae62017-08-03 12:22:12 -0600680 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500681 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000682 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500683 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900684 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500685
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900686 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100687}
688
Simon Glass723806c2017-08-03 12:22:15 -0600689phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000690{
691 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600692 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000693 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000694 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000695 return tmp;
696 }
697
698#if defined(CONFIG_SYS_BOOTMAPSZ)
699 return CONFIG_SYS_BOOTMAPSZ;
700#else
Simon Glass723806c2017-08-03 12:22:15 -0600701 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000702#endif
703}
704
Stephen Warren712fbcf2011-10-18 11:11:49 +0000705void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100706{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400707 if (to == from)
708 return;
709
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100710#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800711 if (to > from) {
712 from += len;
713 to += len;
714 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100715 while (len > 0) {
716 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000717 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800718 if (to > from) {
719 to -= tail;
720 from -= tail;
721 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000722 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800723 if (to < from) {
724 to += tail;
725 from += tail;
726 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100727 len -= tail;
728 }
729#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000730 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100731#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
732}
Julius Werner20908542019-07-24 19:37:54 -0700733#else /* USE_HOSTCC */
734void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
735{
736 memmove(to, from, len);
737}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100738#endif /* !USE_HOSTCC */
739
Stephen Warren712fbcf2011-10-18 11:11:49 +0000740void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100741{
742#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000743 printf("%d Bytes = ", size);
744 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100745#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100746 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100747 size, (double)size / 1.024e3,
748 (double)size / 1.048576e6);
749#endif
750}
751
Simon Glass859e92b2013-05-07 06:11:51 +0000752#if IMAGE_ENABLE_TIMESTAMP
753void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100754{
755#ifndef USE_HOSTCC
756 struct rtc_time tm;
757
Simon Glass9f9276c2015-04-20 12:37:18 -0600758 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000759 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100760 tm.tm_year, tm.tm_mon, tm.tm_mday,
761 tm.tm_hour, tm.tm_min, tm.tm_sec);
762#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000763 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100764#endif
765}
Simon Glass859e92b2013-05-07 06:11:51 +0000766#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100767
Simon Glass5b9d44d2015-06-23 15:38:25 -0600768const table_entry_t *get_table_entry(const table_entry_t *table, int id)
769{
770 for (; table->id >= 0; ++table) {
771 if (table->id == id)
772 return table;
773 }
774 return NULL;
775}
776
Simon Glass14262202016-06-30 10:52:16 -0600777static const char *unknown_msg(enum ih_category category)
778{
Simon Glassae3de0d2016-10-31 10:21:09 -0600779 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600780 static char msg[30];
781
Simon Glassae3de0d2016-10-31 10:21:09 -0600782 strcpy(msg, unknown_str);
783 strncat(msg, table_info[category].desc,
784 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600785
786 return msg;
787}
788
789/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900790 * genimg_get_cat_name - translate entry id to long name
Simon Glass14262202016-06-30 10:52:16 -0600791 * @category: category to look up (enum ih_category)
792 * @id: entry id to be translated
793 *
794 * This will scan the translation table trying to find the entry that matches
795 * the given id.
796 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900797 * @return long entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600798 */
799const char *genimg_get_cat_name(enum ih_category category, uint id)
800{
801 const table_entry_t *entry;
802
803 entry = get_table_entry(table_info[category].table, id);
804 if (!entry)
805 return unknown_msg(category);
806#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
807 return entry->lname;
808#else
809 return entry->lname + gd->reloc_off;
810#endif
811}
812
813/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900814 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass14262202016-06-30 10:52:16 -0600815 * @category: category to look up (enum ih_category)
816 * @id: entry id to be translated
817 *
818 * This will scan the translation table trying to find the entry that matches
819 * the given id.
820 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900821 * @return short entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600822 */
823const char *genimg_get_cat_short_name(enum ih_category category, uint id)
824{
825 const table_entry_t *entry;
826
827 entry = get_table_entry(table_info[category].table, id);
828 if (!entry)
829 return unknown_msg(category);
830#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
831 return entry->sname;
832#else
833 return entry->sname + gd->reloc_off;
834#endif
835}
836
837int genimg_get_cat_count(enum ih_category category)
838{
839 return table_info[category].count;
840}
841
842const char *genimg_get_cat_desc(enum ih_category category)
843{
844 return table_info[category].desc;
845}
846
Marian Balakowicz570abb02008-02-29 15:59:59 +0100847/**
Naoki Hayama02d41b02020-10-07 11:21:25 +0900848 * genimg_cat_has_id - check whether category has entry id
849 * @category: category to look up (enum ih_category)
850 * @id: entry id to be checked
851 *
852 * This will scan the translation table trying to find the entry that matches
853 * the given id.
854 *
855 * @return true if category has entry id; false if not
856 */
857bool genimg_cat_has_id(enum ih_category category, uint id)
858{
859 if (get_table_entry(table_info[category].table, id))
860 return true;
861
862 return false;
863}
864
865/**
Marian Balakowicz570abb02008-02-29 15:59:59 +0100866 * get_table_entry_name - translate entry id to long name
867 * @table: pointer to a translation table for entries of a specific type
868 * @msg: message to be returned when translation fails
869 * @id: entry id to be translated
870 *
871 * get_table_entry_name() will go over translation table trying to find
872 * entry that matches given id. If matching entry is found, its long
873 * name is returned to the caller.
874 *
875 * returns:
876 * long entry name if translation succeeds
877 * msg otherwise
878 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400879char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100880{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600881 table = get_table_entry(table, id);
882 if (!table)
883 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200884#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600885 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500886#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600887 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500888#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100889}
890
Stephen Warren712fbcf2011-10-18 11:11:49 +0000891const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100892{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000893 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100894}
895
Stephen Warren712fbcf2011-10-18 11:11:49 +0000896const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100897{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000898 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
899 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100900}
901
Stephen Warren712fbcf2011-10-18 11:11:49 +0000902const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100903{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000904 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100905}
906
Naoki Hayama898a0842020-10-07 11:22:24 +0900907const char *genimg_get_comp_name(uint8_t comp)
908{
909 return (get_table_entry_name(uimage_comp, "Unknown Compression",
910 comp));
911}
912
Simon Glasscef2e512016-02-22 22:55:50 -0700913static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600914{
Simon Glasscef2e512016-02-22 22:55:50 -0700915 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600916 if (!table)
917 return "unknown";
918#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
919 return table->sname;
920#else
921 return table->sname + gd->reloc_off;
922#endif
923}
924
Simon Glasscef2e512016-02-22 22:55:50 -0700925const char *genimg_get_type_short_name(uint8_t type)
926{
927 return genimg_get_short_name(uimage_type, type);
928}
929
Simon Glasscef2e512016-02-22 22:55:50 -0700930const char *genimg_get_comp_short_name(uint8_t comp)
931{
932 return genimg_get_short_name(uimage_comp, comp);
933}
934
935const char *genimg_get_os_short_name(uint8_t os)
936{
937 return genimg_get_short_name(uimage_os, os);
938}
939
940const char *genimg_get_arch_short_name(uint8_t arch)
941{
942 return genimg_get_short_name(uimage_arch, arch);
943}
944
Marian Balakowicz570abb02008-02-29 15:59:59 +0100945/**
946 * get_table_entry_id - translate short entry name to id
947 * @table: pointer to a translation table for entries of a specific type
948 * @table_name: to be used in case of error
949 * @name: entry short name to be translated
950 *
951 * get_table_entry_id() will go over translation table trying to find
952 * entry that matches given short name. If matching entry is found,
953 * its id returned to the caller.
954 *
955 * returns:
956 * entry id if translation succeeds
957 * -1 otherwise
958 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400959int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100960 const char *table_name, const char *name)
961{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400962 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100963
964 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200965#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600966 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200967#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600968 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500969#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100970 return (t->id);
971 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000972 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600973
974 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100975}
976
Stephen Warren712fbcf2011-10-18 11:11:49 +0000977int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100978{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000979 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100980}
981
Stephen Warren712fbcf2011-10-18 11:11:49 +0000982int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100983{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000984 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100985}
986
Stephen Warren712fbcf2011-10-18 11:11:49 +0000987int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100988{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000989 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100990}
991
Stephen Warren712fbcf2011-10-18 11:11:49 +0000992int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100993{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000994 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100995}
996
997#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100998/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700999 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
1000 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -07001001 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -07001002 * @fit_uname_config: double pointer to a char, will hold pointer to a
1003 * configuration unit name
1004 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
1005 * name
Bryan Wu0f641402014-07-31 17:39:58 -07001006 *
Bryan Wu6c454fe2014-08-15 16:51:38 -07001007 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -07001008 * which is normally the first argv of bootm/bootz
1009 *
1010 * returns:
1011 * kernel start address
1012 */
Bryan Wu6c454fe2014-08-15 16:51:38 -07001013ulong genimg_get_kernel_addr_fit(char * const img_addr,
1014 const char **fit_uname_config,
1015 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -07001016{
Bryan Wu0f641402014-07-31 17:39:58 -07001017 ulong kernel_addr;
1018
1019 /* find out kernel image address */
1020 if (!img_addr) {
Simon Glassbb872dd2019-12-28 10:45:02 -07001021 kernel_addr = image_load_addr;
Bryan Wu0f641402014-07-31 17:39:58 -07001022 debug("* kernel: default image load address = 0x%08lx\n",
Simon Glassbb872dd2019-12-28 10:45:02 -07001023 image_load_addr);
Simon Glass73223f02016-02-22 22:55:43 -07001024#if CONFIG_IS_ENABLED(FIT)
Simon Glassbb872dd2019-12-28 10:45:02 -07001025 } else if (fit_parse_conf(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001026 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001027 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001028 *fit_uname_config, kernel_addr);
Simon Glassbb872dd2019-12-28 10:45:02 -07001029 } else if (fit_parse_subimage(img_addr, image_load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -07001030 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -07001031 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -07001032 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -07001033#endif
1034 } else {
Simon Glass7e5f4602021-07-24 09:03:29 -06001035 kernel_addr = hextoul(img_addr, NULL);
Bryan Wu0f641402014-07-31 17:39:58 -07001036 debug("* kernel: cmdline image address = 0x%08lx\n",
1037 kernel_addr);
1038 }
1039
1040 return kernel_addr;
1041}
1042
1043/**
Bryan Wu6c454fe2014-08-15 16:51:38 -07001044 * genimg_get_kernel_addr() is the simple version of
1045 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
1046 */
1047ulong genimg_get_kernel_addr(char * const img_addr)
1048{
1049 const char *fit_uname_config = NULL;
1050 const char *fit_uname_kernel = NULL;
1051
1052 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
1053 &fit_uname_kernel);
1054}
1055
1056/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001057 * genimg_get_format - get image format type
1058 * @img_addr: image start address
1059 *
1060 * genimg_get_format() checks whether provided address points to a valid
1061 * legacy or FIT image.
1062 *
1063 * New uImage format and FDT blob are based on a libfdt. FDT blob
1064 * may be passed directly or embedded in a FIT image. In both situations
1065 * genimg_get_format() must be able to dectect libfdt header.
1066 *
1067 * returns:
1068 * image format type or IMAGE_FORMAT_INVALID if no image is present
1069 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001070int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001071{
Tom Rinic76c93a2019-05-23 07:14:07 -04001072#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001073 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001074
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001075 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001076 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +02001077 return IMAGE_FORMAT_LEGACY;
1078#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -07001079#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +02001080 if (fdt_check_header(img_addr) == 0)
1081 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001082#endif
1083#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001084 if (android_image_check_header(img_addr) == 0)
1085 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001086#endif
1087
Heiko Schocher21d29f72014-05-28 11:33:33 +02001088 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001089}
1090
1091/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001092 * fit_has_config - check if there is a valid FIT configuration
1093 * @images: pointer to the bootm command headers structure
1094 *
1095 * fit_has_config() checks if there is a FIT configuration in use
1096 * (if FTI support is present).
1097 *
1098 * returns:
1099 * 0, no FIT support or no configuration found
1100 * 1, configuration found
1101 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001102int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001103{
Simon Glass73223f02016-02-22 22:55:43 -07001104#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001105 if (images->fit_uname_cfg)
1106 return 1;
1107#endif
1108 return 0;
1109}
1110
1111/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001112 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001113 * @argc: command argument count
1114 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001115 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001116 * @arch: expected ramdisk architecture
1117 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1118 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1119 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001120 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001121 * Curently supported are the following ramdisk sources:
1122 * - multicomponent kernel/ramdisk image,
1123 * - commandline provided address of decicated ramdisk image.
1124 *
1125 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001126 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001127 * rd_start and rd_end are set to ramdisk start/end addresses if
1128 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001129 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001130 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001131 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001132 */
Simon Glass09140112020-05-10 11:40:03 -06001133int boot_get_ramdisk(int argc, char *const argv[], bootm_headers_t *images,
1134 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001135{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001136 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001137 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001138#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001139 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001140#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001141 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001142#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001143 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001144#endif
Simon Glass73223f02016-02-22 22:55:43 -07001145#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001146 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001147 const char *fit_uname_ramdisk = NULL;
1148 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001149 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001150#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001151 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001152
Marian Balakowiczc8779642008-03-12 10:12:37 +01001153 *rd_start = 0;
1154 *rd_end = 0;
1155
Tom Rini1fec3c52015-08-27 15:42:41 -04001156#ifdef CONFIG_ANDROID_BOOT_IMAGE
1157 /*
1158 * Look for an Android boot image.
1159 */
1160 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001161 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001162 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001163#endif
1164
Simon Glass983c72f2013-06-11 11:14:46 -07001165 if (argc >= 2)
1166 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001167
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001168 /*
1169 * Look for a '-' which indicates to ignore the
1170 * ramdisk argument
1171 */
Simon Glass983c72f2013-06-11 11:14:46 -07001172 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001173 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001174 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001175 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001176#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001177 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001178 /*
1179 * If the init ramdisk comes from the FIT image and
1180 * the FIT image address is omitted in the command
1181 * line argument, try to use os FIT image address or
1182 * default load address.
1183 */
1184 if (images->fit_uname_os)
1185 default_addr = (ulong)images->fit_hdr_os;
1186 else
Simon Glassbb872dd2019-12-28 10:45:02 -07001187 default_addr = image_load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001188
Simon Glass983c72f2013-06-11 11:14:46 -07001189 if (fit_parse_conf(select, default_addr,
1190 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001191 debug("* ramdisk: config '%s' from image at "
1192 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001193 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001194 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001195 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001196 debug("* ramdisk: subimage '%s' from image at "
1197 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001198 fit_uname_ramdisk, rd_addr);
1199 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001200#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001201 {
Simon Glass7e5f4602021-07-24 09:03:29 -06001202 rd_addr = hextoul(select, NULL);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001203 debug("* ramdisk: cmdline image address = "
1204 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001205 rd_addr);
1206 }
Simon Glass73223f02016-02-22 22:55:43 -07001207#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001208 } else {
1209 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001210 * command argument. If the property is not defined,
1211 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001212 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001213 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001214 rd_noffset = fit_get_node_from_config(images,
1215 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001216 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001217 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001218 else if (rd_noffset < 0)
1219 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001220 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001221#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001222
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001223 /*
1224 * Check if there is an initrd image at the
1225 * address provided in the second bootm argument
1226 * check image type, for FIT images get FIT node.
1227 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001228 buf = map_sysmem(rd_addr, 0);
1229 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001230#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001231 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001232 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001233 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001234
Simon Glass770605e2012-02-13 13:51:18 +00001235 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001236 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001237 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001238
Marian Balakowiczc8779642008-03-12 10:12:37 +01001239 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001240 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001241
Stephen Warren712fbcf2011-10-18 11:11:49 +00001242 rd_data = image_get_data(rd_hdr);
1243 rd_len = image_get_data_size(rd_hdr);
1244 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001245 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001246#endif
Simon Glass73223f02016-02-22 22:55:43 -07001247#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001248 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001249 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001250 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001251 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001252 IH_TYPE_RAMDISK,
1253 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001254 FIT_LOAD_OPTIONAL_NON_ZERO,
1255 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001256 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001257 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001258
Simon Glassa51ec632013-05-16 13:53:22 +00001259 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001260 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001261 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001262 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001263#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001264#ifdef CONFIG_ANDROID_BOOT_IMAGE
1265 case IMAGE_FORMAT_ANDROID:
1266 android_image_get_ramdisk((void *)images->os.start,
1267 &rd_data, &rd_len);
1268 break;
1269#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001270 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001271#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001272 end = NULL;
1273 if (select)
1274 end = strchr(select, ':');
1275 if (end) {
Simon Glass7e5f4602021-07-24 09:03:29 -06001276 rd_len = hextoul(++end, NULL);
Marek Vasut017e1f32012-03-18 11:47:58 +00001277 rd_data = rd_addr;
1278 } else
1279#endif
1280 {
1281 puts("Wrong Ramdisk Image Format\n");
1282 rd_data = rd_len = rd_load = 0;
1283 return 1;
1284 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001285 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001286 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001287 image_check_type(&images->legacy_hdr_os_copy,
1288 IH_TYPE_MULTI)) {
1289
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001290 /*
1291 * Now check if we have a legacy mult-component image,
1292 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001293 */
Simon Glass770605e2012-02-13 13:51:18 +00001294 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001295 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001296 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001297 (ulong)images->legacy_hdr_os);
1298
Stephen Warren712fbcf2011-10-18 11:11:49 +00001299 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001300 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001301 /*
1302 * no initrd image
1303 */
Simon Glass770605e2012-02-13 13:51:18 +00001304 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001305 rd_len = rd_data = 0;
1306 }
1307
1308 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001309 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001310 } else {
1311 *rd_start = rd_data;
1312 *rd_end = rd_data + rd_len;
1313 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001314 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001315 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001316
1317 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001318}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001319
John Rigbyfca43cc2010-10-13 13:57:35 -06001320#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001321/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001322 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001323 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001324 * @rd_data: ramdisk data start address
1325 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001326 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1327 * start address (after possible relocation)
1328 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1329 * end address (after possible relocation)
1330 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001331 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001332 * variable and if requested ramdisk data is moved to a specified location.
1333 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001334 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1335 * start/end addresses if ramdisk image start and len were provided,
1336 * otherwise set initrd_start and initrd_end set to zeros.
1337 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001338 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001339 * 0 - success
1340 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001341 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001342int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001343 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001344{
1345 char *s;
1346 ulong initrd_high;
1347 int initrd_copy_to_ram = 1;
1348
Simon Glass00caae62017-08-03 12:22:12 -06001349 s = env_get("initrd_high");
1350 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001351 /* a value of "no" or a similar string will act like 0,
1352 * turning the "load high" feature off. This is intentional.
1353 */
Simon Glass7e5f4602021-07-24 09:03:29 -06001354 initrd_high = hextoul(s, NULL);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001355 if (initrd_high == ~0)
1356 initrd_copy_to_ram = 0;
1357 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001358 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001359 }
1360
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001361
Stephen Warren712fbcf2011-10-18 11:11:49 +00001362 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001363 initrd_high, initrd_copy_to_ram);
1364
1365 if (rd_data) {
1366 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001367 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001368 *initrd_start = rd_data;
1369 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001370 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001371 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001372 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001373 *initrd_start = (ulong)lmb_alloc_base(lmb,
1374 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001375 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001376 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1377 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001378
Kumar Galae822d7f2008-02-27 21:51:49 -06001379 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001380 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001381 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001382 }
Simon Glass770605e2012-02-13 13:51:18 +00001383 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001384
1385 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001386 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001387 *initrd_start, *initrd_end);
1388
Stephen Warren712fbcf2011-10-18 11:11:49 +00001389 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001390 (void *)rd_data, rd_len, CHUNKSZ);
1391
Kumar Gala3b200112011-12-07 04:42:58 +00001392#ifdef CONFIG_MP
1393 /*
1394 * Ensure the image is flushed to memory to handle
1395 * AMP boot scenarios in which we might not be
1396 * HW cache coherent
1397 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001398 flush_cache((unsigned long)*initrd_start,
1399 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001400#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001401 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001402 }
1403 } else {
1404 *initrd_start = 0;
1405 *initrd_end = 0;
1406 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001407 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001408 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001409
Kumar Galae822d7f2008-02-27 21:51:49 -06001410 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001411
Kumar Galae822d7f2008-02-27 21:51:49 -06001412error:
1413 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001414}
John Rigbyfca43cc2010-10-13 13:57:35 -06001415#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001416
Simon Glass90268b82014-10-19 21:11:24 -06001417int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1418 ulong *setup_start, ulong *setup_len)
1419{
Simon Glass73223f02016-02-22 22:55:43 -07001420#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001421 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1422#else
1423 return -ENOENT;
1424#endif
1425}
1426
Simon Glass73223f02016-02-22 22:55:43 -07001427#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001428#if defined(CONFIG_FPGA)
Simon Glass09140112020-05-10 11:40:03 -06001429int boot_get_fpga(int argc, char *const argv[], bootm_headers_t *images,
Michal Simek62afc602016-05-17 14:03:50 +02001430 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1431{
1432 ulong tmp_img_addr, img_data, img_len;
1433 void *buf;
1434 int conf_noffset;
1435 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001436 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001437 int err;
1438 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001439
1440 /* Check to see if the images struct has a FIT configuration */
1441 if (!genimg_has_config(images)) {
1442 debug("## FIT configuration was not specified\n");
1443 return 0;
1444 }
1445
1446 /*
1447 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001448 */
1449 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001450 buf = map_sysmem(tmp_img_addr, 0);
1451 /*
1452 * Check image type. For FIT images get FIT node
1453 * and attempt to locate a generic binary.
1454 */
1455 switch (genimg_get_format(buf)) {
1456 case IMAGE_FORMAT_FIT:
1457 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1458
Simon Glassb02e4042016-10-02 17:59:28 -06001459 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1460 NULL);
1461 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001462 debug("## FPGA image is not specified\n");
1463 return 0;
1464 }
1465 fit_img_result = fit_image_load(images,
1466 tmp_img_addr,
1467 (const char **)&uname,
1468 &(images->fit_uname_cfg),
1469 arch,
1470 IH_TYPE_FPGA,
1471 BOOTSTAGE_ID_FPGA_INIT,
1472 FIT_LOAD_OPTIONAL_NON_ZERO,
1473 &img_data, &img_len);
1474
1475 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1476 uname, img_data, img_len);
1477
1478 if (fit_img_result < 0) {
1479 /* Something went wrong! */
1480 return fit_img_result;
1481 }
1482
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001483 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001484 name = "full";
1485 err = fpga_loadbitstream(devnum, (char *)img_data,
1486 img_len, BIT_FULL);
1487 if (err)
1488 err = fpga_load(devnum, (const void *)img_data,
1489 img_len, BIT_FULL);
1490 } else {
1491 name = "partial";
1492 err = fpga_loadbitstream(devnum, (char *)img_data,
1493 img_len, BIT_PARTIAL);
1494 if (err)
1495 err = fpga_load(devnum, (const void *)img_data,
1496 img_len, BIT_PARTIAL);
1497 }
1498
Michal Simek62afc602016-05-17 14:03:50 +02001499 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001500 return err;
1501
1502 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001503 break;
1504 default:
1505 printf("The given image format is not supported (corrupt?)\n");
1506 return 1;
1507 }
1508
1509 return 0;
1510}
1511#endif
1512
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001513static void fit_loadable_process(uint8_t img_type,
1514 ulong img_data,
1515 ulong img_len)
1516{
1517 int i;
1518 const unsigned int count =
1519 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1520 struct fit_loadable_tbl *fit_loadable_handler =
1521 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1522 /* For each loadable handler */
1523 for (i = 0; i < count; i++, fit_loadable_handler++)
1524 /* matching this type */
1525 if (fit_loadable_handler->type == img_type)
1526 /* call that handler with this image data */
1527 fit_loadable_handler->handler(img_data, img_len);
1528}
1529
Simon Glass09140112020-05-10 11:40:03 -06001530int boot_get_loadable(int argc, char *const argv[], bootm_headers_t *images,
1531 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
Karl Apsite84a07db2015-05-21 09:52:48 -04001532{
1533 /*
1534 * These variables are used to hold the current image location
1535 * in system memory.
1536 */
1537 ulong tmp_img_addr;
1538 /*
1539 * These two variables are requirements for fit_image_load, but
1540 * their values are not used
1541 */
1542 ulong img_data, img_len;
1543 void *buf;
1544 int loadables_index;
1545 int conf_noffset;
1546 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001547 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001548 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001549
1550 /* Check to see if the images struct has a FIT configuration */
1551 if (!genimg_has_config(images)) {
1552 debug("## FIT configuration was not specified\n");
1553 return 0;
1554 }
1555
1556 /*
1557 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001558 */
1559 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001560 buf = map_sysmem(tmp_img_addr, 0);
1561 /*
1562 * Check image type. For FIT images get FIT node
1563 * and attempt to locate a generic binary.
1564 */
1565 switch (genimg_get_format(buf)) {
1566 case IMAGE_FORMAT_FIT:
1567 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1568
1569 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001570 uname = fdt_stringlist_get(buf, conf_noffset,
1571 FIT_LOADABLE_PROP, loadables_index,
1572 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001573 loadables_index++)
1574 {
1575 fit_img_result = fit_image_load(images,
1576 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001577 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001578 &(images->fit_uname_cfg), arch,
1579 IH_TYPE_LOADABLE,
1580 BOOTSTAGE_ID_FIT_LOADABLE_START,
1581 FIT_LOAD_OPTIONAL_NON_ZERO,
1582 &img_data, &img_len);
1583 if (fit_img_result < 0) {
1584 /* Something went wrong! */
1585 return fit_img_result;
1586 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001587
1588 fit_img_result = fit_image_get_node(buf, uname);
1589 if (fit_img_result < 0) {
1590 /* Something went wrong! */
1591 return fit_img_result;
1592 }
1593 fit_img_result = fit_image_get_type(buf,
1594 fit_img_result,
1595 &img_type);
1596 if (fit_img_result < 0) {
1597 /* Something went wrong! */
1598 return fit_img_result;
1599 }
1600
1601 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001602 }
1603 break;
1604 default:
1605 printf("The given image format is not supported (corrupt?)\n");
1606 return 1;
1607 }
1608
1609 return 0;
1610}
1611#endif
1612
John Rigbyfca43cc2010-10-13 13:57:35 -06001613#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001614/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001615 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001616 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001617 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1618 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1619 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001620 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301621 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001622 * variable is present its contents is copied to allocated kernel
1623 * command line.
1624 *
1625 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001626 * 0 - success
1627 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001628 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001629int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001630{
1631 char *cmdline;
1632 char *s;
1633
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001634 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001635 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001636
1637 if (cmdline == NULL)
1638 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001639
Simon Glass00caae62017-08-03 12:22:12 -06001640 s = env_get("bootargs");
1641 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001642 s = "";
1643
1644 strcpy(cmdline, s);
1645
1646 *cmd_start = (ulong) & cmdline[0];
1647 *cmd_end = *cmd_start + strlen(cmdline);
1648
Stephen Warren712fbcf2011-10-18 11:11:49 +00001649 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001650
Kumar Galae822d7f2008-02-27 21:51:49 -06001651 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001652}
John Rigbyfca43cc2010-10-13 13:57:35 -06001653#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001654
John Rigbyfca43cc2010-10-13 13:57:35 -06001655#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001656/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001657 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001658 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001659 * @kbd: double pointer to board info data
1660 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001661 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001662 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001663 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001664 *
1665 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001666 * 0 - success
1667 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001668 */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001669int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001670{
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09001671 *kbd = (struct bd_info *)(ulong)lmb_alloc_base(lmb,
1672 sizeof(struct bd_info),
1673 0xf,
1674 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001675 if (*kbd == NULL)
1676 return -1;
1677
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001678 **kbd = *(gd->bd);
1679
Stephen Warren712fbcf2011-10-18 11:11:49 +00001680 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001681
1682#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1683 do_bdinfo(NULL, 0, 0, NULL);
1684#endif
1685
Kumar Galae822d7f2008-02-27 21:51:49 -06001686 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001687}
John Rigbyfca43cc2010-10-13 13:57:35 -06001688#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001689
1690#ifdef CONFIG_LMB
1691int image_setup_linux(bootm_headers_t *images)
1692{
1693 ulong of_size = images->ft_len;
1694 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001695 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001696 int ret;
1697
1698 if (IMAGE_ENABLE_OF_LIBFDT)
1699 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1700
1701 if (IMAGE_BOOT_GET_CMDLINE) {
1702 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1703 &images->cmdline_end);
1704 if (ret) {
1705 puts("ERROR with allocation of cmdline\n");
1706 return ret;
1707 }
1708 }
Simon Glass13d06982013-05-08 08:06:01 +00001709
1710 if (IMAGE_ENABLE_OF_LIBFDT) {
1711 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1712 if (ret)
1713 return ret;
1714 }
1715
1716 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1717 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1718 if (ret)
1719 return ret;
1720 }
1721
1722 return 0;
1723}
1724#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001725#endif /* !USE_HOSTCC */