blob: eb626dcac92b0ad5b0a9ed7672b7e670756463a9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01002/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2006
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01007 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01008
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01009#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010010#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -070011#include <cpu_func.h>
Simon Glass7b51b572019-08-01 09:46:52 -060012#include <env.h>
Simon Glass3db71102019-11-14 12:57:16 -070013#include <u-boot/crc.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010014#include <watchdog.h>
15
16#ifdef CONFIG_SHOW_BOOT_PROGRESS
17#include <status_led.h>
18#endif
19
Marian Balakowicz2242f532008-02-21 17:27:41 +010020#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010021
Simon Glass0c670fc2019-08-01 09:46:36 -060022#include <gzip.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010023#include <image.h>
Simon Glass6c03f9e2019-11-14 12:57:25 -070024#include <lz4.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050025#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010026
Simon Glassaa34fbc2016-02-22 22:55:45 -070027#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090028#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010029#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020030#include <fpga.h>
31#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010032#endif
33
Andy Fleming20a14a42008-04-02 16:19:07 -050034#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020035#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090036#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000037#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010038
Julius Werner20908542019-07-24 19:37:54 -070039#include <bzlib.h>
40#include <linux/lzo.h>
41#include <lzma/LzmaTypes.h>
42#include <lzma/LzmaDec.h>
43#include <lzma/LzmaTools.h>
44
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010045#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020046extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010047#endif
48
49DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010050
Tom Rinic76c93a2019-05-23 07:14:07 -040051#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000052static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010053 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020054#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010056#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050057#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010058#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010059#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020060
61#ifndef __maybe_unused
62# define __maybe_unused /* unimplemented */
63#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010064#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010065
Simon Glass0ccff502013-02-24 17:33:25 +000066#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000067#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000068
Simon Glass13d06982013-05-08 08:06:01 +000069#ifndef CONFIG_SYS_BARGSIZE
70#define CONFIG_SYS_BARGSIZE 512
71#endif
72
Mike Frysinger7edb1862010-10-20 07:17:39 -040073static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060074 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010075 { IH_ARCH_ALPHA, "alpha", "Alpha", },
76 { IH_ARCH_ARM, "arm", "ARM", },
77 { IH_ARCH_I386, "x86", "Intel x86", },
78 { IH_ARCH_IA64, "ia64", "IA64", },
79 { IH_ARCH_M68K, "m68k", "M68K", },
80 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
81 { IH_ARCH_MIPS, "mips", "MIPS", },
82 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010083 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070084 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010085 { IH_ARCH_PPC, "ppc", "PowerPC", },
86 { IH_ARCH_S390, "s390", "IBM S390", },
87 { IH_ARCH_SH, "sh", "SuperH", },
88 { IH_ARCH_SPARC, "sparc", "SPARC", },
89 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
90 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
91 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000092 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000093 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000094 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080095 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040096 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060097 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030098 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +080099 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100100 { -1, "", "", },
101};
102
Mike Frysinger7edb1862010-10-20 07:17:39 -0400103static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600104 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200105 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100106 { IH_OS_LINUX, "linux", "Linux", },
107#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
108 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
109#endif
110 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200111 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000112 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100113 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000114 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800116 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100117#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
118 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100119#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500120#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
121 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
122#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100123#ifdef USE_HOSTCC
124 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
125 { IH_OS_DELL, "dell", "Dell", },
126 { IH_OS_ESIX, "esix", "Esix", },
127 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
128 { IH_OS_IRIX, "irix", "Irix", },
129 { IH_OS_NCR, "ncr", "NCR", },
130 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
131 { IH_OS_PSOS, "psos", "pSOS", },
132 { IH_OS_SCO, "sco", "SCO", },
133 { IH_OS_SOLARIS, "solaris", "Solaris", },
134 { IH_OS_SVR4, "svr4", "SVR4", },
135#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100136#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
137 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
138#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200139 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Marek Vasut67ddd952014-12-16 14:07:21 +0100140
Marian Balakowicz570abb02008-02-29 15:59:59 +0100141 { -1, "", "", },
142};
143
Mike Frysinger7edb1862010-10-20 07:17:39 -0400144static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000145 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100146 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
147 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400148 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400149 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100150 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700151 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000152 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
153 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000154 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000155 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600156 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100157 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000158 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000159 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100160 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
161 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200162 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
163 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100164 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000165 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200166 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200167 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600168 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200169 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600170 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600171 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600172 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200173 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000174 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200175 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200176 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200177 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600178 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100179 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500180 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100181 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800182 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200183 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100184 { -1, "", "", },
185};
186
Mike Frysinger7edb1862010-10-20 07:17:39 -0400187static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100188 { IH_COMP_NONE, "none", "uncompressed", },
189 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
190 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200191 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100192 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700193 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100194 { -1, "", "", },
195};
196
Simon Glass56d7ab72016-06-30 10:52:14 -0600197struct table_info {
198 const char *desc;
199 int count;
200 const table_entry_t *table;
201};
202
203static const struct table_info table_info[IH_COUNT] = {
204 { "architecture", IH_ARCH_COUNT, uimage_arch },
205 { "compression", IH_COMP_COUNT, uimage_comp },
206 { "operating system", IH_OS_COUNT, uimage_os },
207 { "image type", IH_TYPE_COUNT, uimage_type },
208};
209
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100210/*****************************************************************************/
211/* Legacy format routines */
212/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000213int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100214{
215 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000216 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100217 image_header_t header;
218
219 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000220 memmove(&header, (char *)hdr, image_get_header_size());
221 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100222
Stephen Warren712fbcf2011-10-18 11:11:49 +0000223 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100224
Stephen Warren712fbcf2011-10-18 11:11:49 +0000225 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100226}
227
Stephen Warren712fbcf2011-10-18 11:11:49 +0000228int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100229{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000230 ulong data = image_get_data(hdr);
231 ulong len = image_get_data_size(hdr);
232 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100233
Stephen Warren712fbcf2011-10-18 11:11:49 +0000234 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100235}
236
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100237/**
238 * image_multi_count - get component (sub-image) count
239 * @hdr: pointer to the header of the multi component image
240 *
241 * image_multi_count() returns number of components in a multi
242 * component image.
243 *
244 * Note: no checking of the image type is done, caller must pass
245 * a valid multi component image.
246 *
247 * returns:
248 * number of components
249 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000250ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100251{
252 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100253 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100254
255 /* get start of the image payload, which in case of multi
256 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000257 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100258
259 /* count non empty slots */
260 for (i = 0; size[i]; ++i)
261 count++;
262
263 return count;
264}
265
266/**
267 * image_multi_getimg - get component data address and size
268 * @hdr: pointer to the header of the multi component image
269 * @idx: index of the requested component
270 * @data: pointer to a ulong variable, will hold component data address
271 * @len: pointer to a ulong variable, will hold component size
272 *
273 * image_multi_getimg() returns size and data address for the requested
274 * component in a multi component image.
275 *
276 * Note: no checking of the image type is done, caller must pass
277 * a valid multi component image.
278 *
279 * returns:
280 * data address and size of the component, if idx is valid
281 * 0 in data and len, if idx is out of range
282 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000283void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100284 ulong *data, ulong *len)
285{
286 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100287 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700288 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100289
290 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000291 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100292
293 /* get start of the image payload, which in case of multi
294 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000295 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100296
297 /* get address of the proper component data start, which means
298 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000299 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100300
301 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000302 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100303 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100304
305 /* go over all indices preceding requested component idx */
306 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700307 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000308 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100309 }
310
311 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700312 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100313 } else {
314 *len = 0;
315 *data = 0;
316 }
317}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100318
Stephen Warren712fbcf2011-10-18 11:11:49 +0000319static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100320{
Heiko Schocher80402f32015-06-29 09:10:46 +0200321 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100322
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 os = genimg_get_os_name(image_get_os(hdr));
324 arch = genimg_get_arch_name(image_get_arch(hdr));
325 type = genimg_get_type_name(image_get_type(hdr));
326 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100327
Stephen Warren712fbcf2011-10-18 11:11:49 +0000328 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100329}
330
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100331/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200332 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200333 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100334 * @p: pointer to prefix string
335 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200336 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100337 * The routine prints out all header fields followed by the size/offset data
338 * for MULTI/SCRIPT images.
339 *
340 * returns:
341 * no returned results
342 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000343void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200345 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200346 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200347
Simon Glass1fe7d932013-05-08 08:05:58 +0000348 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000349 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000350 if (IMAGE_ENABLE_TIMESTAMP) {
351 printf("%sCreated: ", p);
352 genimg_print_time((time_t)image_get_time(hdr));
353 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000354 printf("%sImage Type: ", p);
355 image_print_type(hdr);
356 printf("%sData Size: ", p);
357 genimg_print_size(image_get_data_size(hdr));
358 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
359 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100360
Stephen Warren712fbcf2011-10-18 11:11:49 +0000361 if (image_check_type(hdr, IH_TYPE_MULTI) ||
362 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100363 int i;
364 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100366
Stephen Warren712fbcf2011-10-18 11:11:49 +0000367 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100368 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000369 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100370
Stephen Warren712fbcf2011-10-18 11:11:49 +0000371 printf("%s Image %d: ", p, i);
372 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100373
Stephen Warren712fbcf2011-10-18 11:11:49 +0000374 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100375 /*
376 * the user may need to know offsets
377 * if planning to do something with
378 * multiple files
379 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100381 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100382 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100383 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
384 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000385 image_get_load(hdr) - image_get_header_size(),
386 (int)(image_get_size(hdr) + image_get_header_size()
387 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100388 }
389}
390
Julius Werner20908542019-07-24 19:37:54 -0700391/**
392 * print_decomp_msg() - Print a suitable decompression/loading message
393 *
394 * @type: OS type (IH_OS_...)
395 * @comp_type: Compression type being used (IH_COMP_...)
396 * @is_xip: true if the load address matches the image start
397 */
398static void print_decomp_msg(int comp_type, int type, bool is_xip)
399{
400 const char *name = genimg_get_type_name(type);
401
402 if (comp_type == IH_COMP_NONE)
403 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
404 else
405 printf(" Uncompressing %s\n", name);
406}
407
408int image_decomp(int comp, ulong load, ulong image_start, int type,
409 void *load_buf, void *image_buf, ulong image_len,
410 uint unc_len, ulong *load_end)
411{
412 int ret = 0;
413
414 *load_end = load;
415 print_decomp_msg(comp, type, load == image_start);
416
417 /*
418 * Load the image to the right place, decompressing if needed. After
419 * this, image_len will be set to the number of uncompressed bytes
420 * loaded, ret will be non-zero on error.
421 */
422 switch (comp) {
423 case IH_COMP_NONE:
424 if (load == image_start)
425 break;
426 if (image_len <= unc_len)
427 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
428 else
429 ret = -ENOSPC;
430 break;
431#ifdef CONFIG_GZIP
432 case IH_COMP_GZIP: {
433 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
434 break;
435 }
436#endif /* CONFIG_GZIP */
437#ifdef CONFIG_BZIP2
438 case IH_COMP_BZIP2: {
439 uint size = unc_len;
440
441 /*
442 * If we've got less than 4 MB of malloc() space,
443 * use slower decompression algorithm which requires
444 * at most 2300 KB of memory.
445 */
446 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
447 image_buf, image_len,
448 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
449 image_len = size;
450 break;
451 }
452#endif /* CONFIG_BZIP2 */
453#ifdef CONFIG_LZMA
454 case IH_COMP_LZMA: {
455 SizeT lzma_len = unc_len;
456
457 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
458 image_buf, image_len);
459 image_len = lzma_len;
460 break;
461 }
462#endif /* CONFIG_LZMA */
463#ifdef CONFIG_LZO
464 case IH_COMP_LZO: {
465 size_t size = unc_len;
466
467 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
468 image_len = size;
469 break;
470 }
471#endif /* CONFIG_LZO */
472#ifdef CONFIG_LZ4
473 case IH_COMP_LZ4: {
474 size_t size = unc_len;
475
476 ret = ulz4fn(image_buf, image_len, load_buf, &size);
477 image_len = size;
478 break;
479 }
480#endif /* CONFIG_LZ4 */
481 default:
482 printf("Unimplemented compression type %d\n", comp);
483 return -ENOSYS;
484 }
485
486 *load_end = load + image_len;
487
488 return ret;
489}
490
Marian Balakowicz570abb02008-02-29 15:59:59 +0100491
492#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400493#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100494/**
495 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100496 * @rd_addr: ramdisk image start address
497 * @arch: expected ramdisk architecture
498 * @verify: checksum verification flag
499 *
500 * image_get_ramdisk() returns a pointer to the verified ramdisk image
501 * header. Routine receives image start address and expected architecture
502 * flag. Verification done covers data and header integrity and os/type/arch
503 * fields checking.
504 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100505 * returns:
506 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600507 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100508 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000509static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100510 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100511{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200512 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100513
Stephen Warren712fbcf2011-10-18 11:11:49 +0000514 if (!image_check_magic(rd_hdr)) {
515 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000516 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600517 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100518 }
519
Stephen Warren712fbcf2011-10-18 11:11:49 +0000520 if (!image_check_hcrc(rd_hdr)) {
521 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000522 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600523 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100524 }
525
Simon Glass770605e2012-02-13 13:51:18 +0000526 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000527 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100528
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100529 if (verify) {
530 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000531 if (!image_check_dcrc(rd_hdr)) {
532 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000533 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600534 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100535 }
536 puts("OK\n");
537 }
538
Simon Glass770605e2012-02-13 13:51:18 +0000539 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100540
Stephen Warren712fbcf2011-10-18 11:11:49 +0000541 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
542 !image_check_arch(rd_hdr, arch) ||
543 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
544 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100545 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000546 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600547 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100548 }
549
550 return rd_hdr;
551}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200552#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100553#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100554
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100555/*****************************************************************************/
556/* Shared dual-format routines */
557/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100558#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600559ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
560ulong save_addr; /* Default Save Address */
561ulong save_size; /* Default Save Size (in bytes) */
562
563static int on_loadaddr(const char *name, const char *value, enum env_op op,
564 int flags)
565{
566 switch (op) {
567 case env_op_create:
568 case env_op_overwrite:
569 load_addr = simple_strtoul(value, NULL, 16);
570 break;
571 default:
572 break;
573 }
574
575 return 0;
576}
577U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
578
Simon Glass723806c2017-08-03 12:22:15 -0600579ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100580{
Simon Glass00caae62017-08-03 12:22:12 -0600581 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100582 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000583 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100584 return tmp;
585 }
586
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200587#if defined(CONFIG_SYS_SDRAM_BASE)
588 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200589#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100590 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100591#else
592 return 0;
593#endif
594}
595
Simon Glass723806c2017-08-03 12:22:15 -0600596phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100597{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900598 phys_size_t tmp, size;
599 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600600 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100601 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000602 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100603 return tmp;
604 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900605
Michal Simeka750ded2019-09-25 09:11:48 +0200606#if (defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)) && \
607 defined(CONFIG_NR_DRAM_BANKS)
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900608 start = gd->bd->bi_dram[0].start;
609 size = gd->bd->bi_dram[0].size;
610#else
611 start = gd->bd->bi_memstart;
612 size = gd->bd->bi_memsize;
613#endif
614
Simon Glass00caae62017-08-03 12:22:12 -0600615 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500616 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000617 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500618 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900619 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500620
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900621 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100622}
623
Simon Glass723806c2017-08-03 12:22:15 -0600624phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000625{
626 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600627 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000628 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000629 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000630 return tmp;
631 }
632
633#if defined(CONFIG_SYS_BOOTMAPSZ)
634 return CONFIG_SYS_BOOTMAPSZ;
635#else
Simon Glass723806c2017-08-03 12:22:15 -0600636 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000637#endif
638}
639
Stephen Warren712fbcf2011-10-18 11:11:49 +0000640void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100641{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400642 if (to == from)
643 return;
644
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100645#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800646 if (to > from) {
647 from += len;
648 to += len;
649 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100650 while (len > 0) {
651 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000652 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800653 if (to > from) {
654 to -= tail;
655 from -= tail;
656 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000657 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800658 if (to < from) {
659 to += tail;
660 from += tail;
661 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100662 len -= tail;
663 }
664#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000665 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100666#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
667}
Julius Werner20908542019-07-24 19:37:54 -0700668#else /* USE_HOSTCC */
669void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
670{
671 memmove(to, from, len);
672}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100673#endif /* !USE_HOSTCC */
674
Stephen Warren712fbcf2011-10-18 11:11:49 +0000675void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100676{
677#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000678 printf("%d Bytes = ", size);
679 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100680#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100681 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100682 size, (double)size / 1.024e3,
683 (double)size / 1.048576e6);
684#endif
685}
686
Simon Glass859e92b2013-05-07 06:11:51 +0000687#if IMAGE_ENABLE_TIMESTAMP
688void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100689{
690#ifndef USE_HOSTCC
691 struct rtc_time tm;
692
Simon Glass9f9276c2015-04-20 12:37:18 -0600693 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000694 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100695 tm.tm_year, tm.tm_mon, tm.tm_mday,
696 tm.tm_hour, tm.tm_min, tm.tm_sec);
697#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000698 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100699#endif
700}
Simon Glass859e92b2013-05-07 06:11:51 +0000701#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100702
Simon Glass5b9d44d2015-06-23 15:38:25 -0600703const table_entry_t *get_table_entry(const table_entry_t *table, int id)
704{
705 for (; table->id >= 0; ++table) {
706 if (table->id == id)
707 return table;
708 }
709 return NULL;
710}
711
Simon Glass14262202016-06-30 10:52:16 -0600712static const char *unknown_msg(enum ih_category category)
713{
Simon Glassae3de0d2016-10-31 10:21:09 -0600714 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600715 static char msg[30];
716
Simon Glassae3de0d2016-10-31 10:21:09 -0600717 strcpy(msg, unknown_str);
718 strncat(msg, table_info[category].desc,
719 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600720
721 return msg;
722}
723
724/**
725 * get_cat_table_entry_name - translate entry id to long name
726 * @category: category to look up (enum ih_category)
727 * @id: entry id to be translated
728 *
729 * This will scan the translation table trying to find the entry that matches
730 * the given id.
731 *
732 * @retur long entry name if translation succeeds; error string on failure
733 */
734const char *genimg_get_cat_name(enum ih_category category, uint id)
735{
736 const table_entry_t *entry;
737
738 entry = get_table_entry(table_info[category].table, id);
739 if (!entry)
740 return unknown_msg(category);
741#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
742 return entry->lname;
743#else
744 return entry->lname + gd->reloc_off;
745#endif
746}
747
748/**
749 * get_cat_table_entry_short_name - translate entry id to short name
750 * @category: category to look up (enum ih_category)
751 * @id: entry id to be translated
752 *
753 * This will scan the translation table trying to find the entry that matches
754 * the given id.
755 *
756 * @retur short entry name if translation succeeds; error string on failure
757 */
758const char *genimg_get_cat_short_name(enum ih_category category, uint id)
759{
760 const table_entry_t *entry;
761
762 entry = get_table_entry(table_info[category].table, id);
763 if (!entry)
764 return unknown_msg(category);
765#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
766 return entry->sname;
767#else
768 return entry->sname + gd->reloc_off;
769#endif
770}
771
772int genimg_get_cat_count(enum ih_category category)
773{
774 return table_info[category].count;
775}
776
777const char *genimg_get_cat_desc(enum ih_category category)
778{
779 return table_info[category].desc;
780}
781
Marian Balakowicz570abb02008-02-29 15:59:59 +0100782/**
783 * get_table_entry_name - translate entry id to long name
784 * @table: pointer to a translation table for entries of a specific type
785 * @msg: message to be returned when translation fails
786 * @id: entry id to be translated
787 *
788 * get_table_entry_name() will go over translation table trying to find
789 * entry that matches given id. If matching entry is found, its long
790 * name is returned to the caller.
791 *
792 * returns:
793 * long entry name if translation succeeds
794 * msg otherwise
795 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400796char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100797{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600798 table = get_table_entry(table, id);
799 if (!table)
800 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200801#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600802 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500803#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600804 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500805#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100806}
807
Stephen Warren712fbcf2011-10-18 11:11:49 +0000808const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100809{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000810 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100811}
812
Stephen Warren712fbcf2011-10-18 11:11:49 +0000813const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100814{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000815 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
816 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100817}
818
Stephen Warren712fbcf2011-10-18 11:11:49 +0000819const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100820{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000821 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100822}
823
Simon Glasscef2e512016-02-22 22:55:50 -0700824static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600825{
Simon Glasscef2e512016-02-22 22:55:50 -0700826 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600827 if (!table)
828 return "unknown";
829#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
830 return table->sname;
831#else
832 return table->sname + gd->reloc_off;
833#endif
834}
835
Simon Glasscef2e512016-02-22 22:55:50 -0700836const char *genimg_get_type_short_name(uint8_t type)
837{
838 return genimg_get_short_name(uimage_type, type);
839}
840
Stephen Warren712fbcf2011-10-18 11:11:49 +0000841const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100842{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000843 return (get_table_entry_name(uimage_comp, "Unknown Compression",
844 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100845}
846
Simon Glasscef2e512016-02-22 22:55:50 -0700847const char *genimg_get_comp_short_name(uint8_t comp)
848{
849 return genimg_get_short_name(uimage_comp, comp);
850}
851
852const char *genimg_get_os_short_name(uint8_t os)
853{
854 return genimg_get_short_name(uimage_os, os);
855}
856
857const char *genimg_get_arch_short_name(uint8_t arch)
858{
859 return genimg_get_short_name(uimage_arch, arch);
860}
861
Marian Balakowicz570abb02008-02-29 15:59:59 +0100862/**
863 * get_table_entry_id - translate short entry name to id
864 * @table: pointer to a translation table for entries of a specific type
865 * @table_name: to be used in case of error
866 * @name: entry short name to be translated
867 *
868 * get_table_entry_id() will go over translation table trying to find
869 * entry that matches given short name. If matching entry is found,
870 * its id returned to the caller.
871 *
872 * returns:
873 * entry id if translation succeeds
874 * -1 otherwise
875 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400876int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100877 const char *table_name, const char *name)
878{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400879 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100880
881 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200882#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600883 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200884#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600885 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500886#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100887 return (t->id);
888 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000889 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600890
891 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100892}
893
Stephen Warren712fbcf2011-10-18 11:11:49 +0000894int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100895{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000896 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100897}
898
Stephen Warren712fbcf2011-10-18 11:11:49 +0000899int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100900{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000901 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100902}
903
Stephen Warren712fbcf2011-10-18 11:11:49 +0000904int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100905{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000906 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100907}
908
Stephen Warren712fbcf2011-10-18 11:11:49 +0000909int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100910{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000911 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100912}
913
914#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100915/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700916 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
917 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700918 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700919 * @fit_uname_config: double pointer to a char, will hold pointer to a
920 * configuration unit name
921 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
922 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700923 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700924 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700925 * which is normally the first argv of bootm/bootz
926 *
927 * returns:
928 * kernel start address
929 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700930ulong genimg_get_kernel_addr_fit(char * const img_addr,
931 const char **fit_uname_config,
932 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700933{
Bryan Wu0f641402014-07-31 17:39:58 -0700934 ulong kernel_addr;
935
936 /* find out kernel image address */
937 if (!img_addr) {
938 kernel_addr = load_addr;
939 debug("* kernel: default image load address = 0x%08lx\n",
940 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700941#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700942 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700943 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700944 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700945 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700946 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700947 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700948 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700949 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700950#endif
951 } else {
952 kernel_addr = simple_strtoul(img_addr, NULL, 16);
953 debug("* kernel: cmdline image address = 0x%08lx\n",
954 kernel_addr);
955 }
956
957 return kernel_addr;
958}
959
960/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700961 * genimg_get_kernel_addr() is the simple version of
962 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
963 */
964ulong genimg_get_kernel_addr(char * const img_addr)
965{
966 const char *fit_uname_config = NULL;
967 const char *fit_uname_kernel = NULL;
968
969 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
970 &fit_uname_kernel);
971}
972
973/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100974 * genimg_get_format - get image format type
975 * @img_addr: image start address
976 *
977 * genimg_get_format() checks whether provided address points to a valid
978 * legacy or FIT image.
979 *
980 * New uImage format and FDT blob are based on a libfdt. FDT blob
981 * may be passed directly or embedded in a FIT image. In both situations
982 * genimg_get_format() must be able to dectect libfdt header.
983 *
984 * returns:
985 * image format type or IMAGE_FORMAT_INVALID if no image is present
986 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000987int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100988{
Tom Rinic76c93a2019-05-23 07:14:07 -0400989#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200990 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100991
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200992 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100993 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200994 return IMAGE_FORMAT_LEGACY;
995#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700996#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200997 if (fdt_check_header(img_addr) == 0)
998 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500999#endif
1000#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +02001001 if (android_image_check_header(img_addr) == 0)
1002 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001003#endif
1004
Heiko Schocher21d29f72014-05-28 11:33:33 +02001005 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001006}
1007
1008/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001009 * fit_has_config - check if there is a valid FIT configuration
1010 * @images: pointer to the bootm command headers structure
1011 *
1012 * fit_has_config() checks if there is a FIT configuration in use
1013 * (if FTI support is present).
1014 *
1015 * returns:
1016 * 0, no FIT support or no configuration found
1017 * 1, configuration found
1018 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001019int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001020{
Simon Glass73223f02016-02-22 22:55:43 -07001021#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001022 if (images->fit_uname_cfg)
1023 return 1;
1024#endif
1025 return 0;
1026}
1027
1028/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001029 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001030 * @argc: command argument count
1031 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001032 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001033 * @arch: expected ramdisk architecture
1034 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1035 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1036 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001037 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001038 * Curently supported are the following ramdisk sources:
1039 * - multicomponent kernel/ramdisk image,
1040 * - commandline provided address of decicated ramdisk image.
1041 *
1042 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001043 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001044 * rd_start and rd_end are set to ramdisk start/end addresses if
1045 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001046 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001047 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001048 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001049 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001050int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001051 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001052{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001053 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001054 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001055#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001056 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001057#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001058 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001059#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001060 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001061#endif
Simon Glass73223f02016-02-22 22:55:43 -07001062#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001063 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001064 const char *fit_uname_ramdisk = NULL;
1065 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001066 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001067#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001068 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001069
Marian Balakowiczc8779642008-03-12 10:12:37 +01001070 *rd_start = 0;
1071 *rd_end = 0;
1072
Tom Rini1fec3c52015-08-27 15:42:41 -04001073#ifdef CONFIG_ANDROID_BOOT_IMAGE
1074 /*
1075 * Look for an Android boot image.
1076 */
1077 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001078 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001079 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001080#endif
1081
Simon Glass983c72f2013-06-11 11:14:46 -07001082 if (argc >= 2)
1083 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001084
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001085 /*
1086 * Look for a '-' which indicates to ignore the
1087 * ramdisk argument
1088 */
Simon Glass983c72f2013-06-11 11:14:46 -07001089 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001090 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001091 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001092 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001093#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001094 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001095 /*
1096 * If the init ramdisk comes from the FIT image and
1097 * the FIT image address is omitted in the command
1098 * line argument, try to use os FIT image address or
1099 * default load address.
1100 */
1101 if (images->fit_uname_os)
1102 default_addr = (ulong)images->fit_hdr_os;
1103 else
1104 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001105
Simon Glass983c72f2013-06-11 11:14:46 -07001106 if (fit_parse_conf(select, default_addr,
1107 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001108 debug("* ramdisk: config '%s' from image at "
1109 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001110 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001111 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001112 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001113 debug("* ramdisk: subimage '%s' from image at "
1114 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001115 fit_uname_ramdisk, rd_addr);
1116 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001117#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001118 {
Simon Glass983c72f2013-06-11 11:14:46 -07001119 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001120 debug("* ramdisk: cmdline image address = "
1121 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001122 rd_addr);
1123 }
Simon Glass73223f02016-02-22 22:55:43 -07001124#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001125 } else {
1126 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001127 * command argument. If the property is not defined,
1128 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001129 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001130 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001131 rd_noffset = fit_get_node_from_config(images,
1132 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001133 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001134 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001135 else if (rd_noffset < 0)
1136 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001137 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001138#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001139
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001140 /*
1141 * Check if there is an initrd image at the
1142 * address provided in the second bootm argument
1143 * check image type, for FIT images get FIT node.
1144 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001145 buf = map_sysmem(rd_addr, 0);
1146 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001147#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001148 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001149 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001150 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001151
Simon Glass770605e2012-02-13 13:51:18 +00001152 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001153 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001154 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001155
Marian Balakowiczc8779642008-03-12 10:12:37 +01001156 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001157 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001158
Stephen Warren712fbcf2011-10-18 11:11:49 +00001159 rd_data = image_get_data(rd_hdr);
1160 rd_len = image_get_data_size(rd_hdr);
1161 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001162 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001163#endif
Simon Glass73223f02016-02-22 22:55:43 -07001164#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001165 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001166 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001167 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001168 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001169 IH_TYPE_RAMDISK,
1170 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001171 FIT_LOAD_OPTIONAL_NON_ZERO,
1172 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001173 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001174 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001175
Simon Glassa51ec632013-05-16 13:53:22 +00001176 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001177 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001178 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001179 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001180#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001181#ifdef CONFIG_ANDROID_BOOT_IMAGE
1182 case IMAGE_FORMAT_ANDROID:
1183 android_image_get_ramdisk((void *)images->os.start,
1184 &rd_data, &rd_len);
1185 break;
1186#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001187 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001188#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001189 end = NULL;
1190 if (select)
1191 end = strchr(select, ':');
1192 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001193 rd_len = simple_strtoul(++end, NULL, 16);
1194 rd_data = rd_addr;
1195 } else
1196#endif
1197 {
1198 puts("Wrong Ramdisk Image Format\n");
1199 rd_data = rd_len = rd_load = 0;
1200 return 1;
1201 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001202 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001203 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001204 image_check_type(&images->legacy_hdr_os_copy,
1205 IH_TYPE_MULTI)) {
1206
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001207 /*
1208 * Now check if we have a legacy mult-component image,
1209 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001210 */
Simon Glass770605e2012-02-13 13:51:18 +00001211 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001212 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001213 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001214 (ulong)images->legacy_hdr_os);
1215
Stephen Warren712fbcf2011-10-18 11:11:49 +00001216 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001217 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001218 /*
1219 * no initrd image
1220 */
Simon Glass770605e2012-02-13 13:51:18 +00001221 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001222 rd_len = rd_data = 0;
1223 }
1224
1225 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001226 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001227 } else {
1228 *rd_start = rd_data;
1229 *rd_end = rd_data + rd_len;
1230 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001231 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001232 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001233
1234 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001235}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001236
John Rigbyfca43cc2010-10-13 13:57:35 -06001237#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001238/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001239 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001240 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001241 * @rd_data: ramdisk data start address
1242 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001243 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1244 * start address (after possible relocation)
1245 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1246 * end address (after possible relocation)
1247 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001248 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001249 * variable and if requested ramdisk data is moved to a specified location.
1250 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001251 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1252 * start/end addresses if ramdisk image start and len were provided,
1253 * otherwise set initrd_start and initrd_end set to zeros.
1254 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001255 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001256 * 0 - success
1257 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001258 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001259int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001260 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001261{
1262 char *s;
1263 ulong initrd_high;
1264 int initrd_copy_to_ram = 1;
1265
Simon Glass00caae62017-08-03 12:22:12 -06001266 s = env_get("initrd_high");
1267 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001268 /* a value of "no" or a similar string will act like 0,
1269 * turning the "load high" feature off. This is intentional.
1270 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001271 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001272 if (initrd_high == ~0)
1273 initrd_copy_to_ram = 0;
1274 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001275 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001276 }
1277
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001278
Stephen Warren712fbcf2011-10-18 11:11:49 +00001279 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001280 initrd_high, initrd_copy_to_ram);
1281
1282 if (rd_data) {
1283 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001284 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001285 *initrd_start = rd_data;
1286 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001287 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001288 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001289 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001290 *initrd_start = (ulong)lmb_alloc_base(lmb,
1291 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001292 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001293 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1294 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001295
Kumar Galae822d7f2008-02-27 21:51:49 -06001296 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001297 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001298 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001299 }
Simon Glass770605e2012-02-13 13:51:18 +00001300 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001301
1302 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001303 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001304 *initrd_start, *initrd_end);
1305
Stephen Warren712fbcf2011-10-18 11:11:49 +00001306 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001307 (void *)rd_data, rd_len, CHUNKSZ);
1308
Kumar Gala3b200112011-12-07 04:42:58 +00001309#ifdef CONFIG_MP
1310 /*
1311 * Ensure the image is flushed to memory to handle
1312 * AMP boot scenarios in which we might not be
1313 * HW cache coherent
1314 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001315 flush_cache((unsigned long)*initrd_start,
1316 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001317#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001318 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001319 }
1320 } else {
1321 *initrd_start = 0;
1322 *initrd_end = 0;
1323 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001324 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001325 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001326
Kumar Galae822d7f2008-02-27 21:51:49 -06001327 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001328
Kumar Galae822d7f2008-02-27 21:51:49 -06001329error:
1330 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001331}
John Rigbyfca43cc2010-10-13 13:57:35 -06001332#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001333
Simon Glass90268b82014-10-19 21:11:24 -06001334int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1335 ulong *setup_start, ulong *setup_len)
1336{
Simon Glass73223f02016-02-22 22:55:43 -07001337#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001338 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1339#else
1340 return -ENOENT;
1341#endif
1342}
1343
Simon Glass73223f02016-02-22 22:55:43 -07001344#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001345#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001346int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1347 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1348{
1349 ulong tmp_img_addr, img_data, img_len;
1350 void *buf;
1351 int conf_noffset;
1352 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001353 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001354 int err;
1355 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001356
1357 /* Check to see if the images struct has a FIT configuration */
1358 if (!genimg_has_config(images)) {
1359 debug("## FIT configuration was not specified\n");
1360 return 0;
1361 }
1362
1363 /*
1364 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001365 */
1366 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001367 buf = map_sysmem(tmp_img_addr, 0);
1368 /*
1369 * Check image type. For FIT images get FIT node
1370 * and attempt to locate a generic binary.
1371 */
1372 switch (genimg_get_format(buf)) {
1373 case IMAGE_FORMAT_FIT:
1374 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1375
Simon Glassb02e4042016-10-02 17:59:28 -06001376 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1377 NULL);
1378 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001379 debug("## FPGA image is not specified\n");
1380 return 0;
1381 }
1382 fit_img_result = fit_image_load(images,
1383 tmp_img_addr,
1384 (const char **)&uname,
1385 &(images->fit_uname_cfg),
1386 arch,
1387 IH_TYPE_FPGA,
1388 BOOTSTAGE_ID_FPGA_INIT,
1389 FIT_LOAD_OPTIONAL_NON_ZERO,
1390 &img_data, &img_len);
1391
1392 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1393 uname, img_data, img_len);
1394
1395 if (fit_img_result < 0) {
1396 /* Something went wrong! */
1397 return fit_img_result;
1398 }
1399
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001400 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001401 name = "full";
1402 err = fpga_loadbitstream(devnum, (char *)img_data,
1403 img_len, BIT_FULL);
1404 if (err)
1405 err = fpga_load(devnum, (const void *)img_data,
1406 img_len, BIT_FULL);
1407 } else {
1408 name = "partial";
1409 err = fpga_loadbitstream(devnum, (char *)img_data,
1410 img_len, BIT_PARTIAL);
1411 if (err)
1412 err = fpga_load(devnum, (const void *)img_data,
1413 img_len, BIT_PARTIAL);
1414 }
1415
Michal Simek62afc602016-05-17 14:03:50 +02001416 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001417 return err;
1418
1419 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001420 break;
1421 default:
1422 printf("The given image format is not supported (corrupt?)\n");
1423 return 1;
1424 }
1425
1426 return 0;
1427}
1428#endif
1429
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001430static void fit_loadable_process(uint8_t img_type,
1431 ulong img_data,
1432 ulong img_len)
1433{
1434 int i;
1435 const unsigned int count =
1436 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1437 struct fit_loadable_tbl *fit_loadable_handler =
1438 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1439 /* For each loadable handler */
1440 for (i = 0; i < count; i++, fit_loadable_handler++)
1441 /* matching this type */
1442 if (fit_loadable_handler->type == img_type)
1443 /* call that handler with this image data */
1444 fit_loadable_handler->handler(img_data, img_len);
1445}
1446
Karl Apsite84a07db2015-05-21 09:52:48 -04001447int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1448 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1449{
1450 /*
1451 * These variables are used to hold the current image location
1452 * in system memory.
1453 */
1454 ulong tmp_img_addr;
1455 /*
1456 * These two variables are requirements for fit_image_load, but
1457 * their values are not used
1458 */
1459 ulong img_data, img_len;
1460 void *buf;
1461 int loadables_index;
1462 int conf_noffset;
1463 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001464 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001465 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001466
1467 /* Check to see if the images struct has a FIT configuration */
1468 if (!genimg_has_config(images)) {
1469 debug("## FIT configuration was not specified\n");
1470 return 0;
1471 }
1472
1473 /*
1474 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001475 */
1476 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001477 buf = map_sysmem(tmp_img_addr, 0);
1478 /*
1479 * Check image type. For FIT images get FIT node
1480 * and attempt to locate a generic binary.
1481 */
1482 switch (genimg_get_format(buf)) {
1483 case IMAGE_FORMAT_FIT:
1484 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1485
1486 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001487 uname = fdt_stringlist_get(buf, conf_noffset,
1488 FIT_LOADABLE_PROP, loadables_index,
1489 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001490 loadables_index++)
1491 {
1492 fit_img_result = fit_image_load(images,
1493 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001494 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001495 &(images->fit_uname_cfg), arch,
1496 IH_TYPE_LOADABLE,
1497 BOOTSTAGE_ID_FIT_LOADABLE_START,
1498 FIT_LOAD_OPTIONAL_NON_ZERO,
1499 &img_data, &img_len);
1500 if (fit_img_result < 0) {
1501 /* Something went wrong! */
1502 return fit_img_result;
1503 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001504
1505 fit_img_result = fit_image_get_node(buf, uname);
1506 if (fit_img_result < 0) {
1507 /* Something went wrong! */
1508 return fit_img_result;
1509 }
1510 fit_img_result = fit_image_get_type(buf,
1511 fit_img_result,
1512 &img_type);
1513 if (fit_img_result < 0) {
1514 /* Something went wrong! */
1515 return fit_img_result;
1516 }
1517
1518 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001519 }
1520 break;
1521 default:
1522 printf("The given image format is not supported (corrupt?)\n");
1523 return 1;
1524 }
1525
1526 return 0;
1527}
1528#endif
1529
John Rigbyfca43cc2010-10-13 13:57:35 -06001530#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001531/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001532 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001533 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001534 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1535 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1536 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001537 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301538 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001539 * variable is present its contents is copied to allocated kernel
1540 * command line.
1541 *
1542 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001543 * 0 - success
1544 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001545 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001546int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001547{
1548 char *cmdline;
1549 char *s;
1550
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001551 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001552 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001553
1554 if (cmdline == NULL)
1555 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001556
Simon Glass00caae62017-08-03 12:22:12 -06001557 s = env_get("bootargs");
1558 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001559 s = "";
1560
1561 strcpy(cmdline, s);
1562
1563 *cmd_start = (ulong) & cmdline[0];
1564 *cmd_end = *cmd_start + strlen(cmdline);
1565
Stephen Warren712fbcf2011-10-18 11:11:49 +00001566 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001567
Kumar Galae822d7f2008-02-27 21:51:49 -06001568 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001569}
John Rigbyfca43cc2010-10-13 13:57:35 -06001570#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001571
John Rigbyfca43cc2010-10-13 13:57:35 -06001572#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001573/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001574 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001575 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001576 * @kbd: double pointer to board info data
1577 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001578 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001579 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001580 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001581 *
1582 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001583 * 0 - success
1584 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001585 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001586int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001587{
Becky Bruce391fd932008-06-09 20:37:18 -05001588 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001589 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001590 if (*kbd == NULL)
1591 return -1;
1592
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001593 **kbd = *(gd->bd);
1594
Stephen Warren712fbcf2011-10-18 11:11:49 +00001595 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001596
1597#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1598 do_bdinfo(NULL, 0, 0, NULL);
1599#endif
1600
Kumar Galae822d7f2008-02-27 21:51:49 -06001601 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001602}
John Rigbyfca43cc2010-10-13 13:57:35 -06001603#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001604
1605#ifdef CONFIG_LMB
1606int image_setup_linux(bootm_headers_t *images)
1607{
1608 ulong of_size = images->ft_len;
1609 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001610 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001611 int ret;
1612
1613 if (IMAGE_ENABLE_OF_LIBFDT)
1614 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1615
1616 if (IMAGE_BOOT_GET_CMDLINE) {
1617 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1618 &images->cmdline_end);
1619 if (ret) {
1620 puts("ERROR with allocation of cmdline\n");
1621 return ret;
1622 }
1623 }
Simon Glass13d06982013-05-08 08:06:01 +00001624
1625 if (IMAGE_ENABLE_OF_LIBFDT) {
1626 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1627 if (ret)
1628 return ret;
1629 }
1630
1631 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1632 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1633 if (ret)
1634 return ret;
1635 }
1636
1637 return 0;
1638}
1639#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001640#endif /* !USE_HOSTCC */