blob: 45299a7dc337db878a943810d10ccda035bb9b47 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marian Balakowicz41d71ed2008-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 Balakowicz41d71ed2008-01-08 18:14:09 +01007 */
Marian Balakowicz9c701e82008-01-31 13:57:17 +01008
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01009#ifndef USE_HOSTCC
Simon Glass0af6e2d2019-08-01 09:46:52 -060010#include <env.h>
Simon Glass1ab16922022-07-31 12:28:48 -060011#include <display_options.h>
Andy Shevchenkoe3b3ad92021-11-08 21:03:38 +030012#include <init.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060013#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060014#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070015#include <malloc.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070016#include <u-boot/crc.h>
Marian Balakowicz95418502008-01-31 13:55:39 +010017
18#ifdef CONFIG_SHOW_BOOT_PROGRESS
19#include <status_led.h>
20#endif
21
Simon Glass85c057e2021-09-25 19:43:21 -060022#if CONFIG_IS_ENABLED(FIT) || CONFIG_IS_ENABLED(OF_LIBFDT)
Masahiro Yamada75f82d02018-03-05 01:20:11 +090023#include <linux/libfdt.h>
Marian Balakowiczc536d6f2008-02-21 17:20:19 +010024#include <fdt_support.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010025#endif
26
Simon Glass3ba929a2020-10-30 21:38:53 -060027#include <asm/global_data.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090028#include <linux/errno.h>
Simon Glass49648062013-05-07 06:12:03 +000029#include <asm/io.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010030
Marian Balakowicz2efc2642008-01-31 13:58:13 +010031DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz61fde552008-02-27 11:01:04 +010032
Simon Glassfd86d012021-09-25 07:03:14 -060033/* Set this if we have less than 4 MB of malloc() space */
34#if CONFIG_SYS_MALLOC_LEN < (4096 * 1024)
35#define CONSERVE_MEMORY true
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010036#else
Simon Glassfd86d012021-09-25 07:03:14 -060037#define CONSERVE_MEMORY false
38#endif
39
40#else /* USE_HOSTCC */
Marian Balakowicz95418502008-01-31 13:55:39 +010041#include "mkimage.h"
Tom Rini8fac3d42023-12-14 07:16:54 -050042#include <linux/kconfig.h>
Andy Fleming72c23be2008-04-02 16:19:07 -050043#include <u-boot/md5.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010044#include <time.h>
Heiko Schocher62cb1562015-06-29 09:10:46 +020045
46#ifndef __maybe_unused
47# define __maybe_unused /* unimplemented */
48#endif
Simon Glassfd86d012021-09-25 07:03:14 -060049
50#define CONSERVE_MEMORY false
51
Marian Balakowicze227fbb2008-02-29 21:24:06 +010052#endif /* !USE_HOSTCC*/
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010053
Simon Glassfd86d012021-09-25 07:03:14 -060054#include <abuf.h>
55#include <bzlib.h>
Simon Glass4a8a8a12021-09-25 07:03:17 -060056#include <display_options.h>
Simon Glassfd86d012021-09-25 07:03:14 -060057#include <gzip.h>
Simon Glass4d7237b2021-09-25 07:03:15 -060058#include <image.h>
Breno Matheus Limac592c342019-09-23 18:39:47 +000059#include <imximage.h>
Simon Glass684ef382021-09-25 07:03:18 -060060#include <relocate.h>
Simon Glassfd86d012021-09-25 07:03:14 -060061#include <linux/lzo.h>
62#include <linux/zstd.h>
Simon Glassfd86d012021-09-25 07:03:14 -060063#include <lzma/LzmaTypes.h>
64#include <lzma/LzmaDec.h>
65#include <lzma/LzmaTools.h>
66#include <u-boot/crc.h>
Simon Glasscaf62672021-10-09 09:28:21 -060067#include <u-boot/lz4.h>
Simon Glass9adb6862013-02-24 17:33:25 +000068
Mike Frysingercf2feb12010-10-20 07:17:39 -040069static const table_entry_t uimage_arch[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -060070 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowiczc3c7eb22008-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 Balakowiczc3c7eb22008-02-29 15:59:59 +010079 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Erickson80f51b82008-05-04 16:45:01 -070080 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowiczc3c7eb22008-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 Lin354b4e32011-10-19 20:41:09 +000088 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson15c669c2011-11-26 19:04:50 +000089 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass49648062013-05-07 06:12:03 +000090 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng85fd5f12013-12-14 11:47:35 +080091 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkin78bc86f2014-02-04 12:56:16 +040092 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass9d428302014-10-10 08:21:57 -060093 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankel41e37372016-08-10 18:36:43 +030094 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Mayuresh Chitaleb3a637e2025-04-04 14:48:55 +000095 { IH_ARCH_RISCV, "riscv", "RISC-V 32 Bit",},
96 { IH_ARCH_RISCV64, "riscv64", "RISC-V 64 Bit",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010097 { -1, "", "", },
98};
99
Mike Frysingercf2feb12010-10-20 07:17:39 -0400100static const table_entry_t uimage_os[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -0600101 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich1bf3eb22017-09-13 21:29:29 +0200102 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100103 { IH_OS_LINUX, "linux", "Linux", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100104 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren29a58662010-09-28 11:05:36 +0200105 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion36ec8ac2013-03-20 06:31:35 +0000106 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100107 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue2f72dec2018-03-13 16:50:35 +0000108 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100109 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com8bb64242013-12-27 16:01:50 +0800110 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100111#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
112 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100113#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500114#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
115 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
116#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100117#ifdef USE_HOSTCC
118 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
119 { IH_OS_DELL, "dell", "Dell", },
120 { IH_OS_ESIX, "esix", "Esix", },
121 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
122 { IH_OS_IRIX, "irix", "Irix", },
123 { IH_OS_NCR, "ncr", "NCR", },
124 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
125 { IH_OS_PSOS, "psos", "pSOS", },
126 { IH_OS_SCO, "sco", "SCO", },
127 { IH_OS_SOLARIS, "solaris", "Solaris", },
128 { IH_OS_SVR4, "svr4", "SVR4", },
129#endif
Marek Vasut0e3b5122014-12-16 14:07:21 +0100130#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
131 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
132#endif
Lukas Auer515b9342019-08-21 21:14:44 +0200133 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Maxim Moskaletse2b258c2024-06-21 14:42:10 +0300134 { IH_OS_EFI, "efi", "EFI Firmware" },
135#ifdef CONFIG_BOOTM_ELF
136 { IH_OS_ELF, "elf", "ELF Image" },
137#endif
Marek Vasut0e3b5122014-12-16 14:07:21 +0100138
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100139 { -1, "", "", },
140};
141
Mike Frysingercf2feb12010-10-20 07:17:39 -0400142static const table_entry_t uimage_type[] = {
Stefano Babic38855512011-10-17 00:07:43 +0000143 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100144 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
145 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby34d12a12011-07-21 09:10:30 -0400146 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharan82777932014-04-04 13:16:48 -0400147 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100148 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warren8c87eba2011-11-10 13:17:53 -0700149 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic38855512011-10-17 00:07:43 +0000150 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
151 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fan60a56072018-10-16 04:50:30 +0000152 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan31c51da2018-11-20 10:19:36 +0000153 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glassa3ed7372016-06-30 10:52:15 -0600154 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100155 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic38855512011-10-17 00:07:43 +0000156 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xieea65fd82012-08-10 02:49:35 +0000157 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100158 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
159 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut83f69282018-04-15 13:15:33 +0200160 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
161 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100162 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000163 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasut4a0e05d2013-08-26 20:43:33 +0200164 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7c75d3e2014-05-19 14:23:39 +0200165 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass0129b522014-10-19 21:11:24 -0600166 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)ed1cb1a2015-03-31 11:40:49 +0200167 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassc9c74032015-08-30 16:55:24 -0600168 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glass3b1e5072015-08-30 16:55:25 -0600169 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glassc17b1452015-08-30 16:55:26 -0600170 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)2e9f4942016-09-26 09:08:06 +0200171 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossice1771e2015-11-17 22:56:56 +1000172 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekfa124662016-04-27 14:03:29 +0200173 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf5329d672018-04-13 14:18:52 +0200174 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simek0a130b12016-05-17 13:58:44 +0200175 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis378bcff2016-11-29 16:33:21 -0600176 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100177 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis30f9d562017-07-31 10:58:20 -0500178 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunaye6db5df2018-03-12 10:46:04 +0100179 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
developere1de5d42018-11-15 10:07:49 +0800180 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunay42594db2019-08-02 15:07:19 +0200181 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywarae53f9d92018-12-20 01:15:18 +0000182 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Samuel Holland75728782022-03-18 00:00:43 -0500183 { IH_TYPE_SUNXI_TOC0, "sunxi_toc0", "Allwinner TOC0 Boot Image" },
Marc Kleine-Budde0aa1da62022-11-23 12:55:33 +0100184 { IH_TYPE_FDT_LEGACY, "fdt_legacy", "legacy Image with Flat Device Tree ", },
Ralph Siemsen2d283fa2023-05-12 21:36:57 -0400185 { IH_TYPE_RENESAS_SPKG, "spkgimage", "Renesas SPKG Image" },
Heinrich Schuchardtb28f8f32023-09-17 13:47:30 +0200186 { IH_TYPE_STARFIVE_SPL, "sfspl", "StarFive SPL Image" },
Marek Vasut6cacddc2025-01-29 22:59:19 +0100187 { IH_TYPE_TFA_BL31, "tfa-bl31", "TFA BL31 Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100188 { -1, "", "", },
189};
190
Mike Frysingercf2feb12010-10-20 07:17:39 -0400191static const table_entry_t uimage_comp[] = {
Marian Balakowiczc3c7eb22008-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' Mantellini35afc062008-09-08 02:46:13 +0200195 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100196 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700197 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Markod1c24842020-04-25 19:37:21 +0200198 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100199 { -1, "", "", },
200};
201
Simon Glasse3f81ae2022-10-20 18:23:03 -0600202static const table_entry_t uimage_phase[] = {
203 { IH_PHASE_NONE, "none", "any", },
204 { IH_PHASE_U_BOOT, "u-boot", "U-Boot phase", },
205 { IH_PHASE_SPL, "spl", "SPL Phase", },
206 { -1, "", "", },
207};
208
Simon Glass7da41d52016-06-30 10:52:14 -0600209struct table_info {
210 const char *desc;
211 int count;
212 const table_entry_t *table;
213};
214
Atish Patra04e8cd82020-03-05 16:24:22 -0800215static const struct comp_magic_map image_comp[] = {
216 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
217 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
218 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
219 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkinc81801d2021-08-31 18:22:18 +0800220 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
221 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra04e8cd82020-03-05 16:24:22 -0800222 { IH_COMP_NONE, "none", {}, },
223};
224
Simon Glass7da41d52016-06-30 10:52:14 -0600225static const struct table_info table_info[IH_COUNT] = {
226 { "architecture", IH_ARCH_COUNT, uimage_arch },
227 { "compression", IH_COMP_COUNT, uimage_comp },
228 { "operating system", IH_OS_COUNT, uimage_os },
229 { "image type", IH_TYPE_COUNT, uimage_type },
Simon Glasse3f81ae2022-10-20 18:23:03 -0600230 { "phase", IH_PHASE_COUNT, uimage_phase },
Simon Glass7da41d52016-06-30 10:52:14 -0600231};
232
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100233/*****************************************************************************/
234/* Legacy format routines */
235/*****************************************************************************/
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600236int image_check_hcrc(const struct legacy_img_hdr *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100237{
238 ulong hcrc;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000239 ulong len = image_get_header_size();
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600240 struct legacy_img_hdr header;
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100241
242 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000243 memmove(&header, (char *)hdr, image_get_header_size());
244 image_set_hcrc(&header, 0);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100245
Stephen Warren6904b6e2011-10-18 11:11:49 +0000246 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100247
Stephen Warren6904b6e2011-10-18 11:11:49 +0000248 return (hcrc == image_get_hcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100249}
250
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600251int image_check_dcrc(const struct legacy_img_hdr *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100252{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000253 ulong data = image_get_data(hdr);
254 ulong len = image_get_data_size(hdr);
255 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100256
Stephen Warren6904b6e2011-10-18 11:11:49 +0000257 return (dcrc == image_get_dcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100258}
259
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100260/**
261 * image_multi_count - get component (sub-image) count
262 * @hdr: pointer to the header of the multi component image
263 *
264 * image_multi_count() returns number of components in a multi
265 * component image.
266 *
267 * Note: no checking of the image type is done, caller must pass
268 * a valid multi component image.
269 *
270 * returns:
271 * number of components
272 */
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600273ulong image_multi_count(const struct legacy_img_hdr *hdr)
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100274{
275 ulong i, count = 0;
Marian Balakowicza1474212008-02-29 16:00:06 +0100276 uint32_t *size;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100277
278 /* get start of the image payload, which in case of multi
279 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000280 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100281
282 /* count non empty slots */
283 for (i = 0; size[i]; ++i)
284 count++;
285
286 return count;
287}
288
289/**
290 * image_multi_getimg - get component data address and size
291 * @hdr: pointer to the header of the multi component image
292 * @idx: index of the requested component
293 * @data: pointer to a ulong variable, will hold component data address
294 * @len: pointer to a ulong variable, will hold component size
295 *
296 * image_multi_getimg() returns size and data address for the requested
297 * component in a multi component image.
298 *
299 * Note: no checking of the image type is done, caller must pass
300 * a valid multi component image.
301 *
302 * returns:
303 * data address and size of the component, if idx is valid
304 * 0 in data and len, if idx is out of range
305 */
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600306void image_multi_getimg(const struct legacy_img_hdr *hdr, ulong idx,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100307 ulong *data, ulong *len)
308{
309 int i;
Marian Balakowicza1474212008-02-29 16:00:06 +0100310 uint32_t *size;
Nick Spence143a1592008-05-10 14:02:04 -0700311 ulong offset, count, img_data;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100312
313 /* get number of component */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000314 count = image_multi_count(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100315
316 /* get start of the image payload, which in case of multi
317 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000318 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100319
320 /* get address of the proper component data start, which means
321 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000322 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100323
324 if (idx < count) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000325 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100326 offset = 0;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100327
328 /* go over all indices preceding requested component idx */
329 for (i = 0; i < idx; i++) {
Nick Spence143a1592008-05-10 14:02:04 -0700330 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000331 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100332 }
333
334 /* calculate idx-th component data address */
Nick Spence143a1592008-05-10 14:02:04 -0700335 *data = img_data + offset;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100336 } else {
337 *len = 0;
338 *data = 0;
339 }
340}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100341
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600342static void image_print_type(const struct legacy_img_hdr *hdr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100343{
Heiko Schocher62cb1562015-06-29 09:10:46 +0200344 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100345
Stephen Warren6904b6e2011-10-18 11:11:49 +0000346 os = genimg_get_os_name(image_get_os(hdr));
347 arch = genimg_get_arch_name(image_get_arch(hdr));
348 type = genimg_get_type_name(image_get_type(hdr));
349 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100350
Stephen Warren6904b6e2011-10-18 11:11:49 +0000351 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100352}
353
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100354/**
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200355 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3b506772009-08-19 11:42:56 +0200356 * @ptr: pointer to the legacy format image header
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100357 * @p: pointer to prefix string
358 *
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200359 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100360 * The routine prints out all header fields followed by the size/offset data
361 * for MULTI/SCRIPT images.
362 *
363 * returns:
364 * no returned results
365 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000366void image_print_contents(const void *ptr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100367{
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600368 const struct legacy_img_hdr *hdr = (const struct legacy_img_hdr *)ptr;
Heiko Schocher62cb1562015-06-29 09:10:46 +0200369 const char __maybe_unused *p;
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200370
Simon Glass1030f162013-05-08 08:05:58 +0000371 p = IMAGE_INDENT_STRING;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000372 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000373 if (IMAGE_ENABLE_TIMESTAMP) {
374 printf("%sCreated: ", p);
375 genimg_print_time((time_t)image_get_time(hdr));
376 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000377 printf("%sImage Type: ", p);
378 image_print_type(hdr);
379 printf("%sData Size: ", p);
380 genimg_print_size(image_get_data_size(hdr));
381 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
382 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100383
Stephen Warren6904b6e2011-10-18 11:11:49 +0000384 if (image_check_type(hdr, IH_TYPE_MULTI) ||
385 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100386 int i;
387 ulong data, len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000388 ulong count = image_multi_count(hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100389
Stephen Warren6904b6e2011-10-18 11:11:49 +0000390 printf("%sContents:\n", p);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100391 for (i = 0; i < count; i++) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000392 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100393
Stephen Warren6904b6e2011-10-18 11:11:49 +0000394 printf("%s Image %d: ", p, i);
395 genimg_print_size(len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100396
Stephen Warren6904b6e2011-10-18 11:11:49 +0000397 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100398 /*
399 * the user may need to know offsets
400 * if planning to do something with
401 * multiple files
402 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000403 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100404 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100405 }
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100406 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
407 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Limac592c342019-09-23 18:39:47 +0000408 image_get_load(hdr) - image_get_header_size(),
409 (int)(image_get_size(hdr) + image_get_header_size()
410 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100411 }
412}
413
Julius Werner47ef9862019-07-24 19:37:54 -0700414/**
415 * print_decomp_msg() - Print a suitable decompression/loading message
416 *
417 * @type: OS type (IH_OS_...)
418 * @comp_type: Compression type being used (IH_COMP_...)
419 * @is_xip: true if the load address matches the image start
Simon Glass59f0c4d2023-11-19 07:43:32 -0700420 * @load: Load address for printing
Julius Werner47ef9862019-07-24 19:37:54 -0700421 */
Simon Glass59f0c4d2023-11-19 07:43:32 -0700422static void print_decomp_msg(int comp_type, int type, bool is_xip,
423 ulong load)
Julius Werner47ef9862019-07-24 19:37:54 -0700424{
425 const char *name = genimg_get_type_name(type);
426
Simon Glass59f0c4d2023-11-19 07:43:32 -0700427 /* Shows "Loading Kernel Image" for example */
Julius Werner47ef9862019-07-24 19:37:54 -0700428 if (comp_type == IH_COMP_NONE)
Simon Glass59f0c4d2023-11-19 07:43:32 -0700429 printf(" %s %s", is_xip ? "XIP" : "Loading", name);
Julius Werner47ef9862019-07-24 19:37:54 -0700430 else
Simon Glass59f0c4d2023-11-19 07:43:32 -0700431 printf(" Uncompressing %s", name);
432
433 printf(" to %lx\n", load);
Julius Werner47ef9862019-07-24 19:37:54 -0700434}
435
Atish Patra04e8cd82020-03-05 16:24:22 -0800436int image_decomp_type(const unsigned char *buf, ulong len)
437{
438 const struct comp_magic_map *cmagic = image_comp;
439
440 if (len < 2)
441 return -EINVAL;
442
443 for (; cmagic->comp_id > 0; cmagic++) {
444 if (!memcmp(buf, cmagic->magic, 2))
445 break;
446 }
447
448 return cmagic->comp_id;
449}
450
Julius Werner47ef9862019-07-24 19:37:54 -0700451int image_decomp(int comp, ulong load, ulong image_start, int type,
452 void *load_buf, void *image_buf, ulong image_len,
453 uint unc_len, ulong *load_end)
454{
Simon Glasseefec3d2021-09-25 07:03:11 -0600455 int ret = -ENOSYS;
Julius Werner47ef9862019-07-24 19:37:54 -0700456
457 *load_end = load;
Simon Glass59f0c4d2023-11-19 07:43:32 -0700458 print_decomp_msg(comp, type, load == image_start, load);
Julius Werner47ef9862019-07-24 19:37:54 -0700459
460 /*
461 * Load the image to the right place, decompressing if needed. After
462 * this, image_len will be set to the number of uncompressed bytes
463 * loaded, ret will be non-zero on error.
464 */
465 switch (comp) {
466 case IH_COMP_NONE:
Simon Glasseefec3d2021-09-25 07:03:11 -0600467 ret = 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700468 if (load == image_start)
469 break;
470 if (image_len <= unc_len)
471 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
472 else
473 ret = -ENOSPC;
474 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600475 case IH_COMP_GZIP:
Simon Glassdb503fb2021-09-25 19:43:14 -0600476 if (!tools_build() && CONFIG_IS_ENABLED(GZIP))
Simon Glassfd86d012021-09-25 07:03:14 -0600477 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
Julius Werner47ef9862019-07-24 19:37:54 -0700478 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600479 case IH_COMP_BZIP2:
Simon Glassdb503fb2021-09-25 19:43:14 -0600480 if (!tools_build() && CONFIG_IS_ENABLED(BZIP2)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600481 uint size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700482
Simon Glassfd86d012021-09-25 07:03:14 -0600483 /*
484 * If we've got less than 4 MB of malloc() space,
485 * use slower decompression algorithm which requires
486 * at most 2300 KB of memory.
487 */
488 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
489 image_buf, image_len, CONSERVE_MEMORY, 0);
490 image_len = size;
491 }
Julius Werner47ef9862019-07-24 19:37:54 -0700492 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600493 case IH_COMP_LZMA:
Simon Glassdb503fb2021-09-25 19:43:14 -0600494 if (!tools_build() && CONFIG_IS_ENABLED(LZMA)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600495 SizeT lzma_len = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700496
Simon Glassfd86d012021-09-25 07:03:14 -0600497 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
498 image_buf, image_len);
499 image_len = lzma_len;
500 }
Julius Werner47ef9862019-07-24 19:37:54 -0700501 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600502 case IH_COMP_LZO:
Simon Glassdb503fb2021-09-25 19:43:14 -0600503 if (!tools_build() && CONFIG_IS_ENABLED(LZO)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600504 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700505
Simon Glassfd86d012021-09-25 07:03:14 -0600506 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
507 image_len = size;
508 }
Julius Werner47ef9862019-07-24 19:37:54 -0700509 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600510 case IH_COMP_LZ4:
Simon Glassdb503fb2021-09-25 19:43:14 -0600511 if (!tools_build() && CONFIG_IS_ENABLED(LZ4)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600512 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700513
Simon Glassfd86d012021-09-25 07:03:14 -0600514 ret = ulz4fn(image_buf, image_len, load_buf, &size);
515 image_len = size;
516 }
Julius Werner47ef9862019-07-24 19:37:54 -0700517 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600518 case IH_COMP_ZSTD:
Simon Glassdb503fb2021-09-25 19:43:14 -0600519 if (!tools_build() && CONFIG_IS_ENABLED(ZSTD)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600520 struct abuf in, out;
Robert Markod1c24842020-04-25 19:37:21 +0200521
Simon Glassfd86d012021-09-25 07:03:14 -0600522 abuf_init_set(&in, image_buf, image_len);
Jérôme Carretero0edb7a92022-03-16 15:35:36 -0400523 abuf_init_set(&out, load_buf, unc_len);
Simon Glassfd86d012021-09-25 07:03:14 -0600524 ret = zstd_decompress(&in, &out);
525 if (ret >= 0) {
526 image_len = ret;
527 ret = 0;
528 }
Robert Markod1c24842020-04-25 19:37:21 +0200529 }
Robert Markod1c24842020-04-25 19:37:21 +0200530 break;
531 }
Simon Glasseefec3d2021-09-25 07:03:11 -0600532 if (ret == -ENOSYS) {
Julius Werner47ef9862019-07-24 19:37:54 -0700533 printf("Unimplemented compression type %d\n", comp);
Simon Glasseefec3d2021-09-25 07:03:11 -0600534 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700535 }
536
537 *load_end = load + image_len;
Mattijs Korpershoek0b5aa9b2024-05-23 11:27:09 +0200538 if (ret)
539 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700540
Simon Glasseefec3d2021-09-25 07:03:11 -0600541 return 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700542}
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100543
Simon Glass434a31b2015-06-23 15:38:25 -0600544const table_entry_t *get_table_entry(const table_entry_t *table, int id)
545{
546 for (; table->id >= 0; ++table) {
547 if (table->id == id)
548 return table;
549 }
550 return NULL;
551}
552
Simon Glass19864332016-06-30 10:52:16 -0600553static const char *unknown_msg(enum ih_category category)
554{
Simon Glassddb26072016-10-31 10:21:09 -0600555 static const char unknown_str[] = "Unknown ";
Simon Glass19864332016-06-30 10:52:16 -0600556 static char msg[30];
557
Simon Glassddb26072016-10-31 10:21:09 -0600558 strcpy(msg, unknown_str);
559 strncat(msg, table_info[category].desc,
560 sizeof(msg) - sizeof(unknown_str));
Simon Glass19864332016-06-30 10:52:16 -0600561
562 return msg;
563}
564
565/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900566 * genimg_get_cat_name - translate entry id to long name
Simon Glass19864332016-06-30 10:52:16 -0600567 * @category: category to look up (enum ih_category)
568 * @id: entry id to be translated
569 *
570 * This will scan the translation table trying to find the entry that matches
571 * the given id.
572 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100573 * Return: long entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600574 */
575const char *genimg_get_cat_name(enum ih_category category, uint id)
576{
577 const table_entry_t *entry;
578
579 entry = get_table_entry(table_info[category].table, id);
580 if (!entry)
581 return unknown_msg(category);
Marek Vasut869835d2023-09-06 23:29:59 +0200582 return entry->lname;
Simon Glass19864332016-06-30 10:52:16 -0600583}
584
585/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900586 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass19864332016-06-30 10:52:16 -0600587 * @category: category to look up (enum ih_category)
588 * @id: entry id to be translated
589 *
590 * This will scan the translation table trying to find the entry that matches
591 * the given id.
592 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100593 * Return: short entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600594 */
595const char *genimg_get_cat_short_name(enum ih_category category, uint id)
596{
597 const table_entry_t *entry;
598
599 entry = get_table_entry(table_info[category].table, id);
600 if (!entry)
601 return unknown_msg(category);
Marek Vasut869835d2023-09-06 23:29:59 +0200602 return entry->sname;
Simon Glass19864332016-06-30 10:52:16 -0600603}
604
605int genimg_get_cat_count(enum ih_category category)
606{
607 return table_info[category].count;
608}
609
610const char *genimg_get_cat_desc(enum ih_category category)
611{
612 return table_info[category].desc;
613}
614
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100615/**
Naoki Hayamad7e82912020-10-07 11:21:25 +0900616 * genimg_cat_has_id - check whether category has entry id
617 * @category: category to look up (enum ih_category)
618 * @id: entry id to be checked
619 *
620 * This will scan the translation table trying to find the entry that matches
621 * the given id.
622 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100623 * Return: true if category has entry id; false if not
Naoki Hayamad7e82912020-10-07 11:21:25 +0900624 */
625bool genimg_cat_has_id(enum ih_category category, uint id)
626{
627 if (get_table_entry(table_info[category].table, id))
628 return true;
629
630 return false;
631}
632
633/**
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100634 * get_table_entry_name - translate entry id to long name
635 * @table: pointer to a translation table for entries of a specific type
636 * @msg: message to be returned when translation fails
637 * @id: entry id to be translated
638 *
639 * get_table_entry_name() will go over translation table trying to find
640 * entry that matches given id. If matching entry is found, its long
641 * name is returned to the caller.
642 *
643 * returns:
644 * long entry name if translation succeeds
645 * msg otherwise
646 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400647char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100648{
Simon Glass434a31b2015-06-23 15:38:25 -0600649 table = get_table_entry(table, id);
650 if (!table)
651 return msg;
Marek Vasut869835d2023-09-06 23:29:59 +0200652 return table->lname;
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100653}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100654
Stephen Warren6904b6e2011-10-18 11:11:49 +0000655const char *genimg_get_os_name(uint8_t os)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100656{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000657 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100658}
659
Stephen Warren6904b6e2011-10-18 11:11:49 +0000660const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100661{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000662 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
663 arch));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100664}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100665
Stephen Warren6904b6e2011-10-18 11:11:49 +0000666const char *genimg_get_type_name(uint8_t type)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100667{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000668 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100669}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100670
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900671const char *genimg_get_comp_name(uint8_t comp)
672{
673 return (get_table_entry_name(uimage_comp, "Unknown Compression",
674 comp));
675}
676
Simon Glasse3f81ae2022-10-20 18:23:03 -0600677const char *genimg_get_phase_name(enum image_phase_t phase)
678{
679 return get_table_entry_name(uimage_phase, "Unknown Phase", phase);
680}
681
Simon Glass86c362d2016-02-22 22:55:50 -0700682static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass434a31b2015-06-23 15:38:25 -0600683{
Simon Glass86c362d2016-02-22 22:55:50 -0700684 table = get_table_entry(table, val);
Simon Glass434a31b2015-06-23 15:38:25 -0600685 if (!table)
686 return "unknown";
Marek Vasut869835d2023-09-06 23:29:59 +0200687 return table->sname;
Simon Glass434a31b2015-06-23 15:38:25 -0600688}
689
Simon Glass86c362d2016-02-22 22:55:50 -0700690const char *genimg_get_type_short_name(uint8_t type)
691{
692 return genimg_get_short_name(uimage_type, type);
693}
694
Simon Glass86c362d2016-02-22 22:55:50 -0700695const char *genimg_get_comp_short_name(uint8_t comp)
696{
697 return genimg_get_short_name(uimage_comp, comp);
698}
699
700const char *genimg_get_os_short_name(uint8_t os)
701{
702 return genimg_get_short_name(uimage_os, os);
703}
704
705const char *genimg_get_arch_short_name(uint8_t arch)
706{
707 return genimg_get_short_name(uimage_arch, arch);
708}
709
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100710/**
711 * get_table_entry_id - translate short entry name to id
712 * @table: pointer to a translation table for entries of a specific type
713 * @table_name: to be used in case of error
714 * @name: entry short name to be translated
715 *
716 * get_table_entry_id() will go over translation table trying to find
717 * entry that matches given short name. If matching entry is found,
718 * its id returned to the caller.
719 *
720 * returns:
721 * entry id if translation succeeds
722 * -1 otherwise
723 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400724int get_table_entry_id(const table_entry_t *table,
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100725 const char *table_name, const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100726{
Mike Frysingercf2feb12010-10-20 07:17:39 -0400727 const table_entry_t *t;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100728
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100729 for (t = table; t->id >= 0; ++t) {
Marek Vasut869835d2023-09-06 23:29:59 +0200730 if (t->sname && !strcasecmp(t->sname, name))
Simon Glass684ef382021-09-25 07:03:18 -0600731 return t->id;
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100732 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000733 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass434a31b2015-06-23 15:38:25 -0600734
735 return -1;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100736}
737
Stephen Warren6904b6e2011-10-18 11:11:49 +0000738int genimg_get_os_id(const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100739{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000740 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100741}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100742
Stephen Warren6904b6e2011-10-18 11:11:49 +0000743int genimg_get_arch_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100744{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000745 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100746}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100747
Stephen Warren6904b6e2011-10-18 11:11:49 +0000748int genimg_get_type_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100749{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000750 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100751}
Marian Balakowicz95418502008-01-31 13:55:39 +0100752
Stephen Warren6904b6e2011-10-18 11:11:49 +0000753int genimg_get_comp_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100754{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000755 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100756}
Simon Glasse3f81ae2022-10-20 18:23:03 -0600757
758int genimg_get_phase_id(const char *name)
759{
760 return get_table_entry_id(uimage_phase, "Phase", name);
761}