blob: fc774d605d17db8197a7c534ce56f0bc07c01d7b [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", },
Cristian Ciocaltea217f9642019-12-24 18:05:38 +0200133 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut0e3b5122014-12-16 14:07:21 +0100134
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100135 { -1, "", "", },
136};
137
Mike Frysingercf2feb12010-10-20 07:17:39 -0400138static const table_entry_t uimage_type[] = {
Stefano Babic38855512011-10-17 00:07:43 +0000139 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100140 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
141 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby34d12a12011-07-21 09:10:30 -0400142 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharan82777932014-04-04 13:16:48 -0400143 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100144 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warren8c87eba2011-11-10 13:17:53 -0700145 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic38855512011-10-17 00:07:43 +0000146 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
147 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fan60a56072018-10-16 04:50:30 +0000148 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan31c51da2018-11-20 10:19:36 +0000149 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glassa3ed7372016-06-30 10:52:15 -0600150 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100151 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic38855512011-10-17 00:07:43 +0000152 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xieea65fd82012-08-10 02:49:35 +0000153 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100154 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
155 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut83f69282018-04-15 13:15:33 +0200156 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
157 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100158 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000159 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasut4a0e05d2013-08-26 20:43:33 +0200160 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7c75d3e2014-05-19 14:23:39 +0200161 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass0129b522014-10-19 21:11:24 -0600162 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)ed1cb1a2015-03-31 11:40:49 +0200163 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassc9c74032015-08-30 16:55:24 -0600164 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glass3b1e5072015-08-30 16:55:25 -0600165 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glassc17b1452015-08-30 16:55:26 -0600166 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)2e9f4942016-09-26 09:08:06 +0200167 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossice1771e2015-11-17 22:56:56 +1000168 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekfa124662016-04-27 14:03:29 +0200169 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf5329d672018-04-13 14:18:52 +0200170 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simek0a130b12016-05-17 13:58:44 +0200171 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis378bcff2016-11-29 16:33:21 -0600172 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100173 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis30f9d562017-07-31 10:58:20 -0500174 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunaye6db5df2018-03-12 10:46:04 +0100175 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
developere1de5d42018-11-15 10:07:49 +0800176 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunay42594db2019-08-02 15:07:19 +0200177 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywarae53f9d92018-12-20 01:15:18 +0000178 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Samuel Holland75728782022-03-18 00:00:43 -0500179 { IH_TYPE_SUNXI_TOC0, "sunxi_toc0", "Allwinner TOC0 Boot Image" },
Marc Kleine-Budde0aa1da62022-11-23 12:55:33 +0100180 { IH_TYPE_FDT_LEGACY, "fdt_legacy", "legacy Image with Flat Device Tree ", },
Ralph Siemsen2d283fa2023-05-12 21:36:57 -0400181 { IH_TYPE_RENESAS_SPKG, "spkgimage", "Renesas SPKG Image" },
Heinrich Schuchardtb28f8f32023-09-17 13:47:30 +0200182 { IH_TYPE_STARFIVE_SPL, "sfspl", "StarFive SPL Image" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100183 { -1, "", "", },
184};
185
Mike Frysingercf2feb12010-10-20 07:17:39 -0400186static const table_entry_t uimage_comp[] = {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100187 { IH_COMP_NONE, "none", "uncompressed", },
188 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
189 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200190 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100191 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700192 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Markod1c24842020-04-25 19:37:21 +0200193 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100194 { -1, "", "", },
195};
196
Simon Glasse3f81ae2022-10-20 18:23:03 -0600197static const table_entry_t uimage_phase[] = {
198 { IH_PHASE_NONE, "none", "any", },
199 { IH_PHASE_U_BOOT, "u-boot", "U-Boot phase", },
200 { IH_PHASE_SPL, "spl", "SPL Phase", },
201 { -1, "", "", },
202};
203
Simon Glass7da41d52016-06-30 10:52:14 -0600204struct table_info {
205 const char *desc;
206 int count;
207 const table_entry_t *table;
208};
209
Atish Patra04e8cd82020-03-05 16:24:22 -0800210static const struct comp_magic_map image_comp[] = {
211 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
212 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
213 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
214 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkinc81801d2021-08-31 18:22:18 +0800215 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
216 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra04e8cd82020-03-05 16:24:22 -0800217 { IH_COMP_NONE, "none", {}, },
218};
219
Simon Glass7da41d52016-06-30 10:52:14 -0600220static const struct table_info table_info[IH_COUNT] = {
221 { "architecture", IH_ARCH_COUNT, uimage_arch },
222 { "compression", IH_COMP_COUNT, uimage_comp },
223 { "operating system", IH_OS_COUNT, uimage_os },
224 { "image type", IH_TYPE_COUNT, uimage_type },
Simon Glasse3f81ae2022-10-20 18:23:03 -0600225 { "phase", IH_PHASE_COUNT, uimage_phase },
Simon Glass7da41d52016-06-30 10:52:14 -0600226};
227
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100228/*****************************************************************************/
229/* Legacy format routines */
230/*****************************************************************************/
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600231int image_check_hcrc(const struct legacy_img_hdr *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100232{
233 ulong hcrc;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000234 ulong len = image_get_header_size();
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600235 struct legacy_img_hdr header;
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100236
237 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000238 memmove(&header, (char *)hdr, image_get_header_size());
239 image_set_hcrc(&header, 0);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100240
Stephen Warren6904b6e2011-10-18 11:11:49 +0000241 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100242
Stephen Warren6904b6e2011-10-18 11:11:49 +0000243 return (hcrc == image_get_hcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100244}
245
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600246int image_check_dcrc(const struct legacy_img_hdr *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100247{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000248 ulong data = image_get_data(hdr);
249 ulong len = image_get_data_size(hdr);
250 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100251
Stephen Warren6904b6e2011-10-18 11:11:49 +0000252 return (dcrc == image_get_dcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100253}
254
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100255/**
256 * image_multi_count - get component (sub-image) count
257 * @hdr: pointer to the header of the multi component image
258 *
259 * image_multi_count() returns number of components in a multi
260 * component image.
261 *
262 * Note: no checking of the image type is done, caller must pass
263 * a valid multi component image.
264 *
265 * returns:
266 * number of components
267 */
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600268ulong image_multi_count(const struct legacy_img_hdr *hdr)
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100269{
270 ulong i, count = 0;
Marian Balakowicza1474212008-02-29 16:00:06 +0100271 uint32_t *size;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100272
273 /* get start of the image payload, which in case of multi
274 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000275 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100276
277 /* count non empty slots */
278 for (i = 0; size[i]; ++i)
279 count++;
280
281 return count;
282}
283
284/**
285 * image_multi_getimg - get component data address and size
286 * @hdr: pointer to the header of the multi component image
287 * @idx: index of the requested component
288 * @data: pointer to a ulong variable, will hold component data address
289 * @len: pointer to a ulong variable, will hold component size
290 *
291 * image_multi_getimg() returns size and data address for the requested
292 * component in a multi component image.
293 *
294 * Note: no checking of the image type is done, caller must pass
295 * a valid multi component image.
296 *
297 * returns:
298 * data address and size of the component, if idx is valid
299 * 0 in data and len, if idx is out of range
300 */
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600301void image_multi_getimg(const struct legacy_img_hdr *hdr, ulong idx,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100302 ulong *data, ulong *len)
303{
304 int i;
Marian Balakowicza1474212008-02-29 16:00:06 +0100305 uint32_t *size;
Nick Spence143a1592008-05-10 14:02:04 -0700306 ulong offset, count, img_data;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100307
308 /* get number of component */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000309 count = image_multi_count(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100310
311 /* get start of the image payload, which in case of multi
312 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000313 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100314
315 /* get address of the proper component data start, which means
316 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000317 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100318
319 if (idx < count) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000320 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100321 offset = 0;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100322
323 /* go over all indices preceding requested component idx */
324 for (i = 0; i < idx; i++) {
Nick Spence143a1592008-05-10 14:02:04 -0700325 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000326 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100327 }
328
329 /* calculate idx-th component data address */
Nick Spence143a1592008-05-10 14:02:04 -0700330 *data = img_data + offset;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100331 } else {
332 *len = 0;
333 *data = 0;
334 }
335}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100336
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600337static void image_print_type(const struct legacy_img_hdr *hdr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100338{
Heiko Schocher62cb1562015-06-29 09:10:46 +0200339 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100340
Stephen Warren6904b6e2011-10-18 11:11:49 +0000341 os = genimg_get_os_name(image_get_os(hdr));
342 arch = genimg_get_arch_name(image_get_arch(hdr));
343 type = genimg_get_type_name(image_get_type(hdr));
344 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100345
Stephen Warren6904b6e2011-10-18 11:11:49 +0000346 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100347}
348
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100349/**
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200350 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3b506772009-08-19 11:42:56 +0200351 * @ptr: pointer to the legacy format image header
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100352 * @p: pointer to prefix string
353 *
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200354 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100355 * The routine prints out all header fields followed by the size/offset data
356 * for MULTI/SCRIPT images.
357 *
358 * returns:
359 * no returned results
360 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000361void image_print_contents(const void *ptr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100362{
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600363 const struct legacy_img_hdr *hdr = (const struct legacy_img_hdr *)ptr;
Heiko Schocher62cb1562015-06-29 09:10:46 +0200364 const char __maybe_unused *p;
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200365
Simon Glass1030f162013-05-08 08:05:58 +0000366 p = IMAGE_INDENT_STRING;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000367 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000368 if (IMAGE_ENABLE_TIMESTAMP) {
369 printf("%sCreated: ", p);
370 genimg_print_time((time_t)image_get_time(hdr));
371 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000372 printf("%sImage Type: ", p);
373 image_print_type(hdr);
374 printf("%sData Size: ", p);
375 genimg_print_size(image_get_data_size(hdr));
376 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
377 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100378
Stephen Warren6904b6e2011-10-18 11:11:49 +0000379 if (image_check_type(hdr, IH_TYPE_MULTI) ||
380 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100381 int i;
382 ulong data, len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000383 ulong count = image_multi_count(hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100384
Stephen Warren6904b6e2011-10-18 11:11:49 +0000385 printf("%sContents:\n", p);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100386 for (i = 0; i < count; i++) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000387 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100388
Stephen Warren6904b6e2011-10-18 11:11:49 +0000389 printf("%s Image %d: ", p, i);
390 genimg_print_size(len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100391
Stephen Warren6904b6e2011-10-18 11:11:49 +0000392 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100393 /*
394 * the user may need to know offsets
395 * if planning to do something with
396 * multiple files
397 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000398 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100399 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100400 }
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100401 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
402 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Limac592c342019-09-23 18:39:47 +0000403 image_get_load(hdr) - image_get_header_size(),
404 (int)(image_get_size(hdr) + image_get_header_size()
405 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100406 }
407}
408
Julius Werner47ef9862019-07-24 19:37:54 -0700409/**
410 * print_decomp_msg() - Print a suitable decompression/loading message
411 *
412 * @type: OS type (IH_OS_...)
413 * @comp_type: Compression type being used (IH_COMP_...)
414 * @is_xip: true if the load address matches the image start
Simon Glass59f0c4d2023-11-19 07:43:32 -0700415 * @load: Load address for printing
Julius Werner47ef9862019-07-24 19:37:54 -0700416 */
Simon Glass59f0c4d2023-11-19 07:43:32 -0700417static void print_decomp_msg(int comp_type, int type, bool is_xip,
418 ulong load)
Julius Werner47ef9862019-07-24 19:37:54 -0700419{
420 const char *name = genimg_get_type_name(type);
421
Simon Glass59f0c4d2023-11-19 07:43:32 -0700422 /* Shows "Loading Kernel Image" for example */
Julius Werner47ef9862019-07-24 19:37:54 -0700423 if (comp_type == IH_COMP_NONE)
Simon Glass59f0c4d2023-11-19 07:43:32 -0700424 printf(" %s %s", is_xip ? "XIP" : "Loading", name);
Julius Werner47ef9862019-07-24 19:37:54 -0700425 else
Simon Glass59f0c4d2023-11-19 07:43:32 -0700426 printf(" Uncompressing %s", name);
427
428 printf(" to %lx\n", load);
Julius Werner47ef9862019-07-24 19:37:54 -0700429}
430
Atish Patra04e8cd82020-03-05 16:24:22 -0800431int image_decomp_type(const unsigned char *buf, ulong len)
432{
433 const struct comp_magic_map *cmagic = image_comp;
434
435 if (len < 2)
436 return -EINVAL;
437
438 for (; cmagic->comp_id > 0; cmagic++) {
439 if (!memcmp(buf, cmagic->magic, 2))
440 break;
441 }
442
443 return cmagic->comp_id;
444}
445
Julius Werner47ef9862019-07-24 19:37:54 -0700446int image_decomp(int comp, ulong load, ulong image_start, int type,
447 void *load_buf, void *image_buf, ulong image_len,
448 uint unc_len, ulong *load_end)
449{
Simon Glasseefec3d2021-09-25 07:03:11 -0600450 int ret = -ENOSYS;
Julius Werner47ef9862019-07-24 19:37:54 -0700451
452 *load_end = load;
Simon Glass59f0c4d2023-11-19 07:43:32 -0700453 print_decomp_msg(comp, type, load == image_start, load);
Julius Werner47ef9862019-07-24 19:37:54 -0700454
455 /*
456 * Load the image to the right place, decompressing if needed. After
457 * this, image_len will be set to the number of uncompressed bytes
458 * loaded, ret will be non-zero on error.
459 */
460 switch (comp) {
461 case IH_COMP_NONE:
Simon Glasseefec3d2021-09-25 07:03:11 -0600462 ret = 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700463 if (load == image_start)
464 break;
465 if (image_len <= unc_len)
466 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
467 else
468 ret = -ENOSPC;
469 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600470 case IH_COMP_GZIP:
Simon Glassdb503fb2021-09-25 19:43:14 -0600471 if (!tools_build() && CONFIG_IS_ENABLED(GZIP))
Simon Glassfd86d012021-09-25 07:03:14 -0600472 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
Julius Werner47ef9862019-07-24 19:37:54 -0700473 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600474 case IH_COMP_BZIP2:
Simon Glassdb503fb2021-09-25 19:43:14 -0600475 if (!tools_build() && CONFIG_IS_ENABLED(BZIP2)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600476 uint size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700477
Simon Glassfd86d012021-09-25 07:03:14 -0600478 /*
479 * If we've got less than 4 MB of malloc() space,
480 * use slower decompression algorithm which requires
481 * at most 2300 KB of memory.
482 */
483 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
484 image_buf, image_len, CONSERVE_MEMORY, 0);
485 image_len = size;
486 }
Julius Werner47ef9862019-07-24 19:37:54 -0700487 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600488 case IH_COMP_LZMA:
Simon Glassdb503fb2021-09-25 19:43:14 -0600489 if (!tools_build() && CONFIG_IS_ENABLED(LZMA)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600490 SizeT lzma_len = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700491
Simon Glassfd86d012021-09-25 07:03:14 -0600492 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
493 image_buf, image_len);
494 image_len = lzma_len;
495 }
Julius Werner47ef9862019-07-24 19:37:54 -0700496 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600497 case IH_COMP_LZO:
Simon Glassdb503fb2021-09-25 19:43:14 -0600498 if (!tools_build() && CONFIG_IS_ENABLED(LZO)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600499 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700500
Simon Glassfd86d012021-09-25 07:03:14 -0600501 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
502 image_len = size;
503 }
Julius Werner47ef9862019-07-24 19:37:54 -0700504 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600505 case IH_COMP_LZ4:
Simon Glassdb503fb2021-09-25 19:43:14 -0600506 if (!tools_build() && CONFIG_IS_ENABLED(LZ4)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600507 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700508
Simon Glassfd86d012021-09-25 07:03:14 -0600509 ret = ulz4fn(image_buf, image_len, load_buf, &size);
510 image_len = size;
511 }
Julius Werner47ef9862019-07-24 19:37:54 -0700512 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600513 case IH_COMP_ZSTD:
Simon Glassdb503fb2021-09-25 19:43:14 -0600514 if (!tools_build() && CONFIG_IS_ENABLED(ZSTD)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600515 struct abuf in, out;
Robert Markod1c24842020-04-25 19:37:21 +0200516
Simon Glassfd86d012021-09-25 07:03:14 -0600517 abuf_init_set(&in, image_buf, image_len);
Jérôme Carretero0edb7a92022-03-16 15:35:36 -0400518 abuf_init_set(&out, load_buf, unc_len);
Simon Glassfd86d012021-09-25 07:03:14 -0600519 ret = zstd_decompress(&in, &out);
520 if (ret >= 0) {
521 image_len = ret;
522 ret = 0;
523 }
Robert Markod1c24842020-04-25 19:37:21 +0200524 }
Robert Markod1c24842020-04-25 19:37:21 +0200525 break;
526 }
Simon Glasseefec3d2021-09-25 07:03:11 -0600527 if (ret == -ENOSYS) {
Julius Werner47ef9862019-07-24 19:37:54 -0700528 printf("Unimplemented compression type %d\n", comp);
Simon Glasseefec3d2021-09-25 07:03:11 -0600529 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700530 }
531
532 *load_end = load + image_len;
Mattijs Korpershoek0b5aa9b2024-05-23 11:27:09 +0200533 if (ret)
534 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700535
Simon Glasseefec3d2021-09-25 07:03:11 -0600536 return 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700537}
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100538
Simon Glass434a31b2015-06-23 15:38:25 -0600539const table_entry_t *get_table_entry(const table_entry_t *table, int id)
540{
541 for (; table->id >= 0; ++table) {
542 if (table->id == id)
543 return table;
544 }
545 return NULL;
546}
547
Simon Glass19864332016-06-30 10:52:16 -0600548static const char *unknown_msg(enum ih_category category)
549{
Simon Glassddb26072016-10-31 10:21:09 -0600550 static const char unknown_str[] = "Unknown ";
Simon Glass19864332016-06-30 10:52:16 -0600551 static char msg[30];
552
Simon Glassddb26072016-10-31 10:21:09 -0600553 strcpy(msg, unknown_str);
554 strncat(msg, table_info[category].desc,
555 sizeof(msg) - sizeof(unknown_str));
Simon Glass19864332016-06-30 10:52:16 -0600556
557 return msg;
558}
559
560/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900561 * genimg_get_cat_name - translate entry id to long name
Simon Glass19864332016-06-30 10:52:16 -0600562 * @category: category to look up (enum ih_category)
563 * @id: entry id to be translated
564 *
565 * This will scan the translation table trying to find the entry that matches
566 * the given id.
567 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100568 * Return: long entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600569 */
570const char *genimg_get_cat_name(enum ih_category category, uint id)
571{
572 const table_entry_t *entry;
573
574 entry = get_table_entry(table_info[category].table, id);
575 if (!entry)
576 return unknown_msg(category);
Marek Vasut869835d2023-09-06 23:29:59 +0200577 return entry->lname;
Simon Glass19864332016-06-30 10:52:16 -0600578}
579
580/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900581 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass19864332016-06-30 10:52:16 -0600582 * @category: category to look up (enum ih_category)
583 * @id: entry id to be translated
584 *
585 * This will scan the translation table trying to find the entry that matches
586 * the given id.
587 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100588 * Return: short entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600589 */
590const char *genimg_get_cat_short_name(enum ih_category category, uint id)
591{
592 const table_entry_t *entry;
593
594 entry = get_table_entry(table_info[category].table, id);
595 if (!entry)
596 return unknown_msg(category);
Marek Vasut869835d2023-09-06 23:29:59 +0200597 return entry->sname;
Simon Glass19864332016-06-30 10:52:16 -0600598}
599
600int genimg_get_cat_count(enum ih_category category)
601{
602 return table_info[category].count;
603}
604
605const char *genimg_get_cat_desc(enum ih_category category)
606{
607 return table_info[category].desc;
608}
609
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100610/**
Naoki Hayamad7e82912020-10-07 11:21:25 +0900611 * genimg_cat_has_id - check whether category has entry id
612 * @category: category to look up (enum ih_category)
613 * @id: entry id to be checked
614 *
615 * This will scan the translation table trying to find the entry that matches
616 * the given id.
617 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100618 * Return: true if category has entry id; false if not
Naoki Hayamad7e82912020-10-07 11:21:25 +0900619 */
620bool genimg_cat_has_id(enum ih_category category, uint id)
621{
622 if (get_table_entry(table_info[category].table, id))
623 return true;
624
625 return false;
626}
627
628/**
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100629 * get_table_entry_name - translate entry id to long name
630 * @table: pointer to a translation table for entries of a specific type
631 * @msg: message to be returned when translation fails
632 * @id: entry id to be translated
633 *
634 * get_table_entry_name() will go over translation table trying to find
635 * entry that matches given id. If matching entry is found, its long
636 * name is returned to the caller.
637 *
638 * returns:
639 * long entry name if translation succeeds
640 * msg otherwise
641 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400642char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100643{
Simon Glass434a31b2015-06-23 15:38:25 -0600644 table = get_table_entry(table, id);
645 if (!table)
646 return msg;
Marek Vasut869835d2023-09-06 23:29:59 +0200647 return table->lname;
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100648}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100649
Stephen Warren6904b6e2011-10-18 11:11:49 +0000650const char *genimg_get_os_name(uint8_t os)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100651{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000652 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100653}
654
Stephen Warren6904b6e2011-10-18 11:11:49 +0000655const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100656{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000657 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
658 arch));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100659}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100660
Stephen Warren6904b6e2011-10-18 11:11:49 +0000661const char *genimg_get_type_name(uint8_t type)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100662{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000663 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100664}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100665
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900666const char *genimg_get_comp_name(uint8_t comp)
667{
668 return (get_table_entry_name(uimage_comp, "Unknown Compression",
669 comp));
670}
671
Simon Glasse3f81ae2022-10-20 18:23:03 -0600672const char *genimg_get_phase_name(enum image_phase_t phase)
673{
674 return get_table_entry_name(uimage_phase, "Unknown Phase", phase);
675}
676
Simon Glass86c362d2016-02-22 22:55:50 -0700677static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass434a31b2015-06-23 15:38:25 -0600678{
Simon Glass86c362d2016-02-22 22:55:50 -0700679 table = get_table_entry(table, val);
Simon Glass434a31b2015-06-23 15:38:25 -0600680 if (!table)
681 return "unknown";
Marek Vasut869835d2023-09-06 23:29:59 +0200682 return table->sname;
Simon Glass434a31b2015-06-23 15:38:25 -0600683}
684
Simon Glass86c362d2016-02-22 22:55:50 -0700685const char *genimg_get_type_short_name(uint8_t type)
686{
687 return genimg_get_short_name(uimage_type, type);
688}
689
Simon Glass86c362d2016-02-22 22:55:50 -0700690const char *genimg_get_comp_short_name(uint8_t comp)
691{
692 return genimg_get_short_name(uimage_comp, comp);
693}
694
695const char *genimg_get_os_short_name(uint8_t os)
696{
697 return genimg_get_short_name(uimage_os, os);
698}
699
700const char *genimg_get_arch_short_name(uint8_t arch)
701{
702 return genimg_get_short_name(uimage_arch, arch);
703}
704
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100705/**
706 * get_table_entry_id - translate short entry name to id
707 * @table: pointer to a translation table for entries of a specific type
708 * @table_name: to be used in case of error
709 * @name: entry short name to be translated
710 *
711 * get_table_entry_id() will go over translation table trying to find
712 * entry that matches given short name. If matching entry is found,
713 * its id returned to the caller.
714 *
715 * returns:
716 * entry id if translation succeeds
717 * -1 otherwise
718 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400719int get_table_entry_id(const table_entry_t *table,
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100720 const char *table_name, const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100721{
Mike Frysingercf2feb12010-10-20 07:17:39 -0400722 const table_entry_t *t;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100723
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100724 for (t = table; t->id >= 0; ++t) {
Marek Vasut869835d2023-09-06 23:29:59 +0200725 if (t->sname && !strcasecmp(t->sname, name))
Simon Glass684ef382021-09-25 07:03:18 -0600726 return t->id;
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100727 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000728 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass434a31b2015-06-23 15:38:25 -0600729
730 return -1;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100731}
732
Stephen Warren6904b6e2011-10-18 11:11:49 +0000733int genimg_get_os_id(const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100734{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000735 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100736}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100737
Stephen Warren6904b6e2011-10-18 11:11:49 +0000738int genimg_get_arch_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100739{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000740 return (get_table_entry_id(uimage_arch, "CPU", 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_type_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_type, "Image", name));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100746}
Marian Balakowicz95418502008-01-31 13:55:39 +0100747
Stephen Warren6904b6e2011-10-18 11:11:49 +0000748int genimg_get_comp_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_comp, "Compression", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100751}
Simon Glasse3f81ae2022-10-20 18:23:03 -0600752
753int genimg_get_phase_id(const char *name)
754{
755 return get_table_entry_id(uimage_phase, "Phase", name);
756}