blob: 139c5bd035a9028801f96976133e589714f23485 [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", },
Rick Chencda20702018-03-13 13:37:29 +080095 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010096 { -1, "", "", },
97};
98
Mike Frysingercf2feb12010-10-20 07:17:39 -040099static const table_entry_t uimage_os[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -0600100 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich1bf3eb22017-09-13 21:29:29 +0200101 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100102 { IH_OS_LINUX, "linux", "Linux", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100103 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren29a58662010-09-28 11:05:36 +0200104 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion36ec8ac2013-03-20 06:31:35 +0000105 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100106 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue2f72dec2018-03-13 16:50:35 +0000107 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100108 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com8bb64242013-12-27 16:01:50 +0800109 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100110#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
111 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100112#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500113#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
114 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
115#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100116#ifdef USE_HOSTCC
117 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
118 { IH_OS_DELL, "dell", "Dell", },
119 { IH_OS_ESIX, "esix", "Esix", },
120 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
121 { IH_OS_IRIX, "irix", "Irix", },
122 { IH_OS_NCR, "ncr", "NCR", },
123 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
124 { IH_OS_PSOS, "psos", "pSOS", },
125 { IH_OS_SCO, "sco", "SCO", },
126 { IH_OS_SOLARIS, "solaris", "Solaris", },
127 { IH_OS_SVR4, "svr4", "SVR4", },
128#endif
Marek Vasut0e3b5122014-12-16 14:07:21 +0100129#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
130 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
131#endif
Lukas Auer515b9342019-08-21 21:14:44 +0200132 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Maxim Moskaletse2b258c2024-06-21 14:42:10 +0300133 { IH_OS_EFI, "efi", "EFI Firmware" },
134#ifdef CONFIG_BOOTM_ELF
135 { IH_OS_ELF, "elf", "ELF Image" },
136#endif
Marek Vasut0e3b5122014-12-16 14:07:21 +0100137
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100138 { -1, "", "", },
139};
140
Mike Frysingercf2feb12010-10-20 07:17:39 -0400141static const table_entry_t uimage_type[] = {
Stefano Babic38855512011-10-17 00:07:43 +0000142 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100143 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
144 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby34d12a12011-07-21 09:10:30 -0400145 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharan82777932014-04-04 13:16:48 -0400146 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100147 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warren8c87eba2011-11-10 13:17:53 -0700148 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic38855512011-10-17 00:07:43 +0000149 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
150 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fan60a56072018-10-16 04:50:30 +0000151 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan31c51da2018-11-20 10:19:36 +0000152 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glassa3ed7372016-06-30 10:52:15 -0600153 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100154 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic38855512011-10-17 00:07:43 +0000155 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xieea65fd82012-08-10 02:49:35 +0000156 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100157 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
158 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut83f69282018-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 Balakowiczc3c7eb22008-02-29 15:59:59 +0100161 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000162 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasut4a0e05d2013-08-26 20:43:33 +0200163 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7c75d3e2014-05-19 14:23:39 +0200164 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass0129b522014-10-19 21:11:24 -0600165 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)ed1cb1a2015-03-31 11:40:49 +0200166 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassc9c74032015-08-30 16:55:24 -0600167 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glass3b1e5072015-08-30 16:55:25 -0600168 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glassc17b1452015-08-30 16:55:26 -0600169 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)2e9f4942016-09-26 09:08:06 +0200170 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossice1771e2015-11-17 22:56:56 +1000171 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekfa124662016-04-27 14:03:29 +0200172 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf5329d672018-04-13 14:18:52 +0200173 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simek0a130b12016-05-17 13:58:44 +0200174 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis378bcff2016-11-29 16:33:21 -0600175 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100176 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis30f9d562017-07-31 10:58:20 -0500177 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunaye6db5df2018-03-12 10:46:04 +0100178 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
developere1de5d42018-11-15 10:07:49 +0800179 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunay42594db2019-08-02 15:07:19 +0200180 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywarae53f9d92018-12-20 01:15:18 +0000181 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Samuel Holland75728782022-03-18 00:00:43 -0500182 { IH_TYPE_SUNXI_TOC0, "sunxi_toc0", "Allwinner TOC0 Boot Image" },
Marc Kleine-Budde0aa1da62022-11-23 12:55:33 +0100183 { IH_TYPE_FDT_LEGACY, "fdt_legacy", "legacy Image with Flat Device Tree ", },
Ralph Siemsen2d283fa2023-05-12 21:36:57 -0400184 { IH_TYPE_RENESAS_SPKG, "spkgimage", "Renesas SPKG Image" },
Heinrich Schuchardtb28f8f32023-09-17 13:47:30 +0200185 { IH_TYPE_STARFIVE_SPL, "sfspl", "StarFive SPL Image" },
Marek Vasut6cacddc2025-01-29 22:59:19 +0100186 { IH_TYPE_TFA_BL31, "tfa-bl31", "TFA BL31 Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100187 { -1, "", "", },
188};
189
Mike Frysingercf2feb12010-10-20 07:17:39 -0400190static const table_entry_t uimage_comp[] = {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100191 { IH_COMP_NONE, "none", "uncompressed", },
192 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
193 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200194 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100195 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700196 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Markod1c24842020-04-25 19:37:21 +0200197 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100198 { -1, "", "", },
199};
200
Simon Glasse3f81ae2022-10-20 18:23:03 -0600201static const table_entry_t uimage_phase[] = {
202 { IH_PHASE_NONE, "none", "any", },
203 { IH_PHASE_U_BOOT, "u-boot", "U-Boot phase", },
204 { IH_PHASE_SPL, "spl", "SPL Phase", },
205 { -1, "", "", },
206};
207
Simon Glass7da41d52016-06-30 10:52:14 -0600208struct table_info {
209 const char *desc;
210 int count;
211 const table_entry_t *table;
212};
213
Atish Patra04e8cd82020-03-05 16:24:22 -0800214static const struct comp_magic_map image_comp[] = {
215 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
216 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
217 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
218 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkinc81801d2021-08-31 18:22:18 +0800219 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
220 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra04e8cd82020-03-05 16:24:22 -0800221 { IH_COMP_NONE, "none", {}, },
222};
223
Simon Glass7da41d52016-06-30 10:52:14 -0600224static const struct table_info table_info[IH_COUNT] = {
225 { "architecture", IH_ARCH_COUNT, uimage_arch },
226 { "compression", IH_COMP_COUNT, uimage_comp },
227 { "operating system", IH_OS_COUNT, uimage_os },
228 { "image type", IH_TYPE_COUNT, uimage_type },
Simon Glasse3f81ae2022-10-20 18:23:03 -0600229 { "phase", IH_PHASE_COUNT, uimage_phase },
Simon Glass7da41d52016-06-30 10:52:14 -0600230};
231
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100232/*****************************************************************************/
233/* Legacy format routines */
234/*****************************************************************************/
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600235int image_check_hcrc(const struct legacy_img_hdr *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100236{
237 ulong hcrc;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000238 ulong len = image_get_header_size();
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600239 struct legacy_img_hdr header;
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100240
241 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000242 memmove(&header, (char *)hdr, image_get_header_size());
243 image_set_hcrc(&header, 0);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100244
Stephen Warren6904b6e2011-10-18 11:11:49 +0000245 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100246
Stephen Warren6904b6e2011-10-18 11:11:49 +0000247 return (hcrc == image_get_hcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100248}
249
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600250int image_check_dcrc(const struct legacy_img_hdr *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100251{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000252 ulong data = image_get_data(hdr);
253 ulong len = image_get_data_size(hdr);
254 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100255
Stephen Warren6904b6e2011-10-18 11:11:49 +0000256 return (dcrc == image_get_dcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100257}
258
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100259/**
260 * image_multi_count - get component (sub-image) count
261 * @hdr: pointer to the header of the multi component image
262 *
263 * image_multi_count() returns number of components in a multi
264 * component image.
265 *
266 * Note: no checking of the image type is done, caller must pass
267 * a valid multi component image.
268 *
269 * returns:
270 * number of components
271 */
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600272ulong image_multi_count(const struct legacy_img_hdr *hdr)
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100273{
274 ulong i, count = 0;
Marian Balakowicza1474212008-02-29 16:00:06 +0100275 uint32_t *size;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100276
277 /* get start of the image payload, which in case of multi
278 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000279 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100280
281 /* count non empty slots */
282 for (i = 0; size[i]; ++i)
283 count++;
284
285 return count;
286}
287
288/**
289 * image_multi_getimg - get component data address and size
290 * @hdr: pointer to the header of the multi component image
291 * @idx: index of the requested component
292 * @data: pointer to a ulong variable, will hold component data address
293 * @len: pointer to a ulong variable, will hold component size
294 *
295 * image_multi_getimg() returns size and data address for the requested
296 * component in a multi component image.
297 *
298 * Note: no checking of the image type is done, caller must pass
299 * a valid multi component image.
300 *
301 * returns:
302 * data address and size of the component, if idx is valid
303 * 0 in data and len, if idx is out of range
304 */
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600305void image_multi_getimg(const struct legacy_img_hdr *hdr, ulong idx,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100306 ulong *data, ulong *len)
307{
308 int i;
Marian Balakowicza1474212008-02-29 16:00:06 +0100309 uint32_t *size;
Nick Spence143a1592008-05-10 14:02:04 -0700310 ulong offset, count, img_data;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100311
312 /* get number of component */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000313 count = image_multi_count(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100314
315 /* get start of the image payload, which in case of multi
316 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000317 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100318
319 /* get address of the proper component data start, which means
320 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000321 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100322
323 if (idx < count) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000324 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100325 offset = 0;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100326
327 /* go over all indices preceding requested component idx */
328 for (i = 0; i < idx; i++) {
Nick Spence143a1592008-05-10 14:02:04 -0700329 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000330 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100331 }
332
333 /* calculate idx-th component data address */
Nick Spence143a1592008-05-10 14:02:04 -0700334 *data = img_data + offset;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100335 } else {
336 *len = 0;
337 *data = 0;
338 }
339}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100340
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600341static void image_print_type(const struct legacy_img_hdr *hdr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100342{
Heiko Schocher62cb1562015-06-29 09:10:46 +0200343 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100344
Stephen Warren6904b6e2011-10-18 11:11:49 +0000345 os = genimg_get_os_name(image_get_os(hdr));
346 arch = genimg_get_arch_name(image_get_arch(hdr));
347 type = genimg_get_type_name(image_get_type(hdr));
348 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100349
Stephen Warren6904b6e2011-10-18 11:11:49 +0000350 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100351}
352
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100353/**
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200354 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3b506772009-08-19 11:42:56 +0200355 * @ptr: pointer to the legacy format image header
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100356 * @p: pointer to prefix string
357 *
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200358 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100359 * The routine prints out all header fields followed by the size/offset data
360 * for MULTI/SCRIPT images.
361 *
362 * returns:
363 * no returned results
364 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000365void image_print_contents(const void *ptr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100366{
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600367 const struct legacy_img_hdr *hdr = (const struct legacy_img_hdr *)ptr;
Heiko Schocher62cb1562015-06-29 09:10:46 +0200368 const char __maybe_unused *p;
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200369
Simon Glass1030f162013-05-08 08:05:58 +0000370 p = IMAGE_INDENT_STRING;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000371 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000372 if (IMAGE_ENABLE_TIMESTAMP) {
373 printf("%sCreated: ", p);
374 genimg_print_time((time_t)image_get_time(hdr));
375 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000376 printf("%sImage Type: ", p);
377 image_print_type(hdr);
378 printf("%sData Size: ", p);
379 genimg_print_size(image_get_data_size(hdr));
380 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
381 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100382
Stephen Warren6904b6e2011-10-18 11:11:49 +0000383 if (image_check_type(hdr, IH_TYPE_MULTI) ||
384 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100385 int i;
386 ulong data, len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000387 ulong count = image_multi_count(hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100388
Stephen Warren6904b6e2011-10-18 11:11:49 +0000389 printf("%sContents:\n", p);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100390 for (i = 0; i < count; i++) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000391 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100392
Stephen Warren6904b6e2011-10-18 11:11:49 +0000393 printf("%s Image %d: ", p, i);
394 genimg_print_size(len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100395
Stephen Warren6904b6e2011-10-18 11:11:49 +0000396 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100397 /*
398 * the user may need to know offsets
399 * if planning to do something with
400 * multiple files
401 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000402 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100403 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100404 }
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100405 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
406 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Limac592c342019-09-23 18:39:47 +0000407 image_get_load(hdr) - image_get_header_size(),
408 (int)(image_get_size(hdr) + image_get_header_size()
409 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100410 }
411}
412
Julius Werner47ef9862019-07-24 19:37:54 -0700413/**
414 * print_decomp_msg() - Print a suitable decompression/loading message
415 *
416 * @type: OS type (IH_OS_...)
417 * @comp_type: Compression type being used (IH_COMP_...)
418 * @is_xip: true if the load address matches the image start
Simon Glass59f0c4d2023-11-19 07:43:32 -0700419 * @load: Load address for printing
Julius Werner47ef9862019-07-24 19:37:54 -0700420 */
Simon Glass59f0c4d2023-11-19 07:43:32 -0700421static void print_decomp_msg(int comp_type, int type, bool is_xip,
422 ulong load)
Julius Werner47ef9862019-07-24 19:37:54 -0700423{
424 const char *name = genimg_get_type_name(type);
425
Simon Glass59f0c4d2023-11-19 07:43:32 -0700426 /* Shows "Loading Kernel Image" for example */
Julius Werner47ef9862019-07-24 19:37:54 -0700427 if (comp_type == IH_COMP_NONE)
Simon Glass59f0c4d2023-11-19 07:43:32 -0700428 printf(" %s %s", is_xip ? "XIP" : "Loading", name);
Julius Werner47ef9862019-07-24 19:37:54 -0700429 else
Simon Glass59f0c4d2023-11-19 07:43:32 -0700430 printf(" Uncompressing %s", name);
431
432 printf(" to %lx\n", load);
Julius Werner47ef9862019-07-24 19:37:54 -0700433}
434
Atish Patra04e8cd82020-03-05 16:24:22 -0800435int image_decomp_type(const unsigned char *buf, ulong len)
436{
437 const struct comp_magic_map *cmagic = image_comp;
438
439 if (len < 2)
440 return -EINVAL;
441
442 for (; cmagic->comp_id > 0; cmagic++) {
443 if (!memcmp(buf, cmagic->magic, 2))
444 break;
445 }
446
447 return cmagic->comp_id;
448}
449
Julius Werner47ef9862019-07-24 19:37:54 -0700450int image_decomp(int comp, ulong load, ulong image_start, int type,
451 void *load_buf, void *image_buf, ulong image_len,
452 uint unc_len, ulong *load_end)
453{
Simon Glasseefec3d2021-09-25 07:03:11 -0600454 int ret = -ENOSYS;
Julius Werner47ef9862019-07-24 19:37:54 -0700455
456 *load_end = load;
Simon Glass59f0c4d2023-11-19 07:43:32 -0700457 print_decomp_msg(comp, type, load == image_start, load);
Julius Werner47ef9862019-07-24 19:37:54 -0700458
459 /*
460 * Load the image to the right place, decompressing if needed. After
461 * this, image_len will be set to the number of uncompressed bytes
462 * loaded, ret will be non-zero on error.
463 */
464 switch (comp) {
465 case IH_COMP_NONE:
Simon Glasseefec3d2021-09-25 07:03:11 -0600466 ret = 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700467 if (load == image_start)
468 break;
469 if (image_len <= unc_len)
470 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
471 else
472 ret = -ENOSPC;
473 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600474 case IH_COMP_GZIP:
Simon Glassdb503fb2021-09-25 19:43:14 -0600475 if (!tools_build() && CONFIG_IS_ENABLED(GZIP))
Simon Glassfd86d012021-09-25 07:03:14 -0600476 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
Julius Werner47ef9862019-07-24 19:37:54 -0700477 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600478 case IH_COMP_BZIP2:
Simon Glassdb503fb2021-09-25 19:43:14 -0600479 if (!tools_build() && CONFIG_IS_ENABLED(BZIP2)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600480 uint size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700481
Simon Glassfd86d012021-09-25 07:03:14 -0600482 /*
483 * If we've got less than 4 MB of malloc() space,
484 * use slower decompression algorithm which requires
485 * at most 2300 KB of memory.
486 */
487 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
488 image_buf, image_len, CONSERVE_MEMORY, 0);
489 image_len = size;
490 }
Julius Werner47ef9862019-07-24 19:37:54 -0700491 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600492 case IH_COMP_LZMA:
Simon Glassdb503fb2021-09-25 19:43:14 -0600493 if (!tools_build() && CONFIG_IS_ENABLED(LZMA)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600494 SizeT lzma_len = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700495
Simon Glassfd86d012021-09-25 07:03:14 -0600496 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
497 image_buf, image_len);
498 image_len = lzma_len;
499 }
Julius Werner47ef9862019-07-24 19:37:54 -0700500 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600501 case IH_COMP_LZO:
Simon Glassdb503fb2021-09-25 19:43:14 -0600502 if (!tools_build() && CONFIG_IS_ENABLED(LZO)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600503 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700504
Simon Glassfd86d012021-09-25 07:03:14 -0600505 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
506 image_len = size;
507 }
Julius Werner47ef9862019-07-24 19:37:54 -0700508 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600509 case IH_COMP_LZ4:
Simon Glassdb503fb2021-09-25 19:43:14 -0600510 if (!tools_build() && CONFIG_IS_ENABLED(LZ4)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600511 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700512
Simon Glassfd86d012021-09-25 07:03:14 -0600513 ret = ulz4fn(image_buf, image_len, load_buf, &size);
514 image_len = size;
515 }
Julius Werner47ef9862019-07-24 19:37:54 -0700516 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600517 case IH_COMP_ZSTD:
Simon Glassdb503fb2021-09-25 19:43:14 -0600518 if (!tools_build() && CONFIG_IS_ENABLED(ZSTD)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600519 struct abuf in, out;
Robert Markod1c24842020-04-25 19:37:21 +0200520
Simon Glassfd86d012021-09-25 07:03:14 -0600521 abuf_init_set(&in, image_buf, image_len);
Jérôme Carretero0edb7a92022-03-16 15:35:36 -0400522 abuf_init_set(&out, load_buf, unc_len);
Simon Glassfd86d012021-09-25 07:03:14 -0600523 ret = zstd_decompress(&in, &out);
524 if (ret >= 0) {
525 image_len = ret;
526 ret = 0;
527 }
Robert Markod1c24842020-04-25 19:37:21 +0200528 }
Robert Markod1c24842020-04-25 19:37:21 +0200529 break;
530 }
Simon Glasseefec3d2021-09-25 07:03:11 -0600531 if (ret == -ENOSYS) {
Julius Werner47ef9862019-07-24 19:37:54 -0700532 printf("Unimplemented compression type %d\n", comp);
Simon Glasseefec3d2021-09-25 07:03:11 -0600533 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700534 }
535
536 *load_end = load + image_len;
Mattijs Korpershoek0b5aa9b2024-05-23 11:27:09 +0200537 if (ret)
538 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700539
Simon Glasseefec3d2021-09-25 07:03:11 -0600540 return 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700541}
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100542
Simon Glass434a31b2015-06-23 15:38:25 -0600543const table_entry_t *get_table_entry(const table_entry_t *table, int id)
544{
545 for (; table->id >= 0; ++table) {
546 if (table->id == id)
547 return table;
548 }
549 return NULL;
550}
551
Simon Glass19864332016-06-30 10:52:16 -0600552static const char *unknown_msg(enum ih_category category)
553{
Simon Glassddb26072016-10-31 10:21:09 -0600554 static const char unknown_str[] = "Unknown ";
Simon Glass19864332016-06-30 10:52:16 -0600555 static char msg[30];
556
Simon Glassddb26072016-10-31 10:21:09 -0600557 strcpy(msg, unknown_str);
558 strncat(msg, table_info[category].desc,
559 sizeof(msg) - sizeof(unknown_str));
Simon Glass19864332016-06-30 10:52:16 -0600560
561 return msg;
562}
563
564/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900565 * genimg_get_cat_name - translate entry id to long name
Simon Glass19864332016-06-30 10:52:16 -0600566 * @category: category to look up (enum ih_category)
567 * @id: entry id to be translated
568 *
569 * This will scan the translation table trying to find the entry that matches
570 * the given id.
571 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100572 * Return: long entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600573 */
574const char *genimg_get_cat_name(enum ih_category category, uint id)
575{
576 const table_entry_t *entry;
577
578 entry = get_table_entry(table_info[category].table, id);
579 if (!entry)
580 return unknown_msg(category);
Marek Vasut869835d2023-09-06 23:29:59 +0200581 return entry->lname;
Simon Glass19864332016-06-30 10:52:16 -0600582}
583
584/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900585 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass19864332016-06-30 10:52:16 -0600586 * @category: category to look up (enum ih_category)
587 * @id: entry id to be translated
588 *
589 * This will scan the translation table trying to find the entry that matches
590 * the given id.
591 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100592 * Return: short entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600593 */
594const char *genimg_get_cat_short_name(enum ih_category category, uint id)
595{
596 const table_entry_t *entry;
597
598 entry = get_table_entry(table_info[category].table, id);
599 if (!entry)
600 return unknown_msg(category);
Marek Vasut869835d2023-09-06 23:29:59 +0200601 return entry->sname;
Simon Glass19864332016-06-30 10:52:16 -0600602}
603
604int genimg_get_cat_count(enum ih_category category)
605{
606 return table_info[category].count;
607}
608
609const char *genimg_get_cat_desc(enum ih_category category)
610{
611 return table_info[category].desc;
612}
613
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100614/**
Naoki Hayamad7e82912020-10-07 11:21:25 +0900615 * genimg_cat_has_id - check whether category has entry id
616 * @category: category to look up (enum ih_category)
617 * @id: entry id to be checked
618 *
619 * This will scan the translation table trying to find the entry that matches
620 * the given id.
621 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100622 * Return: true if category has entry id; false if not
Naoki Hayamad7e82912020-10-07 11:21:25 +0900623 */
624bool genimg_cat_has_id(enum ih_category category, uint id)
625{
626 if (get_table_entry(table_info[category].table, id))
627 return true;
628
629 return false;
630}
631
632/**
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100633 * get_table_entry_name - translate entry id to long name
634 * @table: pointer to a translation table for entries of a specific type
635 * @msg: message to be returned when translation fails
636 * @id: entry id to be translated
637 *
638 * get_table_entry_name() will go over translation table trying to find
639 * entry that matches given id. If matching entry is found, its long
640 * name is returned to the caller.
641 *
642 * returns:
643 * long entry name if translation succeeds
644 * msg otherwise
645 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400646char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100647{
Simon Glass434a31b2015-06-23 15:38:25 -0600648 table = get_table_entry(table, id);
649 if (!table)
650 return msg;
Marek Vasut869835d2023-09-06 23:29:59 +0200651 return table->lname;
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100652}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100653
Stephen Warren6904b6e2011-10-18 11:11:49 +0000654const char *genimg_get_os_name(uint8_t os)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100655{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000656 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100657}
658
Stephen Warren6904b6e2011-10-18 11:11:49 +0000659const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100660{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000661 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
662 arch));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100663}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100664
Stephen Warren6904b6e2011-10-18 11:11:49 +0000665const char *genimg_get_type_name(uint8_t type)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100666{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000667 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100668}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100669
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900670const char *genimg_get_comp_name(uint8_t comp)
671{
672 return (get_table_entry_name(uimage_comp, "Unknown Compression",
673 comp));
674}
675
Simon Glasse3f81ae2022-10-20 18:23:03 -0600676const char *genimg_get_phase_name(enum image_phase_t phase)
677{
678 return get_table_entry_name(uimage_phase, "Unknown Phase", phase);
679}
680
Simon Glass86c362d2016-02-22 22:55:50 -0700681static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass434a31b2015-06-23 15:38:25 -0600682{
Simon Glass86c362d2016-02-22 22:55:50 -0700683 table = get_table_entry(table, val);
Simon Glass434a31b2015-06-23 15:38:25 -0600684 if (!table)
685 return "unknown";
Marek Vasut869835d2023-09-06 23:29:59 +0200686 return table->sname;
Simon Glass434a31b2015-06-23 15:38:25 -0600687}
688
Simon Glass86c362d2016-02-22 22:55:50 -0700689const char *genimg_get_type_short_name(uint8_t type)
690{
691 return genimg_get_short_name(uimage_type, type);
692}
693
Simon Glass86c362d2016-02-22 22:55:50 -0700694const char *genimg_get_comp_short_name(uint8_t comp)
695{
696 return genimg_get_short_name(uimage_comp, comp);
697}
698
699const char *genimg_get_os_short_name(uint8_t os)
700{
701 return genimg_get_short_name(uimage_os, os);
702}
703
704const char *genimg_get_arch_short_name(uint8_t arch)
705{
706 return genimg_get_short_name(uimage_arch, arch);
707}
708
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100709/**
710 * get_table_entry_id - translate short entry name to id
711 * @table: pointer to a translation table for entries of a specific type
712 * @table_name: to be used in case of error
713 * @name: entry short name to be translated
714 *
715 * get_table_entry_id() will go over translation table trying to find
716 * entry that matches given short name. If matching entry is found,
717 * its id returned to the caller.
718 *
719 * returns:
720 * entry id if translation succeeds
721 * -1 otherwise
722 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400723int get_table_entry_id(const table_entry_t *table,
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100724 const char *table_name, const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100725{
Mike Frysingercf2feb12010-10-20 07:17:39 -0400726 const table_entry_t *t;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100727
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100728 for (t = table; t->id >= 0; ++t) {
Marek Vasut869835d2023-09-06 23:29:59 +0200729 if (t->sname && !strcasecmp(t->sname, name))
Simon Glass684ef382021-09-25 07:03:18 -0600730 return t->id;
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100731 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000732 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass434a31b2015-06-23 15:38:25 -0600733
734 return -1;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100735}
736
Stephen Warren6904b6e2011-10-18 11:11:49 +0000737int genimg_get_os_id(const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100738{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000739 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100740}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100741
Stephen Warren6904b6e2011-10-18 11:11:49 +0000742int genimg_get_arch_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100743{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000744 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100745}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100746
Stephen Warren6904b6e2011-10-18 11:11:49 +0000747int genimg_get_type_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100748{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000749 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100750}
Marian Balakowicz95418502008-01-31 13:55:39 +0100751
Stephen Warren6904b6e2011-10-18 11:11:49 +0000752int genimg_get_comp_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100753{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000754 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100755}
Simon Glasse3f81ae2022-10-20 18:23:03 -0600756
757int genimg_get_phase_id(const char *name)
758{
759 return get_table_entry_id(uimage_phase, "Phase", name);
760}