blob: f17fa40c495c42ac3f9a68110d6befeee5547431 [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 Glass7b51b572019-08-01 09:46:52 -060011#include <env.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010012#include <watchdog.h>
13
14#ifdef CONFIG_SHOW_BOOT_PROGRESS
15#include <status_led.h>
16#endif
17
Marian Balakowicz2242f532008-02-21 17:27:41 +010018#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010019
Simon Glass0c670fc2019-08-01 09:46:36 -060020#include <gzip.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010021#include <image.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050022#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010023
Simon Glassaa34fbc2016-02-22 22:55:45 -070024#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090025#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010026#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020027#include <fpga.h>
28#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010029#endif
30
Andy Fleming20a14a42008-04-02 16:19:07 -050031#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020032#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090033#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000034#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010035
Julius Werner20908542019-07-24 19:37:54 -070036#include <bzlib.h>
37#include <linux/lzo.h>
38#include <lzma/LzmaTypes.h>
39#include <lzma/LzmaDec.h>
40#include <lzma/LzmaTools.h>
41
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010042#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020043extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010044#endif
45
46DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010047
Tom Rinic76c93a2019-05-23 07:14:07 -040048#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000049static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010050 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020051#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010052#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010053#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050054#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010055#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010056#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020057
58#ifndef __maybe_unused
59# define __maybe_unused /* unimplemented */
60#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010061#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010062
Simon Glass0ccff502013-02-24 17:33:25 +000063#include <u-boot/crc.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000064#include <imximage.h>
Simon Glass0ccff502013-02-24 17:33:25 +000065
Simon Glass13d06982013-05-08 08:06:01 +000066#ifndef CONFIG_SYS_BARGSIZE
67#define CONFIG_SYS_BARGSIZE 512
68#endif
69
Mike Frysinger7edb1862010-10-20 07:17:39 -040070static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060071 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010072 { IH_ARCH_ALPHA, "alpha", "Alpha", },
73 { IH_ARCH_ARM, "arm", "ARM", },
74 { IH_ARCH_I386, "x86", "Intel x86", },
75 { IH_ARCH_IA64, "ia64", "IA64", },
76 { IH_ARCH_M68K, "m68k", "M68K", },
77 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
78 { IH_ARCH_MIPS, "mips", "MIPS", },
79 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010080 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070081 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010082 { IH_ARCH_PPC, "ppc", "PowerPC", },
83 { IH_ARCH_S390, "s390", "IBM S390", },
84 { IH_ARCH_SH, "sh", "SuperH", },
85 { IH_ARCH_SPARC, "sparc", "SPARC", },
86 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
87 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
88 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000089 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000090 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000091 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080092 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040093 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060094 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030095 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +080096 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010097 { -1, "", "", },
98};
99
Mike Frysinger7edb1862010-10-20 07:17:39 -0400100static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600101 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200102 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100103 { IH_OS_LINUX, "linux", "Linux", },
104#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
105 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
106#endif
107 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200108 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000109 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100110 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000111 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100112 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800113 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100114#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
115 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100116#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500117#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
118 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
119#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100120#ifdef USE_HOSTCC
121 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
122 { IH_OS_DELL, "dell", "Dell", },
123 { IH_OS_ESIX, "esix", "Esix", },
124 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
125 { IH_OS_IRIX, "irix", "Irix", },
126 { IH_OS_NCR, "ncr", "NCR", },
127 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
128 { IH_OS_PSOS, "psos", "pSOS", },
129 { IH_OS_SCO, "sco", "SCO", },
130 { IH_OS_SOLARIS, "solaris", "Solaris", },
131 { IH_OS_SVR4, "svr4", "SVR4", },
132#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100133#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
134 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
135#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200136 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Marek Vasut67ddd952014-12-16 14:07:21 +0100137
Marian Balakowicz570abb02008-02-29 15:59:59 +0100138 { -1, "", "", },
139};
140
Mike Frysinger7edb1862010-10-20 07:17:39 -0400141static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000142 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100143 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
144 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400145 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400146 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100147 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700148 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000149 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
150 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000151 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000152 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600153 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100154 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000155 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000156 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100157 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
158 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200159 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
160 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100161 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000162 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200163 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200164 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600165 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200166 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600167 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600168 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600169 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200170 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000171 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200172 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200173 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200174 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600175 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100176 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500177 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100178 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800179 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200180 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100181 { -1, "", "", },
182};
183
Mike Frysinger7edb1862010-10-20 07:17:39 -0400184static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100185 { IH_COMP_NONE, "none", "uncompressed", },
186 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
187 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200188 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100189 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700190 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100191 { -1, "", "", },
192};
193
Simon Glass56d7ab72016-06-30 10:52:14 -0600194struct table_info {
195 const char *desc;
196 int count;
197 const table_entry_t *table;
198};
199
200static const struct table_info table_info[IH_COUNT] = {
201 { "architecture", IH_ARCH_COUNT, uimage_arch },
202 { "compression", IH_COMP_COUNT, uimage_comp },
203 { "operating system", IH_OS_COUNT, uimage_os },
204 { "image type", IH_TYPE_COUNT, uimage_type },
205};
206
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100207/*****************************************************************************/
208/* Legacy format routines */
209/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000210int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100211{
212 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000213 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100214 image_header_t header;
215
216 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000217 memmove(&header, (char *)hdr, image_get_header_size());
218 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100219
Stephen Warren712fbcf2011-10-18 11:11:49 +0000220 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100221
Stephen Warren712fbcf2011-10-18 11:11:49 +0000222 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100223}
224
Stephen Warren712fbcf2011-10-18 11:11:49 +0000225int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100226{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000227 ulong data = image_get_data(hdr);
228 ulong len = image_get_data_size(hdr);
229 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100230
Stephen Warren712fbcf2011-10-18 11:11:49 +0000231 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100232}
233
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100234/**
235 * image_multi_count - get component (sub-image) count
236 * @hdr: pointer to the header of the multi component image
237 *
238 * image_multi_count() returns number of components in a multi
239 * component image.
240 *
241 * Note: no checking of the image type is done, caller must pass
242 * a valid multi component image.
243 *
244 * returns:
245 * number of components
246 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000247ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100248{
249 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100250 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100251
252 /* get start of the image payload, which in case of multi
253 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000254 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100255
256 /* count non empty slots */
257 for (i = 0; size[i]; ++i)
258 count++;
259
260 return count;
261}
262
263/**
264 * image_multi_getimg - get component data address and size
265 * @hdr: pointer to the header of the multi component image
266 * @idx: index of the requested component
267 * @data: pointer to a ulong variable, will hold component data address
268 * @len: pointer to a ulong variable, will hold component size
269 *
270 * image_multi_getimg() returns size and data address for the requested
271 * component in a multi component image.
272 *
273 * Note: no checking of the image type is done, caller must pass
274 * a valid multi component image.
275 *
276 * returns:
277 * data address and size of the component, if idx is valid
278 * 0 in data and len, if idx is out of range
279 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000280void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100281 ulong *data, ulong *len)
282{
283 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100284 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700285 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100286
287 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000288 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100289
290 /* get start of the image payload, which in case of multi
291 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000292 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100293
294 /* get address of the proper component data start, which means
295 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000296 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100297
298 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000299 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100300 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100301
302 /* go over all indices preceding requested component idx */
303 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700304 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000305 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100306 }
307
308 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700309 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100310 } else {
311 *len = 0;
312 *data = 0;
313 }
314}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100315
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100317{
Heiko Schocher80402f32015-06-29 09:10:46 +0200318 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100319
Stephen Warren712fbcf2011-10-18 11:11:49 +0000320 os = genimg_get_os_name(image_get_os(hdr));
321 arch = genimg_get_arch_name(image_get_arch(hdr));
322 type = genimg_get_type_name(image_get_type(hdr));
323 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100324
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100326}
327
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100328/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200329 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200330 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100331 * @p: pointer to prefix string
332 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200333 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100334 * The routine prints out all header fields followed by the size/offset data
335 * for MULTI/SCRIPT images.
336 *
337 * returns:
338 * no returned results
339 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000340void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100341{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200342 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200343 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200344
Simon Glass1fe7d932013-05-08 08:05:58 +0000345 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000346 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000347 if (IMAGE_ENABLE_TIMESTAMP) {
348 printf("%sCreated: ", p);
349 genimg_print_time((time_t)image_get_time(hdr));
350 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000351 printf("%sImage Type: ", p);
352 image_print_type(hdr);
353 printf("%sData Size: ", p);
354 genimg_print_size(image_get_data_size(hdr));
355 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
356 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100357
Stephen Warren712fbcf2011-10-18 11:11:49 +0000358 if (image_check_type(hdr, IH_TYPE_MULTI) ||
359 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100360 int i;
361 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100363
Stephen Warren712fbcf2011-10-18 11:11:49 +0000364 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100365 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000366 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100367
Stephen Warren712fbcf2011-10-18 11:11:49 +0000368 printf("%s Image %d: ", p, i);
369 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100370
Stephen Warren712fbcf2011-10-18 11:11:49 +0000371 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100372 /*
373 * the user may need to know offsets
374 * if planning to do something with
375 * multiple files
376 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000377 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100378 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100379 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100380 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
381 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000382 image_get_load(hdr) - image_get_header_size(),
383 (int)(image_get_size(hdr) + image_get_header_size()
384 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100385 }
386}
387
Julius Werner20908542019-07-24 19:37:54 -0700388/**
389 * print_decomp_msg() - Print a suitable decompression/loading message
390 *
391 * @type: OS type (IH_OS_...)
392 * @comp_type: Compression type being used (IH_COMP_...)
393 * @is_xip: true if the load address matches the image start
394 */
395static void print_decomp_msg(int comp_type, int type, bool is_xip)
396{
397 const char *name = genimg_get_type_name(type);
398
399 if (comp_type == IH_COMP_NONE)
400 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
401 else
402 printf(" Uncompressing %s\n", name);
403}
404
405int image_decomp(int comp, ulong load, ulong image_start, int type,
406 void *load_buf, void *image_buf, ulong image_len,
407 uint unc_len, ulong *load_end)
408{
409 int ret = 0;
410
411 *load_end = load;
412 print_decomp_msg(comp, type, load == image_start);
413
414 /*
415 * Load the image to the right place, decompressing if needed. After
416 * this, image_len will be set to the number of uncompressed bytes
417 * loaded, ret will be non-zero on error.
418 */
419 switch (comp) {
420 case IH_COMP_NONE:
421 if (load == image_start)
422 break;
423 if (image_len <= unc_len)
424 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
425 else
426 ret = -ENOSPC;
427 break;
428#ifdef CONFIG_GZIP
429 case IH_COMP_GZIP: {
430 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
431 break;
432 }
433#endif /* CONFIG_GZIP */
434#ifdef CONFIG_BZIP2
435 case IH_COMP_BZIP2: {
436 uint size = unc_len;
437
438 /*
439 * If we've got less than 4 MB of malloc() space,
440 * use slower decompression algorithm which requires
441 * at most 2300 KB of memory.
442 */
443 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
444 image_buf, image_len,
445 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
446 image_len = size;
447 break;
448 }
449#endif /* CONFIG_BZIP2 */
450#ifdef CONFIG_LZMA
451 case IH_COMP_LZMA: {
452 SizeT lzma_len = unc_len;
453
454 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
455 image_buf, image_len);
456 image_len = lzma_len;
457 break;
458 }
459#endif /* CONFIG_LZMA */
460#ifdef CONFIG_LZO
461 case IH_COMP_LZO: {
462 size_t size = unc_len;
463
464 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
465 image_len = size;
466 break;
467 }
468#endif /* CONFIG_LZO */
469#ifdef CONFIG_LZ4
470 case IH_COMP_LZ4: {
471 size_t size = unc_len;
472
473 ret = ulz4fn(image_buf, image_len, load_buf, &size);
474 image_len = size;
475 break;
476 }
477#endif /* CONFIG_LZ4 */
478 default:
479 printf("Unimplemented compression type %d\n", comp);
480 return -ENOSYS;
481 }
482
483 *load_end = load + image_len;
484
485 return ret;
486}
487
Marian Balakowicz570abb02008-02-29 15:59:59 +0100488
489#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400490#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100491/**
492 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100493 * @rd_addr: ramdisk image start address
494 * @arch: expected ramdisk architecture
495 * @verify: checksum verification flag
496 *
497 * image_get_ramdisk() returns a pointer to the verified ramdisk image
498 * header. Routine receives image start address and expected architecture
499 * flag. Verification done covers data and header integrity and os/type/arch
500 * fields checking.
501 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100502 * returns:
503 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600504 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100505 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000506static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100507 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100508{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200509 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100510
Stephen Warren712fbcf2011-10-18 11:11:49 +0000511 if (!image_check_magic(rd_hdr)) {
512 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000513 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600514 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100515 }
516
Stephen Warren712fbcf2011-10-18 11:11:49 +0000517 if (!image_check_hcrc(rd_hdr)) {
518 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000519 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600520 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100521 }
522
Simon Glass770605e2012-02-13 13:51:18 +0000523 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000524 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100525
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100526 if (verify) {
527 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000528 if (!image_check_dcrc(rd_hdr)) {
529 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000530 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600531 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100532 }
533 puts("OK\n");
534 }
535
Simon Glass770605e2012-02-13 13:51:18 +0000536 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100537
Stephen Warren712fbcf2011-10-18 11:11:49 +0000538 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
539 !image_check_arch(rd_hdr, arch) ||
540 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
541 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100542 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000543 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600544 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100545 }
546
547 return rd_hdr;
548}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200549#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100550#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100551
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100552/*****************************************************************************/
553/* Shared dual-format routines */
554/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100555#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600556ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
557ulong save_addr; /* Default Save Address */
558ulong save_size; /* Default Save Size (in bytes) */
559
560static int on_loadaddr(const char *name, const char *value, enum env_op op,
561 int flags)
562{
563 switch (op) {
564 case env_op_create:
565 case env_op_overwrite:
566 load_addr = simple_strtoul(value, NULL, 16);
567 break;
568 default:
569 break;
570 }
571
572 return 0;
573}
574U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
575
Simon Glass723806c2017-08-03 12:22:15 -0600576ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100577{
Simon Glass00caae62017-08-03 12:22:12 -0600578 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100579 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000580 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100581 return tmp;
582 }
583
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200584#if defined(CONFIG_SYS_SDRAM_BASE)
585 return CONFIG_SYS_SDRAM_BASE;
Michal Simeka750ded2019-09-25 09:11:48 +0200586#elif defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100587 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100588#else
589 return 0;
590#endif
591}
592
Simon Glass723806c2017-08-03 12:22:15 -0600593phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100594{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900595 phys_size_t tmp, size;
596 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600597 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100598 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000599 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100600 return tmp;
601 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900602
Michal Simeka750ded2019-09-25 09:11:48 +0200603#if (defined(CONFIG_ARM) || defined(CONFIG_MICROBLAZE)) && \
604 defined(CONFIG_NR_DRAM_BANKS)
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900605 start = gd->bd->bi_dram[0].start;
606 size = gd->bd->bi_dram[0].size;
607#else
608 start = gd->bd->bi_memstart;
609 size = gd->bd->bi_memsize;
610#endif
611
Simon Glass00caae62017-08-03 12:22:12 -0600612 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500613 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000614 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500615 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900616 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500617
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900618 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100619}
620
Simon Glass723806c2017-08-03 12:22:15 -0600621phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000622{
623 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600624 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000625 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000626 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000627 return tmp;
628 }
629
630#if defined(CONFIG_SYS_BOOTMAPSZ)
631 return CONFIG_SYS_BOOTMAPSZ;
632#else
Simon Glass723806c2017-08-03 12:22:15 -0600633 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000634#endif
635}
636
Stephen Warren712fbcf2011-10-18 11:11:49 +0000637void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100638{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400639 if (to == from)
640 return;
641
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100642#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800643 if (to > from) {
644 from += len;
645 to += len;
646 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100647 while (len > 0) {
648 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000649 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800650 if (to > from) {
651 to -= tail;
652 from -= tail;
653 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000654 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800655 if (to < from) {
656 to += tail;
657 from += tail;
658 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100659 len -= tail;
660 }
661#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000662 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100663#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
664}
Julius Werner20908542019-07-24 19:37:54 -0700665#else /* USE_HOSTCC */
666void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
667{
668 memmove(to, from, len);
669}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100670#endif /* !USE_HOSTCC */
671
Stephen Warren712fbcf2011-10-18 11:11:49 +0000672void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100673{
674#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000675 printf("%d Bytes = ", size);
676 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100677#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100678 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100679 size, (double)size / 1.024e3,
680 (double)size / 1.048576e6);
681#endif
682}
683
Simon Glass859e92b2013-05-07 06:11:51 +0000684#if IMAGE_ENABLE_TIMESTAMP
685void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100686{
687#ifndef USE_HOSTCC
688 struct rtc_time tm;
689
Simon Glass9f9276c2015-04-20 12:37:18 -0600690 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000691 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100692 tm.tm_year, tm.tm_mon, tm.tm_mday,
693 tm.tm_hour, tm.tm_min, tm.tm_sec);
694#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000695 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100696#endif
697}
Simon Glass859e92b2013-05-07 06:11:51 +0000698#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100699
Simon Glass5b9d44d2015-06-23 15:38:25 -0600700const table_entry_t *get_table_entry(const table_entry_t *table, int id)
701{
702 for (; table->id >= 0; ++table) {
703 if (table->id == id)
704 return table;
705 }
706 return NULL;
707}
708
Simon Glass14262202016-06-30 10:52:16 -0600709static const char *unknown_msg(enum ih_category category)
710{
Simon Glassae3de0d2016-10-31 10:21:09 -0600711 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600712 static char msg[30];
713
Simon Glassae3de0d2016-10-31 10:21:09 -0600714 strcpy(msg, unknown_str);
715 strncat(msg, table_info[category].desc,
716 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600717
718 return msg;
719}
720
721/**
722 * get_cat_table_entry_name - translate entry id to long name
723 * @category: category to look up (enum ih_category)
724 * @id: entry id to be translated
725 *
726 * This will scan the translation table trying to find the entry that matches
727 * the given id.
728 *
729 * @retur long entry name if translation succeeds; error string on failure
730 */
731const char *genimg_get_cat_name(enum ih_category category, uint id)
732{
733 const table_entry_t *entry;
734
735 entry = get_table_entry(table_info[category].table, id);
736 if (!entry)
737 return unknown_msg(category);
738#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
739 return entry->lname;
740#else
741 return entry->lname + gd->reloc_off;
742#endif
743}
744
745/**
746 * get_cat_table_entry_short_name - translate entry id to short name
747 * @category: category to look up (enum ih_category)
748 * @id: entry id to be translated
749 *
750 * This will scan the translation table trying to find the entry that matches
751 * the given id.
752 *
753 * @retur short entry name if translation succeeds; error string on failure
754 */
755const char *genimg_get_cat_short_name(enum ih_category category, uint id)
756{
757 const table_entry_t *entry;
758
759 entry = get_table_entry(table_info[category].table, id);
760 if (!entry)
761 return unknown_msg(category);
762#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
763 return entry->sname;
764#else
765 return entry->sname + gd->reloc_off;
766#endif
767}
768
769int genimg_get_cat_count(enum ih_category category)
770{
771 return table_info[category].count;
772}
773
774const char *genimg_get_cat_desc(enum ih_category category)
775{
776 return table_info[category].desc;
777}
778
Marian Balakowicz570abb02008-02-29 15:59:59 +0100779/**
780 * get_table_entry_name - translate entry id to long name
781 * @table: pointer to a translation table for entries of a specific type
782 * @msg: message to be returned when translation fails
783 * @id: entry id to be translated
784 *
785 * get_table_entry_name() will go over translation table trying to find
786 * entry that matches given id. If matching entry is found, its long
787 * name is returned to the caller.
788 *
789 * returns:
790 * long entry name if translation succeeds
791 * msg otherwise
792 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400793char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100794{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600795 table = get_table_entry(table, id);
796 if (!table)
797 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200798#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600799 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500800#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600801 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500802#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100803}
804
Stephen Warren712fbcf2011-10-18 11:11:49 +0000805const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100806{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000807 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100808}
809
Stephen Warren712fbcf2011-10-18 11:11:49 +0000810const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100811{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000812 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
813 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100814}
815
Stephen Warren712fbcf2011-10-18 11:11:49 +0000816const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100817{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000818 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100819}
820
Simon Glasscef2e512016-02-22 22:55:50 -0700821static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600822{
Simon Glasscef2e512016-02-22 22:55:50 -0700823 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600824 if (!table)
825 return "unknown";
826#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
827 return table->sname;
828#else
829 return table->sname + gd->reloc_off;
830#endif
831}
832
Simon Glasscef2e512016-02-22 22:55:50 -0700833const char *genimg_get_type_short_name(uint8_t type)
834{
835 return genimg_get_short_name(uimage_type, type);
836}
837
Stephen Warren712fbcf2011-10-18 11:11:49 +0000838const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100839{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000840 return (get_table_entry_name(uimage_comp, "Unknown Compression",
841 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100842}
843
Simon Glasscef2e512016-02-22 22:55:50 -0700844const char *genimg_get_comp_short_name(uint8_t comp)
845{
846 return genimg_get_short_name(uimage_comp, comp);
847}
848
849const char *genimg_get_os_short_name(uint8_t os)
850{
851 return genimg_get_short_name(uimage_os, os);
852}
853
854const char *genimg_get_arch_short_name(uint8_t arch)
855{
856 return genimg_get_short_name(uimage_arch, arch);
857}
858
Marian Balakowicz570abb02008-02-29 15:59:59 +0100859/**
860 * get_table_entry_id - translate short entry name to id
861 * @table: pointer to a translation table for entries of a specific type
862 * @table_name: to be used in case of error
863 * @name: entry short name to be translated
864 *
865 * get_table_entry_id() will go over translation table trying to find
866 * entry that matches given short name. If matching entry is found,
867 * its id returned to the caller.
868 *
869 * returns:
870 * entry id if translation succeeds
871 * -1 otherwise
872 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400873int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100874 const char *table_name, const char *name)
875{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400876 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100877
878 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200879#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600880 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200881#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600882 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500883#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100884 return (t->id);
885 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000886 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600887
888 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100889}
890
Stephen Warren712fbcf2011-10-18 11:11:49 +0000891int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100892{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000893 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100894}
895
Stephen Warren712fbcf2011-10-18 11:11:49 +0000896int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100897{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000898 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100899}
900
Stephen Warren712fbcf2011-10-18 11:11:49 +0000901int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100902{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000903 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100904}
905
Stephen Warren712fbcf2011-10-18 11:11:49 +0000906int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100907{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000908 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100909}
910
911#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100912/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700913 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
914 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700915 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700916 * @fit_uname_config: double pointer to a char, will hold pointer to a
917 * configuration unit name
918 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
919 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700920 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700921 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700922 * which is normally the first argv of bootm/bootz
923 *
924 * returns:
925 * kernel start address
926 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700927ulong genimg_get_kernel_addr_fit(char * const img_addr,
928 const char **fit_uname_config,
929 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700930{
Bryan Wu0f641402014-07-31 17:39:58 -0700931 ulong kernel_addr;
932
933 /* find out kernel image address */
934 if (!img_addr) {
935 kernel_addr = load_addr;
936 debug("* kernel: default image load address = 0x%08lx\n",
937 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700938#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700939 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700940 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700941 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700942 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700943 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700944 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700945 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700946 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700947#endif
948 } else {
949 kernel_addr = simple_strtoul(img_addr, NULL, 16);
950 debug("* kernel: cmdline image address = 0x%08lx\n",
951 kernel_addr);
952 }
953
954 return kernel_addr;
955}
956
957/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700958 * genimg_get_kernel_addr() is the simple version of
959 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
960 */
961ulong genimg_get_kernel_addr(char * const img_addr)
962{
963 const char *fit_uname_config = NULL;
964 const char *fit_uname_kernel = NULL;
965
966 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
967 &fit_uname_kernel);
968}
969
970/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100971 * genimg_get_format - get image format type
972 * @img_addr: image start address
973 *
974 * genimg_get_format() checks whether provided address points to a valid
975 * legacy or FIT image.
976 *
977 * New uImage format and FDT blob are based on a libfdt. FDT blob
978 * may be passed directly or embedded in a FIT image. In both situations
979 * genimg_get_format() must be able to dectect libfdt header.
980 *
981 * returns:
982 * image format type or IMAGE_FORMAT_INVALID if no image is present
983 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000984int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100985{
Tom Rinic76c93a2019-05-23 07:14:07 -0400986#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200987 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100988
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200989 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100990 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200991 return IMAGE_FORMAT_LEGACY;
992#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700993#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200994 if (fdt_check_header(img_addr) == 0)
995 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500996#endif
997#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200998 if (android_image_check_header(img_addr) == 0)
999 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001000#endif
1001
Heiko Schocher21d29f72014-05-28 11:33:33 +02001002 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001003}
1004
1005/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001006 * fit_has_config - check if there is a valid FIT configuration
1007 * @images: pointer to the bootm command headers structure
1008 *
1009 * fit_has_config() checks if there is a FIT configuration in use
1010 * (if FTI support is present).
1011 *
1012 * returns:
1013 * 0, no FIT support or no configuration found
1014 * 1, configuration found
1015 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001016int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001017{
Simon Glass73223f02016-02-22 22:55:43 -07001018#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001019 if (images->fit_uname_cfg)
1020 return 1;
1021#endif
1022 return 0;
1023}
1024
1025/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001026 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001027 * @argc: command argument count
1028 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001029 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001030 * @arch: expected ramdisk architecture
1031 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1032 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1033 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001034 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001035 * Curently supported are the following ramdisk sources:
1036 * - multicomponent kernel/ramdisk image,
1037 * - commandline provided address of decicated ramdisk image.
1038 *
1039 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001040 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001041 * rd_start and rd_end are set to ramdisk start/end addresses if
1042 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001043 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001044 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001045 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001046 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001047int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001048 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001049{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001050 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001051 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001052#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001053 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001054#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001055 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001056#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001057 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001058#endif
Simon Glass73223f02016-02-22 22:55:43 -07001059#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001060 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001061 const char *fit_uname_ramdisk = NULL;
1062 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001063 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001064#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001065 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001066
Marian Balakowiczc8779642008-03-12 10:12:37 +01001067 *rd_start = 0;
1068 *rd_end = 0;
1069
Tom Rini1fec3c52015-08-27 15:42:41 -04001070#ifdef CONFIG_ANDROID_BOOT_IMAGE
1071 /*
1072 * Look for an Android boot image.
1073 */
1074 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001075 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001076 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001077#endif
1078
Simon Glass983c72f2013-06-11 11:14:46 -07001079 if (argc >= 2)
1080 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001081
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001082 /*
1083 * Look for a '-' which indicates to ignore the
1084 * ramdisk argument
1085 */
Simon Glass983c72f2013-06-11 11:14:46 -07001086 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001087 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001088 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001089 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001090#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001091 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001092 /*
1093 * If the init ramdisk comes from the FIT image and
1094 * the FIT image address is omitted in the command
1095 * line argument, try to use os FIT image address or
1096 * default load address.
1097 */
1098 if (images->fit_uname_os)
1099 default_addr = (ulong)images->fit_hdr_os;
1100 else
1101 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001102
Simon Glass983c72f2013-06-11 11:14:46 -07001103 if (fit_parse_conf(select, default_addr,
1104 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001105 debug("* ramdisk: config '%s' from image at "
1106 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001107 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001108 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001109 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001110 debug("* ramdisk: subimage '%s' from image at "
1111 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001112 fit_uname_ramdisk, rd_addr);
1113 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001114#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001115 {
Simon Glass983c72f2013-06-11 11:14:46 -07001116 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001117 debug("* ramdisk: cmdline image address = "
1118 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001119 rd_addr);
1120 }
Simon Glass73223f02016-02-22 22:55:43 -07001121#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001122 } else {
1123 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001124 * command argument. If the property is not defined,
1125 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001126 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001127 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001128 rd_noffset = fit_get_node_from_config(images,
1129 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001130 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001131 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001132 else if (rd_noffset < 0)
1133 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001134 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001135#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001136
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001137 /*
1138 * Check if there is an initrd image at the
1139 * address provided in the second bootm argument
1140 * check image type, for FIT images get FIT node.
1141 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001142 buf = map_sysmem(rd_addr, 0);
1143 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001144#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001145 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001146 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001147 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001148
Simon Glass770605e2012-02-13 13:51:18 +00001149 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001150 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001151 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001152
Marian Balakowiczc8779642008-03-12 10:12:37 +01001153 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001154 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001155
Stephen Warren712fbcf2011-10-18 11:11:49 +00001156 rd_data = image_get_data(rd_hdr);
1157 rd_len = image_get_data_size(rd_hdr);
1158 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001159 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001160#endif
Simon Glass73223f02016-02-22 22:55:43 -07001161#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001162 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001163 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001164 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001165 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001166 IH_TYPE_RAMDISK,
1167 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001168 FIT_LOAD_OPTIONAL_NON_ZERO,
1169 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001170 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001171 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001172
Simon Glassa51ec632013-05-16 13:53:22 +00001173 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001174 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001175 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001176 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001177#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001178#ifdef CONFIG_ANDROID_BOOT_IMAGE
1179 case IMAGE_FORMAT_ANDROID:
1180 android_image_get_ramdisk((void *)images->os.start,
1181 &rd_data, &rd_len);
1182 break;
1183#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001184 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001185#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001186 end = NULL;
1187 if (select)
1188 end = strchr(select, ':');
1189 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001190 rd_len = simple_strtoul(++end, NULL, 16);
1191 rd_data = rd_addr;
1192 } else
1193#endif
1194 {
1195 puts("Wrong Ramdisk Image Format\n");
1196 rd_data = rd_len = rd_load = 0;
1197 return 1;
1198 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001199 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001200 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001201 image_check_type(&images->legacy_hdr_os_copy,
1202 IH_TYPE_MULTI)) {
1203
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001204 /*
1205 * Now check if we have a legacy mult-component image,
1206 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001207 */
Simon Glass770605e2012-02-13 13:51:18 +00001208 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001209 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001210 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001211 (ulong)images->legacy_hdr_os);
1212
Stephen Warren712fbcf2011-10-18 11:11:49 +00001213 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001214 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001215 /*
1216 * no initrd image
1217 */
Simon Glass770605e2012-02-13 13:51:18 +00001218 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001219 rd_len = rd_data = 0;
1220 }
1221
1222 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001223 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001224 } else {
1225 *rd_start = rd_data;
1226 *rd_end = rd_data + rd_len;
1227 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001228 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001229 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001230
1231 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001232}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001233
John Rigbyfca43cc2010-10-13 13:57:35 -06001234#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001235/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001236 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001237 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001238 * @rd_data: ramdisk data start address
1239 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001240 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1241 * start address (after possible relocation)
1242 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1243 * end address (after possible relocation)
1244 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001245 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001246 * variable and if requested ramdisk data is moved to a specified location.
1247 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001248 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1249 * start/end addresses if ramdisk image start and len were provided,
1250 * otherwise set initrd_start and initrd_end set to zeros.
1251 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001252 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001253 * 0 - success
1254 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001255 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001256int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001257 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001258{
1259 char *s;
1260 ulong initrd_high;
1261 int initrd_copy_to_ram = 1;
1262
Simon Glass00caae62017-08-03 12:22:12 -06001263 s = env_get("initrd_high");
1264 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001265 /* a value of "no" or a similar string will act like 0,
1266 * turning the "load high" feature off. This is intentional.
1267 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001268 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001269 if (initrd_high == ~0)
1270 initrd_copy_to_ram = 0;
1271 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001272 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001273 }
1274
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001275
Stephen Warren712fbcf2011-10-18 11:11:49 +00001276 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001277 initrd_high, initrd_copy_to_ram);
1278
1279 if (rd_data) {
1280 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001281 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001282 *initrd_start = rd_data;
1283 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001284 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001285 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001286 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001287 *initrd_start = (ulong)lmb_alloc_base(lmb,
1288 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001289 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001290 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1291 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001292
Kumar Galae822d7f2008-02-27 21:51:49 -06001293 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001294 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001295 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001296 }
Simon Glass770605e2012-02-13 13:51:18 +00001297 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001298
1299 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001300 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001301 *initrd_start, *initrd_end);
1302
Stephen Warren712fbcf2011-10-18 11:11:49 +00001303 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001304 (void *)rd_data, rd_len, CHUNKSZ);
1305
Kumar Gala3b200112011-12-07 04:42:58 +00001306#ifdef CONFIG_MP
1307 /*
1308 * Ensure the image is flushed to memory to handle
1309 * AMP boot scenarios in which we might not be
1310 * HW cache coherent
1311 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001312 flush_cache((unsigned long)*initrd_start,
1313 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001314#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001315 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001316 }
1317 } else {
1318 *initrd_start = 0;
1319 *initrd_end = 0;
1320 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001321 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001322 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001323
Kumar Galae822d7f2008-02-27 21:51:49 -06001324 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001325
Kumar Galae822d7f2008-02-27 21:51:49 -06001326error:
1327 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001328}
John Rigbyfca43cc2010-10-13 13:57:35 -06001329#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001330
Simon Glass90268b82014-10-19 21:11:24 -06001331int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1332 ulong *setup_start, ulong *setup_len)
1333{
Simon Glass73223f02016-02-22 22:55:43 -07001334#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001335 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1336#else
1337 return -ENOENT;
1338#endif
1339}
1340
Simon Glass73223f02016-02-22 22:55:43 -07001341#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001342#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001343int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1344 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1345{
1346 ulong tmp_img_addr, img_data, img_len;
1347 void *buf;
1348 int conf_noffset;
1349 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001350 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001351 int err;
1352 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001353
1354 /* Check to see if the images struct has a FIT configuration */
1355 if (!genimg_has_config(images)) {
1356 debug("## FIT configuration was not specified\n");
1357 return 0;
1358 }
1359
1360 /*
1361 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001362 */
1363 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001364 buf = map_sysmem(tmp_img_addr, 0);
1365 /*
1366 * Check image type. For FIT images get FIT node
1367 * and attempt to locate a generic binary.
1368 */
1369 switch (genimg_get_format(buf)) {
1370 case IMAGE_FORMAT_FIT:
1371 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1372
Simon Glassb02e4042016-10-02 17:59:28 -06001373 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1374 NULL);
1375 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001376 debug("## FPGA image is not specified\n");
1377 return 0;
1378 }
1379 fit_img_result = fit_image_load(images,
1380 tmp_img_addr,
1381 (const char **)&uname,
1382 &(images->fit_uname_cfg),
1383 arch,
1384 IH_TYPE_FPGA,
1385 BOOTSTAGE_ID_FPGA_INIT,
1386 FIT_LOAD_OPTIONAL_NON_ZERO,
1387 &img_data, &img_len);
1388
1389 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1390 uname, img_data, img_len);
1391
1392 if (fit_img_result < 0) {
1393 /* Something went wrong! */
1394 return fit_img_result;
1395 }
1396
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001397 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001398 name = "full";
1399 err = fpga_loadbitstream(devnum, (char *)img_data,
1400 img_len, BIT_FULL);
1401 if (err)
1402 err = fpga_load(devnum, (const void *)img_data,
1403 img_len, BIT_FULL);
1404 } else {
1405 name = "partial";
1406 err = fpga_loadbitstream(devnum, (char *)img_data,
1407 img_len, BIT_PARTIAL);
1408 if (err)
1409 err = fpga_load(devnum, (const void *)img_data,
1410 img_len, BIT_PARTIAL);
1411 }
1412
Michal Simek62afc602016-05-17 14:03:50 +02001413 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001414 return err;
1415
1416 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001417 break;
1418 default:
1419 printf("The given image format is not supported (corrupt?)\n");
1420 return 1;
1421 }
1422
1423 return 0;
1424}
1425#endif
1426
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001427static void fit_loadable_process(uint8_t img_type,
1428 ulong img_data,
1429 ulong img_len)
1430{
1431 int i;
1432 const unsigned int count =
1433 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1434 struct fit_loadable_tbl *fit_loadable_handler =
1435 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1436 /* For each loadable handler */
1437 for (i = 0; i < count; i++, fit_loadable_handler++)
1438 /* matching this type */
1439 if (fit_loadable_handler->type == img_type)
1440 /* call that handler with this image data */
1441 fit_loadable_handler->handler(img_data, img_len);
1442}
1443
Karl Apsite84a07db2015-05-21 09:52:48 -04001444int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1445 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1446{
1447 /*
1448 * These variables are used to hold the current image location
1449 * in system memory.
1450 */
1451 ulong tmp_img_addr;
1452 /*
1453 * These two variables are requirements for fit_image_load, but
1454 * their values are not used
1455 */
1456 ulong img_data, img_len;
1457 void *buf;
1458 int loadables_index;
1459 int conf_noffset;
1460 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001461 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001462 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001463
1464 /* Check to see if the images struct has a FIT configuration */
1465 if (!genimg_has_config(images)) {
1466 debug("## FIT configuration was not specified\n");
1467 return 0;
1468 }
1469
1470 /*
1471 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001472 */
1473 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001474 buf = map_sysmem(tmp_img_addr, 0);
1475 /*
1476 * Check image type. For FIT images get FIT node
1477 * and attempt to locate a generic binary.
1478 */
1479 switch (genimg_get_format(buf)) {
1480 case IMAGE_FORMAT_FIT:
1481 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1482
1483 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001484 uname = fdt_stringlist_get(buf, conf_noffset,
1485 FIT_LOADABLE_PROP, loadables_index,
1486 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001487 loadables_index++)
1488 {
1489 fit_img_result = fit_image_load(images,
1490 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001491 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001492 &(images->fit_uname_cfg), arch,
1493 IH_TYPE_LOADABLE,
1494 BOOTSTAGE_ID_FIT_LOADABLE_START,
1495 FIT_LOAD_OPTIONAL_NON_ZERO,
1496 &img_data, &img_len);
1497 if (fit_img_result < 0) {
1498 /* Something went wrong! */
1499 return fit_img_result;
1500 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001501
1502 fit_img_result = fit_image_get_node(buf, uname);
1503 if (fit_img_result < 0) {
1504 /* Something went wrong! */
1505 return fit_img_result;
1506 }
1507 fit_img_result = fit_image_get_type(buf,
1508 fit_img_result,
1509 &img_type);
1510 if (fit_img_result < 0) {
1511 /* Something went wrong! */
1512 return fit_img_result;
1513 }
1514
1515 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001516 }
1517 break;
1518 default:
1519 printf("The given image format is not supported (corrupt?)\n");
1520 return 1;
1521 }
1522
1523 return 0;
1524}
1525#endif
1526
John Rigbyfca43cc2010-10-13 13:57:35 -06001527#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001528/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001529 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001530 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001531 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1532 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1533 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001534 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301535 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001536 * variable is present its contents is copied to allocated kernel
1537 * command line.
1538 *
1539 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001540 * 0 - success
1541 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001542 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001543int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001544{
1545 char *cmdline;
1546 char *s;
1547
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001548 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001549 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001550
1551 if (cmdline == NULL)
1552 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001553
Simon Glass00caae62017-08-03 12:22:12 -06001554 s = env_get("bootargs");
1555 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001556 s = "";
1557
1558 strcpy(cmdline, s);
1559
1560 *cmd_start = (ulong) & cmdline[0];
1561 *cmd_end = *cmd_start + strlen(cmdline);
1562
Stephen Warren712fbcf2011-10-18 11:11:49 +00001563 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001564
Kumar Galae822d7f2008-02-27 21:51:49 -06001565 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001566}
John Rigbyfca43cc2010-10-13 13:57:35 -06001567#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001568
John Rigbyfca43cc2010-10-13 13:57:35 -06001569#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001570/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001571 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001572 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001573 * @kbd: double pointer to board info data
1574 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001575 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001576 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001577 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001578 *
1579 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001580 * 0 - success
1581 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001582 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001583int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001584{
Becky Bruce391fd932008-06-09 20:37:18 -05001585 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001586 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001587 if (*kbd == NULL)
1588 return -1;
1589
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001590 **kbd = *(gd->bd);
1591
Stephen Warren712fbcf2011-10-18 11:11:49 +00001592 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001593
1594#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1595 do_bdinfo(NULL, 0, 0, NULL);
1596#endif
1597
Kumar Galae822d7f2008-02-27 21:51:49 -06001598 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001599}
John Rigbyfca43cc2010-10-13 13:57:35 -06001600#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001601
1602#ifdef CONFIG_LMB
1603int image_setup_linux(bootm_headers_t *images)
1604{
1605 ulong of_size = images->ft_len;
1606 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001607 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001608 int ret;
1609
1610 if (IMAGE_ENABLE_OF_LIBFDT)
1611 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1612
1613 if (IMAGE_BOOT_GET_CMDLINE) {
1614 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1615 &images->cmdline_end);
1616 if (ret) {
1617 puts("ERROR with allocation of cmdline\n");
1618 return ret;
1619 }
1620 }
Simon Glass13d06982013-05-08 08:06:01 +00001621
1622 if (IMAGE_ENABLE_OF_LIBFDT) {
1623 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1624 if (ret)
1625 return ret;
1626 }
1627
1628 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1629 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1630 if (ret)
1631 return ret;
1632 }
1633
1634 return 0;
1635}
1636#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001637#endif /* !USE_HOSTCC */