blob: 179eef0bd2dc8524bec46d4455de88d8da718162 [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>
64
Simon Glass13d06982013-05-08 08:06:01 +000065#ifndef CONFIG_SYS_BARGSIZE
66#define CONFIG_SYS_BARGSIZE 512
67#endif
68
Mike Frysinger7edb1862010-10-20 07:17:39 -040069static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060070 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010071 { IH_ARCH_ALPHA, "alpha", "Alpha", },
72 { IH_ARCH_ARM, "arm", "ARM", },
73 { IH_ARCH_I386, "x86", "Intel x86", },
74 { IH_ARCH_IA64, "ia64", "IA64", },
75 { IH_ARCH_M68K, "m68k", "M68K", },
76 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
77 { IH_ARCH_MIPS, "mips", "MIPS", },
78 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010079 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070080 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010081 { IH_ARCH_PPC, "ppc", "PowerPC", },
82 { IH_ARCH_S390, "s390", "IBM S390", },
83 { IH_ARCH_SH, "sh", "SuperH", },
84 { IH_ARCH_SPARC, "sparc", "SPARC", },
85 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
86 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
87 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000088 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000089 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000090 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080091 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040092 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060093 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030094 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +080095 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010096 { -1, "", "", },
97};
98
Mike Frysinger7edb1862010-10-20 07:17:39 -040099static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600100 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200101 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100102 { IH_OS_LINUX, "linux", "Linux", },
103#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
104 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
105#endif
106 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200107 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000108 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100109 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000110 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100111 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800112 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100113#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
114 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500116#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
117 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
118#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100119#ifdef USE_HOSTCC
120 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
121 { IH_OS_DELL, "dell", "Dell", },
122 { IH_OS_ESIX, "esix", "Esix", },
123 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
124 { IH_OS_IRIX, "irix", "Irix", },
125 { IH_OS_NCR, "ncr", "NCR", },
126 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
127 { IH_OS_PSOS, "psos", "pSOS", },
128 { IH_OS_SCO, "sco", "SCO", },
129 { IH_OS_SOLARIS, "solaris", "Solaris", },
130 { IH_OS_SVR4, "svr4", "SVR4", },
131#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100132#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
133 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
134#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200135 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Marek Vasut67ddd952014-12-16 14:07:21 +0100136
Marian Balakowicz570abb02008-02-29 15:59:59 +0100137 { -1, "", "", },
138};
139
Mike Frysinger7edb1862010-10-20 07:17:39 -0400140static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000141 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100142 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
143 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400144 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400145 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100146 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700147 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000148 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
149 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000150 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000151 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600152 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100153 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000154 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000155 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100156 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
157 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200158 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
159 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100160 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000161 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200162 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200163 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600164 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200165 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600166 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600167 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600168 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200169 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000170 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200171 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200172 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200173 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600174 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100175 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500176 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100177 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800178 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200179 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100180 { -1, "", "", },
181};
182
Mike Frysinger7edb1862010-10-20 07:17:39 -0400183static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100184 { IH_COMP_NONE, "none", "uncompressed", },
185 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
186 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200187 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100188 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700189 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100190 { -1, "", "", },
191};
192
Simon Glass56d7ab72016-06-30 10:52:14 -0600193struct table_info {
194 const char *desc;
195 int count;
196 const table_entry_t *table;
197};
198
199static const struct table_info table_info[IH_COUNT] = {
200 { "architecture", IH_ARCH_COUNT, uimage_arch },
201 { "compression", IH_COMP_COUNT, uimage_comp },
202 { "operating system", IH_OS_COUNT, uimage_os },
203 { "image type", IH_TYPE_COUNT, uimage_type },
204};
205
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100206/*****************************************************************************/
207/* Legacy format routines */
208/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000209int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100210{
211 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000212 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100213 image_header_t header;
214
215 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000216 memmove(&header, (char *)hdr, image_get_header_size());
217 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100218
Stephen Warren712fbcf2011-10-18 11:11:49 +0000219 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100220
Stephen Warren712fbcf2011-10-18 11:11:49 +0000221 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100222}
223
Stephen Warren712fbcf2011-10-18 11:11:49 +0000224int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100225{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000226 ulong data = image_get_data(hdr);
227 ulong len = image_get_data_size(hdr);
228 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100229
Stephen Warren712fbcf2011-10-18 11:11:49 +0000230 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100231}
232
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100233/**
234 * image_multi_count - get component (sub-image) count
235 * @hdr: pointer to the header of the multi component image
236 *
237 * image_multi_count() returns number of components in a multi
238 * component image.
239 *
240 * Note: no checking of the image type is done, caller must pass
241 * a valid multi component image.
242 *
243 * returns:
244 * number of components
245 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000246ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100247{
248 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100249 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100250
251 /* get start of the image payload, which in case of multi
252 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000253 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100254
255 /* count non empty slots */
256 for (i = 0; size[i]; ++i)
257 count++;
258
259 return count;
260}
261
262/**
263 * image_multi_getimg - get component data address and size
264 * @hdr: pointer to the header of the multi component image
265 * @idx: index of the requested component
266 * @data: pointer to a ulong variable, will hold component data address
267 * @len: pointer to a ulong variable, will hold component size
268 *
269 * image_multi_getimg() returns size and data address for the requested
270 * component in a multi component image.
271 *
272 * Note: no checking of the image type is done, caller must pass
273 * a valid multi component image.
274 *
275 * returns:
276 * data address and size of the component, if idx is valid
277 * 0 in data and len, if idx is out of range
278 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000279void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100280 ulong *data, ulong *len)
281{
282 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100283 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700284 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100285
286 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000287 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100288
289 /* get start of the image payload, which in case of multi
290 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000291 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100292
293 /* get address of the proper component data start, which means
294 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000295 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100296
297 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000298 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100299 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100300
301 /* go over all indices preceding requested component idx */
302 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700303 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000304 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100305 }
306
307 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700308 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100309 } else {
310 *len = 0;
311 *data = 0;
312 }
313}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100314
Stephen Warren712fbcf2011-10-18 11:11:49 +0000315static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100316{
Heiko Schocher80402f32015-06-29 09:10:46 +0200317 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100318
Stephen Warren712fbcf2011-10-18 11:11:49 +0000319 os = genimg_get_os_name(image_get_os(hdr));
320 arch = genimg_get_arch_name(image_get_arch(hdr));
321 type = genimg_get_type_name(image_get_type(hdr));
322 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100323
Stephen Warren712fbcf2011-10-18 11:11:49 +0000324 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100325}
326
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100327/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200328 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200329 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100330 * @p: pointer to prefix string
331 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200332 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100333 * The routine prints out all header fields followed by the size/offset data
334 * for MULTI/SCRIPT images.
335 *
336 * returns:
337 * no returned results
338 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000339void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100340{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200341 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200342 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200343
Simon Glass1fe7d932013-05-08 08:05:58 +0000344 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000345 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000346 if (IMAGE_ENABLE_TIMESTAMP) {
347 printf("%sCreated: ", p);
348 genimg_print_time((time_t)image_get_time(hdr));
349 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000350 printf("%sImage Type: ", p);
351 image_print_type(hdr);
352 printf("%sData Size: ", p);
353 genimg_print_size(image_get_data_size(hdr));
354 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
355 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100356
Stephen Warren712fbcf2011-10-18 11:11:49 +0000357 if (image_check_type(hdr, IH_TYPE_MULTI) ||
358 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100359 int i;
360 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000361 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100362
Stephen Warren712fbcf2011-10-18 11:11:49 +0000363 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100364 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100366
Stephen Warren712fbcf2011-10-18 11:11:49 +0000367 printf("%s Image %d: ", p, i);
368 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100369
Stephen Warren712fbcf2011-10-18 11:11:49 +0000370 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100371 /*
372 * the user may need to know offsets
373 * if planning to do something with
374 * multiple files
375 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000376 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100377 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100378 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100379 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
380 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
381 image_get_load(hdr) - image_get_header_size(),
382 image_get_size(hdr) + image_get_header_size()
383 - 0x1FE0);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100384 }
385}
386
Julius Werner20908542019-07-24 19:37:54 -0700387/**
388 * print_decomp_msg() - Print a suitable decompression/loading message
389 *
390 * @type: OS type (IH_OS_...)
391 * @comp_type: Compression type being used (IH_COMP_...)
392 * @is_xip: true if the load address matches the image start
393 */
394static void print_decomp_msg(int comp_type, int type, bool is_xip)
395{
396 const char *name = genimg_get_type_name(type);
397
398 if (comp_type == IH_COMP_NONE)
399 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
400 else
401 printf(" Uncompressing %s\n", name);
402}
403
404int image_decomp(int comp, ulong load, ulong image_start, int type,
405 void *load_buf, void *image_buf, ulong image_len,
406 uint unc_len, ulong *load_end)
407{
408 int ret = 0;
409
410 *load_end = load;
411 print_decomp_msg(comp, type, load == image_start);
412
413 /*
414 * Load the image to the right place, decompressing if needed. After
415 * this, image_len will be set to the number of uncompressed bytes
416 * loaded, ret will be non-zero on error.
417 */
418 switch (comp) {
419 case IH_COMP_NONE:
420 if (load == image_start)
421 break;
422 if (image_len <= unc_len)
423 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
424 else
425 ret = -ENOSPC;
426 break;
427#ifdef CONFIG_GZIP
428 case IH_COMP_GZIP: {
429 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
430 break;
431 }
432#endif /* CONFIG_GZIP */
433#ifdef CONFIG_BZIP2
434 case IH_COMP_BZIP2: {
435 uint size = unc_len;
436
437 /*
438 * If we've got less than 4 MB of malloc() space,
439 * use slower decompression algorithm which requires
440 * at most 2300 KB of memory.
441 */
442 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
443 image_buf, image_len,
444 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
445 image_len = size;
446 break;
447 }
448#endif /* CONFIG_BZIP2 */
449#ifdef CONFIG_LZMA
450 case IH_COMP_LZMA: {
451 SizeT lzma_len = unc_len;
452
453 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
454 image_buf, image_len);
455 image_len = lzma_len;
456 break;
457 }
458#endif /* CONFIG_LZMA */
459#ifdef CONFIG_LZO
460 case IH_COMP_LZO: {
461 size_t size = unc_len;
462
463 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
464 image_len = size;
465 break;
466 }
467#endif /* CONFIG_LZO */
468#ifdef CONFIG_LZ4
469 case IH_COMP_LZ4: {
470 size_t size = unc_len;
471
472 ret = ulz4fn(image_buf, image_len, load_buf, &size);
473 image_len = size;
474 break;
475 }
476#endif /* CONFIG_LZ4 */
477 default:
478 printf("Unimplemented compression type %d\n", comp);
479 return -ENOSYS;
480 }
481
482 *load_end = load + image_len;
483
484 return ret;
485}
486
Marian Balakowicz570abb02008-02-29 15:59:59 +0100487
488#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400489#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100490/**
491 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100492 * @rd_addr: ramdisk image start address
493 * @arch: expected ramdisk architecture
494 * @verify: checksum verification flag
495 *
496 * image_get_ramdisk() returns a pointer to the verified ramdisk image
497 * header. Routine receives image start address and expected architecture
498 * flag. Verification done covers data and header integrity and os/type/arch
499 * fields checking.
500 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100501 * returns:
502 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600503 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100504 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000505static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100506 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100507{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200508 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100509
Stephen Warren712fbcf2011-10-18 11:11:49 +0000510 if (!image_check_magic(rd_hdr)) {
511 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000512 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600513 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100514 }
515
Stephen Warren712fbcf2011-10-18 11:11:49 +0000516 if (!image_check_hcrc(rd_hdr)) {
517 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000518 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600519 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100520 }
521
Simon Glass770605e2012-02-13 13:51:18 +0000522 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000523 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100524
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100525 if (verify) {
526 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000527 if (!image_check_dcrc(rd_hdr)) {
528 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000529 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600530 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100531 }
532 puts("OK\n");
533 }
534
Simon Glass770605e2012-02-13 13:51:18 +0000535 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100536
Stephen Warren712fbcf2011-10-18 11:11:49 +0000537 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
538 !image_check_arch(rd_hdr, arch) ||
539 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
540 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100541 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000542 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600543 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100544 }
545
546 return rd_hdr;
547}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200548#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100549#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100550
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100551/*****************************************************************************/
552/* Shared dual-format routines */
553/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100554#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600555ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
556ulong save_addr; /* Default Save Address */
557ulong save_size; /* Default Save Size (in bytes) */
558
559static int on_loadaddr(const char *name, const char *value, enum env_op op,
560 int flags)
561{
562 switch (op) {
563 case env_op_create:
564 case env_op_overwrite:
565 load_addr = simple_strtoul(value, NULL, 16);
566 break;
567 default:
568 break;
569 }
570
571 return 0;
572}
573U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
574
Simon Glass723806c2017-08-03 12:22:15 -0600575ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100576{
Simon Glass00caae62017-08-03 12:22:12 -0600577 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100578 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000579 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100580 return tmp;
581 }
582
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200583#if defined(CONFIG_SYS_SDRAM_BASE)
584 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100585#elif defined(CONFIG_ARM)
586 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100587#else
588 return 0;
589#endif
590}
591
Simon Glass723806c2017-08-03 12:22:15 -0600592phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100593{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900594 phys_size_t tmp, size;
595 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600596 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100597 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000598 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100599 return tmp;
600 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900601
602#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
603 start = gd->bd->bi_dram[0].start;
604 size = gd->bd->bi_dram[0].size;
605#else
606 start = gd->bd->bi_memstart;
607 size = gd->bd->bi_memsize;
608#endif
609
Simon Glass00caae62017-08-03 12:22:12 -0600610 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500611 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000612 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500613 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900614 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500615
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900616 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100617}
618
Simon Glass723806c2017-08-03 12:22:15 -0600619phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000620{
621 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600622 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000623 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000624 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000625 return tmp;
626 }
627
628#if defined(CONFIG_SYS_BOOTMAPSZ)
629 return CONFIG_SYS_BOOTMAPSZ;
630#else
Simon Glass723806c2017-08-03 12:22:15 -0600631 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000632#endif
633}
634
Stephen Warren712fbcf2011-10-18 11:11:49 +0000635void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100636{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400637 if (to == from)
638 return;
639
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100640#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800641 if (to > from) {
642 from += len;
643 to += len;
644 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100645 while (len > 0) {
646 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000647 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800648 if (to > from) {
649 to -= tail;
650 from -= tail;
651 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000652 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800653 if (to < from) {
654 to += tail;
655 from += tail;
656 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100657 len -= tail;
658 }
659#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000660 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100661#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
662}
Julius Werner20908542019-07-24 19:37:54 -0700663#else /* USE_HOSTCC */
664void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
665{
666 memmove(to, from, len);
667}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100668#endif /* !USE_HOSTCC */
669
Stephen Warren712fbcf2011-10-18 11:11:49 +0000670void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100671{
672#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000673 printf("%d Bytes = ", size);
674 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100675#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100676 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100677 size, (double)size / 1.024e3,
678 (double)size / 1.048576e6);
679#endif
680}
681
Simon Glass859e92b2013-05-07 06:11:51 +0000682#if IMAGE_ENABLE_TIMESTAMP
683void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100684{
685#ifndef USE_HOSTCC
686 struct rtc_time tm;
687
Simon Glass9f9276c2015-04-20 12:37:18 -0600688 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000689 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100690 tm.tm_year, tm.tm_mon, tm.tm_mday,
691 tm.tm_hour, tm.tm_min, tm.tm_sec);
692#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000693 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100694#endif
695}
Simon Glass859e92b2013-05-07 06:11:51 +0000696#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100697
Simon Glass5b9d44d2015-06-23 15:38:25 -0600698const table_entry_t *get_table_entry(const table_entry_t *table, int id)
699{
700 for (; table->id >= 0; ++table) {
701 if (table->id == id)
702 return table;
703 }
704 return NULL;
705}
706
Simon Glass14262202016-06-30 10:52:16 -0600707static const char *unknown_msg(enum ih_category category)
708{
Simon Glassae3de0d2016-10-31 10:21:09 -0600709 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600710 static char msg[30];
711
Simon Glassae3de0d2016-10-31 10:21:09 -0600712 strcpy(msg, unknown_str);
713 strncat(msg, table_info[category].desc,
714 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600715
716 return msg;
717}
718
719/**
720 * get_cat_table_entry_name - translate entry id to long name
721 * @category: category to look up (enum ih_category)
722 * @id: entry id to be translated
723 *
724 * This will scan the translation table trying to find the entry that matches
725 * the given id.
726 *
727 * @retur long entry name if translation succeeds; error string on failure
728 */
729const char *genimg_get_cat_name(enum ih_category category, uint id)
730{
731 const table_entry_t *entry;
732
733 entry = get_table_entry(table_info[category].table, id);
734 if (!entry)
735 return unknown_msg(category);
736#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
737 return entry->lname;
738#else
739 return entry->lname + gd->reloc_off;
740#endif
741}
742
743/**
744 * get_cat_table_entry_short_name - translate entry id to short name
745 * @category: category to look up (enum ih_category)
746 * @id: entry id to be translated
747 *
748 * This will scan the translation table trying to find the entry that matches
749 * the given id.
750 *
751 * @retur short entry name if translation succeeds; error string on failure
752 */
753const char *genimg_get_cat_short_name(enum ih_category category, uint id)
754{
755 const table_entry_t *entry;
756
757 entry = get_table_entry(table_info[category].table, id);
758 if (!entry)
759 return unknown_msg(category);
760#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
761 return entry->sname;
762#else
763 return entry->sname + gd->reloc_off;
764#endif
765}
766
767int genimg_get_cat_count(enum ih_category category)
768{
769 return table_info[category].count;
770}
771
772const char *genimg_get_cat_desc(enum ih_category category)
773{
774 return table_info[category].desc;
775}
776
Marian Balakowicz570abb02008-02-29 15:59:59 +0100777/**
778 * get_table_entry_name - translate entry id to long name
779 * @table: pointer to a translation table for entries of a specific type
780 * @msg: message to be returned when translation fails
781 * @id: entry id to be translated
782 *
783 * get_table_entry_name() will go over translation table trying to find
784 * entry that matches given id. If matching entry is found, its long
785 * name is returned to the caller.
786 *
787 * returns:
788 * long entry name if translation succeeds
789 * msg otherwise
790 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400791char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100792{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600793 table = get_table_entry(table, id);
794 if (!table)
795 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200796#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600797 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500798#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600799 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500800#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100801}
802
Stephen Warren712fbcf2011-10-18 11:11:49 +0000803const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100804{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000805 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100806}
807
Stephen Warren712fbcf2011-10-18 11:11:49 +0000808const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100809{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000810 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
811 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100812}
813
Stephen Warren712fbcf2011-10-18 11:11:49 +0000814const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100815{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000816 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100817}
818
Simon Glasscef2e512016-02-22 22:55:50 -0700819static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600820{
Simon Glasscef2e512016-02-22 22:55:50 -0700821 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600822 if (!table)
823 return "unknown";
824#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
825 return table->sname;
826#else
827 return table->sname + gd->reloc_off;
828#endif
829}
830
Simon Glasscef2e512016-02-22 22:55:50 -0700831const char *genimg_get_type_short_name(uint8_t type)
832{
833 return genimg_get_short_name(uimage_type, type);
834}
835
Stephen Warren712fbcf2011-10-18 11:11:49 +0000836const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100837{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000838 return (get_table_entry_name(uimage_comp, "Unknown Compression",
839 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100840}
841
Simon Glasscef2e512016-02-22 22:55:50 -0700842const char *genimg_get_comp_short_name(uint8_t comp)
843{
844 return genimg_get_short_name(uimage_comp, comp);
845}
846
847const char *genimg_get_os_short_name(uint8_t os)
848{
849 return genimg_get_short_name(uimage_os, os);
850}
851
852const char *genimg_get_arch_short_name(uint8_t arch)
853{
854 return genimg_get_short_name(uimage_arch, arch);
855}
856
Marian Balakowicz570abb02008-02-29 15:59:59 +0100857/**
858 * get_table_entry_id - translate short entry name to id
859 * @table: pointer to a translation table for entries of a specific type
860 * @table_name: to be used in case of error
861 * @name: entry short name to be translated
862 *
863 * get_table_entry_id() will go over translation table trying to find
864 * entry that matches given short name. If matching entry is found,
865 * its id returned to the caller.
866 *
867 * returns:
868 * entry id if translation succeeds
869 * -1 otherwise
870 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400871int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100872 const char *table_name, const char *name)
873{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400874 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100875
876 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200877#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600878 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200879#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600880 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500881#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100882 return (t->id);
883 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000884 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600885
886 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100887}
888
Stephen Warren712fbcf2011-10-18 11:11:49 +0000889int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100890{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000891 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100892}
893
Stephen Warren712fbcf2011-10-18 11:11:49 +0000894int genimg_get_arch_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_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100897}
898
Stephen Warren712fbcf2011-10-18 11:11:49 +0000899int genimg_get_type_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_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100902}
903
Stephen Warren712fbcf2011-10-18 11:11:49 +0000904int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100905{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000906 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100907}
908
909#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100910/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700911 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
912 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700913 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700914 * @fit_uname_config: double pointer to a char, will hold pointer to a
915 * configuration unit name
916 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
917 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700918 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700919 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700920 * which is normally the first argv of bootm/bootz
921 *
922 * returns:
923 * kernel start address
924 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700925ulong genimg_get_kernel_addr_fit(char * const img_addr,
926 const char **fit_uname_config,
927 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700928{
Bryan Wu0f641402014-07-31 17:39:58 -0700929 ulong kernel_addr;
930
931 /* find out kernel image address */
932 if (!img_addr) {
933 kernel_addr = load_addr;
934 debug("* kernel: default image load address = 0x%08lx\n",
935 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700936#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700937 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700938 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700939 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700940 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700941 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700942 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700943 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700944 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700945#endif
946 } else {
947 kernel_addr = simple_strtoul(img_addr, NULL, 16);
948 debug("* kernel: cmdline image address = 0x%08lx\n",
949 kernel_addr);
950 }
951
952 return kernel_addr;
953}
954
955/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700956 * genimg_get_kernel_addr() is the simple version of
957 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
958 */
959ulong genimg_get_kernel_addr(char * const img_addr)
960{
961 const char *fit_uname_config = NULL;
962 const char *fit_uname_kernel = NULL;
963
964 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
965 &fit_uname_kernel);
966}
967
968/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100969 * genimg_get_format - get image format type
970 * @img_addr: image start address
971 *
972 * genimg_get_format() checks whether provided address points to a valid
973 * legacy or FIT image.
974 *
975 * New uImage format and FDT blob are based on a libfdt. FDT blob
976 * may be passed directly or embedded in a FIT image. In both situations
977 * genimg_get_format() must be able to dectect libfdt header.
978 *
979 * returns:
980 * image format type or IMAGE_FORMAT_INVALID if no image is present
981 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000982int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100983{
Tom Rinic76c93a2019-05-23 07:14:07 -0400984#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200985 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100986
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200987 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100988 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200989 return IMAGE_FORMAT_LEGACY;
990#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700991#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200992 if (fdt_check_header(img_addr) == 0)
993 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500994#endif
995#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200996 if (android_image_check_header(img_addr) == 0)
997 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100998#endif
999
Heiko Schocher21d29f72014-05-28 11:33:33 +02001000 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001001}
1002
1003/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001004 * fit_has_config - check if there is a valid FIT configuration
1005 * @images: pointer to the bootm command headers structure
1006 *
1007 * fit_has_config() checks if there is a FIT configuration in use
1008 * (if FTI support is present).
1009 *
1010 * returns:
1011 * 0, no FIT support or no configuration found
1012 * 1, configuration found
1013 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001014int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001015{
Simon Glass73223f02016-02-22 22:55:43 -07001016#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001017 if (images->fit_uname_cfg)
1018 return 1;
1019#endif
1020 return 0;
1021}
1022
1023/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001024 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001025 * @argc: command argument count
1026 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001027 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001028 * @arch: expected ramdisk architecture
1029 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1030 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1031 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001032 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001033 * Curently supported are the following ramdisk sources:
1034 * - multicomponent kernel/ramdisk image,
1035 * - commandline provided address of decicated ramdisk image.
1036 *
1037 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001038 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001039 * rd_start and rd_end are set to ramdisk start/end addresses if
1040 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001041 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001042 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001043 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001044 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001045int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001046 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001047{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001048 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001049 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001050#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001051 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001052#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001053 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001054#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001055 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001056#endif
Simon Glass73223f02016-02-22 22:55:43 -07001057#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001058 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001059 const char *fit_uname_ramdisk = NULL;
1060 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001061 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001062#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001063 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001064
Marian Balakowiczc8779642008-03-12 10:12:37 +01001065 *rd_start = 0;
1066 *rd_end = 0;
1067
Tom Rini1fec3c52015-08-27 15:42:41 -04001068#ifdef CONFIG_ANDROID_BOOT_IMAGE
1069 /*
1070 * Look for an Android boot image.
1071 */
1072 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001073 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001074 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001075#endif
1076
Simon Glass983c72f2013-06-11 11:14:46 -07001077 if (argc >= 2)
1078 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001079
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001080 /*
1081 * Look for a '-' which indicates to ignore the
1082 * ramdisk argument
1083 */
Simon Glass983c72f2013-06-11 11:14:46 -07001084 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001085 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001086 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001087 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001088#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001089 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001090 /*
1091 * If the init ramdisk comes from the FIT image and
1092 * the FIT image address is omitted in the command
1093 * line argument, try to use os FIT image address or
1094 * default load address.
1095 */
1096 if (images->fit_uname_os)
1097 default_addr = (ulong)images->fit_hdr_os;
1098 else
1099 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001100
Simon Glass983c72f2013-06-11 11:14:46 -07001101 if (fit_parse_conf(select, default_addr,
1102 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001103 debug("* ramdisk: config '%s' from image at "
1104 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001105 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001106 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001107 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001108 debug("* ramdisk: subimage '%s' from image at "
1109 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001110 fit_uname_ramdisk, rd_addr);
1111 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001112#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001113 {
Simon Glass983c72f2013-06-11 11:14:46 -07001114 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001115 debug("* ramdisk: cmdline image address = "
1116 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001117 rd_addr);
1118 }
Simon Glass73223f02016-02-22 22:55:43 -07001119#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001120 } else {
1121 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001122 * command argument. If the property is not defined,
1123 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001124 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001125 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001126 rd_noffset = fit_get_node_from_config(images,
1127 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001128 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001129 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001130 else if (rd_noffset < 0)
1131 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001132 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001133#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001134
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001135 /*
1136 * Check if there is an initrd image at the
1137 * address provided in the second bootm argument
1138 * check image type, for FIT images get FIT node.
1139 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001140 buf = map_sysmem(rd_addr, 0);
1141 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001142#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001143 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001144 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001145 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001146
Simon Glass770605e2012-02-13 13:51:18 +00001147 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001148 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001149 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001150
Marian Balakowiczc8779642008-03-12 10:12:37 +01001151 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001152 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001153
Stephen Warren712fbcf2011-10-18 11:11:49 +00001154 rd_data = image_get_data(rd_hdr);
1155 rd_len = image_get_data_size(rd_hdr);
1156 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001157 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001158#endif
Simon Glass73223f02016-02-22 22:55:43 -07001159#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001160 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001161 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001162 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001163 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001164 IH_TYPE_RAMDISK,
1165 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001166 FIT_LOAD_OPTIONAL_NON_ZERO,
1167 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001168 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001169 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001170
Simon Glassa51ec632013-05-16 13:53:22 +00001171 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001172 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001173 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001174 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001175#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001176#ifdef CONFIG_ANDROID_BOOT_IMAGE
1177 case IMAGE_FORMAT_ANDROID:
1178 android_image_get_ramdisk((void *)images->os.start,
1179 &rd_data, &rd_len);
1180 break;
1181#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001182 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001183#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001184 end = NULL;
1185 if (select)
1186 end = strchr(select, ':');
1187 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001188 rd_len = simple_strtoul(++end, NULL, 16);
1189 rd_data = rd_addr;
1190 } else
1191#endif
1192 {
1193 puts("Wrong Ramdisk Image Format\n");
1194 rd_data = rd_len = rd_load = 0;
1195 return 1;
1196 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001197 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001198 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001199 image_check_type(&images->legacy_hdr_os_copy,
1200 IH_TYPE_MULTI)) {
1201
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001202 /*
1203 * Now check if we have a legacy mult-component image,
1204 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001205 */
Simon Glass770605e2012-02-13 13:51:18 +00001206 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001207 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001208 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001209 (ulong)images->legacy_hdr_os);
1210
Stephen Warren712fbcf2011-10-18 11:11:49 +00001211 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001212 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001213 /*
1214 * no initrd image
1215 */
Simon Glass770605e2012-02-13 13:51:18 +00001216 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001217 rd_len = rd_data = 0;
1218 }
1219
1220 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001221 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001222 } else {
1223 *rd_start = rd_data;
1224 *rd_end = rd_data + rd_len;
1225 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001226 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001227 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001228
1229 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001230}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001231
John Rigbyfca43cc2010-10-13 13:57:35 -06001232#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001233/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001234 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001235 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001236 * @rd_data: ramdisk data start address
1237 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001238 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1239 * start address (after possible relocation)
1240 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1241 * end address (after possible relocation)
1242 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001243 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001244 * variable and if requested ramdisk data is moved to a specified location.
1245 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001246 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1247 * start/end addresses if ramdisk image start and len were provided,
1248 * otherwise set initrd_start and initrd_end set to zeros.
1249 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001250 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001251 * 0 - success
1252 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001253 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001254int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001255 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001256{
1257 char *s;
1258 ulong initrd_high;
1259 int initrd_copy_to_ram = 1;
1260
Simon Glass00caae62017-08-03 12:22:12 -06001261 s = env_get("initrd_high");
1262 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001263 /* a value of "no" or a similar string will act like 0,
1264 * turning the "load high" feature off. This is intentional.
1265 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001266 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001267 if (initrd_high == ~0)
1268 initrd_copy_to_ram = 0;
1269 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001270 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001271 }
1272
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001273
Stephen Warren712fbcf2011-10-18 11:11:49 +00001274 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001275 initrd_high, initrd_copy_to_ram);
1276
1277 if (rd_data) {
1278 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001279 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001280 *initrd_start = rd_data;
1281 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001282 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001283 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001284 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001285 *initrd_start = (ulong)lmb_alloc_base(lmb,
1286 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001287 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001288 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1289 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001290
Kumar Galae822d7f2008-02-27 21:51:49 -06001291 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001292 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001293 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001294 }
Simon Glass770605e2012-02-13 13:51:18 +00001295 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001296
1297 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001298 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001299 *initrd_start, *initrd_end);
1300
Stephen Warren712fbcf2011-10-18 11:11:49 +00001301 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001302 (void *)rd_data, rd_len, CHUNKSZ);
1303
Kumar Gala3b200112011-12-07 04:42:58 +00001304#ifdef CONFIG_MP
1305 /*
1306 * Ensure the image is flushed to memory to handle
1307 * AMP boot scenarios in which we might not be
1308 * HW cache coherent
1309 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001310 flush_cache((unsigned long)*initrd_start,
1311 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001312#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001313 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001314 }
1315 } else {
1316 *initrd_start = 0;
1317 *initrd_end = 0;
1318 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001319 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001320 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001321
Kumar Galae822d7f2008-02-27 21:51:49 -06001322 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001323
Kumar Galae822d7f2008-02-27 21:51:49 -06001324error:
1325 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001326}
John Rigbyfca43cc2010-10-13 13:57:35 -06001327#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001328
Simon Glass90268b82014-10-19 21:11:24 -06001329int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1330 ulong *setup_start, ulong *setup_len)
1331{
Simon Glass73223f02016-02-22 22:55:43 -07001332#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001333 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1334#else
1335 return -ENOENT;
1336#endif
1337}
1338
Simon Glass73223f02016-02-22 22:55:43 -07001339#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001340#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001341int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1342 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1343{
1344 ulong tmp_img_addr, img_data, img_len;
1345 void *buf;
1346 int conf_noffset;
1347 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001348 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001349 int err;
1350 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001351
1352 /* Check to see if the images struct has a FIT configuration */
1353 if (!genimg_has_config(images)) {
1354 debug("## FIT configuration was not specified\n");
1355 return 0;
1356 }
1357
1358 /*
1359 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001360 */
1361 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001362 buf = map_sysmem(tmp_img_addr, 0);
1363 /*
1364 * Check image type. For FIT images get FIT node
1365 * and attempt to locate a generic binary.
1366 */
1367 switch (genimg_get_format(buf)) {
1368 case IMAGE_FORMAT_FIT:
1369 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1370
Simon Glassb02e4042016-10-02 17:59:28 -06001371 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1372 NULL);
1373 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001374 debug("## FPGA image is not specified\n");
1375 return 0;
1376 }
1377 fit_img_result = fit_image_load(images,
1378 tmp_img_addr,
1379 (const char **)&uname,
1380 &(images->fit_uname_cfg),
1381 arch,
1382 IH_TYPE_FPGA,
1383 BOOTSTAGE_ID_FPGA_INIT,
1384 FIT_LOAD_OPTIONAL_NON_ZERO,
1385 &img_data, &img_len);
1386
1387 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1388 uname, img_data, img_len);
1389
1390 if (fit_img_result < 0) {
1391 /* Something went wrong! */
1392 return fit_img_result;
1393 }
1394
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001395 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001396 name = "full";
1397 err = fpga_loadbitstream(devnum, (char *)img_data,
1398 img_len, BIT_FULL);
1399 if (err)
1400 err = fpga_load(devnum, (const void *)img_data,
1401 img_len, BIT_FULL);
1402 } else {
1403 name = "partial";
1404 err = fpga_loadbitstream(devnum, (char *)img_data,
1405 img_len, BIT_PARTIAL);
1406 if (err)
1407 err = fpga_load(devnum, (const void *)img_data,
1408 img_len, BIT_PARTIAL);
1409 }
1410
Michal Simek62afc602016-05-17 14:03:50 +02001411 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001412 return err;
1413
1414 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001415 break;
1416 default:
1417 printf("The given image format is not supported (corrupt?)\n");
1418 return 1;
1419 }
1420
1421 return 0;
1422}
1423#endif
1424
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001425static void fit_loadable_process(uint8_t img_type,
1426 ulong img_data,
1427 ulong img_len)
1428{
1429 int i;
1430 const unsigned int count =
1431 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1432 struct fit_loadable_tbl *fit_loadable_handler =
1433 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1434 /* For each loadable handler */
1435 for (i = 0; i < count; i++, fit_loadable_handler++)
1436 /* matching this type */
1437 if (fit_loadable_handler->type == img_type)
1438 /* call that handler with this image data */
1439 fit_loadable_handler->handler(img_data, img_len);
1440}
1441
Karl Apsite84a07db2015-05-21 09:52:48 -04001442int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1443 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1444{
1445 /*
1446 * These variables are used to hold the current image location
1447 * in system memory.
1448 */
1449 ulong tmp_img_addr;
1450 /*
1451 * These two variables are requirements for fit_image_load, but
1452 * their values are not used
1453 */
1454 ulong img_data, img_len;
1455 void *buf;
1456 int loadables_index;
1457 int conf_noffset;
1458 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001459 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001460 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001461
1462 /* Check to see if the images struct has a FIT configuration */
1463 if (!genimg_has_config(images)) {
1464 debug("## FIT configuration was not specified\n");
1465 return 0;
1466 }
1467
1468 /*
1469 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001470 */
1471 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001472 buf = map_sysmem(tmp_img_addr, 0);
1473 /*
1474 * Check image type. For FIT images get FIT node
1475 * and attempt to locate a generic binary.
1476 */
1477 switch (genimg_get_format(buf)) {
1478 case IMAGE_FORMAT_FIT:
1479 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1480
1481 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001482 uname = fdt_stringlist_get(buf, conf_noffset,
1483 FIT_LOADABLE_PROP, loadables_index,
1484 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001485 loadables_index++)
1486 {
1487 fit_img_result = fit_image_load(images,
1488 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001489 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001490 &(images->fit_uname_cfg), arch,
1491 IH_TYPE_LOADABLE,
1492 BOOTSTAGE_ID_FIT_LOADABLE_START,
1493 FIT_LOAD_OPTIONAL_NON_ZERO,
1494 &img_data, &img_len);
1495 if (fit_img_result < 0) {
1496 /* Something went wrong! */
1497 return fit_img_result;
1498 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001499
1500 fit_img_result = fit_image_get_node(buf, uname);
1501 if (fit_img_result < 0) {
1502 /* Something went wrong! */
1503 return fit_img_result;
1504 }
1505 fit_img_result = fit_image_get_type(buf,
1506 fit_img_result,
1507 &img_type);
1508 if (fit_img_result < 0) {
1509 /* Something went wrong! */
1510 return fit_img_result;
1511 }
1512
1513 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001514 }
1515 break;
1516 default:
1517 printf("The given image format is not supported (corrupt?)\n");
1518 return 1;
1519 }
1520
1521 return 0;
1522}
1523#endif
1524
John Rigbyfca43cc2010-10-13 13:57:35 -06001525#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001526/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001527 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001528 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001529 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1530 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1531 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001532 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301533 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001534 * variable is present its contents is copied to allocated kernel
1535 * command line.
1536 *
1537 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001538 * 0 - success
1539 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001540 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001541int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001542{
1543 char *cmdline;
1544 char *s;
1545
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001546 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001547 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001548
1549 if (cmdline == NULL)
1550 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001551
Simon Glass00caae62017-08-03 12:22:12 -06001552 s = env_get("bootargs");
1553 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001554 s = "";
1555
1556 strcpy(cmdline, s);
1557
1558 *cmd_start = (ulong) & cmdline[0];
1559 *cmd_end = *cmd_start + strlen(cmdline);
1560
Stephen Warren712fbcf2011-10-18 11:11:49 +00001561 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001562
Kumar Galae822d7f2008-02-27 21:51:49 -06001563 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001564}
John Rigbyfca43cc2010-10-13 13:57:35 -06001565#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001566
John Rigbyfca43cc2010-10-13 13:57:35 -06001567#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001568/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001569 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001570 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001571 * @kbd: double pointer to board info data
1572 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001573 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001574 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001575 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001576 *
1577 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001578 * 0 - success
1579 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001580 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001581int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001582{
Becky Bruce391fd932008-06-09 20:37:18 -05001583 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001584 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001585 if (*kbd == NULL)
1586 return -1;
1587
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001588 **kbd = *(gd->bd);
1589
Stephen Warren712fbcf2011-10-18 11:11:49 +00001590 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001591
1592#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1593 do_bdinfo(NULL, 0, 0, NULL);
1594#endif
1595
Kumar Galae822d7f2008-02-27 21:51:49 -06001596 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001597}
John Rigbyfca43cc2010-10-13 13:57:35 -06001598#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001599
1600#ifdef CONFIG_LMB
1601int image_setup_linux(bootm_headers_t *images)
1602{
1603 ulong of_size = images->ft_len;
1604 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001605 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001606 int ret;
1607
1608 if (IMAGE_ENABLE_OF_LIBFDT)
1609 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1610
1611 if (IMAGE_BOOT_GET_CMDLINE) {
1612 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1613 &images->cmdline_end);
1614 if (ret) {
1615 puts("ERROR with allocation of cmdline\n");
1616 return ret;
1617 }
1618 }
Simon Glass13d06982013-05-08 08:06:01 +00001619
1620 if (IMAGE_ENABLE_OF_LIBFDT) {
1621 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1622 if (ret)
1623 return ret;
1624 }
1625
1626 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1627 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1628 if (ret)
1629 return ret;
1630 }
1631
1632 return 0;
1633}
1634#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001635#endif /* !USE_HOSTCC */