blob: 495883185d411e371a88237a3cbfd6261f1da45d [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>
11#include <watchdog.h>
12
13#ifdef CONFIG_SHOW_BOOT_PROGRESS
14#include <status_led.h>
15#endif
16
Marian Balakowicz2242f532008-02-21 17:27:41 +010017#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +010018
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -060019#include <environment.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010020#include <image.h>
Joe Hershberger0eb25b62015-03-22 17:08:59 -050021#include <mapmem.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010022
Simon Glassaa34fbc2016-02-22 22:55:45 -070023#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090024#include <linux/libfdt.h>
Marian Balakowiczfff888a12008-02-21 17:20:19 +010025#include <fdt_support.h>
Michal Simek62afc602016-05-17 14:03:50 +020026#include <fpga.h>
27#include <xilinx.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010028#endif
29
Andy Fleming20a14a42008-04-02 16:19:07 -050030#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020031#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090032#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000033#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010034
Julius Werner20908542019-07-24 19:37:54 -070035#include <bzlib.h>
36#include <linux/lzo.h>
37#include <lzma/LzmaTypes.h>
38#include <lzma/LzmaDec.h>
39#include <lzma/LzmaTools.h>
40
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010041#ifdef CONFIG_CMD_BDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +020042extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010043#endif
44
45DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010046
Tom Rinic76c93a2019-05-23 07:14:07 -040047#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000048static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +010049 int verify);
Heiko Schocher21d29f72014-05-28 11:33:33 +020050#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010051#else
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010052#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050053#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010054#include <time.h>
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055#include <image.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020056
57#ifndef __maybe_unused
58# define __maybe_unused /* unimplemented */
59#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010060#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010061
Simon Glass0ccff502013-02-24 17:33:25 +000062#include <u-boot/crc.h>
63
Simon Glass13d06982013-05-08 08:06:01 +000064#ifndef CONFIG_SYS_BARGSIZE
65#define CONFIG_SYS_BARGSIZE 512
66#endif
67
Mike Frysinger7edb1862010-10-20 07:17:39 -040068static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060069 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010070 { IH_ARCH_ALPHA, "alpha", "Alpha", },
71 { IH_ARCH_ARM, "arm", "ARM", },
72 { IH_ARCH_I386, "x86", "Intel x86", },
73 { IH_ARCH_IA64, "ia64", "IA64", },
74 { IH_ARCH_M68K, "m68k", "M68K", },
75 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
76 { IH_ARCH_MIPS, "mips", "MIPS", },
77 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010078 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070079 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010080 { IH_ARCH_PPC, "ppc", "PowerPC", },
81 { IH_ARCH_S390, "s390", "IBM S390", },
82 { IH_ARCH_SH, "sh", "SuperH", },
83 { IH_ARCH_SPARC, "sparc", "SPARC", },
84 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
85 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
86 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000087 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000088 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000089 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080090 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040091 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060092 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030093 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +080094 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010095 { -1, "", "", },
96};
97
Mike Frysinger7edb1862010-10-20 07:17:39 -040098static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060099 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200100 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100101 { IH_OS_LINUX, "linux", "Linux", },
102#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
103 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
104#endif
105 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200106 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000107 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100108 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000109 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100110 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800111 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100112#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
113 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100114#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500115#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
116 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
117#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100118#ifdef USE_HOSTCC
119 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
120 { IH_OS_DELL, "dell", "Dell", },
121 { IH_OS_ESIX, "esix", "Esix", },
122 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
123 { IH_OS_IRIX, "irix", "Irix", },
124 { IH_OS_NCR, "ncr", "NCR", },
125 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
126 { IH_OS_PSOS, "psos", "pSOS", },
127 { IH_OS_SCO, "sco", "SCO", },
128 { IH_OS_SOLARIS, "solaris", "Solaris", },
129 { IH_OS_SVR4, "svr4", "SVR4", },
130#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100131#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
132 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
133#endif
134
Marian Balakowicz570abb02008-02-29 15:59:59 +0100135 { -1, "", "", },
136};
137
Mike Frysinger7edb1862010-10-20 07:17:39 -0400138static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000139 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100140 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
141 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400142 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400143 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100144 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700145 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000146 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
147 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000148 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000149 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600150 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100151 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000152 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000153 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100154 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
155 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200156 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
157 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100158 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000159 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200160 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200161 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600162 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200163 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600164 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600165 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600166 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200167 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000168 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200169 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200170 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200171 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600172 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100173 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500174 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100175 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800176 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100177 { -1, "", "", },
178};
179
Mike Frysinger7edb1862010-10-20 07:17:39 -0400180static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100181 { IH_COMP_NONE, "none", "uncompressed", },
182 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
183 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200184 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100185 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700186 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100187 { -1, "", "", },
188};
189
Simon Glass56d7ab72016-06-30 10:52:14 -0600190struct table_info {
191 const char *desc;
192 int count;
193 const table_entry_t *table;
194};
195
196static const struct table_info table_info[IH_COUNT] = {
197 { "architecture", IH_ARCH_COUNT, uimage_arch },
198 { "compression", IH_COMP_COUNT, uimage_comp },
199 { "operating system", IH_OS_COUNT, uimage_os },
200 { "image type", IH_TYPE_COUNT, uimage_type },
201};
202
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100203/*****************************************************************************/
204/* Legacy format routines */
205/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000206int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100207{
208 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000209 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100210 image_header_t header;
211
212 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000213 memmove(&header, (char *)hdr, image_get_header_size());
214 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100215
Stephen Warren712fbcf2011-10-18 11:11:49 +0000216 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100217
Stephen Warren712fbcf2011-10-18 11:11:49 +0000218 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100219}
220
Stephen Warren712fbcf2011-10-18 11:11:49 +0000221int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100222{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000223 ulong data = image_get_data(hdr);
224 ulong len = image_get_data_size(hdr);
225 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100226
Stephen Warren712fbcf2011-10-18 11:11:49 +0000227 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100228}
229
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100230/**
231 * image_multi_count - get component (sub-image) count
232 * @hdr: pointer to the header of the multi component image
233 *
234 * image_multi_count() returns number of components in a multi
235 * component image.
236 *
237 * Note: no checking of the image type is done, caller must pass
238 * a valid multi component image.
239 *
240 * returns:
241 * number of components
242 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000243ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100244{
245 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100246 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100247
248 /* get start of the image payload, which in case of multi
249 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000250 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100251
252 /* count non empty slots */
253 for (i = 0; size[i]; ++i)
254 count++;
255
256 return count;
257}
258
259/**
260 * image_multi_getimg - get component data address and size
261 * @hdr: pointer to the header of the multi component image
262 * @idx: index of the requested component
263 * @data: pointer to a ulong variable, will hold component data address
264 * @len: pointer to a ulong variable, will hold component size
265 *
266 * image_multi_getimg() returns size and data address for the requested
267 * component in a multi component image.
268 *
269 * Note: no checking of the image type is done, caller must pass
270 * a valid multi component image.
271 *
272 * returns:
273 * data address and size of the component, if idx is valid
274 * 0 in data and len, if idx is out of range
275 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000276void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100277 ulong *data, ulong *len)
278{
279 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100280 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700281 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100282
283 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000284 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100285
286 /* get start of the image payload, which in case of multi
287 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000288 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100289
290 /* get address of the proper component data start, which means
291 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000292 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100293
294 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000295 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100296 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100297
298 /* go over all indices preceding requested component idx */
299 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700300 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000301 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100302 }
303
304 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700305 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100306 } else {
307 *len = 0;
308 *data = 0;
309 }
310}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100311
Stephen Warren712fbcf2011-10-18 11:11:49 +0000312static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100313{
Heiko Schocher80402f32015-06-29 09:10:46 +0200314 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100315
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 os = genimg_get_os_name(image_get_os(hdr));
317 arch = genimg_get_arch_name(image_get_arch(hdr));
318 type = genimg_get_type_name(image_get_type(hdr));
319 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100320
Stephen Warren712fbcf2011-10-18 11:11:49 +0000321 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100322}
323
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100324/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200325 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200326 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100327 * @p: pointer to prefix string
328 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200329 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100330 * The routine prints out all header fields followed by the size/offset data
331 * for MULTI/SCRIPT images.
332 *
333 * returns:
334 * no returned results
335 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100337{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200338 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200339 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200340
Simon Glass1fe7d932013-05-08 08:05:58 +0000341 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000342 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000343 if (IMAGE_ENABLE_TIMESTAMP) {
344 printf("%sCreated: ", p);
345 genimg_print_time((time_t)image_get_time(hdr));
346 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000347 printf("%sImage Type: ", p);
348 image_print_type(hdr);
349 printf("%sData Size: ", p);
350 genimg_print_size(image_get_data_size(hdr));
351 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
352 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100353
Stephen Warren712fbcf2011-10-18 11:11:49 +0000354 if (image_check_type(hdr, IH_TYPE_MULTI) ||
355 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100356 int i;
357 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000358 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100359
Stephen Warren712fbcf2011-10-18 11:11:49 +0000360 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100361 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000362 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100363
Stephen Warren712fbcf2011-10-18 11:11:49 +0000364 printf("%s Image %d: ", p, i);
365 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100366
Stephen Warren712fbcf2011-10-18 11:11:49 +0000367 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100368 /*
369 * the user may need to know offsets
370 * if planning to do something with
371 * multiple files
372 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000373 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100374 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100375 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100376 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
377 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
378 image_get_load(hdr) - image_get_header_size(),
379 image_get_size(hdr) + image_get_header_size()
380 - 0x1FE0);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100381 }
382}
383
Julius Werner20908542019-07-24 19:37:54 -0700384/**
385 * print_decomp_msg() - Print a suitable decompression/loading message
386 *
387 * @type: OS type (IH_OS_...)
388 * @comp_type: Compression type being used (IH_COMP_...)
389 * @is_xip: true if the load address matches the image start
390 */
391static void print_decomp_msg(int comp_type, int type, bool is_xip)
392{
393 const char *name = genimg_get_type_name(type);
394
395 if (comp_type == IH_COMP_NONE)
396 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
397 else
398 printf(" Uncompressing %s\n", name);
399}
400
401int image_decomp(int comp, ulong load, ulong image_start, int type,
402 void *load_buf, void *image_buf, ulong image_len,
403 uint unc_len, ulong *load_end)
404{
405 int ret = 0;
406
407 *load_end = load;
408 print_decomp_msg(comp, type, load == image_start);
409
410 /*
411 * Load the image to the right place, decompressing if needed. After
412 * this, image_len will be set to the number of uncompressed bytes
413 * loaded, ret will be non-zero on error.
414 */
415 switch (comp) {
416 case IH_COMP_NONE:
417 if (load == image_start)
418 break;
419 if (image_len <= unc_len)
420 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
421 else
422 ret = -ENOSPC;
423 break;
424#ifdef CONFIG_GZIP
425 case IH_COMP_GZIP: {
426 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
427 break;
428 }
429#endif /* CONFIG_GZIP */
430#ifdef CONFIG_BZIP2
431 case IH_COMP_BZIP2: {
432 uint size = unc_len;
433
434 /*
435 * If we've got less than 4 MB of malloc() space,
436 * use slower decompression algorithm which requires
437 * at most 2300 KB of memory.
438 */
439 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
440 image_buf, image_len,
441 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
442 image_len = size;
443 break;
444 }
445#endif /* CONFIG_BZIP2 */
446#ifdef CONFIG_LZMA
447 case IH_COMP_LZMA: {
448 SizeT lzma_len = unc_len;
449
450 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
451 image_buf, image_len);
452 image_len = lzma_len;
453 break;
454 }
455#endif /* CONFIG_LZMA */
456#ifdef CONFIG_LZO
457 case IH_COMP_LZO: {
458 size_t size = unc_len;
459
460 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
461 image_len = size;
462 break;
463 }
464#endif /* CONFIG_LZO */
465#ifdef CONFIG_LZ4
466 case IH_COMP_LZ4: {
467 size_t size = unc_len;
468
469 ret = ulz4fn(image_buf, image_len, load_buf, &size);
470 image_len = size;
471 break;
472 }
473#endif /* CONFIG_LZ4 */
474 default:
475 printf("Unimplemented compression type %d\n", comp);
476 return -ENOSYS;
477 }
478
479 *load_end = load + image_len;
480
481 return ret;
482}
483
Marian Balakowicz570abb02008-02-29 15:59:59 +0100484
485#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400486#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100487/**
488 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100489 * @rd_addr: ramdisk image start address
490 * @arch: expected ramdisk architecture
491 * @verify: checksum verification flag
492 *
493 * image_get_ramdisk() returns a pointer to the verified ramdisk image
494 * header. Routine receives image start address and expected architecture
495 * flag. Verification done covers data and header integrity and os/type/arch
496 * fields checking.
497 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100498 * returns:
499 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600500 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100501 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000502static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100503 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100504{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200505 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100506
Stephen Warren712fbcf2011-10-18 11:11:49 +0000507 if (!image_check_magic(rd_hdr)) {
508 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000509 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600510 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100511 }
512
Stephen Warren712fbcf2011-10-18 11:11:49 +0000513 if (!image_check_hcrc(rd_hdr)) {
514 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000515 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600516 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100517 }
518
Simon Glass770605e2012-02-13 13:51:18 +0000519 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000520 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100521
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100522 if (verify) {
523 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000524 if (!image_check_dcrc(rd_hdr)) {
525 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000526 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600527 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100528 }
529 puts("OK\n");
530 }
531
Simon Glass770605e2012-02-13 13:51:18 +0000532 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100533
Stephen Warren712fbcf2011-10-18 11:11:49 +0000534 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
535 !image_check_arch(rd_hdr, arch) ||
536 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
537 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100538 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000539 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600540 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100541 }
542
543 return rd_hdr;
544}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200545#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100546#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100547
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100548/*****************************************************************************/
549/* Shared dual-format routines */
550/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100551#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600552ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
553ulong save_addr; /* Default Save Address */
554ulong save_size; /* Default Save Size (in bytes) */
555
556static int on_loadaddr(const char *name, const char *value, enum env_op op,
557 int flags)
558{
559 switch (op) {
560 case env_op_create:
561 case env_op_overwrite:
562 load_addr = simple_strtoul(value, NULL, 16);
563 break;
564 default:
565 break;
566 }
567
568 return 0;
569}
570U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
571
Simon Glass723806c2017-08-03 12:22:15 -0600572ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100573{
Simon Glass00caae62017-08-03 12:22:12 -0600574 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100575 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000576 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100577 return tmp;
578 }
579
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200580#if defined(CONFIG_SYS_SDRAM_BASE)
581 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100582#elif defined(CONFIG_ARM)
583 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100584#else
585 return 0;
586#endif
587}
588
Simon Glass723806c2017-08-03 12:22:15 -0600589phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100590{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900591 phys_size_t tmp, size;
592 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600593 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100594 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000595 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100596 return tmp;
597 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900598
599#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
600 start = gd->bd->bi_dram[0].start;
601 size = gd->bd->bi_dram[0].size;
602#else
603 start = gd->bd->bi_memstart;
604 size = gd->bd->bi_memsize;
605#endif
606
Simon Glass00caae62017-08-03 12:22:12 -0600607 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500608 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000609 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500610 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900611 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500612
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900613 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100614}
615
Simon Glass723806c2017-08-03 12:22:15 -0600616phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000617{
618 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600619 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000620 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000621 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000622 return tmp;
623 }
624
625#if defined(CONFIG_SYS_BOOTMAPSZ)
626 return CONFIG_SYS_BOOTMAPSZ;
627#else
Simon Glass723806c2017-08-03 12:22:15 -0600628 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000629#endif
630}
631
Stephen Warren712fbcf2011-10-18 11:11:49 +0000632void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100633{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400634 if (to == from)
635 return;
636
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100637#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800638 if (to > from) {
639 from += len;
640 to += len;
641 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100642 while (len > 0) {
643 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000644 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800645 if (to > from) {
646 to -= tail;
647 from -= tail;
648 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000649 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800650 if (to < from) {
651 to += tail;
652 from += tail;
653 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100654 len -= tail;
655 }
656#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000657 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100658#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
659}
Julius Werner20908542019-07-24 19:37:54 -0700660#else /* USE_HOSTCC */
661void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
662{
663 memmove(to, from, len);
664}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100665#endif /* !USE_HOSTCC */
666
Stephen Warren712fbcf2011-10-18 11:11:49 +0000667void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100668{
669#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000670 printf("%d Bytes = ", size);
671 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100672#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100673 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100674 size, (double)size / 1.024e3,
675 (double)size / 1.048576e6);
676#endif
677}
678
Simon Glass859e92b2013-05-07 06:11:51 +0000679#if IMAGE_ENABLE_TIMESTAMP
680void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100681{
682#ifndef USE_HOSTCC
683 struct rtc_time tm;
684
Simon Glass9f9276c2015-04-20 12:37:18 -0600685 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000686 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100687 tm.tm_year, tm.tm_mon, tm.tm_mday,
688 tm.tm_hour, tm.tm_min, tm.tm_sec);
689#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000690 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100691#endif
692}
Simon Glass859e92b2013-05-07 06:11:51 +0000693#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100694
Simon Glass5b9d44d2015-06-23 15:38:25 -0600695const table_entry_t *get_table_entry(const table_entry_t *table, int id)
696{
697 for (; table->id >= 0; ++table) {
698 if (table->id == id)
699 return table;
700 }
701 return NULL;
702}
703
Simon Glass14262202016-06-30 10:52:16 -0600704static const char *unknown_msg(enum ih_category category)
705{
Simon Glassae3de0d2016-10-31 10:21:09 -0600706 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600707 static char msg[30];
708
Simon Glassae3de0d2016-10-31 10:21:09 -0600709 strcpy(msg, unknown_str);
710 strncat(msg, table_info[category].desc,
711 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600712
713 return msg;
714}
715
716/**
717 * get_cat_table_entry_name - translate entry id to long name
718 * @category: category to look up (enum ih_category)
719 * @id: entry id to be translated
720 *
721 * This will scan the translation table trying to find the entry that matches
722 * the given id.
723 *
724 * @retur long entry name if translation succeeds; error string on failure
725 */
726const char *genimg_get_cat_name(enum ih_category category, uint id)
727{
728 const table_entry_t *entry;
729
730 entry = get_table_entry(table_info[category].table, id);
731 if (!entry)
732 return unknown_msg(category);
733#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
734 return entry->lname;
735#else
736 return entry->lname + gd->reloc_off;
737#endif
738}
739
740/**
741 * get_cat_table_entry_short_name - translate entry id to short name
742 * @category: category to look up (enum ih_category)
743 * @id: entry id to be translated
744 *
745 * This will scan the translation table trying to find the entry that matches
746 * the given id.
747 *
748 * @retur short entry name if translation succeeds; error string on failure
749 */
750const char *genimg_get_cat_short_name(enum ih_category category, uint id)
751{
752 const table_entry_t *entry;
753
754 entry = get_table_entry(table_info[category].table, id);
755 if (!entry)
756 return unknown_msg(category);
757#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
758 return entry->sname;
759#else
760 return entry->sname + gd->reloc_off;
761#endif
762}
763
764int genimg_get_cat_count(enum ih_category category)
765{
766 return table_info[category].count;
767}
768
769const char *genimg_get_cat_desc(enum ih_category category)
770{
771 return table_info[category].desc;
772}
773
Marian Balakowicz570abb02008-02-29 15:59:59 +0100774/**
775 * get_table_entry_name - translate entry id to long name
776 * @table: pointer to a translation table for entries of a specific type
777 * @msg: message to be returned when translation fails
778 * @id: entry id to be translated
779 *
780 * get_table_entry_name() will go over translation table trying to find
781 * entry that matches given id. If matching entry is found, its long
782 * name is returned to the caller.
783 *
784 * returns:
785 * long entry name if translation succeeds
786 * msg otherwise
787 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400788char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100789{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600790 table = get_table_entry(table, id);
791 if (!table)
792 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200793#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600794 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500795#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600796 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500797#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100798}
799
Stephen Warren712fbcf2011-10-18 11:11:49 +0000800const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100801{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000802 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100803}
804
Stephen Warren712fbcf2011-10-18 11:11:49 +0000805const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100806{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000807 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
808 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100809}
810
Stephen Warren712fbcf2011-10-18 11:11:49 +0000811const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100812{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000813 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100814}
815
Simon Glasscef2e512016-02-22 22:55:50 -0700816static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600817{
Simon Glasscef2e512016-02-22 22:55:50 -0700818 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600819 if (!table)
820 return "unknown";
821#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
822 return table->sname;
823#else
824 return table->sname + gd->reloc_off;
825#endif
826}
827
Simon Glasscef2e512016-02-22 22:55:50 -0700828const char *genimg_get_type_short_name(uint8_t type)
829{
830 return genimg_get_short_name(uimage_type, type);
831}
832
Stephen Warren712fbcf2011-10-18 11:11:49 +0000833const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100834{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000835 return (get_table_entry_name(uimage_comp, "Unknown Compression",
836 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100837}
838
Simon Glasscef2e512016-02-22 22:55:50 -0700839const char *genimg_get_comp_short_name(uint8_t comp)
840{
841 return genimg_get_short_name(uimage_comp, comp);
842}
843
844const char *genimg_get_os_short_name(uint8_t os)
845{
846 return genimg_get_short_name(uimage_os, os);
847}
848
849const char *genimg_get_arch_short_name(uint8_t arch)
850{
851 return genimg_get_short_name(uimage_arch, arch);
852}
853
Marian Balakowicz570abb02008-02-29 15:59:59 +0100854/**
855 * get_table_entry_id - translate short entry name to id
856 * @table: pointer to a translation table for entries of a specific type
857 * @table_name: to be used in case of error
858 * @name: entry short name to be translated
859 *
860 * get_table_entry_id() will go over translation table trying to find
861 * entry that matches given short name. If matching entry is found,
862 * its id returned to the caller.
863 *
864 * returns:
865 * entry id if translation succeeds
866 * -1 otherwise
867 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400868int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100869 const char *table_name, const char *name)
870{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400871 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100872
873 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200874#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600875 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200876#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600877 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500878#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100879 return (t->id);
880 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000881 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600882
883 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100884}
885
Stephen Warren712fbcf2011-10-18 11:11:49 +0000886int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100887{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000888 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100889}
890
Stephen Warren712fbcf2011-10-18 11:11:49 +0000891int genimg_get_arch_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_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100894}
895
Stephen Warren712fbcf2011-10-18 11:11:49 +0000896int genimg_get_type_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_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100899}
900
Stephen Warren712fbcf2011-10-18 11:11:49 +0000901int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100902{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000903 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100904}
905
906#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100907/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700908 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
909 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700910 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700911 * @fit_uname_config: double pointer to a char, will hold pointer to a
912 * configuration unit name
913 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
914 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700915 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700916 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700917 * which is normally the first argv of bootm/bootz
918 *
919 * returns:
920 * kernel start address
921 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700922ulong genimg_get_kernel_addr_fit(char * const img_addr,
923 const char **fit_uname_config,
924 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700925{
Bryan Wu0f641402014-07-31 17:39:58 -0700926 ulong kernel_addr;
927
928 /* find out kernel image address */
929 if (!img_addr) {
930 kernel_addr = load_addr;
931 debug("* kernel: default image load address = 0x%08lx\n",
932 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700933#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700934 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700935 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700936 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700937 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700938 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700939 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700940 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700941 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700942#endif
943 } else {
944 kernel_addr = simple_strtoul(img_addr, NULL, 16);
945 debug("* kernel: cmdline image address = 0x%08lx\n",
946 kernel_addr);
947 }
948
949 return kernel_addr;
950}
951
952/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700953 * genimg_get_kernel_addr() is the simple version of
954 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
955 */
956ulong genimg_get_kernel_addr(char * const img_addr)
957{
958 const char *fit_uname_config = NULL;
959 const char *fit_uname_kernel = NULL;
960
961 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
962 &fit_uname_kernel);
963}
964
965/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100966 * genimg_get_format - get image format type
967 * @img_addr: image start address
968 *
969 * genimg_get_format() checks whether provided address points to a valid
970 * legacy or FIT image.
971 *
972 * New uImage format and FDT blob are based on a libfdt. FDT blob
973 * may be passed directly or embedded in a FIT image. In both situations
974 * genimg_get_format() must be able to dectect libfdt header.
975 *
976 * returns:
977 * image format type or IMAGE_FORMAT_INVALID if no image is present
978 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000979int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100980{
Tom Rinic76c93a2019-05-23 07:14:07 -0400981#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200982 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100983
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200984 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100985 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200986 return IMAGE_FORMAT_LEGACY;
987#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700988#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200989 if (fdt_check_header(img_addr) == 0)
990 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500991#endif
992#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200993 if (android_image_check_header(img_addr) == 0)
994 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100995#endif
996
Heiko Schocher21d29f72014-05-28 11:33:33 +0200997 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100998}
999
1000/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001001 * fit_has_config - check if there is a valid FIT configuration
1002 * @images: pointer to the bootm command headers structure
1003 *
1004 * fit_has_config() checks if there is a FIT configuration in use
1005 * (if FTI support is present).
1006 *
1007 * returns:
1008 * 0, no FIT support or no configuration found
1009 * 1, configuration found
1010 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001011int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001012{
Simon Glass73223f02016-02-22 22:55:43 -07001013#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001014 if (images->fit_uname_cfg)
1015 return 1;
1016#endif
1017 return 0;
1018}
1019
1020/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001021 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001022 * @argc: command argument count
1023 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001024 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001025 * @arch: expected ramdisk architecture
1026 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1027 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1028 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001029 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001030 * Curently supported are the following ramdisk sources:
1031 * - multicomponent kernel/ramdisk image,
1032 * - commandline provided address of decicated ramdisk image.
1033 *
1034 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001035 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001036 * rd_start and rd_end are set to ramdisk start/end addresses if
1037 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001038 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001039 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001040 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001041 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001042int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001043 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001044{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001045 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001046 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001047#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001048 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001049#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001050 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001051#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001052 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001053#endif
Simon Glass73223f02016-02-22 22:55:43 -07001054#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001055 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001056 const char *fit_uname_ramdisk = NULL;
1057 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001058 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001059#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001060 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001061
Marian Balakowiczc8779642008-03-12 10:12:37 +01001062 *rd_start = 0;
1063 *rd_end = 0;
1064
Tom Rini1fec3c52015-08-27 15:42:41 -04001065#ifdef CONFIG_ANDROID_BOOT_IMAGE
1066 /*
1067 * Look for an Android boot image.
1068 */
1069 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001070 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001071 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001072#endif
1073
Simon Glass983c72f2013-06-11 11:14:46 -07001074 if (argc >= 2)
1075 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001076
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001077 /*
1078 * Look for a '-' which indicates to ignore the
1079 * ramdisk argument
1080 */
Simon Glass983c72f2013-06-11 11:14:46 -07001081 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001082 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001083 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001084 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001085#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001086 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001087 /*
1088 * If the init ramdisk comes from the FIT image and
1089 * the FIT image address is omitted in the command
1090 * line argument, try to use os FIT image address or
1091 * default load address.
1092 */
1093 if (images->fit_uname_os)
1094 default_addr = (ulong)images->fit_hdr_os;
1095 else
1096 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001097
Simon Glass983c72f2013-06-11 11:14:46 -07001098 if (fit_parse_conf(select, default_addr,
1099 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001100 debug("* ramdisk: config '%s' from image at "
1101 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001102 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001103 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001104 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001105 debug("* ramdisk: subimage '%s' from image at "
1106 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001107 fit_uname_ramdisk, rd_addr);
1108 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001109#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001110 {
Simon Glass983c72f2013-06-11 11:14:46 -07001111 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001112 debug("* ramdisk: cmdline image address = "
1113 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001114 rd_addr);
1115 }
Simon Glass73223f02016-02-22 22:55:43 -07001116#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001117 } else {
1118 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001119 * command argument. If the property is not defined,
1120 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001121 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001122 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001123 rd_noffset = fit_get_node_from_config(images,
1124 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001125 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001126 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001127 else if (rd_noffset < 0)
1128 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001129 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001130#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001131
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001132 /*
1133 * Check if there is an initrd image at the
1134 * address provided in the second bootm argument
1135 * check image type, for FIT images get FIT node.
1136 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001137 buf = map_sysmem(rd_addr, 0);
1138 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001139#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001140 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001141 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001142 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001143
Simon Glass770605e2012-02-13 13:51:18 +00001144 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001145 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001146 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001147
Marian Balakowiczc8779642008-03-12 10:12:37 +01001148 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001149 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001150
Stephen Warren712fbcf2011-10-18 11:11:49 +00001151 rd_data = image_get_data(rd_hdr);
1152 rd_len = image_get_data_size(rd_hdr);
1153 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001154 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001155#endif
Simon Glass73223f02016-02-22 22:55:43 -07001156#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001157 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001158 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001159 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001160 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001161 IH_TYPE_RAMDISK,
1162 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001163 FIT_LOAD_OPTIONAL_NON_ZERO,
1164 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001165 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001166 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001167
Simon Glassa51ec632013-05-16 13:53:22 +00001168 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001169 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001170 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001171 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001172#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001173#ifdef CONFIG_ANDROID_BOOT_IMAGE
1174 case IMAGE_FORMAT_ANDROID:
1175 android_image_get_ramdisk((void *)images->os.start,
1176 &rd_data, &rd_len);
1177 break;
1178#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001179 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001180#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001181 end = NULL;
1182 if (select)
1183 end = strchr(select, ':');
1184 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001185 rd_len = simple_strtoul(++end, NULL, 16);
1186 rd_data = rd_addr;
1187 } else
1188#endif
1189 {
1190 puts("Wrong Ramdisk Image Format\n");
1191 rd_data = rd_len = rd_load = 0;
1192 return 1;
1193 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001194 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001195 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001196 image_check_type(&images->legacy_hdr_os_copy,
1197 IH_TYPE_MULTI)) {
1198
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001199 /*
1200 * Now check if we have a legacy mult-component image,
1201 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001202 */
Simon Glass770605e2012-02-13 13:51:18 +00001203 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001204 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001205 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001206 (ulong)images->legacy_hdr_os);
1207
Stephen Warren712fbcf2011-10-18 11:11:49 +00001208 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001209 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001210 /*
1211 * no initrd image
1212 */
Simon Glass770605e2012-02-13 13:51:18 +00001213 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001214 rd_len = rd_data = 0;
1215 }
1216
1217 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001218 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001219 } else {
1220 *rd_start = rd_data;
1221 *rd_end = rd_data + rd_len;
1222 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001223 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001224 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001225
1226 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001227}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001228
John Rigbyfca43cc2010-10-13 13:57:35 -06001229#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001230/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001231 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001232 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001233 * @rd_data: ramdisk data start address
1234 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001235 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1236 * start address (after possible relocation)
1237 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1238 * end address (after possible relocation)
1239 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001240 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001241 * variable and if requested ramdisk data is moved to a specified location.
1242 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001243 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1244 * start/end addresses if ramdisk image start and len were provided,
1245 * otherwise set initrd_start and initrd_end set to zeros.
1246 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001247 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001248 * 0 - success
1249 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001250 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001251int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001252 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001253{
1254 char *s;
1255 ulong initrd_high;
1256 int initrd_copy_to_ram = 1;
1257
Simon Glass00caae62017-08-03 12:22:12 -06001258 s = env_get("initrd_high");
1259 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001260 /* a value of "no" or a similar string will act like 0,
1261 * turning the "load high" feature off. This is intentional.
1262 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001263 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001264 if (initrd_high == ~0)
1265 initrd_copy_to_ram = 0;
1266 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001267 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001268 }
1269
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001270
Stephen Warren712fbcf2011-10-18 11:11:49 +00001271 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001272 initrd_high, initrd_copy_to_ram);
1273
1274 if (rd_data) {
1275 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001276 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001277 *initrd_start = rd_data;
1278 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001279 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001280 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001281 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001282 *initrd_start = (ulong)lmb_alloc_base(lmb,
1283 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001284 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001285 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1286 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001287
Kumar Galae822d7f2008-02-27 21:51:49 -06001288 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001289 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001290 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001291 }
Simon Glass770605e2012-02-13 13:51:18 +00001292 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001293
1294 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001295 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001296 *initrd_start, *initrd_end);
1297
Stephen Warren712fbcf2011-10-18 11:11:49 +00001298 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001299 (void *)rd_data, rd_len, CHUNKSZ);
1300
Kumar Gala3b200112011-12-07 04:42:58 +00001301#ifdef CONFIG_MP
1302 /*
1303 * Ensure the image is flushed to memory to handle
1304 * AMP boot scenarios in which we might not be
1305 * HW cache coherent
1306 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001307 flush_cache((unsigned long)*initrd_start,
1308 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001309#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001310 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001311 }
1312 } else {
1313 *initrd_start = 0;
1314 *initrd_end = 0;
1315 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001316 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001317 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001318
Kumar Galae822d7f2008-02-27 21:51:49 -06001319 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001320
Kumar Galae822d7f2008-02-27 21:51:49 -06001321error:
1322 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001323}
John Rigbyfca43cc2010-10-13 13:57:35 -06001324#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001325
Simon Glass90268b82014-10-19 21:11:24 -06001326int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1327 ulong *setup_start, ulong *setup_len)
1328{
Simon Glass73223f02016-02-22 22:55:43 -07001329#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001330 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1331#else
1332 return -ENOENT;
1333#endif
1334}
1335
Simon Glass73223f02016-02-22 22:55:43 -07001336#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001337#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001338int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1339 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1340{
1341 ulong tmp_img_addr, img_data, img_len;
1342 void *buf;
1343 int conf_noffset;
1344 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001345 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001346 int err;
1347 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001348
1349 /* Check to see if the images struct has a FIT configuration */
1350 if (!genimg_has_config(images)) {
1351 debug("## FIT configuration was not specified\n");
1352 return 0;
1353 }
1354
1355 /*
1356 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001357 */
1358 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001359 buf = map_sysmem(tmp_img_addr, 0);
1360 /*
1361 * Check image type. For FIT images get FIT node
1362 * and attempt to locate a generic binary.
1363 */
1364 switch (genimg_get_format(buf)) {
1365 case IMAGE_FORMAT_FIT:
1366 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1367
Simon Glassb02e4042016-10-02 17:59:28 -06001368 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1369 NULL);
1370 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001371 debug("## FPGA image is not specified\n");
1372 return 0;
1373 }
1374 fit_img_result = fit_image_load(images,
1375 tmp_img_addr,
1376 (const char **)&uname,
1377 &(images->fit_uname_cfg),
1378 arch,
1379 IH_TYPE_FPGA,
1380 BOOTSTAGE_ID_FPGA_INIT,
1381 FIT_LOAD_OPTIONAL_NON_ZERO,
1382 &img_data, &img_len);
1383
1384 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1385 uname, img_data, img_len);
1386
1387 if (fit_img_result < 0) {
1388 /* Something went wrong! */
1389 return fit_img_result;
1390 }
1391
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001392 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001393 name = "full";
1394 err = fpga_loadbitstream(devnum, (char *)img_data,
1395 img_len, BIT_FULL);
1396 if (err)
1397 err = fpga_load(devnum, (const void *)img_data,
1398 img_len, BIT_FULL);
1399 } else {
1400 name = "partial";
1401 err = fpga_loadbitstream(devnum, (char *)img_data,
1402 img_len, BIT_PARTIAL);
1403 if (err)
1404 err = fpga_load(devnum, (const void *)img_data,
1405 img_len, BIT_PARTIAL);
1406 }
1407
Michal Simek62afc602016-05-17 14:03:50 +02001408 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001409 return err;
1410
1411 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001412 break;
1413 default:
1414 printf("The given image format is not supported (corrupt?)\n");
1415 return 1;
1416 }
1417
1418 return 0;
1419}
1420#endif
1421
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001422static void fit_loadable_process(uint8_t img_type,
1423 ulong img_data,
1424 ulong img_len)
1425{
1426 int i;
1427 const unsigned int count =
1428 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1429 struct fit_loadable_tbl *fit_loadable_handler =
1430 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1431 /* For each loadable handler */
1432 for (i = 0; i < count; i++, fit_loadable_handler++)
1433 /* matching this type */
1434 if (fit_loadable_handler->type == img_type)
1435 /* call that handler with this image data */
1436 fit_loadable_handler->handler(img_data, img_len);
1437}
1438
Karl Apsite84a07db2015-05-21 09:52:48 -04001439int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1440 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1441{
1442 /*
1443 * These variables are used to hold the current image location
1444 * in system memory.
1445 */
1446 ulong tmp_img_addr;
1447 /*
1448 * These two variables are requirements for fit_image_load, but
1449 * their values are not used
1450 */
1451 ulong img_data, img_len;
1452 void *buf;
1453 int loadables_index;
1454 int conf_noffset;
1455 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001456 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001457 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001458
1459 /* Check to see if the images struct has a FIT configuration */
1460 if (!genimg_has_config(images)) {
1461 debug("## FIT configuration was not specified\n");
1462 return 0;
1463 }
1464
1465 /*
1466 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001467 */
1468 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001469 buf = map_sysmem(tmp_img_addr, 0);
1470 /*
1471 * Check image type. For FIT images get FIT node
1472 * and attempt to locate a generic binary.
1473 */
1474 switch (genimg_get_format(buf)) {
1475 case IMAGE_FORMAT_FIT:
1476 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1477
1478 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001479 uname = fdt_stringlist_get(buf, conf_noffset,
1480 FIT_LOADABLE_PROP, loadables_index,
1481 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001482 loadables_index++)
1483 {
1484 fit_img_result = fit_image_load(images,
1485 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001486 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001487 &(images->fit_uname_cfg), arch,
1488 IH_TYPE_LOADABLE,
1489 BOOTSTAGE_ID_FIT_LOADABLE_START,
1490 FIT_LOAD_OPTIONAL_NON_ZERO,
1491 &img_data, &img_len);
1492 if (fit_img_result < 0) {
1493 /* Something went wrong! */
1494 return fit_img_result;
1495 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001496
1497 fit_img_result = fit_image_get_node(buf, uname);
1498 if (fit_img_result < 0) {
1499 /* Something went wrong! */
1500 return fit_img_result;
1501 }
1502 fit_img_result = fit_image_get_type(buf,
1503 fit_img_result,
1504 &img_type);
1505 if (fit_img_result < 0) {
1506 /* Something went wrong! */
1507 return fit_img_result;
1508 }
1509
1510 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001511 }
1512 break;
1513 default:
1514 printf("The given image format is not supported (corrupt?)\n");
1515 return 1;
1516 }
1517
1518 return 0;
1519}
1520#endif
1521
John Rigbyfca43cc2010-10-13 13:57:35 -06001522#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001523/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001524 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001525 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001526 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1527 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1528 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001529 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301530 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001531 * variable is present its contents is copied to allocated kernel
1532 * command line.
1533 *
1534 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001535 * 0 - success
1536 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001537 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001538int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001539{
1540 char *cmdline;
1541 char *s;
1542
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001543 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001544 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001545
1546 if (cmdline == NULL)
1547 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001548
Simon Glass00caae62017-08-03 12:22:12 -06001549 s = env_get("bootargs");
1550 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001551 s = "";
1552
1553 strcpy(cmdline, s);
1554
1555 *cmd_start = (ulong) & cmdline[0];
1556 *cmd_end = *cmd_start + strlen(cmdline);
1557
Stephen Warren712fbcf2011-10-18 11:11:49 +00001558 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001559
Kumar Galae822d7f2008-02-27 21:51:49 -06001560 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001561}
John Rigbyfca43cc2010-10-13 13:57:35 -06001562#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001563
John Rigbyfca43cc2010-10-13 13:57:35 -06001564#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001565/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001566 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001567 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001568 * @kbd: double pointer to board info data
1569 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001570 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001571 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001572 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001573 *
1574 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001575 * 0 - success
1576 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001577 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001578int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001579{
Becky Bruce391fd932008-06-09 20:37:18 -05001580 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001581 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001582 if (*kbd == NULL)
1583 return -1;
1584
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001585 **kbd = *(gd->bd);
1586
Stephen Warren712fbcf2011-10-18 11:11:49 +00001587 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001588
1589#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1590 do_bdinfo(NULL, 0, 0, NULL);
1591#endif
1592
Kumar Galae822d7f2008-02-27 21:51:49 -06001593 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001594}
John Rigbyfca43cc2010-10-13 13:57:35 -06001595#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001596
1597#ifdef CONFIG_LMB
1598int image_setup_linux(bootm_headers_t *images)
1599{
1600 ulong of_size = images->ft_len;
1601 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001602 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001603 int ret;
1604
1605 if (IMAGE_ENABLE_OF_LIBFDT)
1606 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1607
1608 if (IMAGE_BOOT_GET_CMDLINE) {
1609 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1610 &images->cmdline_end);
1611 if (ret) {
1612 puts("ERROR with allocation of cmdline\n");
1613 return ret;
1614 }
1615 }
Simon Glass13d06982013-05-08 08:06:01 +00001616
1617 if (IMAGE_ENABLE_OF_LIBFDT) {
1618 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1619 if (ret)
1620 return ret;
1621 }
1622
1623 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1624 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1625 if (ret)
1626 return ret;
1627 }
1628
1629 return 0;
1630}
1631#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001632#endif /* !USE_HOSTCC */