blob: 719229cc439ccab71c3391e2999fb4807b9a060b [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>
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
135
Marian Balakowicz570abb02008-02-29 15:59:59 +0100136 { -1, "", "", },
137};
138
Mike Frysinger7edb1862010-10-20 07:17:39 -0400139static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000140 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100141 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
142 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400143 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400144 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100145 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700146 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000147 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
148 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000149 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000150 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600151 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100152 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000153 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000154 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100155 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
156 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200157 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
158 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100159 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000160 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200161 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200162 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600163 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200164 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600165 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600166 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600167 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200168 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000169 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200170 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200171 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200172 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600173 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100174 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500175 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100176 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800177 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100178 { -1, "", "", },
179};
180
Mike Frysinger7edb1862010-10-20 07:17:39 -0400181static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100182 { IH_COMP_NONE, "none", "uncompressed", },
183 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
184 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200185 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100186 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700187 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100188 { -1, "", "", },
189};
190
Simon Glass56d7ab72016-06-30 10:52:14 -0600191struct table_info {
192 const char *desc;
193 int count;
194 const table_entry_t *table;
195};
196
197static const struct table_info table_info[IH_COUNT] = {
198 { "architecture", IH_ARCH_COUNT, uimage_arch },
199 { "compression", IH_COMP_COUNT, uimage_comp },
200 { "operating system", IH_OS_COUNT, uimage_os },
201 { "image type", IH_TYPE_COUNT, uimage_type },
202};
203
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100204/*****************************************************************************/
205/* Legacy format routines */
206/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000207int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100208{
209 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000210 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100211 image_header_t header;
212
213 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000214 memmove(&header, (char *)hdr, image_get_header_size());
215 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100216
Stephen Warren712fbcf2011-10-18 11:11:49 +0000217 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100218
Stephen Warren712fbcf2011-10-18 11:11:49 +0000219 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100220}
221
Stephen Warren712fbcf2011-10-18 11:11:49 +0000222int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100223{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000224 ulong data = image_get_data(hdr);
225 ulong len = image_get_data_size(hdr);
226 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100227
Stephen Warren712fbcf2011-10-18 11:11:49 +0000228 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100229}
230
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100231/**
232 * image_multi_count - get component (sub-image) count
233 * @hdr: pointer to the header of the multi component image
234 *
235 * image_multi_count() returns number of components in a multi
236 * component image.
237 *
238 * Note: no checking of the image type is done, caller must pass
239 * a valid multi component image.
240 *
241 * returns:
242 * number of components
243 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000244ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100245{
246 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100247 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100248
249 /* get start of the image payload, which in case of multi
250 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000251 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100252
253 /* count non empty slots */
254 for (i = 0; size[i]; ++i)
255 count++;
256
257 return count;
258}
259
260/**
261 * image_multi_getimg - get component data address and size
262 * @hdr: pointer to the header of the multi component image
263 * @idx: index of the requested component
264 * @data: pointer to a ulong variable, will hold component data address
265 * @len: pointer to a ulong variable, will hold component size
266 *
267 * image_multi_getimg() returns size and data address for the requested
268 * component in a multi component image.
269 *
270 * Note: no checking of the image type is done, caller must pass
271 * a valid multi component image.
272 *
273 * returns:
274 * data address and size of the component, if idx is valid
275 * 0 in data and len, if idx is out of range
276 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000277void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100278 ulong *data, ulong *len)
279{
280 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100281 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700282 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100283
284 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100286
287 /* get start of the image payload, which in case of multi
288 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000289 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100290
291 /* get address of the proper component data start, which means
292 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000293 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100294
295 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000296 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100297 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100298
299 /* go over all indices preceding requested component idx */
300 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700301 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000302 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100303 }
304
305 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700306 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100307 } else {
308 *len = 0;
309 *data = 0;
310 }
311}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100312
Stephen Warren712fbcf2011-10-18 11:11:49 +0000313static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100314{
Heiko Schocher80402f32015-06-29 09:10:46 +0200315 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100316
Stephen Warren712fbcf2011-10-18 11:11:49 +0000317 os = genimg_get_os_name(image_get_os(hdr));
318 arch = genimg_get_arch_name(image_get_arch(hdr));
319 type = genimg_get_type_name(image_get_type(hdr));
320 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100321
Stephen Warren712fbcf2011-10-18 11:11:49 +0000322 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100323}
324
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100325/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200326 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200327 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100328 * @p: pointer to prefix string
329 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200330 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100331 * The routine prints out all header fields followed by the size/offset data
332 * for MULTI/SCRIPT images.
333 *
334 * returns:
335 * no returned results
336 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000337void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100338{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200339 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200340 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200341
Simon Glass1fe7d932013-05-08 08:05:58 +0000342 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000343 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000344 if (IMAGE_ENABLE_TIMESTAMP) {
345 printf("%sCreated: ", p);
346 genimg_print_time((time_t)image_get_time(hdr));
347 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000348 printf("%sImage Type: ", p);
349 image_print_type(hdr);
350 printf("%sData Size: ", p);
351 genimg_print_size(image_get_data_size(hdr));
352 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
353 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100354
Stephen Warren712fbcf2011-10-18 11:11:49 +0000355 if (image_check_type(hdr, IH_TYPE_MULTI) ||
356 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100357 int i;
358 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000359 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100360
Stephen Warren712fbcf2011-10-18 11:11:49 +0000361 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100362 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000363 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100364
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365 printf("%s Image %d: ", p, i);
366 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100367
Stephen Warren712fbcf2011-10-18 11:11:49 +0000368 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100369 /*
370 * the user may need to know offsets
371 * if planning to do something with
372 * multiple files
373 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000374 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100375 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100376 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100377 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
378 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
379 image_get_load(hdr) - image_get_header_size(),
380 image_get_size(hdr) + image_get_header_size()
381 - 0x1FE0);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100382 }
383}
384
Julius Werner20908542019-07-24 19:37:54 -0700385/**
386 * print_decomp_msg() - Print a suitable decompression/loading message
387 *
388 * @type: OS type (IH_OS_...)
389 * @comp_type: Compression type being used (IH_COMP_...)
390 * @is_xip: true if the load address matches the image start
391 */
392static void print_decomp_msg(int comp_type, int type, bool is_xip)
393{
394 const char *name = genimg_get_type_name(type);
395
396 if (comp_type == IH_COMP_NONE)
397 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
398 else
399 printf(" Uncompressing %s\n", name);
400}
401
402int image_decomp(int comp, ulong load, ulong image_start, int type,
403 void *load_buf, void *image_buf, ulong image_len,
404 uint unc_len, ulong *load_end)
405{
406 int ret = 0;
407
408 *load_end = load;
409 print_decomp_msg(comp, type, load == image_start);
410
411 /*
412 * Load the image to the right place, decompressing if needed. After
413 * this, image_len will be set to the number of uncompressed bytes
414 * loaded, ret will be non-zero on error.
415 */
416 switch (comp) {
417 case IH_COMP_NONE:
418 if (load == image_start)
419 break;
420 if (image_len <= unc_len)
421 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
422 else
423 ret = -ENOSPC;
424 break;
425#ifdef CONFIG_GZIP
426 case IH_COMP_GZIP: {
427 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
428 break;
429 }
430#endif /* CONFIG_GZIP */
431#ifdef CONFIG_BZIP2
432 case IH_COMP_BZIP2: {
433 uint size = unc_len;
434
435 /*
436 * If we've got less than 4 MB of malloc() space,
437 * use slower decompression algorithm which requires
438 * at most 2300 KB of memory.
439 */
440 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
441 image_buf, image_len,
442 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
443 image_len = size;
444 break;
445 }
446#endif /* CONFIG_BZIP2 */
447#ifdef CONFIG_LZMA
448 case IH_COMP_LZMA: {
449 SizeT lzma_len = unc_len;
450
451 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
452 image_buf, image_len);
453 image_len = lzma_len;
454 break;
455 }
456#endif /* CONFIG_LZMA */
457#ifdef CONFIG_LZO
458 case IH_COMP_LZO: {
459 size_t size = unc_len;
460
461 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
462 image_len = size;
463 break;
464 }
465#endif /* CONFIG_LZO */
466#ifdef CONFIG_LZ4
467 case IH_COMP_LZ4: {
468 size_t size = unc_len;
469
470 ret = ulz4fn(image_buf, image_len, load_buf, &size);
471 image_len = size;
472 break;
473 }
474#endif /* CONFIG_LZ4 */
475 default:
476 printf("Unimplemented compression type %d\n", comp);
477 return -ENOSYS;
478 }
479
480 *load_end = load + image_len;
481
482 return ret;
483}
484
Marian Balakowicz570abb02008-02-29 15:59:59 +0100485
486#ifndef USE_HOSTCC
Tom Rinic76c93a2019-05-23 07:14:07 -0400487#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100488/**
489 * image_get_ramdisk - get and verify ramdisk image
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100490 * @rd_addr: ramdisk image start address
491 * @arch: expected ramdisk architecture
492 * @verify: checksum verification flag
493 *
494 * image_get_ramdisk() returns a pointer to the verified ramdisk image
495 * header. Routine receives image start address and expected architecture
496 * flag. Verification done covers data and header integrity and os/type/arch
497 * fields checking.
498 *
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100499 * returns:
500 * pointer to a ramdisk image header, if image was found and valid
Kumar Gala274cea22008-02-27 21:51:46 -0600501 * otherwise, return NULL
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100502 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000503static const image_header_t *image_get_ramdisk(ulong rd_addr, uint8_t arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +0100504 int verify)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100505{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200506 const image_header_t *rd_hdr = (const image_header_t *)rd_addr;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100507
Stephen Warren712fbcf2011-10-18 11:11:49 +0000508 if (!image_check_magic(rd_hdr)) {
509 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000510 bootstage_error(BOOTSTAGE_ID_RD_MAGIC);
Kumar Gala274cea22008-02-27 21:51:46 -0600511 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100512 }
513
Stephen Warren712fbcf2011-10-18 11:11:49 +0000514 if (!image_check_hcrc(rd_hdr)) {
515 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000516 bootstage_error(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600517 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100518 }
519
Simon Glass770605e2012-02-13 13:51:18 +0000520 bootstage_mark(BOOTSTAGE_ID_RD_MAGIC);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000521 image_print_contents(rd_hdr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100522
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100523 if (verify) {
524 puts(" Verifying Checksum ... ");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000525 if (!image_check_dcrc(rd_hdr)) {
526 puts("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000527 bootstage_error(BOOTSTAGE_ID_RD_CHECKSUM);
Kumar Gala274cea22008-02-27 21:51:46 -0600528 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100529 }
530 puts("OK\n");
531 }
532
Simon Glass770605e2012-02-13 13:51:18 +0000533 bootstage_mark(BOOTSTAGE_ID_RD_HDR_CHECKSUM);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100534
Stephen Warren712fbcf2011-10-18 11:11:49 +0000535 if (!image_check_os(rd_hdr, IH_OS_LINUX) ||
536 !image_check_arch(rd_hdr, arch) ||
537 !image_check_type(rd_hdr, IH_TYPE_RAMDISK)) {
538 printf("No Linux %s Ramdisk Image\n",
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100539 genimg_get_arch_name(arch));
Simon Glass770605e2012-02-13 13:51:18 +0000540 bootstage_error(BOOTSTAGE_ID_RAMDISK);
Kumar Gala274cea22008-02-27 21:51:46 -0600541 return NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100542 }
543
544 return rd_hdr;
545}
Heiko Schocher21d29f72014-05-28 11:33:33 +0200546#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100547#endif /* !USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100548
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100549/*****************************************************************************/
550/* Shared dual-format routines */
551/*****************************************************************************/
Marian Balakowicz570abb02008-02-29 15:59:59 +0100552#ifndef USE_HOSTCC
Joe Hershberger1cf0a8b2012-12-11 22:16:28 -0600553ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
554ulong save_addr; /* Default Save Address */
555ulong save_size; /* Default Save Size (in bytes) */
556
557static int on_loadaddr(const char *name, const char *value, enum env_op op,
558 int flags)
559{
560 switch (op) {
561 case env_op_create:
562 case env_op_overwrite:
563 load_addr = simple_strtoul(value, NULL, 16);
564 break;
565 default:
566 break;
567 }
568
569 return 0;
570}
571U_BOOT_ENV_CALLBACK(loadaddr, on_loadaddr);
572
Simon Glass723806c2017-08-03 12:22:15 -0600573ulong env_get_bootm_low(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100574{
Simon Glass00caae62017-08-03 12:22:12 -0600575 char *s = env_get("bootm_low");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100576 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000577 ulong tmp = simple_strtoul(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100578 return tmp;
579 }
580
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200581#if defined(CONFIG_SYS_SDRAM_BASE)
582 return CONFIG_SYS_SDRAM_BASE;
Marian Balakowiczafe45c82008-03-12 12:14:15 +0100583#elif defined(CONFIG_ARM)
584 return gd->bd->bi_dram[0].start;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100585#else
586 return 0;
587#endif
588}
589
Simon Glass723806c2017-08-03 12:22:15 -0600590phys_size_t env_get_bootm_size(void)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100591{
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900592 phys_size_t tmp, size;
593 phys_addr_t start;
Simon Glass00caae62017-08-03 12:22:12 -0600594 char *s = env_get("bootm_size");
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100595 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000596 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100597 return tmp;
598 }
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900599
600#if defined(CONFIG_ARM) && defined(CONFIG_NR_DRAM_BANKS)
601 start = gd->bd->bi_dram[0].start;
602 size = gd->bd->bi_dram[0].size;
603#else
604 start = gd->bd->bi_memstart;
605 size = gd->bd->bi_memsize;
606#endif
607
Simon Glass00caae62017-08-03 12:22:12 -0600608 s = env_get("bootm_low");
Matthew McClintockc519fac2010-07-08 10:11:08 -0500609 if (s)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000610 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Matthew McClintockc519fac2010-07-08 10:11:08 -0500611 else
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900612 tmp = start;
Matthew McClintockc519fac2010-07-08 10:11:08 -0500613
Masahiro Yamada0cb389d2016-02-05 16:12:50 +0900614 return size - (tmp - start);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100615}
616
Simon Glass723806c2017-08-03 12:22:15 -0600617phys_size_t env_get_bootm_mapsize(void)
Grant Likelyc3624e62011-03-28 09:58:43 +0000618{
619 phys_size_t tmp;
Simon Glass00caae62017-08-03 12:22:12 -0600620 char *s = env_get("bootm_mapsize");
Grant Likelyc3624e62011-03-28 09:58:43 +0000621 if (s) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000622 tmp = (phys_size_t)simple_strtoull(s, NULL, 16);
Grant Likelyc3624e62011-03-28 09:58:43 +0000623 return tmp;
624 }
625
626#if defined(CONFIG_SYS_BOOTMAPSZ)
627 return CONFIG_SYS_BOOTMAPSZ;
628#else
Simon Glass723806c2017-08-03 12:22:15 -0600629 return env_get_bootm_size();
Grant Likelyc3624e62011-03-28 09:58:43 +0000630#endif
631}
632
Stephen Warren712fbcf2011-10-18 11:11:49 +0000633void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100634{
Larry Johnson54fa2c52010-04-20 08:09:43 -0400635 if (to == from)
636 return;
637
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100638#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800639 if (to > from) {
640 from += len;
641 to += len;
642 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100643 while (len > 0) {
644 size_t tail = (len > chunksz) ? chunksz : len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000645 WATCHDOG_RESET();
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800646 if (to > from) {
647 to -= tail;
648 from -= tail;
649 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000650 memmove(to, from, tail);
Sonic Zhang22cfddc2014-12-10 18:20:53 +0800651 if (to < from) {
652 to += tail;
653 from += tail;
654 }
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100655 len -= tail;
656 }
657#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000658 memmove(to, from, len);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100659#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
660}
Julius Werner20908542019-07-24 19:37:54 -0700661#else /* USE_HOSTCC */
662void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
663{
664 memmove(to, from, len);
665}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100666#endif /* !USE_HOSTCC */
667
Stephen Warren712fbcf2011-10-18 11:11:49 +0000668void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100669{
670#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000671 printf("%d Bytes = ", size);
672 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100673#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100674 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100675 size, (double)size / 1.024e3,
676 (double)size / 1.048576e6);
677#endif
678}
679
Simon Glass859e92b2013-05-07 06:11:51 +0000680#if IMAGE_ENABLE_TIMESTAMP
681void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100682{
683#ifndef USE_HOSTCC
684 struct rtc_time tm;
685
Simon Glass9f9276c2015-04-20 12:37:18 -0600686 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000687 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100688 tm.tm_year, tm.tm_mon, tm.tm_mday,
689 tm.tm_hour, tm.tm_min, tm.tm_sec);
690#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000691 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100692#endif
693}
Simon Glass859e92b2013-05-07 06:11:51 +0000694#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100695
Simon Glass5b9d44d2015-06-23 15:38:25 -0600696const table_entry_t *get_table_entry(const table_entry_t *table, int id)
697{
698 for (; table->id >= 0; ++table) {
699 if (table->id == id)
700 return table;
701 }
702 return NULL;
703}
704
Simon Glass14262202016-06-30 10:52:16 -0600705static const char *unknown_msg(enum ih_category category)
706{
Simon Glassae3de0d2016-10-31 10:21:09 -0600707 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600708 static char msg[30];
709
Simon Glassae3de0d2016-10-31 10:21:09 -0600710 strcpy(msg, unknown_str);
711 strncat(msg, table_info[category].desc,
712 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600713
714 return msg;
715}
716
717/**
718 * get_cat_table_entry_name - translate entry id to long name
719 * @category: category to look up (enum ih_category)
720 * @id: entry id to be translated
721 *
722 * This will scan the translation table trying to find the entry that matches
723 * the given id.
724 *
725 * @retur long entry name if translation succeeds; error string on failure
726 */
727const char *genimg_get_cat_name(enum ih_category category, uint id)
728{
729 const table_entry_t *entry;
730
731 entry = get_table_entry(table_info[category].table, id);
732 if (!entry)
733 return unknown_msg(category);
734#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
735 return entry->lname;
736#else
737 return entry->lname + gd->reloc_off;
738#endif
739}
740
741/**
742 * get_cat_table_entry_short_name - translate entry id to short name
743 * @category: category to look up (enum ih_category)
744 * @id: entry id to be translated
745 *
746 * This will scan the translation table trying to find the entry that matches
747 * the given id.
748 *
749 * @retur short entry name if translation succeeds; error string on failure
750 */
751const char *genimg_get_cat_short_name(enum ih_category category, uint id)
752{
753 const table_entry_t *entry;
754
755 entry = get_table_entry(table_info[category].table, id);
756 if (!entry)
757 return unknown_msg(category);
758#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
759 return entry->sname;
760#else
761 return entry->sname + gd->reloc_off;
762#endif
763}
764
765int genimg_get_cat_count(enum ih_category category)
766{
767 return table_info[category].count;
768}
769
770const char *genimg_get_cat_desc(enum ih_category category)
771{
772 return table_info[category].desc;
773}
774
Marian Balakowicz570abb02008-02-29 15:59:59 +0100775/**
776 * get_table_entry_name - translate entry id to long name
777 * @table: pointer to a translation table for entries of a specific type
778 * @msg: message to be returned when translation fails
779 * @id: entry id to be translated
780 *
781 * get_table_entry_name() will go over translation table trying to find
782 * entry that matches given id. If matching entry is found, its long
783 * name is returned to the caller.
784 *
785 * returns:
786 * long entry name if translation succeeds
787 * msg otherwise
788 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400789char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100790{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600791 table = get_table_entry(table, id);
792 if (!table)
793 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200794#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600795 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500796#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600797 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500798#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100799}
800
Stephen Warren712fbcf2011-10-18 11:11:49 +0000801const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100802{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000803 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100804}
805
Stephen Warren712fbcf2011-10-18 11:11:49 +0000806const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100807{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000808 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
809 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100810}
811
Stephen Warren712fbcf2011-10-18 11:11:49 +0000812const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100813{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000814 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100815}
816
Simon Glasscef2e512016-02-22 22:55:50 -0700817static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600818{
Simon Glasscef2e512016-02-22 22:55:50 -0700819 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600820 if (!table)
821 return "unknown";
822#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
823 return table->sname;
824#else
825 return table->sname + gd->reloc_off;
826#endif
827}
828
Simon Glasscef2e512016-02-22 22:55:50 -0700829const char *genimg_get_type_short_name(uint8_t type)
830{
831 return genimg_get_short_name(uimage_type, type);
832}
833
Stephen Warren712fbcf2011-10-18 11:11:49 +0000834const char *genimg_get_comp_name(uint8_t comp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100835{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000836 return (get_table_entry_name(uimage_comp, "Unknown Compression",
837 comp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100838}
839
Simon Glasscef2e512016-02-22 22:55:50 -0700840const char *genimg_get_comp_short_name(uint8_t comp)
841{
842 return genimg_get_short_name(uimage_comp, comp);
843}
844
845const char *genimg_get_os_short_name(uint8_t os)
846{
847 return genimg_get_short_name(uimage_os, os);
848}
849
850const char *genimg_get_arch_short_name(uint8_t arch)
851{
852 return genimg_get_short_name(uimage_arch, arch);
853}
854
Marian Balakowicz570abb02008-02-29 15:59:59 +0100855/**
856 * get_table_entry_id - translate short entry name to id
857 * @table: pointer to a translation table for entries of a specific type
858 * @table_name: to be used in case of error
859 * @name: entry short name to be translated
860 *
861 * get_table_entry_id() will go over translation table trying to find
862 * entry that matches given short name. If matching entry is found,
863 * its id returned to the caller.
864 *
865 * returns:
866 * entry id if translation succeeds
867 * -1 otherwise
868 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400869int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100870 const char *table_name, const char *name)
871{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400872 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100873
874 for (t = table; t->id >= 0; ++t) {
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200875#ifdef CONFIG_NEEDS_MANUAL_RELOC
Simon Glass5b9d44d2015-06-23 15:38:25 -0600876 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200877#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600878 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500879#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100880 return (t->id);
881 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000882 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600883
884 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100885}
886
Stephen Warren712fbcf2011-10-18 11:11:49 +0000887int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100888{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000889 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100890}
891
Stephen Warren712fbcf2011-10-18 11:11:49 +0000892int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100893{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000894 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100895}
896
Stephen Warren712fbcf2011-10-18 11:11:49 +0000897int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100898{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000899 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100900}
901
Stephen Warren712fbcf2011-10-18 11:11:49 +0000902int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100903{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000904 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100905}
906
907#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100908/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700909 * genimg_get_kernel_addr_fit - get the real kernel address and return 2
910 * FIT strings
Bryan Wu0f641402014-07-31 17:39:58 -0700911 * @img_addr: a string might contain real image address
Bryan Wu6c454fe2014-08-15 16:51:38 -0700912 * @fit_uname_config: double pointer to a char, will hold pointer to a
913 * configuration unit name
914 * @fit_uname_kernel: double pointer to a char, will hold pointer to a subimage
915 * name
Bryan Wu0f641402014-07-31 17:39:58 -0700916 *
Bryan Wu6c454fe2014-08-15 16:51:38 -0700917 * genimg_get_kernel_addr_fit get the real kernel start address from a string
Bryan Wu0f641402014-07-31 17:39:58 -0700918 * which is normally the first argv of bootm/bootz
919 *
920 * returns:
921 * kernel start address
922 */
Bryan Wu6c454fe2014-08-15 16:51:38 -0700923ulong genimg_get_kernel_addr_fit(char * const img_addr,
924 const char **fit_uname_config,
925 const char **fit_uname_kernel)
Bryan Wu0f641402014-07-31 17:39:58 -0700926{
Bryan Wu0f641402014-07-31 17:39:58 -0700927 ulong kernel_addr;
928
929 /* find out kernel image address */
930 if (!img_addr) {
931 kernel_addr = load_addr;
932 debug("* kernel: default image load address = 0x%08lx\n",
933 load_addr);
Simon Glass73223f02016-02-22 22:55:43 -0700934#if CONFIG_IS_ENABLED(FIT)
Bryan Wu0f641402014-07-31 17:39:58 -0700935 } else if (fit_parse_conf(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700936 fit_uname_config)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700937 debug("* kernel: config '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700938 *fit_uname_config, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700939 } else if (fit_parse_subimage(img_addr, load_addr, &kernel_addr,
Bryan Wu6c454fe2014-08-15 16:51:38 -0700940 fit_uname_kernel)) {
Bryan Wu0f641402014-07-31 17:39:58 -0700941 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Bryan Wu6c454fe2014-08-15 16:51:38 -0700942 *fit_uname_kernel, kernel_addr);
Bryan Wu0f641402014-07-31 17:39:58 -0700943#endif
944 } else {
945 kernel_addr = simple_strtoul(img_addr, NULL, 16);
946 debug("* kernel: cmdline image address = 0x%08lx\n",
947 kernel_addr);
948 }
949
950 return kernel_addr;
951}
952
953/**
Bryan Wu6c454fe2014-08-15 16:51:38 -0700954 * genimg_get_kernel_addr() is the simple version of
955 * genimg_get_kernel_addr_fit(). It ignores those return FIT strings
956 */
957ulong genimg_get_kernel_addr(char * const img_addr)
958{
959 const char *fit_uname_config = NULL;
960 const char *fit_uname_kernel = NULL;
961
962 return genimg_get_kernel_addr_fit(img_addr, &fit_uname_config,
963 &fit_uname_kernel);
964}
965
966/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100967 * genimg_get_format - get image format type
968 * @img_addr: image start address
969 *
970 * genimg_get_format() checks whether provided address points to a valid
971 * legacy or FIT image.
972 *
973 * New uImage format and FDT blob are based on a libfdt. FDT blob
974 * may be passed directly or embedded in a FIT image. In both situations
975 * genimg_get_format() must be able to dectect libfdt header.
976 *
977 * returns:
978 * image format type or IMAGE_FORMAT_INVALID if no image is present
979 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000980int genimg_get_format(const void *img_addr)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100981{
Tom Rinic76c93a2019-05-23 07:14:07 -0400982#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200983 const image_header_t *hdr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100984
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200985 hdr = (const image_header_t *)img_addr;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100986 if (image_check_magic(hdr))
Heiko Schocher21d29f72014-05-28 11:33:33 +0200987 return IMAGE_FORMAT_LEGACY;
988#endif
Simon Glassaa34fbc2016-02-22 22:55:45 -0700989#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Heiko Schocher21d29f72014-05-28 11:33:33 +0200990 if (fdt_check_header(img_addr) == 0)
991 return IMAGE_FORMAT_FIT;
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500992#endif
993#ifdef CONFIG_ANDROID_BOOT_IMAGE
Heiko Schocher21d29f72014-05-28 11:33:33 +0200994 if (android_image_check_header(img_addr) == 0)
995 return IMAGE_FORMAT_ANDROID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100996#endif
997
Heiko Schocher21d29f72014-05-28 11:33:33 +0200998 return IMAGE_FORMAT_INVALID;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100999}
1000
1001/**
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001002 * fit_has_config - check if there is a valid FIT configuration
1003 * @images: pointer to the bootm command headers structure
1004 *
1005 * fit_has_config() checks if there is a FIT configuration in use
1006 * (if FTI support is present).
1007 *
1008 * returns:
1009 * 0, no FIT support or no configuration found
1010 * 1, configuration found
1011 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001012int genimg_has_config(bootm_headers_t *images)
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001013{
Simon Glass73223f02016-02-22 22:55:43 -07001014#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001015 if (images->fit_uname_cfg)
1016 return 1;
1017#endif
1018 return 0;
1019}
1020
1021/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001022 * boot_get_ramdisk - main ramdisk handling routine
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001023 * @argc: command argument count
1024 * @argv: command argument list
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001025 * @images: pointer to the bootm images structure
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001026 * @arch: expected ramdisk architecture
1027 * @rd_start: pointer to a ulong variable, will hold ramdisk start address
1028 * @rd_end: pointer to a ulong variable, will hold ramdisk end
1029 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001030 * boot_get_ramdisk() is responsible for finding a valid ramdisk image.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001031 * Curently supported are the following ramdisk sources:
1032 * - multicomponent kernel/ramdisk image,
1033 * - commandline provided address of decicated ramdisk image.
1034 *
1035 * returns:
Marian Balakowiczd985c842008-03-12 10:14:38 +01001036 * 0, if ramdisk image was found and valid, or skiped
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001037 * rd_start and rd_end are set to ramdisk start/end addresses if
1038 * ramdisk image is found and valid
Marian Balakowiczd985c842008-03-12 10:14:38 +01001039 *
Kumar Galaea86b9e2008-08-29 19:08:29 -05001040 * 1, if ramdisk image is found but corrupted, or invalid
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001041 * rd_start and rd_end are set to 0 if no ramdisk exists
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001042 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001043int boot_get_ramdisk(int argc, char * const argv[], bootm_headers_t *images,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001044 uint8_t arch, ulong *rd_start, ulong *rd_end)
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001045{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001046 ulong rd_addr, rd_load;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001047 ulong rd_data, rd_len;
Tom Rinic76c93a2019-05-23 07:14:07 -04001048#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Wolfgang Denk3a2003f2009-08-19 11:42:56 +02001049 const image_header_t *rd_hdr;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001050#endif
Simon Glass35e7b0f2013-05-07 06:12:03 +00001051 void *buf;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001052#ifdef CONFIG_SUPPORT_RAW_INITRD
Marek Vasut017e1f32012-03-18 11:47:58 +00001053 char *end;
Marek Vasut57d40ab2012-03-30 23:19:10 +02001054#endif
Simon Glass73223f02016-02-22 22:55:43 -07001055#if IMAGE_ENABLE_FIT
Simon Glassf320a4d2013-07-10 23:08:10 -07001056 const char *fit_uname_config = images->fit_uname_cfg;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001057 const char *fit_uname_ramdisk = NULL;
1058 ulong default_addr;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001059 int rd_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001060#endif
Simon Glass983c72f2013-06-11 11:14:46 -07001061 const char *select = NULL;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001062
Marian Balakowiczc8779642008-03-12 10:12:37 +01001063 *rd_start = 0;
1064 *rd_end = 0;
1065
Tom Rini1fec3c52015-08-27 15:42:41 -04001066#ifdef CONFIG_ANDROID_BOOT_IMAGE
1067 /*
1068 * Look for an Android boot image.
1069 */
1070 buf = map_sysmem(images->os.start, 0);
Tom Rinic139b5f2015-10-27 19:04:40 -04001071 if (buf && genimg_get_format(buf) == IMAGE_FORMAT_ANDROID)
Shawn Guo5e218862019-02-22 16:28:06 +08001072 select = (argc == 0) ? env_get("loadaddr") : argv[0];
Tom Rini1fec3c52015-08-27 15:42:41 -04001073#endif
1074
Simon Glass983c72f2013-06-11 11:14:46 -07001075 if (argc >= 2)
1076 select = argv[1];
Rob Herring2dd46322015-07-17 10:57:17 -05001077
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001078 /*
1079 * Look for a '-' which indicates to ignore the
1080 * ramdisk argument
1081 */
Simon Glass983c72f2013-06-11 11:14:46 -07001082 if (select && strcmp(select, "-") == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001083 debug("## Skipping init Ramdisk\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001084 rd_len = rd_data = 0;
Simon Glass983c72f2013-06-11 11:14:46 -07001085 } else if (select || genimg_has_config(images)) {
Simon Glass73223f02016-02-22 22:55:43 -07001086#if IMAGE_ENABLE_FIT
Simon Glass983c72f2013-06-11 11:14:46 -07001087 if (select) {
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001088 /*
1089 * If the init ramdisk comes from the FIT image and
1090 * the FIT image address is omitted in the command
1091 * line argument, try to use os FIT image address or
1092 * default load address.
1093 */
1094 if (images->fit_uname_os)
1095 default_addr = (ulong)images->fit_hdr_os;
1096 else
1097 default_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001098
Simon Glass983c72f2013-06-11 11:14:46 -07001099 if (fit_parse_conf(select, default_addr,
1100 &rd_addr, &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001101 debug("* ramdisk: config '%s' from image at "
1102 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001103 fit_uname_config, rd_addr);
Simon Glass983c72f2013-06-11 11:14:46 -07001104 } else if (fit_parse_subimage(select, default_addr,
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001105 &rd_addr, &fit_uname_ramdisk)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001106 debug("* ramdisk: subimage '%s' from image at "
1107 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001108 fit_uname_ramdisk, rd_addr);
1109 } else
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001110#endif
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001111 {
Simon Glass983c72f2013-06-11 11:14:46 -07001112 rd_addr = simple_strtoul(select, NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001113 debug("* ramdisk: cmdline image address = "
1114 "0x%08lx\n",
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001115 rd_addr);
1116 }
Simon Glass73223f02016-02-22 22:55:43 -07001117#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001118 } else {
1119 /* use FIT configuration provided in first bootm
Simon Glassa51ec632013-05-16 13:53:22 +00001120 * command argument. If the property is not defined,
1121 * quit silently.
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001122 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001123 rd_addr = map_to_sysmem(images->fit_hdr_os);
Simon Glassa51ec632013-05-16 13:53:22 +00001124 rd_noffset = fit_get_node_from_config(images,
1125 FIT_RAMDISK_PROP, rd_addr);
Paul Burtonbd86ef12016-09-20 18:17:12 +01001126 if (rd_noffset == -ENOENT)
Peter Tyser41266c92008-08-05 10:51:57 -05001127 return 0;
Simon Glassa51ec632013-05-16 13:53:22 +00001128 else if (rd_noffset < 0)
1129 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001130 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +01001131#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001132
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001133 /*
1134 * Check if there is an initrd image at the
1135 * address provided in the second bootm argument
1136 * check image type, for FIT images get FIT node.
1137 */
Simon Glass35e7b0f2013-05-07 06:12:03 +00001138 buf = map_sysmem(rd_addr, 0);
1139 switch (genimg_get_format(buf)) {
Tom Rinic76c93a2019-05-23 07:14:07 -04001140#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001141 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001142 printf("## Loading init Ramdisk from Legacy "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001143 "Image at %08lx ...\n", rd_addr);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001144
Simon Glass770605e2012-02-13 13:51:18 +00001145 bootstage_mark(BOOTSTAGE_ID_CHECK_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001146 rd_hdr = image_get_ramdisk(rd_addr, arch,
Marian Balakowiczd985c842008-03-12 10:14:38 +01001147 images->verify);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001148
Marian Balakowiczc8779642008-03-12 10:12:37 +01001149 if (rd_hdr == NULL)
Kumar Gala274cea22008-02-27 21:51:46 -06001150 return 1;
Kumar Gala274cea22008-02-27 21:51:46 -06001151
Stephen Warren712fbcf2011-10-18 11:11:49 +00001152 rd_data = image_get_data(rd_hdr);
1153 rd_len = image_get_data_size(rd_hdr);
1154 rd_load = image_get_load(rd_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001155 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +02001156#endif
Simon Glass73223f02016-02-22 22:55:43 -07001157#if IMAGE_ENABLE_FIT
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001158 case IMAGE_FORMAT_FIT:
Simon Glass126cc862014-06-12 07:24:47 -06001159 rd_noffset = fit_image_load(images,
Simon Glassa51ec632013-05-16 13:53:22 +00001160 rd_addr, &fit_uname_ramdisk,
Simon Glassf320a4d2013-07-10 23:08:10 -07001161 &fit_uname_config, arch,
Simon Glassa51ec632013-05-16 13:53:22 +00001162 IH_TYPE_RAMDISK,
1163 BOOTSTAGE_ID_FIT_RD_START,
Simon Glassfe20a812014-08-22 14:26:43 -06001164 FIT_LOAD_OPTIONAL_NON_ZERO,
1165 &rd_data, &rd_len);
Simon Glassa51ec632013-05-16 13:53:22 +00001166 if (rd_noffset < 0)
Michal Simekc78fce62008-07-11 10:43:13 +02001167 return 1;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001168
Simon Glassa51ec632013-05-16 13:53:22 +00001169 images->fit_hdr_rd = map_sysmem(rd_addr, 0);
Marian Balakowiczc8779642008-03-12 10:12:37 +01001170 images->fit_uname_rd = fit_uname_ramdisk;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +01001171 images->fit_noffset_rd = rd_noffset;
Marian Balakowiczc8779642008-03-12 10:12:37 +01001172 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001173#endif
Rob Herring2dd46322015-07-17 10:57:17 -05001174#ifdef CONFIG_ANDROID_BOOT_IMAGE
1175 case IMAGE_FORMAT_ANDROID:
1176 android_image_get_ramdisk((void *)images->os.start,
1177 &rd_data, &rd_len);
1178 break;
1179#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001180 default:
Marek Vasut017e1f32012-03-18 11:47:58 +00001181#ifdef CONFIG_SUPPORT_RAW_INITRD
Simon Glass983c72f2013-06-11 11:14:46 -07001182 end = NULL;
1183 if (select)
1184 end = strchr(select, ':');
1185 if (end) {
Marek Vasut017e1f32012-03-18 11:47:58 +00001186 rd_len = simple_strtoul(++end, NULL, 16);
1187 rd_data = rd_addr;
1188 } else
1189#endif
1190 {
1191 puts("Wrong Ramdisk Image Format\n");
1192 rd_data = rd_len = rd_load = 0;
1193 return 1;
1194 }
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001195 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001196 } else if (images->legacy_hdr_valid &&
Stephen Warren712fbcf2011-10-18 11:11:49 +00001197 image_check_type(&images->legacy_hdr_os_copy,
1198 IH_TYPE_MULTI)) {
1199
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001200 /*
1201 * Now check if we have a legacy mult-component image,
1202 * get second entry data start address and len.
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001203 */
Simon Glass770605e2012-02-13 13:51:18 +00001204 bootstage_mark(BOOTSTAGE_ID_RAMDISK);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001205 printf("## Loading init Ramdisk from multi component "
Marian Balakowiczc8779642008-03-12 10:12:37 +01001206 "Legacy Image at %08lx ...\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001207 (ulong)images->legacy_hdr_os);
1208
Stephen Warren712fbcf2011-10-18 11:11:49 +00001209 image_multi_getimg(images->legacy_hdr_os, 1, &rd_data, &rd_len);
Rob Herring2dd46322015-07-17 10:57:17 -05001210 } else {
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001211 /*
1212 * no initrd image
1213 */
Simon Glass770605e2012-02-13 13:51:18 +00001214 bootstage_mark(BOOTSTAGE_ID_NO_RAMDISK);
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001215 rd_len = rd_data = 0;
1216 }
1217
1218 if (!rd_data) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001219 debug("## No init Ramdisk\n");
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001220 } else {
1221 *rd_start = rd_data;
1222 *rd_end = rd_data + rd_len;
1223 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001224 debug(" ramdisk start = 0x%08lx, ramdisk end = 0x%08lx\n",
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001225 *rd_start, *rd_end);
Kumar Gala274cea22008-02-27 21:51:46 -06001226
1227 return 0;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001228}
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001229
John Rigbyfca43cc2010-10-13 13:57:35 -06001230#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001231/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001232 * boot_ramdisk_high - relocate init ramdisk
Kumar Galae822d7f2008-02-27 21:51:49 -06001233 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001234 * @rd_data: ramdisk data start address
1235 * @rd_len: ramdisk data length
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001236 * @initrd_start: pointer to a ulong variable, will hold final init ramdisk
1237 * start address (after possible relocation)
1238 * @initrd_end: pointer to a ulong variable, will hold final init ramdisk
1239 * end address (after possible relocation)
1240 *
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -04001241 * boot_ramdisk_high() takes a relocation hint from "initrd_high" environment
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001242 * variable and if requested ramdisk data is moved to a specified location.
1243 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001244 * Initrd_start and initrd_end are set to final (after relocation) ramdisk
1245 * start/end addresses if ramdisk image start and len were provided,
1246 * otherwise set initrd_start and initrd_end set to zeros.
1247 *
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001248 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001249 * 0 - success
1250 * -1 - failure
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001251 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001252int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Kumar Galae822d7f2008-02-27 21:51:49 -06001253 ulong *initrd_start, ulong *initrd_end)
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001254{
1255 char *s;
1256 ulong initrd_high;
1257 int initrd_copy_to_ram = 1;
1258
Simon Glass00caae62017-08-03 12:22:12 -06001259 s = env_get("initrd_high");
1260 if (s) {
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001261 /* a value of "no" or a similar string will act like 0,
1262 * turning the "load high" feature off. This is intentional.
1263 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001264 initrd_high = simple_strtoul(s, NULL, 16);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001265 if (initrd_high == ~0)
1266 initrd_copy_to_ram = 0;
1267 } else {
Simon Glass723806c2017-08-03 12:22:15 -06001268 initrd_high = env_get_bootm_mapsize() + env_get_bootm_low();
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001269 }
1270
Marian Balakowicz95d449a2008-05-13 15:53:29 +02001271
Stephen Warren712fbcf2011-10-18 11:11:49 +00001272 debug("## initrd_high = 0x%08lx, copy_to_ram = %d\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001273 initrd_high, initrd_copy_to_ram);
1274
1275 if (rd_data) {
1276 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001277 debug(" in-place initrd\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001278 *initrd_start = rd_data;
1279 *initrd_end = rd_data + rd_len;
Kumar Galae822d7f2008-02-27 21:51:49 -06001280 lmb_reserve(lmb, rd_data, rd_len);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001281 } else {
Kumar Galae822d7f2008-02-27 21:51:49 -06001282 if (initrd_high)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001283 *initrd_start = (ulong)lmb_alloc_base(lmb,
1284 rd_len, 0x1000, initrd_high);
Kumar Galae822d7f2008-02-27 21:51:49 -06001285 else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001286 *initrd_start = (ulong)lmb_alloc(lmb, rd_len,
1287 0x1000);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001288
Kumar Galae822d7f2008-02-27 21:51:49 -06001289 if (*initrd_start == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001290 puts("ramdisk - allocation error\n");
Kumar Galae822d7f2008-02-27 21:51:49 -06001291 goto error;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001292 }
Simon Glass770605e2012-02-13 13:51:18 +00001293 bootstage_mark(BOOTSTAGE_ID_COPY_RAMDISK);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001294
1295 *initrd_end = *initrd_start + rd_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001296 printf(" Loading Ramdisk to %08lx, end %08lx ... ",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001297 *initrd_start, *initrd_end);
1298
Stephen Warren712fbcf2011-10-18 11:11:49 +00001299 memmove_wd((void *)*initrd_start,
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001300 (void *)rd_data, rd_len, CHUNKSZ);
1301
Kumar Gala3b200112011-12-07 04:42:58 +00001302#ifdef CONFIG_MP
1303 /*
1304 * Ensure the image is flushed to memory to handle
1305 * AMP boot scenarios in which we might not be
1306 * HW cache coherent
1307 */
Heiko Schocher1a1e7072017-12-14 11:19:22 +01001308 flush_cache((unsigned long)*initrd_start,
1309 ALIGN(rd_len, ARCH_DMA_MINALIGN));
Kumar Gala3b200112011-12-07 04:42:58 +00001310#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +00001311 puts("OK\n");
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001312 }
1313 } else {
1314 *initrd_start = 0;
1315 *initrd_end = 0;
1316 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001317 debug(" ramdisk load start = 0x%08lx, ramdisk load end = 0x%08lx\n",
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001318 *initrd_start, *initrd_end);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001319
Kumar Galae822d7f2008-02-27 21:51:49 -06001320 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001321
Kumar Galae822d7f2008-02-27 21:51:49 -06001322error:
1323 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001324}
John Rigbyfca43cc2010-10-13 13:57:35 -06001325#endif /* CONFIG_SYS_BOOT_RAMDISK_HIGH */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001326
Simon Glass90268b82014-10-19 21:11:24 -06001327int boot_get_setup(bootm_headers_t *images, uint8_t arch,
1328 ulong *setup_start, ulong *setup_len)
1329{
Simon Glass73223f02016-02-22 22:55:43 -07001330#if IMAGE_ENABLE_FIT
Simon Glass90268b82014-10-19 21:11:24 -06001331 return boot_get_setup_fit(images, arch, setup_start, setup_len);
1332#else
1333 return -ENOENT;
1334#endif
1335}
1336
Simon Glass73223f02016-02-22 22:55:43 -07001337#if IMAGE_ENABLE_FIT
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001338#if defined(CONFIG_FPGA)
Michal Simek62afc602016-05-17 14:03:50 +02001339int boot_get_fpga(int argc, char * const argv[], bootm_headers_t *images,
1340 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1341{
1342 ulong tmp_img_addr, img_data, img_len;
1343 void *buf;
1344 int conf_noffset;
1345 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001346 const char *uname, *name;
Michal Simek62afc602016-05-17 14:03:50 +02001347 int err;
1348 int devnum = 0; /* TODO support multi fpga platforms */
Michal Simek62afc602016-05-17 14:03:50 +02001349
1350 /* Check to see if the images struct has a FIT configuration */
1351 if (!genimg_has_config(images)) {
1352 debug("## FIT configuration was not specified\n");
1353 return 0;
1354 }
1355
1356 /*
1357 * Obtain the os FIT header from the images struct
Michal Simek62afc602016-05-17 14:03:50 +02001358 */
1359 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Michal Simek62afc602016-05-17 14:03:50 +02001360 buf = map_sysmem(tmp_img_addr, 0);
1361 /*
1362 * Check image type. For FIT images get FIT node
1363 * and attempt to locate a generic binary.
1364 */
1365 switch (genimg_get_format(buf)) {
1366 case IMAGE_FORMAT_FIT:
1367 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1368
Simon Glassb02e4042016-10-02 17:59:28 -06001369 uname = fdt_stringlist_get(buf, conf_noffset, FIT_FPGA_PROP, 0,
1370 NULL);
1371 if (!uname) {
Michal Simek62afc602016-05-17 14:03:50 +02001372 debug("## FPGA image is not specified\n");
1373 return 0;
1374 }
1375 fit_img_result = fit_image_load(images,
1376 tmp_img_addr,
1377 (const char **)&uname,
1378 &(images->fit_uname_cfg),
1379 arch,
1380 IH_TYPE_FPGA,
1381 BOOTSTAGE_ID_FPGA_INIT,
1382 FIT_LOAD_OPTIONAL_NON_ZERO,
1383 &img_data, &img_len);
1384
1385 debug("FPGA image (%s) loaded to 0x%lx/size 0x%lx\n",
1386 uname, img_data, img_len);
1387
1388 if (fit_img_result < 0) {
1389 /* Something went wrong! */
1390 return fit_img_result;
1391 }
1392
Goldschmidt Simon8b93a922017-11-10 14:17:41 +00001393 if (!fpga_is_partial_data(devnum, img_len)) {
Michal Simek62afc602016-05-17 14:03:50 +02001394 name = "full";
1395 err = fpga_loadbitstream(devnum, (char *)img_data,
1396 img_len, BIT_FULL);
1397 if (err)
1398 err = fpga_load(devnum, (const void *)img_data,
1399 img_len, BIT_FULL);
1400 } else {
1401 name = "partial";
1402 err = fpga_loadbitstream(devnum, (char *)img_data,
1403 img_len, BIT_PARTIAL);
1404 if (err)
1405 err = fpga_load(devnum, (const void *)img_data,
1406 img_len, BIT_PARTIAL);
1407 }
1408
Michal Simek62afc602016-05-17 14:03:50 +02001409 if (err)
Michal Simek611a9422016-12-16 10:35:40 +01001410 return err;
1411
1412 printf(" Programming %s bitstream... OK\n", name);
Michal Simek62afc602016-05-17 14:03:50 +02001413 break;
1414 default:
1415 printf("The given image format is not supported (corrupt?)\n");
1416 return 1;
1417 }
1418
1419 return 0;
1420}
1421#endif
1422
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001423static void fit_loadable_process(uint8_t img_type,
1424 ulong img_data,
1425 ulong img_len)
1426{
1427 int i;
1428 const unsigned int count =
1429 ll_entry_count(struct fit_loadable_tbl, fit_loadable);
1430 struct fit_loadable_tbl *fit_loadable_handler =
1431 ll_entry_start(struct fit_loadable_tbl, fit_loadable);
1432 /* For each loadable handler */
1433 for (i = 0; i < count; i++, fit_loadable_handler++)
1434 /* matching this type */
1435 if (fit_loadable_handler->type == img_type)
1436 /* call that handler with this image data */
1437 fit_loadable_handler->handler(img_data, img_len);
1438}
1439
Karl Apsite84a07db2015-05-21 09:52:48 -04001440int boot_get_loadable(int argc, char * const argv[], bootm_headers_t *images,
1441 uint8_t arch, const ulong *ld_start, ulong * const ld_len)
1442{
1443 /*
1444 * These variables are used to hold the current image location
1445 * in system memory.
1446 */
1447 ulong tmp_img_addr;
1448 /*
1449 * These two variables are requirements for fit_image_load, but
1450 * their values are not used
1451 */
1452 ulong img_data, img_len;
1453 void *buf;
1454 int loadables_index;
1455 int conf_noffset;
1456 int fit_img_result;
Simon Glassb02e4042016-10-02 17:59:28 -06001457 const char *uname;
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001458 uint8_t img_type;
Karl Apsite84a07db2015-05-21 09:52:48 -04001459
1460 /* Check to see if the images struct has a FIT configuration */
1461 if (!genimg_has_config(images)) {
1462 debug("## FIT configuration was not specified\n");
1463 return 0;
1464 }
1465
1466 /*
1467 * Obtain the os FIT header from the images struct
Karl Apsite84a07db2015-05-21 09:52:48 -04001468 */
1469 tmp_img_addr = map_to_sysmem(images->fit_hdr_os);
Karl Apsite84a07db2015-05-21 09:52:48 -04001470 buf = map_sysmem(tmp_img_addr, 0);
1471 /*
1472 * Check image type. For FIT images get FIT node
1473 * and attempt to locate a generic binary.
1474 */
1475 switch (genimg_get_format(buf)) {
1476 case IMAGE_FORMAT_FIT:
1477 conf_noffset = fit_conf_get_node(buf, images->fit_uname_cfg);
1478
1479 for (loadables_index = 0;
Simon Glassb02e4042016-10-02 17:59:28 -06001480 uname = fdt_stringlist_get(buf, conf_noffset,
1481 FIT_LOADABLE_PROP, loadables_index,
1482 NULL), uname;
Karl Apsite84a07db2015-05-21 09:52:48 -04001483 loadables_index++)
1484 {
1485 fit_img_result = fit_image_load(images,
1486 tmp_img_addr,
Simon Glassb02e4042016-10-02 17:59:28 -06001487 &uname,
Karl Apsite84a07db2015-05-21 09:52:48 -04001488 &(images->fit_uname_cfg), arch,
1489 IH_TYPE_LOADABLE,
1490 BOOTSTAGE_ID_FIT_LOADABLE_START,
1491 FIT_LOAD_OPTIONAL_NON_ZERO,
1492 &img_data, &img_len);
1493 if (fit_img_result < 0) {
1494 /* Something went wrong! */
1495 return fit_img_result;
1496 }
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001497
1498 fit_img_result = fit_image_get_node(buf, uname);
1499 if (fit_img_result < 0) {
1500 /* Something went wrong! */
1501 return fit_img_result;
1502 }
1503 fit_img_result = fit_image_get_type(buf,
1504 fit_img_result,
1505 &img_type);
1506 if (fit_img_result < 0) {
1507 /* Something went wrong! */
1508 return fit_img_result;
1509 }
1510
1511 fit_loadable_process(img_type, img_data, img_len);
Karl Apsite84a07db2015-05-21 09:52:48 -04001512 }
1513 break;
1514 default:
1515 printf("The given image format is not supported (corrupt?)\n");
1516 return 1;
1517 }
1518
1519 return 0;
1520}
1521#endif
1522
John Rigbyfca43cc2010-10-13 13:57:35 -06001523#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001524/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001525 * boot_get_cmdline - allocate and initialize kernel cmdline
Kumar Galae822d7f2008-02-27 21:51:49 -06001526 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001527 * @cmd_start: pointer to a ulong variable, will hold cmdline start
1528 * @cmd_end: pointer to a ulong variable, will hold cmdline end
1529 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001530 * boot_get_cmdline() allocates space for kernel command line below
Shyam Saini919d25c2018-06-07 19:47:19 +05301531 * BOOTMAPSZ + env_get_bootm_low() address. If "bootargs" U-Boot environment
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001532 * variable is present its contents is copied to allocated kernel
1533 * command line.
1534 *
1535 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001536 * 0 - success
1537 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001538 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001539int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001540{
1541 char *cmdline;
1542 char *s;
1543
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001544 cmdline = (char *)(ulong)lmb_alloc_base(lmb, CONFIG_SYS_BARGSIZE, 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001545 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001546
1547 if (cmdline == NULL)
1548 return -1;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001549
Simon Glass00caae62017-08-03 12:22:12 -06001550 s = env_get("bootargs");
1551 if (!s)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001552 s = "";
1553
1554 strcpy(cmdline, s);
1555
1556 *cmd_start = (ulong) & cmdline[0];
1557 *cmd_end = *cmd_start + strlen(cmdline);
1558
Stephen Warren712fbcf2011-10-18 11:11:49 +00001559 debug("## cmdline at 0x%08lx ... 0x%08lx\n", *cmd_start, *cmd_end);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001560
Kumar Galae822d7f2008-02-27 21:51:49 -06001561 return 0;
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001562}
John Rigbyfca43cc2010-10-13 13:57:35 -06001563#endif /* CONFIG_SYS_BOOT_GET_CMDLINE */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001564
John Rigbyfca43cc2010-10-13 13:57:35 -06001565#ifdef CONFIG_SYS_BOOT_GET_KBD
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001566/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001567 * boot_get_kbd - allocate and initialize kernel copy of board info
Kumar Galae822d7f2008-02-27 21:51:49 -06001568 * @lmb: pointer to lmb handle, will be used for memory mgmt
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001569 * @kbd: double pointer to board info data
1570 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001571 * boot_get_kbd() allocates space for kernel copy of board info data below
Simon Glass723806c2017-08-03 12:22:15 -06001572 * BOOTMAPSZ + env_get_bootm_low() address and kernel board info is initialized
Grant Likely590d3ca2011-03-28 09:58:34 +00001573 * with the current u-boot board info data.
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001574 *
1575 * returns:
Kumar Galae822d7f2008-02-27 21:51:49 -06001576 * 0 - success
1577 * -1 - failure
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001578 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001579int boot_get_kbd(struct lmb *lmb, bd_t **kbd)
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001580{
Becky Bruce391fd932008-06-09 20:37:18 -05001581 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf,
Simon Glass723806c2017-08-03 12:22:15 -06001582 env_get_bootm_mapsize() + env_get_bootm_low());
Kumar Galae822d7f2008-02-27 21:51:49 -06001583 if (*kbd == NULL)
1584 return -1;
1585
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001586 **kbd = *(gd->bd);
1587
Stephen Warren712fbcf2011-10-18 11:11:49 +00001588 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +01001589
1590#if defined(DEBUG) && defined(CONFIG_CMD_BDI)
1591 do_bdinfo(NULL, 0, 0, NULL);
1592#endif
1593
Kumar Galae822d7f2008-02-27 21:51:49 -06001594 return 0;
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01001595}
John Rigbyfca43cc2010-10-13 13:57:35 -06001596#endif /* CONFIG_SYS_BOOT_GET_KBD */
Simon Glass13d06982013-05-08 08:06:01 +00001597
1598#ifdef CONFIG_LMB
1599int image_setup_linux(bootm_headers_t *images)
1600{
1601 ulong of_size = images->ft_len;
1602 char **of_flat_tree = &images->ft_addr;
Simon Glass13d06982013-05-08 08:06:01 +00001603 struct lmb *lmb = &images->lmb;
Simon Glass13d06982013-05-08 08:06:01 +00001604 int ret;
1605
1606 if (IMAGE_ENABLE_OF_LIBFDT)
1607 boot_fdt_add_mem_rsv_regions(lmb, *of_flat_tree);
1608
1609 if (IMAGE_BOOT_GET_CMDLINE) {
1610 ret = boot_get_cmdline(lmb, &images->cmdline_start,
1611 &images->cmdline_end);
1612 if (ret) {
1613 puts("ERROR with allocation of cmdline\n");
1614 return ret;
1615 }
1616 }
Simon Glass13d06982013-05-08 08:06:01 +00001617
1618 if (IMAGE_ENABLE_OF_LIBFDT) {
1619 ret = boot_relocate_fdt(lmb, of_flat_tree, &of_size);
1620 if (ret)
1621 return ret;
1622 }
1623
1624 if (IMAGE_ENABLE_OF_LIBFDT && of_size) {
1625 ret = image_setup_libfdt(images, *of_flat_tree, of_size, lmb);
1626 if (ret)
1627 return ret;
1628 }
1629
1630 return 0;
1631}
1632#endif /* CONFIG_LMB */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001633#endif /* !USE_HOSTCC */