blob: ed7f188b5918d198ed308001e532c7f3b5110e97 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01002/*
3 * (C) Copyright 2008 Semihalf
4 *
5 * (C) Copyright 2000-2006
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01007 */
Marian Balakowiczceaed2b2008-01-31 13:57:17 +01008
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01009#ifndef USE_HOSTCC
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010010#include <common.h>
Simon Glass7b51b572019-08-01 09:46:52 -060011#include <env.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060012#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070014#include <malloc.h>
Simon Glass3db71102019-11-14 12:57:16 -070015#include <u-boot/crc.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010016
17#ifdef CONFIG_SHOW_BOOT_PROGRESS
18#include <status_led.h>
19#endif
20
Marian Balakowicz2242f532008-02-21 17:27:41 +010021#include <rtc.h>
Marian Balakowicz2242f532008-02-21 17:27:41 +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>
Marian Balakowiczc8779642008-03-12 10:12:37 +010026#endif
27
Simon Glass401d1c42020-10-30 21:38:53 -060028#include <asm/global_data.h>
Andy Fleming20a14a42008-04-02 16:19:07 -050029#include <u-boot/md5.h>
Jeroen Hofstee2b9912e2014-06-12 22:27:12 +020030#include <u-boot/sha1.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090031#include <linux/errno.h>
Simon Glass35e7b0f2013-05-07 06:12:03 +000032#include <asm/io.h>
Marian Balakowiczc8779642008-03-12 10:12:37 +010033
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010034#ifdef CONFIG_CMD_BDI
Simon Glass09140112020-05-10 11:40:03 -060035extern int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
36 char *const argv[]);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010037#endif
38
39DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010040
Simon Glass458b30a2021-09-25 07:03:14 -060041/* Set this if we have less than 4 MB of malloc() space */
42#if CONFIG_SYS_MALLOC_LEN < (4096 * 1024)
43#define CONSERVE_MEMORY true
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010044#else
Simon Glass458b30a2021-09-25 07:03:14 -060045#define CONSERVE_MEMORY false
46#endif
47
48#else /* USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010049#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050050#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010051#include <time.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020052
53#ifndef __maybe_unused
54# define __maybe_unused /* unimplemented */
55#endif
Simon Glass458b30a2021-09-25 07:03:14 -060056
57#define CONSERVE_MEMORY false
58
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010059#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010060
Simon Glass458b30a2021-09-25 07:03:14 -060061#include <abuf.h>
62#include <bzlib.h>
63#include <gzip.h>
Simon Glass41506ff2021-09-25 07:03:15 -060064#include <image.h>
Simon Glass458b30a2021-09-25 07:03:14 -060065#include <lz4.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000066#include <imximage.h>
Simon Glass458b30a2021-09-25 07:03:14 -060067#include <linux/lzo.h>
68#include <linux/zstd.h>
69#include <linux/kconfig.h>
70#include <lzma/LzmaTypes.h>
71#include <lzma/LzmaDec.h>
72#include <lzma/LzmaTools.h>
73#include <u-boot/crc.h>
Simon Glass0ccff502013-02-24 17:33:25 +000074
Mike Frysinger7edb1862010-10-20 07:17:39 -040075static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060076 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010077 { IH_ARCH_ALPHA, "alpha", "Alpha", },
78 { IH_ARCH_ARM, "arm", "ARM", },
79 { IH_ARCH_I386, "x86", "Intel x86", },
80 { IH_ARCH_IA64, "ia64", "IA64", },
81 { IH_ARCH_M68K, "m68k", "M68K", },
82 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
83 { IH_ARCH_MIPS, "mips", "MIPS", },
84 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010085 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070086 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010087 { IH_ARCH_PPC, "ppc", "PowerPC", },
88 { IH_ARCH_S390, "s390", "IBM S390", },
89 { IH_ARCH_SH, "sh", "SuperH", },
90 { IH_ARCH_SPARC, "sparc", "SPARC", },
91 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
92 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
93 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000094 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000095 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000096 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080097 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040098 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060099 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300100 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +0800101 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100102 { -1, "", "", },
103};
104
Mike Frysinger7edb1862010-10-20 07:17:39 -0400105static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600106 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200107 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100108 { IH_OS_LINUX, "linux", "Linux", },
109#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
110 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
111#endif
112 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200113 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000114 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000116 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100117 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800118 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100119#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
120 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100121#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500122#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
123 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
124#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100125#ifdef USE_HOSTCC
126 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
127 { IH_OS_DELL, "dell", "Dell", },
128 { IH_OS_ESIX, "esix", "Esix", },
129 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
130 { IH_OS_IRIX, "irix", "Irix", },
131 { IH_OS_NCR, "ncr", "NCR", },
132 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
133 { IH_OS_PSOS, "psos", "pSOS", },
134 { IH_OS_SCO, "sco", "SCO", },
135 { IH_OS_SOLARIS, "solaris", "Solaris", },
136 { IH_OS_SVR4, "svr4", "SVR4", },
137#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100138#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
139 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
140#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200141 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200142 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100143
Marian Balakowicz570abb02008-02-29 15:59:59 +0100144 { -1, "", "", },
145};
146
Mike Frysinger7edb1862010-10-20 07:17:39 -0400147static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000148 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100149 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
150 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400151 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400152 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100153 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700154 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000155 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
156 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000157 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000158 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600159 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100160 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000161 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000162 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100163 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
164 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200165 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
166 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100167 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000168 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200169 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200170 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600171 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200172 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600173 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600174 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600175 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200176 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000177 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200178 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200179 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200180 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600181 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100182 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500183 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100184 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800185 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200186 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywara6d295092018-12-20 01:15:18 +0000187 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100188 { -1, "", "", },
189};
190
Mike Frysinger7edb1862010-10-20 07:17:39 -0400191static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100192 { IH_COMP_NONE, "none", "uncompressed", },
193 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
194 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200195 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100196 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700197 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Marko26073f92020-04-25 19:37:21 +0200198 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100199 { -1, "", "", },
200};
201
Simon Glass56d7ab72016-06-30 10:52:14 -0600202struct table_info {
203 const char *desc;
204 int count;
205 const table_entry_t *table;
206};
207
Atish Patra155d6a32020-03-05 16:24:22 -0800208static const struct comp_magic_map image_comp[] = {
209 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
210 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
211 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
212 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkin2ddb8fc2021-08-31 18:22:18 +0800213 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
214 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra155d6a32020-03-05 16:24:22 -0800215 { IH_COMP_NONE, "none", {}, },
216};
217
Simon Glass56d7ab72016-06-30 10:52:14 -0600218static const struct table_info table_info[IH_COUNT] = {
219 { "architecture", IH_ARCH_COUNT, uimage_arch },
220 { "compression", IH_COMP_COUNT, uimage_comp },
221 { "operating system", IH_OS_COUNT, uimage_os },
222 { "image type", IH_TYPE_COUNT, uimage_type },
223};
224
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100225/*****************************************************************************/
226/* Legacy format routines */
227/*****************************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000228int image_check_hcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100229{
230 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000231 ulong len = image_get_header_size();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100232 image_header_t header;
233
234 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235 memmove(&header, (char *)hdr, image_get_header_size());
236 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100237
Stephen Warren712fbcf2011-10-18 11:11:49 +0000238 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100239
Stephen Warren712fbcf2011-10-18 11:11:49 +0000240 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100241}
242
Stephen Warren712fbcf2011-10-18 11:11:49 +0000243int image_check_dcrc(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100244{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000245 ulong data = image_get_data(hdr);
246 ulong len = image_get_data_size(hdr);
247 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100248
Stephen Warren712fbcf2011-10-18 11:11:49 +0000249 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100250}
251
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100252/**
253 * image_multi_count - get component (sub-image) count
254 * @hdr: pointer to the header of the multi component image
255 *
256 * image_multi_count() returns number of components in a multi
257 * component image.
258 *
259 * Note: no checking of the image type is done, caller must pass
260 * a valid multi component image.
261 *
262 * returns:
263 * number of components
264 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100266{
267 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100268 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100269
270 /* get start of the image payload, which in case of multi
271 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000272 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100273
274 /* count non empty slots */
275 for (i = 0; size[i]; ++i)
276 count++;
277
278 return count;
279}
280
281/**
282 * image_multi_getimg - get component data address and size
283 * @hdr: pointer to the header of the multi component image
284 * @idx: index of the requested component
285 * @data: pointer to a ulong variable, will hold component data address
286 * @len: pointer to a ulong variable, will hold component size
287 *
288 * image_multi_getimg() returns size and data address for the requested
289 * component in a multi component image.
290 *
291 * Note: no checking of the image type is done, caller must pass
292 * a valid multi component image.
293 *
294 * returns:
295 * data address and size of the component, if idx is valid
296 * 0 in data and len, if idx is out of range
297 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000298void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100299 ulong *data, ulong *len)
300{
301 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100302 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700303 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100304
305 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000306 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100307
308 /* get start of the image payload, which in case of multi
309 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000310 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100311
312 /* get address of the proper component data start, which means
313 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000314 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100315
316 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000317 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100318 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100319
320 /* go over all indices preceding requested component idx */
321 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700322 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100324 }
325
326 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700327 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100328 } else {
329 *len = 0;
330 *data = 0;
331 }
332}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100333
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334static void image_print_type(const image_header_t *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100335{
Heiko Schocher80402f32015-06-29 09:10:46 +0200336 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100337
Stephen Warren712fbcf2011-10-18 11:11:49 +0000338 os = genimg_get_os_name(image_get_os(hdr));
339 arch = genimg_get_arch_name(image_get_arch(hdr));
340 type = genimg_get_type_name(image_get_type(hdr));
341 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100342
Stephen Warren712fbcf2011-10-18 11:11:49 +0000343 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100344}
345
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100346/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200347 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200348 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100349 * @p: pointer to prefix string
350 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200351 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100352 * The routine prints out all header fields followed by the size/offset data
353 * for MULTI/SCRIPT images.
354 *
355 * returns:
356 * no returned results
357 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000358void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100359{
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200360 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200361 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200362
Simon Glass1fe7d932013-05-08 08:05:58 +0000363 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000364 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000365 if (IMAGE_ENABLE_TIMESTAMP) {
366 printf("%sCreated: ", p);
367 genimg_print_time((time_t)image_get_time(hdr));
368 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000369 printf("%sImage Type: ", p);
370 image_print_type(hdr);
371 printf("%sData Size: ", p);
372 genimg_print_size(image_get_data_size(hdr));
373 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
374 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100375
Stephen Warren712fbcf2011-10-18 11:11:49 +0000376 if (image_check_type(hdr, IH_TYPE_MULTI) ||
377 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100378 int i;
379 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100381
Stephen Warren712fbcf2011-10-18 11:11:49 +0000382 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100383 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000384 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100385
Stephen Warren712fbcf2011-10-18 11:11:49 +0000386 printf("%s Image %d: ", p, i);
387 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100388
Stephen Warren712fbcf2011-10-18 11:11:49 +0000389 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100390 /*
391 * the user may need to know offsets
392 * if planning to do something with
393 * multiple files
394 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000395 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100396 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100397 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100398 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
399 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000400 image_get_load(hdr) - image_get_header_size(),
401 (int)(image_get_size(hdr) + image_get_header_size()
402 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100403 }
404}
405
Julius Werner20908542019-07-24 19:37:54 -0700406/**
407 * print_decomp_msg() - Print a suitable decompression/loading message
408 *
409 * @type: OS type (IH_OS_...)
410 * @comp_type: Compression type being used (IH_COMP_...)
411 * @is_xip: true if the load address matches the image start
412 */
413static void print_decomp_msg(int comp_type, int type, bool is_xip)
414{
415 const char *name = genimg_get_type_name(type);
416
417 if (comp_type == IH_COMP_NONE)
418 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
419 else
420 printf(" Uncompressing %s\n", name);
421}
422
Atish Patra155d6a32020-03-05 16:24:22 -0800423int image_decomp_type(const unsigned char *buf, ulong len)
424{
425 const struct comp_magic_map *cmagic = image_comp;
426
427 if (len < 2)
428 return -EINVAL;
429
430 for (; cmagic->comp_id > 0; cmagic++) {
431 if (!memcmp(buf, cmagic->magic, 2))
432 break;
433 }
434
435 return cmagic->comp_id;
436}
437
Julius Werner20908542019-07-24 19:37:54 -0700438int image_decomp(int comp, ulong load, ulong image_start, int type,
439 void *load_buf, void *image_buf, ulong image_len,
440 uint unc_len, ulong *load_end)
441{
Simon Glassb876eb82021-09-25 07:03:11 -0600442 int ret = -ENOSYS;
Julius Werner20908542019-07-24 19:37:54 -0700443
444 *load_end = load;
445 print_decomp_msg(comp, type, load == image_start);
446
447 /*
448 * Load the image to the right place, decompressing if needed. After
449 * this, image_len will be set to the number of uncompressed bytes
450 * loaded, ret will be non-zero on error.
451 */
452 switch (comp) {
453 case IH_COMP_NONE:
Simon Glassb876eb82021-09-25 07:03:11 -0600454 ret = 0;
Julius Werner20908542019-07-24 19:37:54 -0700455 if (load == image_start)
456 break;
457 if (image_len <= unc_len)
458 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
459 else
460 ret = -ENOSPC;
461 break;
Simon Glass458b30a2021-09-25 07:03:14 -0600462 case IH_COMP_GZIP:
463 if (!host_build() && CONFIG_IS_ENABLED(GZIP))
464 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
Julius Werner20908542019-07-24 19:37:54 -0700465 break;
Simon Glass458b30a2021-09-25 07:03:14 -0600466 case IH_COMP_BZIP2:
467 if (!host_build() && CONFIG_IS_ENABLED(BZIP2)) {
468 uint size = unc_len;
Julius Werner20908542019-07-24 19:37:54 -0700469
Simon Glass458b30a2021-09-25 07:03:14 -0600470 /*
471 * If we've got less than 4 MB of malloc() space,
472 * use slower decompression algorithm which requires
473 * at most 2300 KB of memory.
474 */
475 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
476 image_buf, image_len, CONSERVE_MEMORY, 0);
477 image_len = size;
Robert Marko26073f92020-04-25 19:37:21 +0200478 }
Robert Marko26073f92020-04-25 19:37:21 +0200479 break;
Simon Glass458b30a2021-09-25 07:03:14 -0600480 case IH_COMP_LZMA:
481 if (!host_build() && CONFIG_IS_ENABLED(LZMA)) {
482 SizeT lzma_len = unc_len;
483
484 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
485 image_buf, image_len);
486 image_len = lzma_len;
487 }
488 break;
489 case IH_COMP_LZO:
490 if (!host_build() && CONFIG_IS_ENABLED(LZO)) {
491 size_t size = unc_len;
492
493 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
494 image_len = size;
495 }
496 break;
497 case IH_COMP_LZ4:
498 if (!host_build() && CONFIG_IS_ENABLED(LZ4)) {
499 size_t size = unc_len;
500
501 ret = ulz4fn(image_buf, image_len, load_buf, &size);
502 image_len = size;
503 }
504 break;
505 case IH_COMP_ZSTD:
506 if (!host_build() && CONFIG_IS_ENABLED(ZSTD)) {
507 struct abuf in, out;
508
509 abuf_init_set(&in, image_buf, image_len);
510 abuf_init_set(&in, load_buf, unc_len);
511 ret = zstd_decompress(&in, &out);
512 if (ret >= 0) {
513 image_len = ret;
514 ret = 0;
515 }
516 }
517 break;
Julius Werner20908542019-07-24 19:37:54 -0700518 }
Simon Glassb876eb82021-09-25 07:03:11 -0600519 if (ret == -ENOSYS) {
520 printf("Unimplemented compression type %d\n", comp);
521 return ret;
522 }
523 if (ret)
524 return ret;
Julius Werner20908542019-07-24 19:37:54 -0700525
526 *load_end = load + image_len;
527
Simon Glassb876eb82021-09-25 07:03:11 -0600528 return 0;
Julius Werner20908542019-07-24 19:37:54 -0700529}
530
Simon Glass41506ff2021-09-25 07:03:15 -0600531#ifdef USE_HOSTCC
Julius Werner20908542019-07-24 19:37:54 -0700532void memmove_wd(void *to, void *from, size_t len, ulong chunksz)
533{
534 memmove(to, from, len);
535}
Marian Balakowicz570abb02008-02-29 15:59:59 +0100536#endif /* !USE_HOSTCC */
537
Stephen Warren712fbcf2011-10-18 11:11:49 +0000538void genimg_print_size(uint32_t size)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100539{
540#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000541 printf("%d Bytes = ", size);
542 print_size(size, "\n");
Marian Balakowicz570abb02008-02-29 15:59:59 +0100543#else
xypron.glpk@gmx.decec85d42017-01-04 14:04:44 +0100544 printf("%d Bytes = %.2f KiB = %.2f MiB\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100545 size, (double)size / 1.024e3,
546 (double)size / 1.048576e6);
547#endif
548}
549
Simon Glass859e92b2013-05-07 06:11:51 +0000550#if IMAGE_ENABLE_TIMESTAMP
551void genimg_print_time(time_t timestamp)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100552{
553#ifndef USE_HOSTCC
554 struct rtc_time tm;
555
Simon Glass9f9276c2015-04-20 12:37:18 -0600556 rtc_to_tm(timestamp, &tm);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000557 printf("%4d-%02d-%02d %2d:%02d:%02d UTC\n",
Marian Balakowicz570abb02008-02-29 15:59:59 +0100558 tm.tm_year, tm.tm_mon, tm.tm_mday,
559 tm.tm_hour, tm.tm_min, tm.tm_sec);
560#else
Stephen Warren712fbcf2011-10-18 11:11:49 +0000561 printf("%s", ctime(&timestamp));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100562#endif
563}
Simon Glass859e92b2013-05-07 06:11:51 +0000564#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100565
Simon Glass5b9d44d2015-06-23 15:38:25 -0600566const table_entry_t *get_table_entry(const table_entry_t *table, int id)
567{
568 for (; table->id >= 0; ++table) {
569 if (table->id == id)
570 return table;
571 }
572 return NULL;
573}
574
Simon Glass14262202016-06-30 10:52:16 -0600575static const char *unknown_msg(enum ih_category category)
576{
Simon Glassae3de0d2016-10-31 10:21:09 -0600577 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600578 static char msg[30];
579
Simon Glassae3de0d2016-10-31 10:21:09 -0600580 strcpy(msg, unknown_str);
581 strncat(msg, table_info[category].desc,
582 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600583
584 return msg;
585}
586
587/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900588 * genimg_get_cat_name - translate entry id to long name
Simon Glass14262202016-06-30 10:52:16 -0600589 * @category: category to look up (enum ih_category)
590 * @id: entry id to be translated
591 *
592 * This will scan the translation table trying to find the entry that matches
593 * the given id.
594 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900595 * @return long entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600596 */
597const char *genimg_get_cat_name(enum ih_category category, uint id)
598{
599 const table_entry_t *entry;
600
601 entry = get_table_entry(table_info[category].table, id);
602 if (!entry)
603 return unknown_msg(category);
604#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
605 return entry->lname;
606#else
607 return entry->lname + gd->reloc_off;
608#endif
609}
610
611/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900612 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass14262202016-06-30 10:52:16 -0600613 * @category: category to look up (enum ih_category)
614 * @id: entry id to be translated
615 *
616 * This will scan the translation table trying to find the entry that matches
617 * the given id.
618 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900619 * @return short entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600620 */
621const char *genimg_get_cat_short_name(enum ih_category category, uint id)
622{
623 const table_entry_t *entry;
624
625 entry = get_table_entry(table_info[category].table, id);
626 if (!entry)
627 return unknown_msg(category);
628#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
629 return entry->sname;
630#else
631 return entry->sname + gd->reloc_off;
632#endif
633}
634
635int genimg_get_cat_count(enum ih_category category)
636{
637 return table_info[category].count;
638}
639
640const char *genimg_get_cat_desc(enum ih_category category)
641{
642 return table_info[category].desc;
643}
644
Marian Balakowicz570abb02008-02-29 15:59:59 +0100645/**
Naoki Hayama02d41b02020-10-07 11:21:25 +0900646 * genimg_cat_has_id - check whether category has entry id
647 * @category: category to look up (enum ih_category)
648 * @id: entry id to be checked
649 *
650 * This will scan the translation table trying to find the entry that matches
651 * the given id.
652 *
653 * @return true if category has entry id; false if not
654 */
655bool genimg_cat_has_id(enum ih_category category, uint id)
656{
657 if (get_table_entry(table_info[category].table, id))
658 return true;
659
660 return false;
661}
662
663/**
Marian Balakowicz570abb02008-02-29 15:59:59 +0100664 * get_table_entry_name - translate entry id to long name
665 * @table: pointer to a translation table for entries of a specific type
666 * @msg: message to be returned when translation fails
667 * @id: entry id to be translated
668 *
669 * get_table_entry_name() will go over translation table trying to find
670 * entry that matches given id. If matching entry is found, its long
671 * name is returned to the caller.
672 *
673 * returns:
674 * long entry name if translation succeeds
675 * msg otherwise
676 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400677char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100678{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600679 table = get_table_entry(table, id);
680 if (!table)
681 return msg;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200682#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600683 return table->lname;
Scott Woode3d1ac72009-04-02 16:15:10 -0500684#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600685 return table->lname + gd->reloc_off;
Scott Woode3d1ac72009-04-02 16:15:10 -0500686#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100687}
688
Stephen Warren712fbcf2011-10-18 11:11:49 +0000689const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100690{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000691 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100692}
693
Stephen Warren712fbcf2011-10-18 11:11:49 +0000694const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100695{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000696 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
697 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100698}
699
Stephen Warren712fbcf2011-10-18 11:11:49 +0000700const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100701{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000702 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100703}
704
Naoki Hayama898a0842020-10-07 11:22:24 +0900705const char *genimg_get_comp_name(uint8_t comp)
706{
707 return (get_table_entry_name(uimage_comp, "Unknown Compression",
708 comp));
709}
710
Simon Glasscef2e512016-02-22 22:55:50 -0700711static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600712{
Simon Glasscef2e512016-02-22 22:55:50 -0700713 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600714 if (!table)
715 return "unknown";
716#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
717 return table->sname;
718#else
719 return table->sname + gd->reloc_off;
720#endif
721}
722
Simon Glasscef2e512016-02-22 22:55:50 -0700723const char *genimg_get_type_short_name(uint8_t type)
724{
725 return genimg_get_short_name(uimage_type, type);
726}
727
Simon Glasscef2e512016-02-22 22:55:50 -0700728const char *genimg_get_comp_short_name(uint8_t comp)
729{
730 return genimg_get_short_name(uimage_comp, comp);
731}
732
733const char *genimg_get_os_short_name(uint8_t os)
734{
735 return genimg_get_short_name(uimage_os, os);
736}
737
738const char *genimg_get_arch_short_name(uint8_t arch)
739{
740 return genimg_get_short_name(uimage_arch, arch);
741}
742
Marian Balakowicz570abb02008-02-29 15:59:59 +0100743/**
744 * get_table_entry_id - translate short entry name to id
745 * @table: pointer to a translation table for entries of a specific type
746 * @table_name: to be used in case of error
747 * @name: entry short name to be translated
748 *
749 * get_table_entry_id() will go over translation table trying to find
750 * entry that matches given short name. If matching entry is found,
751 * its id returned to the caller.
752 *
753 * returns:
754 * entry id if translation succeeds
755 * -1 otherwise
756 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400757int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100758 const char *table_name, const char *name)
759{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400760 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100761
762 for (t = table; t->id >= 0; ++t) {
Simon Glass458b30a2021-09-25 07:03:14 -0600763#if !defined(USE_HOSTCC) && defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600764 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200765#else
Simon Glass5b9d44d2015-06-23 15:38:25 -0600766 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser521af042009-09-21 11:20:36 -0500767#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100768 return (t->id);
769 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000770 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600771
772 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100773}
774
Stephen Warren712fbcf2011-10-18 11:11:49 +0000775int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100776{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000777 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100778}
779
Stephen Warren712fbcf2011-10-18 11:11:49 +0000780int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100781{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000782 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100783}
784
Stephen Warren712fbcf2011-10-18 11:11:49 +0000785int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100786{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000787 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100788}
789
Stephen Warren712fbcf2011-10-18 11:11:49 +0000790int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100791{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000792 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100793}