blob: 675b5dd77f946527d35942ddac8ee405d53241c8 [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 Glass4e4bf942022-07-31 12:28:48 -060012#include <display_options.h>
Andy Shevchenko4b325312021-11-08 21:03:38 +030013#include <init.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060014#include <lmb.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070016#include <malloc.h>
Simon Glass3db71102019-11-14 12:57:16 -070017#include <u-boot/crc.h>
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010018
19#ifdef CONFIG_SHOW_BOOT_PROGRESS
20#include <status_led.h>
21#endif
22
Simon Glass0c303f92021-09-25 19:43:21 -060023#if CONFIG_IS_ENABLED(FIT) || CONFIG_IS_ENABLED(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 +010034DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010035
Simon Glass458b30a2021-09-25 07:03:14 -060036/* Set this if we have less than 4 MB of malloc() space */
37#if CONFIG_SYS_MALLOC_LEN < (4096 * 1024)
38#define CONSERVE_MEMORY true
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010039#else
Simon Glass458b30a2021-09-25 07:03:14 -060040#define CONSERVE_MEMORY false
41#endif
42
43#else /* USE_HOSTCC */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010044#include "mkimage.h"
Andy Fleming20a14a42008-04-02 16:19:07 -050045#include <u-boot/md5.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010046#include <time.h>
Heiko Schocher80402f32015-06-29 09:10:46 +020047
48#ifndef __maybe_unused
49# define __maybe_unused /* unimplemented */
50#endif
Simon Glass458b30a2021-09-25 07:03:14 -060051
52#define CONSERVE_MEMORY false
53
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010054#endif /* !USE_HOSTCC*/
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010055
Simon Glass458b30a2021-09-25 07:03:14 -060056#include <abuf.h>
57#include <bzlib.h>
Simon Glass5d3248a2021-09-25 07:03:17 -060058#include <display_options.h>
Simon Glass458b30a2021-09-25 07:03:14 -060059#include <gzip.h>
Simon Glass41506ff2021-09-25 07:03:15 -060060#include <image.h>
Breno Matheus Lima5b20d142019-09-23 18:39:47 +000061#include <imximage.h>
Simon Glass2ac00c02021-09-25 07:03:18 -060062#include <relocate.h>
Simon Glass458b30a2021-09-25 07:03:14 -060063#include <linux/lzo.h>
64#include <linux/zstd.h>
65#include <linux/kconfig.h>
66#include <lzma/LzmaTypes.h>
67#include <lzma/LzmaDec.h>
68#include <lzma/LzmaTools.h>
69#include <u-boot/crc.h>
Simon Glass2a2d8e92021-10-09 09:28:21 -060070#include <u-boot/lz4.h>
Simon Glass0ccff502013-02-24 17:33:25 +000071
Mike Frysinger7edb1862010-10-20 07:17:39 -040072static const table_entry_t uimage_arch[] = {
Simon Glass30495bf2016-06-30 10:52:15 -060073 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010074 { IH_ARCH_ALPHA, "alpha", "Alpha", },
75 { IH_ARCH_ARM, "arm", "ARM", },
76 { IH_ARCH_I386, "x86", "Intel x86", },
77 { IH_ARCH_IA64, "ia64", "IA64", },
78 { IH_ARCH_M68K, "m68k", "M68K", },
79 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
80 { IH_ARCH_MIPS, "mips", "MIPS", },
81 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010082 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Ericksone419e122008-05-04 16:45:01 -070083 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010084 { IH_ARCH_PPC, "ppc", "PowerPC", },
85 { IH_ARCH_S390, "s390", "IBM S390", },
86 { IH_ARCH_SH, "sh", "SuperH", },
87 { IH_ARCH_SPARC, "sparc", "SPARC", },
88 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
89 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
90 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin64d61462011-10-19 20:41:09 +000091 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson3ddcacc2011-11-26 19:04:50 +000092 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass35e7b0f2013-05-07 06:12:03 +000093 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng0ae76532013-12-14 11:47:35 +080094 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkinbc5d5422014-02-04 12:56:16 +040095 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass5bda35c2014-10-10 08:21:57 -060096 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankelde5e5ce2016-08-10 18:36:43 +030097 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chen86aa65a2018-03-13 13:37:29 +080098 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowicz570abb02008-02-29 15:59:59 +010099 { -1, "", "", },
100};
101
Mike Frysinger7edb1862010-10-20 07:17:39 -0400102static const table_entry_t uimage_os[] = {
Simon Glass30495bf2016-06-30 10:52:15 -0600103 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich4914af12017-09-13 21:29:29 +0200104 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100105 { IH_OS_LINUX, "linux", "Linux", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100106 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren3df61952010-09-28 11:05:36 +0200107 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion04d41402013-03-20 06:31:35 +0000108 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100109 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000110 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100111 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com68b15e82013-12-27 16:01:50 +0800112 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100113#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
114 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100115#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500116#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
117 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
118#endif
Marian Balakowicz570abb02008-02-29 15:59:59 +0100119#ifdef USE_HOSTCC
120 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
121 { IH_OS_DELL, "dell", "Dell", },
122 { IH_OS_ESIX, "esix", "Esix", },
123 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
124 { IH_OS_IRIX, "irix", "Irix", },
125 { IH_OS_NCR, "ncr", "NCR", },
126 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
127 { IH_OS_PSOS, "psos", "pSOS", },
128 { IH_OS_SCO, "sco", "SCO", },
129 { IH_OS_SOLARIS, "solaris", "Solaris", },
130 { IH_OS_SVR4, "svr4", "SVR4", },
131#endif
Marek Vasut67ddd952014-12-16 14:07:21 +0100132#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
133 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
134#endif
Lukas Auer5e30e452019-08-21 21:14:44 +0200135 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200136 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut67ddd952014-12-16 14:07:21 +0100137
Marian Balakowicz570abb02008-02-29 15:59:59 +0100138 { -1, "", "", },
139};
140
Mike Frysinger7edb1862010-10-20 07:17:39 -0400141static const table_entry_t uimage_type[] = {
Stefano Babic4962e382011-10-17 00:07:43 +0000142 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100143 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
144 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby3decb142011-07-21 09:10:30 -0400145 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharanbf411ea2014-04-04 13:16:48 -0400146 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100147 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700148 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic4962e382011-10-17 00:07:43 +0000149 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
150 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fana2b96ec2018-10-16 04:50:30 +0000151 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan6609c262018-11-20 10:19:36 +0000152 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glass30495bf2016-06-30 10:52:15 -0600153 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100154 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic4962e382011-10-17 00:07:43 +0000155 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xie5d898a02012-08-10 02:49:35 +0000156 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100157 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
158 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut662abc42018-04-15 13:15:33 +0200159 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
160 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowicz570abb02008-02-29 15:59:59 +0100161 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher7816f2c2011-07-16 00:06:42 +0000162 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasutbce88372013-08-26 20:43:33 +0200163 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7b1a4112014-05-19 14:23:39 +0200164 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass90268b82014-10-19 21:11:24 -0600165 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)39f520b2015-03-31 11:40:49 +0200166 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassa131c1f2015-08-30 16:55:24 -0600167 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glassf9a3c272015-08-30 16:55:25 -0600168 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glass10b84fe2015-08-30 16:55:26 -0600169 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200170 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossi66eef1e2015-11-17 22:56:56 +1000171 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekd9b58b32016-04-27 14:03:29 +0200172 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf6915dcf2018-04-13 14:18:52 +0200173 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simeked0cea72016-05-17 13:58:44 +0200174 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600175 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100176 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis6442c962017-07-31 10:58:20 -0500177 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunay81260e32018-03-12 10:46:04 +0100178 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
Ryder Lee3b975a12018-11-15 10:07:49 +0800179 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200180 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywara6d295092018-12-20 01:15:18 +0000181 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Samuel Hollande9e87ec2022-03-18 00:00:43 -0500182 { IH_TYPE_SUNXI_TOC0, "sunxi_toc0", "Allwinner TOC0 Boot Image" },
Marc Kleine-Budde28f924f2022-11-23 12:55:33 +0100183 { IH_TYPE_FDT_LEGACY, "fdt_legacy", "legacy Image with Flat Device Tree ", },
Ralph Siemsenafdfcb12023-05-12 21:36:57 -0400184 { IH_TYPE_RENESAS_SPKG, "spkgimage", "Renesas SPKG Image" },
Heinrich Schuchardt64fd30d2023-09-17 13:47:30 +0200185 { IH_TYPE_STARFIVE_SPL, "sfspl", "StarFive SPL Image" },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100186 { -1, "", "", },
187};
188
Mike Frysinger7edb1862010-10-20 07:17:39 -0400189static const table_entry_t uimage_comp[] = {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100190 { IH_COMP_NONE, "none", "uncompressed", },
191 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
192 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200193 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaard20dde482009-11-19 11:37:51 +0100194 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Werner027b7282015-10-06 20:03:53 -0700195 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Marko26073f92020-04-25 19:37:21 +0200196 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowicz570abb02008-02-29 15:59:59 +0100197 { -1, "", "", },
198};
199
Simon Glass44ad35a2022-10-20 18:23:03 -0600200static const table_entry_t uimage_phase[] = {
201 { IH_PHASE_NONE, "none", "any", },
202 { IH_PHASE_U_BOOT, "u-boot", "U-Boot phase", },
203 { IH_PHASE_SPL, "spl", "SPL Phase", },
204 { -1, "", "", },
205};
206
Simon Glass56d7ab72016-06-30 10:52:14 -0600207struct table_info {
208 const char *desc;
209 int count;
210 const table_entry_t *table;
211};
212
Atish Patra155d6a32020-03-05 16:24:22 -0800213static const struct comp_magic_map image_comp[] = {
214 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
215 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
216 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
217 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkin2ddb8fc2021-08-31 18:22:18 +0800218 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
219 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra155d6a32020-03-05 16:24:22 -0800220 { IH_COMP_NONE, "none", {}, },
221};
222
Simon Glass56d7ab72016-06-30 10:52:14 -0600223static const struct table_info table_info[IH_COUNT] = {
224 { "architecture", IH_ARCH_COUNT, uimage_arch },
225 { "compression", IH_COMP_COUNT, uimage_comp },
226 { "operating system", IH_OS_COUNT, uimage_os },
227 { "image type", IH_TYPE_COUNT, uimage_type },
Simon Glass44ad35a2022-10-20 18:23:03 -0600228 { "phase", IH_PHASE_COUNT, uimage_phase },
Simon Glass56d7ab72016-06-30 10:52:14 -0600229};
230
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100231/*****************************************************************************/
232/* Legacy format routines */
233/*****************************************************************************/
Simon Glassf3543e62022-09-06 20:26:52 -0600234int image_check_hcrc(const struct legacy_img_hdr *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100235{
236 ulong hcrc;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000237 ulong len = image_get_header_size();
Simon Glassf3543e62022-09-06 20:26:52 -0600238 struct legacy_img_hdr header;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100239
240 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000241 memmove(&header, (char *)hdr, image_get_header_size());
242 image_set_hcrc(&header, 0);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100243
Stephen Warren712fbcf2011-10-18 11:11:49 +0000244 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100245
Stephen Warren712fbcf2011-10-18 11:11:49 +0000246 return (hcrc == image_get_hcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100247}
248
Simon Glassf3543e62022-09-06 20:26:52 -0600249int image_check_dcrc(const struct legacy_img_hdr *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100250{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000251 ulong data = image_get_data(hdr);
252 ulong len = image_get_data_size(hdr);
253 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100254
Stephen Warren712fbcf2011-10-18 11:11:49 +0000255 return (dcrc == image_get_dcrc(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100256}
257
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100258/**
259 * image_multi_count - get component (sub-image) count
260 * @hdr: pointer to the header of the multi component image
261 *
262 * image_multi_count() returns number of components in a multi
263 * component image.
264 *
265 * Note: no checking of the image type is done, caller must pass
266 * a valid multi component image.
267 *
268 * returns:
269 * number of components
270 */
Simon Glassf3543e62022-09-06 20:26:52 -0600271ulong image_multi_count(const struct legacy_img_hdr *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100272{
273 ulong i, count = 0;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100274 uint32_t *size;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100275
276 /* get start of the image payload, which in case of multi
277 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000278 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100279
280 /* count non empty slots */
281 for (i = 0; size[i]; ++i)
282 count++;
283
284 return count;
285}
286
287/**
288 * image_multi_getimg - get component data address and size
289 * @hdr: pointer to the header of the multi component image
290 * @idx: index of the requested component
291 * @data: pointer to a ulong variable, will hold component data address
292 * @len: pointer to a ulong variable, will hold component size
293 *
294 * image_multi_getimg() returns size and data address for the requested
295 * component in a multi component image.
296 *
297 * Note: no checking of the image type is done, caller must pass
298 * a valid multi component image.
299 *
300 * returns:
301 * data address and size of the component, if idx is valid
302 * 0 in data and len, if idx is out of range
303 */
Simon Glassf3543e62022-09-06 20:26:52 -0600304void image_multi_getimg(const struct legacy_img_hdr *hdr, ulong idx,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100305 ulong *data, ulong *len)
306{
307 int i;
Marian Balakowiczdf6f1b82008-02-29 16:00:06 +0100308 uint32_t *size;
Nick Spence02b9b222008-05-10 14:02:04 -0700309 ulong offset, count, img_data;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100310
311 /* get number of component */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000312 count = image_multi_count(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100313
314 /* get start of the image payload, which in case of multi
315 * component images that points to a table of component sizes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100317
318 /* get address of the proper component data start, which means
319 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000320 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100321
322 if (idx < count) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000323 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100324 offset = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100325
326 /* go over all indices preceding requested component idx */
327 for (i = 0; i < idx; i++) {
Nick Spence02b9b222008-05-10 14:02:04 -0700328 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000329 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100330 }
331
332 /* calculate idx-th component data address */
Nick Spence02b9b222008-05-10 14:02:04 -0700333 *data = img_data + offset;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100334 } else {
335 *len = 0;
336 *data = 0;
337 }
338}
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100339
Simon Glassf3543e62022-09-06 20:26:52 -0600340static void image_print_type(const struct legacy_img_hdr *hdr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100341{
Heiko Schocher80402f32015-06-29 09:10:46 +0200342 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowicz2242f532008-02-21 17:27:41 +0100343
Stephen Warren712fbcf2011-10-18 11:11:49 +0000344 os = genimg_get_os_name(image_get_os(hdr));
345 arch = genimg_get_arch_name(image_get_arch(hdr));
346 type = genimg_get_type_name(image_get_type(hdr));
347 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100348
Stephen Warren712fbcf2011-10-18 11:11:49 +0000349 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100350}
351
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100352/**
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200353 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200354 * @ptr: pointer to the legacy format image header
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100355 * @p: pointer to prefix string
356 *
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200357 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100358 * The routine prints out all header fields followed by the size/offset data
359 * for MULTI/SCRIPT images.
360 *
361 * returns:
362 * no returned results
363 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000364void image_print_contents(const void *ptr)
Marian Balakowicz2242f532008-02-21 17:27:41 +0100365{
Simon Glassf3543e62022-09-06 20:26:52 -0600366 const struct legacy_img_hdr *hdr = (const struct legacy_img_hdr *)ptr;
Heiko Schocher80402f32015-06-29 09:10:46 +0200367 const char __maybe_unused *p;
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200368
Simon Glass1fe7d932013-05-08 08:05:58 +0000369 p = IMAGE_INDENT_STRING;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000370 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glass859e92b2013-05-07 06:11:51 +0000371 if (IMAGE_ENABLE_TIMESTAMP) {
372 printf("%sCreated: ", p);
373 genimg_print_time((time_t)image_get_time(hdr));
374 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000375 printf("%sImage Type: ", p);
376 image_print_type(hdr);
377 printf("%sData Size: ", p);
378 genimg_print_size(image_get_data_size(hdr));
379 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
380 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100381
Stephen Warren712fbcf2011-10-18 11:11:49 +0000382 if (image_check_type(hdr, IH_TYPE_MULTI) ||
383 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowicz2242f532008-02-21 17:27:41 +0100384 int i;
385 ulong data, len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000386 ulong count = image_multi_count(hdr);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100387
Stephen Warren712fbcf2011-10-18 11:11:49 +0000388 printf("%sContents:\n", p);
Marian Balakowicz2242f532008-02-21 17:27:41 +0100389 for (i = 0; i < count; i++) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000390 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100391
Stephen Warren712fbcf2011-10-18 11:11:49 +0000392 printf("%s Image %d: ", p, i);
393 genimg_print_size(len);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100394
Stephen Warren712fbcf2011-10-18 11:11:49 +0000395 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowicz570abb02008-02-29 15:59:59 +0100396 /*
397 * the user may need to know offsets
398 * if planning to do something with
399 * multiple files
400 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000401 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100402 }
Marian Balakowicz2242f532008-02-21 17:27:41 +0100403 }
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100404 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
405 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Lima5b20d142019-09-23 18:39:47 +0000406 image_get_load(hdr) - image_get_header_size(),
407 (int)(image_get_size(hdr) + image_get_header_size()
408 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowicz2242f532008-02-21 17:27:41 +0100409 }
410}
411
Julius Werner20908542019-07-24 19:37:54 -0700412/**
413 * print_decomp_msg() - Print a suitable decompression/loading message
414 *
415 * @type: OS type (IH_OS_...)
416 * @comp_type: Compression type being used (IH_COMP_...)
417 * @is_xip: true if the load address matches the image start
Simon Glass30ad6362023-11-19 07:43:32 -0700418 * @load: Load address for printing
Julius Werner20908542019-07-24 19:37:54 -0700419 */
Simon Glass30ad6362023-11-19 07:43:32 -0700420static void print_decomp_msg(int comp_type, int type, bool is_xip,
421 ulong load)
Julius Werner20908542019-07-24 19:37:54 -0700422{
423 const char *name = genimg_get_type_name(type);
424
Simon Glass30ad6362023-11-19 07:43:32 -0700425 /* Shows "Loading Kernel Image" for example */
Julius Werner20908542019-07-24 19:37:54 -0700426 if (comp_type == IH_COMP_NONE)
Simon Glass30ad6362023-11-19 07:43:32 -0700427 printf(" %s %s", is_xip ? "XIP" : "Loading", name);
Julius Werner20908542019-07-24 19:37:54 -0700428 else
Simon Glass30ad6362023-11-19 07:43:32 -0700429 printf(" Uncompressing %s", name);
430
431 printf(" to %lx\n", load);
Julius Werner20908542019-07-24 19:37:54 -0700432}
433
Atish Patra155d6a32020-03-05 16:24:22 -0800434int image_decomp_type(const unsigned char *buf, ulong len)
435{
436 const struct comp_magic_map *cmagic = image_comp;
437
438 if (len < 2)
439 return -EINVAL;
440
441 for (; cmagic->comp_id > 0; cmagic++) {
442 if (!memcmp(buf, cmagic->magic, 2))
443 break;
444 }
445
446 return cmagic->comp_id;
447}
448
Julius Werner20908542019-07-24 19:37:54 -0700449int image_decomp(int comp, ulong load, ulong image_start, int type,
450 void *load_buf, void *image_buf, ulong image_len,
451 uint unc_len, ulong *load_end)
452{
Simon Glassb876eb82021-09-25 07:03:11 -0600453 int ret = -ENOSYS;
Julius Werner20908542019-07-24 19:37:54 -0700454
455 *load_end = load;
Simon Glass30ad6362023-11-19 07:43:32 -0700456 print_decomp_msg(comp, type, load == image_start, load);
Julius Werner20908542019-07-24 19:37:54 -0700457
458 /*
459 * Load the image to the right place, decompressing if needed. After
460 * this, image_len will be set to the number of uncompressed bytes
461 * loaded, ret will be non-zero on error.
462 */
463 switch (comp) {
464 case IH_COMP_NONE:
Simon Glassb876eb82021-09-25 07:03:11 -0600465 ret = 0;
Julius Werner20908542019-07-24 19:37:54 -0700466 if (load == image_start)
467 break;
468 if (image_len <= unc_len)
469 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
470 else
471 ret = -ENOSPC;
472 break;
Simon Glass458b30a2021-09-25 07:03:14 -0600473 case IH_COMP_GZIP:
Simon Glassc9d6b5b2021-09-25 19:43:14 -0600474 if (!tools_build() && CONFIG_IS_ENABLED(GZIP))
Simon Glass458b30a2021-09-25 07:03:14 -0600475 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
Julius Werner20908542019-07-24 19:37:54 -0700476 break;
Simon Glass458b30a2021-09-25 07:03:14 -0600477 case IH_COMP_BZIP2:
Simon Glassc9d6b5b2021-09-25 19:43:14 -0600478 if (!tools_build() && CONFIG_IS_ENABLED(BZIP2)) {
Simon Glass458b30a2021-09-25 07:03:14 -0600479 uint size = unc_len;
Julius Werner20908542019-07-24 19:37:54 -0700480
Simon Glass458b30a2021-09-25 07:03:14 -0600481 /*
482 * If we've got less than 4 MB of malloc() space,
483 * use slower decompression algorithm which requires
484 * at most 2300 KB of memory.
485 */
486 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
487 image_buf, image_len, CONSERVE_MEMORY, 0);
488 image_len = size;
Robert Marko26073f92020-04-25 19:37:21 +0200489 }
Robert Marko26073f92020-04-25 19:37:21 +0200490 break;
Simon Glass458b30a2021-09-25 07:03:14 -0600491 case IH_COMP_LZMA:
Simon Glassc9d6b5b2021-09-25 19:43:14 -0600492 if (!tools_build() && CONFIG_IS_ENABLED(LZMA)) {
Simon Glass458b30a2021-09-25 07:03:14 -0600493 SizeT lzma_len = unc_len;
494
495 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
496 image_buf, image_len);
497 image_len = lzma_len;
498 }
499 break;
500 case IH_COMP_LZO:
Simon Glassc9d6b5b2021-09-25 19:43:14 -0600501 if (!tools_build() && CONFIG_IS_ENABLED(LZO)) {
Simon Glass458b30a2021-09-25 07:03:14 -0600502 size_t size = unc_len;
503
504 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
505 image_len = size;
506 }
507 break;
508 case IH_COMP_LZ4:
Simon Glassc9d6b5b2021-09-25 19:43:14 -0600509 if (!tools_build() && CONFIG_IS_ENABLED(LZ4)) {
Simon Glass458b30a2021-09-25 07:03:14 -0600510 size_t size = unc_len;
511
512 ret = ulz4fn(image_buf, image_len, load_buf, &size);
513 image_len = size;
514 }
515 break;
516 case IH_COMP_ZSTD:
Simon Glassc9d6b5b2021-09-25 19:43:14 -0600517 if (!tools_build() && CONFIG_IS_ENABLED(ZSTD)) {
Simon Glass458b30a2021-09-25 07:03:14 -0600518 struct abuf in, out;
519
520 abuf_init_set(&in, image_buf, image_len);
Jérôme Carretero408e2d52022-03-16 15:35:36 -0400521 abuf_init_set(&out, load_buf, unc_len);
Simon Glass458b30a2021-09-25 07:03:14 -0600522 ret = zstd_decompress(&in, &out);
523 if (ret >= 0) {
524 image_len = ret;
525 ret = 0;
526 }
527 }
528 break;
Julius Werner20908542019-07-24 19:37:54 -0700529 }
Simon Glassb876eb82021-09-25 07:03:11 -0600530 if (ret == -ENOSYS) {
531 printf("Unimplemented compression type %d\n", comp);
532 return ret;
533 }
534 if (ret)
535 return ret;
Julius Werner20908542019-07-24 19:37:54 -0700536
537 *load_end = load + image_len;
538
Simon Glassb876eb82021-09-25 07:03:11 -0600539 return 0;
Julius Werner20908542019-07-24 19:37:54 -0700540}
541
Simon Glass5b9d44d2015-06-23 15:38:25 -0600542const table_entry_t *get_table_entry(const table_entry_t *table, int id)
543{
544 for (; table->id >= 0; ++table) {
545 if (table->id == id)
546 return table;
547 }
548 return NULL;
549}
550
Simon Glass14262202016-06-30 10:52:16 -0600551static const char *unknown_msg(enum ih_category category)
552{
Simon Glassae3de0d2016-10-31 10:21:09 -0600553 static const char unknown_str[] = "Unknown ";
Simon Glass14262202016-06-30 10:52:16 -0600554 static char msg[30];
555
Simon Glassae3de0d2016-10-31 10:21:09 -0600556 strcpy(msg, unknown_str);
557 strncat(msg, table_info[category].desc,
558 sizeof(msg) - sizeof(unknown_str));
Simon Glass14262202016-06-30 10:52:16 -0600559
560 return msg;
561}
562
563/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900564 * genimg_get_cat_name - translate entry id to long name
Simon Glass14262202016-06-30 10:52:16 -0600565 * @category: category to look up (enum ih_category)
566 * @id: entry id to be translated
567 *
568 * This will scan the translation table trying to find the entry that matches
569 * the given id.
570 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100571 * Return: long entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600572 */
573const char *genimg_get_cat_name(enum ih_category category, uint id)
574{
575 const table_entry_t *entry;
576
577 entry = get_table_entry(table_info[category].table, id);
578 if (!entry)
579 return unknown_msg(category);
Marek Vasutba377a62023-09-06 23:29:59 +0200580 return entry->lname;
Simon Glass14262202016-06-30 10:52:16 -0600581}
582
583/**
Naoki Hayama898a0842020-10-07 11:22:24 +0900584 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass14262202016-06-30 10:52:16 -0600585 * @category: category to look up (enum ih_category)
586 * @id: entry id to be translated
587 *
588 * This will scan the translation table trying to find the entry that matches
589 * the given id.
590 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100591 * Return: short entry name if translation succeeds; error string on failure
Simon Glass14262202016-06-30 10:52:16 -0600592 */
593const char *genimg_get_cat_short_name(enum ih_category category, uint id)
594{
595 const table_entry_t *entry;
596
597 entry = get_table_entry(table_info[category].table, id);
598 if (!entry)
599 return unknown_msg(category);
Marek Vasutba377a62023-09-06 23:29:59 +0200600 return entry->sname;
Simon Glass14262202016-06-30 10:52:16 -0600601}
602
603int genimg_get_cat_count(enum ih_category category)
604{
605 return table_info[category].count;
606}
607
608const char *genimg_get_cat_desc(enum ih_category category)
609{
610 return table_info[category].desc;
611}
612
Marian Balakowicz570abb02008-02-29 15:59:59 +0100613/**
Naoki Hayama02d41b02020-10-07 11:21:25 +0900614 * genimg_cat_has_id - check whether category has entry id
615 * @category: category to look up (enum ih_category)
616 * @id: entry id to be checked
617 *
618 * This will scan the translation table trying to find the entry that matches
619 * the given id.
620 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100621 * Return: true if category has entry id; false if not
Naoki Hayama02d41b02020-10-07 11:21:25 +0900622 */
623bool genimg_cat_has_id(enum ih_category category, uint id)
624{
625 if (get_table_entry(table_info[category].table, id))
626 return true;
627
628 return false;
629}
630
631/**
Marian Balakowicz570abb02008-02-29 15:59:59 +0100632 * get_table_entry_name - translate entry id to long name
633 * @table: pointer to a translation table for entries of a specific type
634 * @msg: message to be returned when translation fails
635 * @id: entry id to be translated
636 *
637 * get_table_entry_name() will go over translation table trying to find
638 * entry that matches given id. If matching entry is found, its long
639 * name is returned to the caller.
640 *
641 * returns:
642 * long entry name if translation succeeds
643 * msg otherwise
644 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400645char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100646{
Simon Glass5b9d44d2015-06-23 15:38:25 -0600647 table = get_table_entry(table, id);
648 if (!table)
649 return msg;
Marek Vasutba377a62023-09-06 23:29:59 +0200650 return table->lname;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100651}
652
Stephen Warren712fbcf2011-10-18 11:11:49 +0000653const char *genimg_get_os_name(uint8_t os)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100654{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000655 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100656}
657
Stephen Warren712fbcf2011-10-18 11:11:49 +0000658const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100659{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000660 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
661 arch));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100662}
663
Stephen Warren712fbcf2011-10-18 11:11:49 +0000664const char *genimg_get_type_name(uint8_t type)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100665{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000666 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100667}
668
Naoki Hayama898a0842020-10-07 11:22:24 +0900669const char *genimg_get_comp_name(uint8_t comp)
670{
671 return (get_table_entry_name(uimage_comp, "Unknown Compression",
672 comp));
673}
674
Simon Glass44ad35a2022-10-20 18:23:03 -0600675const char *genimg_get_phase_name(enum image_phase_t phase)
676{
677 return get_table_entry_name(uimage_phase, "Unknown Phase", phase);
678}
679
Simon Glasscef2e512016-02-22 22:55:50 -0700680static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass5b9d44d2015-06-23 15:38:25 -0600681{
Simon Glasscef2e512016-02-22 22:55:50 -0700682 table = get_table_entry(table, val);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600683 if (!table)
684 return "unknown";
Marek Vasutba377a62023-09-06 23:29:59 +0200685 return table->sname;
Simon Glass5b9d44d2015-06-23 15:38:25 -0600686}
687
Simon Glasscef2e512016-02-22 22:55:50 -0700688const char *genimg_get_type_short_name(uint8_t type)
689{
690 return genimg_get_short_name(uimage_type, type);
691}
692
Simon Glasscef2e512016-02-22 22:55:50 -0700693const char *genimg_get_comp_short_name(uint8_t comp)
694{
695 return genimg_get_short_name(uimage_comp, comp);
696}
697
698const char *genimg_get_os_short_name(uint8_t os)
699{
700 return genimg_get_short_name(uimage_os, os);
701}
702
703const char *genimg_get_arch_short_name(uint8_t arch)
704{
705 return genimg_get_short_name(uimage_arch, arch);
706}
707
Marian Balakowicz570abb02008-02-29 15:59:59 +0100708/**
709 * get_table_entry_id - translate short entry name to id
710 * @table: pointer to a translation table for entries of a specific type
711 * @table_name: to be used in case of error
712 * @name: entry short name to be translated
713 *
714 * get_table_entry_id() will go over translation table trying to find
715 * entry that matches given short name. If matching entry is found,
716 * its id returned to the caller.
717 *
718 * returns:
719 * entry id if translation succeeds
720 * -1 otherwise
721 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400722int get_table_entry_id(const table_entry_t *table,
Marian Balakowicz570abb02008-02-29 15:59:59 +0100723 const char *table_name, const char *name)
724{
Mike Frysinger7edb1862010-10-20 07:17:39 -0400725 const table_entry_t *t;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100726
727 for (t = table; t->id >= 0; ++t) {
Marek Vasutba377a62023-09-06 23:29:59 +0200728 if (t->sname && !strcasecmp(t->sname, name))
Simon Glass2ac00c02021-09-25 07:03:18 -0600729 return t->id;
Marian Balakowicz570abb02008-02-29 15:59:59 +0100730 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000731 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600732
733 return -1;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100734}
735
Stephen Warren712fbcf2011-10-18 11:11:49 +0000736int genimg_get_os_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100737{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000738 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100739}
740
Stephen Warren712fbcf2011-10-18 11:11:49 +0000741int genimg_get_arch_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100742{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000743 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100744}
745
Stephen Warren712fbcf2011-10-18 11:11:49 +0000746int genimg_get_type_id(const char *name)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100747{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000748 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100749}
750
Stephen Warren712fbcf2011-10-18 11:11:49 +0000751int genimg_get_comp_id(const char *name)
Marian Balakowicz570abb02008-02-29 15:59:59 +0100752{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000753 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowicz570abb02008-02-29 15:59:59 +0100754}
Simon Glass44ad35a2022-10-20 18:23:03 -0600755
756int genimg_get_phase_id(const char *name)
757{
758 return get_table_entry_id(uimage_phase, "Phase", name);
759}