blob: f792f2aa69adc0d4710d0e824526771fbc743b64 [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
Marian Balakowicz95418502008-01-31 13:55:39 +010010#include <common.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060011#include <env.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>
Andy Fleming72c23be2008-04-02 16:19:07 -050028#include <u-boot/md5.h>
Jeroen Hofsteebfe88fe2014-06-12 22:27:12 +020029#include <u-boot/sha1.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090030#include <linux/errno.h>
Simon Glass49648062013-05-07 06:12:03 +000031#include <asm/io.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010032
Marian Balakowicz2efc2642008-01-31 13:58:13 +010033DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz61fde552008-02-27 11:01:04 +010034
Simon Glassfd86d012021-09-25 07:03:14 -060035/* Set this if we have less than 4 MB of malloc() space */
36#if CONFIG_SYS_MALLOC_LEN < (4096 * 1024)
37#define CONSERVE_MEMORY true
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010038#else
Simon Glassfd86d012021-09-25 07:03:14 -060039#define CONSERVE_MEMORY false
40#endif
41
42#else /* USE_HOSTCC */
Marian Balakowicz95418502008-01-31 13:55:39 +010043#include "mkimage.h"
Andy Fleming72c23be2008-04-02 16:19:07 -050044#include <u-boot/md5.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010045#include <time.h>
Heiko Schocher62cb1562015-06-29 09:10:46 +020046
47#ifndef __maybe_unused
48# define __maybe_unused /* unimplemented */
49#endif
Simon Glassfd86d012021-09-25 07:03:14 -060050
51#define CONSERVE_MEMORY false
52
Marian Balakowicze227fbb2008-02-29 21:24:06 +010053#endif /* !USE_HOSTCC*/
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010054
Simon Glassfd86d012021-09-25 07:03:14 -060055#include <abuf.h>
56#include <bzlib.h>
Simon Glass4a8a8a12021-09-25 07:03:17 -060057#include <display_options.h>
Simon Glassfd86d012021-09-25 07:03:14 -060058#include <gzip.h>
Simon Glass4d7237b2021-09-25 07:03:15 -060059#include <image.h>
Breno Matheus Limac592c342019-09-23 18:39:47 +000060#include <imximage.h>
Simon Glass684ef382021-09-25 07:03:18 -060061#include <relocate.h>
Simon Glassfd86d012021-09-25 07:03:14 -060062#include <linux/lzo.h>
63#include <linux/zstd.h>
64#include <linux/kconfig.h>
65#include <lzma/LzmaTypes.h>
66#include <lzma/LzmaDec.h>
67#include <lzma/LzmaTools.h>
68#include <u-boot/crc.h>
Simon Glasscaf62672021-10-09 09:28:21 -060069#include <u-boot/lz4.h>
Simon Glass9adb6862013-02-24 17:33:25 +000070
Mike Frysingercf2feb12010-10-20 07:17:39 -040071static const table_entry_t uimage_arch[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -060072 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010073 { IH_ARCH_ALPHA, "alpha", "Alpha", },
74 { IH_ARCH_ARM, "arm", "ARM", },
75 { IH_ARCH_I386, "x86", "Intel x86", },
76 { IH_ARCH_IA64, "ia64", "IA64", },
77 { IH_ARCH_M68K, "m68k", "M68K", },
78 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
79 { IH_ARCH_MIPS, "mips", "MIPS", },
80 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010081 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Erickson80f51b82008-05-04 16:45:01 -070082 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010083 { IH_ARCH_PPC, "ppc", "PowerPC", },
84 { IH_ARCH_S390, "s390", "IBM S390", },
85 { IH_ARCH_SH, "sh", "SuperH", },
86 { IH_ARCH_SPARC, "sparc", "SPARC", },
87 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
88 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
89 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin354b4e32011-10-19 20:41:09 +000090 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson15c669c2011-11-26 19:04:50 +000091 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass49648062013-05-07 06:12:03 +000092 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng85fd5f12013-12-14 11:47:35 +080093 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkin78bc86f2014-02-04 12:56:16 +040094 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass9d428302014-10-10 08:21:57 -060095 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankel41e37372016-08-10 18:36:43 +030096 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chencda20702018-03-13 13:37:29 +080097 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010098 { -1, "", "", },
99};
100
Mike Frysingercf2feb12010-10-20 07:17:39 -0400101static const table_entry_t uimage_os[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -0600102 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich1bf3eb22017-09-13 21:29:29 +0200103 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100104 { IH_OS_LINUX, "linux", "Linux", },
Thomas Huthd9fe9db2021-10-26 14:31:18 +0200105#if defined(USE_HOSTCC)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100106 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
107#endif
108 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren29a58662010-09-28 11:05:36 +0200109 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion36ec8ac2013-03-20 06:31:35 +0000110 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100111 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue2f72dec2018-03-13 16:50:35 +0000112 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100113 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com8bb64242013-12-27 16:01:50 +0800114 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100115#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
116 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100117#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500118#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
119 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
120#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100121#ifdef USE_HOSTCC
122 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
123 { IH_OS_DELL, "dell", "Dell", },
124 { IH_OS_ESIX, "esix", "Esix", },
125 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
126 { IH_OS_IRIX, "irix", "Irix", },
127 { IH_OS_NCR, "ncr", "NCR", },
128 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
129 { IH_OS_PSOS, "psos", "pSOS", },
130 { IH_OS_SCO, "sco", "SCO", },
131 { IH_OS_SOLARIS, "solaris", "Solaris", },
132 { IH_OS_SVR4, "svr4", "SVR4", },
133#endif
Marek Vasut0e3b5122014-12-16 14:07:21 +0100134#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
135 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
136#endif
Lukas Auer515b9342019-08-21 21:14:44 +0200137 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocaltea217f9642019-12-24 18:05:38 +0200138 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut0e3b5122014-12-16 14:07:21 +0100139
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100140 { -1, "", "", },
141};
142
Mike Frysingercf2feb12010-10-20 07:17:39 -0400143static const table_entry_t uimage_type[] = {
Stefano Babic38855512011-10-17 00:07:43 +0000144 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100145 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
146 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby34d12a12011-07-21 09:10:30 -0400147 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharan82777932014-04-04 13:16:48 -0400148 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100149 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warren8c87eba2011-11-10 13:17:53 -0700150 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic38855512011-10-17 00:07:43 +0000151 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
152 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fan60a56072018-10-16 04:50:30 +0000153 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan31c51da2018-11-20 10:19:36 +0000154 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glassa3ed7372016-06-30 10:52:15 -0600155 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100156 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic38855512011-10-17 00:07:43 +0000157 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xieea65fd82012-08-10 02:49:35 +0000158 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100159 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
160 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut83f69282018-04-15 13:15:33 +0200161 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
162 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100163 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000164 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasut4a0e05d2013-08-26 20:43:33 +0200165 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7c75d3e2014-05-19 14:23:39 +0200166 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass0129b522014-10-19 21:11:24 -0600167 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)ed1cb1a2015-03-31 11:40:49 +0200168 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassc9c74032015-08-30 16:55:24 -0600169 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glass3b1e5072015-08-30 16:55:25 -0600170 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glassc17b1452015-08-30 16:55:26 -0600171 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)2e9f4942016-09-26 09:08:06 +0200172 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossice1771e2015-11-17 22:56:56 +1000173 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekfa124662016-04-27 14:03:29 +0200174 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf5329d672018-04-13 14:18:52 +0200175 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simek0a130b12016-05-17 13:58:44 +0200176 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis378bcff2016-11-29 16:33:21 -0600177 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100178 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis30f9d562017-07-31 10:58:20 -0500179 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunaye6db5df2018-03-12 10:46:04 +0100180 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
developere1de5d42018-11-15 10:07:49 +0800181 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunay42594db2019-08-02 15:07:19 +0200182 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywarae53f9d92018-12-20 01:15:18 +0000183 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100184 { -1, "", "", },
185};
186
Mike Frysingercf2feb12010-10-20 07:17:39 -0400187static const table_entry_t uimage_comp[] = {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100188 { IH_COMP_NONE, "none", "uncompressed", },
189 { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
190 { IH_COMP_GZIP, "gzip", "gzip compressed", },
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200191 { IH_COMP_LZMA, "lzma", "lzma compressed", },
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100192 { IH_COMP_LZO, "lzo", "lzo compressed", },
Julius Wernerf41a3ca2015-10-06 20:03:53 -0700193 { IH_COMP_LZ4, "lz4", "lz4 compressed", },
Robert Markod1c24842020-04-25 19:37:21 +0200194 { IH_COMP_ZSTD, "zstd", "zstd compressed", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100195 { -1, "", "", },
196};
197
Simon Glass7da41d52016-06-30 10:52:14 -0600198struct table_info {
199 const char *desc;
200 int count;
201 const table_entry_t *table;
202};
203
Atish Patra04e8cd82020-03-05 16:24:22 -0800204static const struct comp_magic_map image_comp[] = {
205 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
206 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
207 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
208 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkinc81801d2021-08-31 18:22:18 +0800209 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
210 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra04e8cd82020-03-05 16:24:22 -0800211 { IH_COMP_NONE, "none", {}, },
212};
213
Simon Glass7da41d52016-06-30 10:52:14 -0600214static const struct table_info table_info[IH_COUNT] = {
215 { "architecture", IH_ARCH_COUNT, uimage_arch },
216 { "compression", IH_COMP_COUNT, uimage_comp },
217 { "operating system", IH_OS_COUNT, uimage_os },
218 { "image type", IH_TYPE_COUNT, uimage_type },
219};
220
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100221/*****************************************************************************/
222/* Legacy format routines */
223/*****************************************************************************/
Stephen Warren6904b6e2011-10-18 11:11:49 +0000224int image_check_hcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100225{
226 ulong hcrc;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000227 ulong len = image_get_header_size();
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100228 image_header_t header;
229
230 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000231 memmove(&header, (char *)hdr, image_get_header_size());
232 image_set_hcrc(&header, 0);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100233
Stephen Warren6904b6e2011-10-18 11:11:49 +0000234 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100235
Stephen Warren6904b6e2011-10-18 11:11:49 +0000236 return (hcrc == image_get_hcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100237}
238
Stephen Warren6904b6e2011-10-18 11:11:49 +0000239int image_check_dcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100240{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000241 ulong data = image_get_data(hdr);
242 ulong len = image_get_data_size(hdr);
243 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100244
Stephen Warren6904b6e2011-10-18 11:11:49 +0000245 return (dcrc == image_get_dcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100246}
247
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100248/**
249 * image_multi_count - get component (sub-image) count
250 * @hdr: pointer to the header of the multi component image
251 *
252 * image_multi_count() returns number of components in a multi
253 * component image.
254 *
255 * Note: no checking of the image type is done, caller must pass
256 * a valid multi component image.
257 *
258 * returns:
259 * number of components
260 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000261ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100262{
263 ulong i, count = 0;
Marian Balakowicza1474212008-02-29 16:00:06 +0100264 uint32_t *size;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100265
266 /* get start of the image payload, which in case of multi
267 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000268 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100269
270 /* count non empty slots */
271 for (i = 0; size[i]; ++i)
272 count++;
273
274 return count;
275}
276
277/**
278 * image_multi_getimg - get component data address and size
279 * @hdr: pointer to the header of the multi component image
280 * @idx: index of the requested component
281 * @data: pointer to a ulong variable, will hold component data address
282 * @len: pointer to a ulong variable, will hold component size
283 *
284 * image_multi_getimg() returns size and data address for the requested
285 * component in a multi component image.
286 *
287 * Note: no checking of the image type is done, caller must pass
288 * a valid multi component image.
289 *
290 * returns:
291 * data address and size of the component, if idx is valid
292 * 0 in data and len, if idx is out of range
293 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000294void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100295 ulong *data, ulong *len)
296{
297 int i;
Marian Balakowicza1474212008-02-29 16:00:06 +0100298 uint32_t *size;
Nick Spence143a1592008-05-10 14:02:04 -0700299 ulong offset, count, img_data;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100300
301 /* get number of component */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000302 count = image_multi_count(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100303
304 /* get start of the image payload, which in case of multi
305 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000306 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100307
308 /* get address of the proper component data start, which means
309 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000310 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100311
312 if (idx < count) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000313 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100314 offset = 0;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100315
316 /* go over all indices preceding requested component idx */
317 for (i = 0; i < idx; i++) {
Nick Spence143a1592008-05-10 14:02:04 -0700318 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000319 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100320 }
321
322 /* calculate idx-th component data address */
Nick Spence143a1592008-05-10 14:02:04 -0700323 *data = img_data + offset;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100324 } else {
325 *len = 0;
326 *data = 0;
327 }
328}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100329
Stephen Warren6904b6e2011-10-18 11:11:49 +0000330static void image_print_type(const image_header_t *hdr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100331{
Heiko Schocher62cb1562015-06-29 09:10:46 +0200332 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100333
Stephen Warren6904b6e2011-10-18 11:11:49 +0000334 os = genimg_get_os_name(image_get_os(hdr));
335 arch = genimg_get_arch_name(image_get_arch(hdr));
336 type = genimg_get_type_name(image_get_type(hdr));
337 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100338
Stephen Warren6904b6e2011-10-18 11:11:49 +0000339 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100340}
341
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100342/**
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200343 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3b506772009-08-19 11:42:56 +0200344 * @ptr: pointer to the legacy format image header
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100345 * @p: pointer to prefix string
346 *
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200347 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100348 * The routine prints out all header fields followed by the size/offset data
349 * for MULTI/SCRIPT images.
350 *
351 * returns:
352 * no returned results
353 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000354void image_print_contents(const void *ptr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100355{
Wolfgang Denk3b506772009-08-19 11:42:56 +0200356 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher62cb1562015-06-29 09:10:46 +0200357 const char __maybe_unused *p;
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200358
Simon Glass1030f162013-05-08 08:05:58 +0000359 p = IMAGE_INDENT_STRING;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000360 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000361 if (IMAGE_ENABLE_TIMESTAMP) {
362 printf("%sCreated: ", p);
363 genimg_print_time((time_t)image_get_time(hdr));
364 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000365 printf("%sImage Type: ", p);
366 image_print_type(hdr);
367 printf("%sData Size: ", p);
368 genimg_print_size(image_get_data_size(hdr));
369 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
370 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100371
Stephen Warren6904b6e2011-10-18 11:11:49 +0000372 if (image_check_type(hdr, IH_TYPE_MULTI) ||
373 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100374 int i;
375 ulong data, len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000376 ulong count = image_multi_count(hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100377
Stephen Warren6904b6e2011-10-18 11:11:49 +0000378 printf("%sContents:\n", p);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100379 for (i = 0; i < count; i++) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000380 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100381
Stephen Warren6904b6e2011-10-18 11:11:49 +0000382 printf("%s Image %d: ", p, i);
383 genimg_print_size(len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100384
Stephen Warren6904b6e2011-10-18 11:11:49 +0000385 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100386 /*
387 * the user may need to know offsets
388 * if planning to do something with
389 * multiple files
390 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000391 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100392 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100393 }
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100394 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
395 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Limac592c342019-09-23 18:39:47 +0000396 image_get_load(hdr) - image_get_header_size(),
397 (int)(image_get_size(hdr) + image_get_header_size()
398 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100399 }
400}
401
Julius Werner47ef9862019-07-24 19:37:54 -0700402/**
403 * print_decomp_msg() - Print a suitable decompression/loading message
404 *
405 * @type: OS type (IH_OS_...)
406 * @comp_type: Compression type being used (IH_COMP_...)
407 * @is_xip: true if the load address matches the image start
408 */
409static void print_decomp_msg(int comp_type, int type, bool is_xip)
410{
411 const char *name = genimg_get_type_name(type);
412
413 if (comp_type == IH_COMP_NONE)
414 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
415 else
416 printf(" Uncompressing %s\n", name);
417}
418
Atish Patra04e8cd82020-03-05 16:24:22 -0800419int image_decomp_type(const unsigned char *buf, ulong len)
420{
421 const struct comp_magic_map *cmagic = image_comp;
422
423 if (len < 2)
424 return -EINVAL;
425
426 for (; cmagic->comp_id > 0; cmagic++) {
427 if (!memcmp(buf, cmagic->magic, 2))
428 break;
429 }
430
431 return cmagic->comp_id;
432}
433
Julius Werner47ef9862019-07-24 19:37:54 -0700434int image_decomp(int comp, ulong load, ulong image_start, int type,
435 void *load_buf, void *image_buf, ulong image_len,
436 uint unc_len, ulong *load_end)
437{
Simon Glasseefec3d2021-09-25 07:03:11 -0600438 int ret = -ENOSYS;
Julius Werner47ef9862019-07-24 19:37:54 -0700439
440 *load_end = load;
441 print_decomp_msg(comp, type, load == image_start);
442
443 /*
444 * Load the image to the right place, decompressing if needed. After
445 * this, image_len will be set to the number of uncompressed bytes
446 * loaded, ret will be non-zero on error.
447 */
448 switch (comp) {
449 case IH_COMP_NONE:
Simon Glasseefec3d2021-09-25 07:03:11 -0600450 ret = 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700451 if (load == image_start)
452 break;
453 if (image_len <= unc_len)
454 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
455 else
456 ret = -ENOSPC;
457 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600458 case IH_COMP_GZIP:
Simon Glassdb503fb2021-09-25 19:43:14 -0600459 if (!tools_build() && CONFIG_IS_ENABLED(GZIP))
Simon Glassfd86d012021-09-25 07:03:14 -0600460 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
Julius Werner47ef9862019-07-24 19:37:54 -0700461 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600462 case IH_COMP_BZIP2:
Simon Glassdb503fb2021-09-25 19:43:14 -0600463 if (!tools_build() && CONFIG_IS_ENABLED(BZIP2)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600464 uint size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700465
Simon Glassfd86d012021-09-25 07:03:14 -0600466 /*
467 * If we've got less than 4 MB of malloc() space,
468 * use slower decompression algorithm which requires
469 * at most 2300 KB of memory.
470 */
471 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
472 image_buf, image_len, CONSERVE_MEMORY, 0);
473 image_len = size;
474 }
Julius Werner47ef9862019-07-24 19:37:54 -0700475 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600476 case IH_COMP_LZMA:
Simon Glassdb503fb2021-09-25 19:43:14 -0600477 if (!tools_build() && CONFIG_IS_ENABLED(LZMA)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600478 SizeT lzma_len = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700479
Simon Glassfd86d012021-09-25 07:03:14 -0600480 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
481 image_buf, image_len);
482 image_len = lzma_len;
483 }
Julius Werner47ef9862019-07-24 19:37:54 -0700484 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600485 case IH_COMP_LZO:
Simon Glassdb503fb2021-09-25 19:43:14 -0600486 if (!tools_build() && CONFIG_IS_ENABLED(LZO)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600487 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700488
Simon Glassfd86d012021-09-25 07:03:14 -0600489 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
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_LZ4:
Simon Glassdb503fb2021-09-25 19:43:14 -0600494 if (!tools_build() && CONFIG_IS_ENABLED(LZ4)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600495 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700496
Simon Glassfd86d012021-09-25 07:03:14 -0600497 ret = ulz4fn(image_buf, image_len, load_buf, &size);
498 image_len = size;
499 }
Julius Werner47ef9862019-07-24 19:37:54 -0700500 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600501 case IH_COMP_ZSTD:
Simon Glassdb503fb2021-09-25 19:43:14 -0600502 if (!tools_build() && CONFIG_IS_ENABLED(ZSTD)) {
Simon Glassfd86d012021-09-25 07:03:14 -0600503 struct abuf in, out;
Robert Markod1c24842020-04-25 19:37:21 +0200504
Simon Glassfd86d012021-09-25 07:03:14 -0600505 abuf_init_set(&in, image_buf, image_len);
506 abuf_init_set(&in, load_buf, unc_len);
507 ret = zstd_decompress(&in, &out);
508 if (ret >= 0) {
509 image_len = ret;
510 ret = 0;
511 }
Robert Markod1c24842020-04-25 19:37:21 +0200512 }
Robert Markod1c24842020-04-25 19:37:21 +0200513 break;
514 }
Simon Glasseefec3d2021-09-25 07:03:11 -0600515 if (ret == -ENOSYS) {
Julius Werner47ef9862019-07-24 19:37:54 -0700516 printf("Unimplemented compression type %d\n", comp);
Simon Glasseefec3d2021-09-25 07:03:11 -0600517 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700518 }
Simon Glasseefec3d2021-09-25 07:03:11 -0600519 if (ret)
520 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700521
522 *load_end = load + image_len;
523
Simon Glasseefec3d2021-09-25 07:03:11 -0600524 return 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700525}
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100526
Simon Glass434a31b2015-06-23 15:38:25 -0600527const table_entry_t *get_table_entry(const table_entry_t *table, int id)
528{
529 for (; table->id >= 0; ++table) {
530 if (table->id == id)
531 return table;
532 }
533 return NULL;
534}
535
Simon Glass19864332016-06-30 10:52:16 -0600536static const char *unknown_msg(enum ih_category category)
537{
Simon Glassddb26072016-10-31 10:21:09 -0600538 static const char unknown_str[] = "Unknown ";
Simon Glass19864332016-06-30 10:52:16 -0600539 static char msg[30];
540
Simon Glassddb26072016-10-31 10:21:09 -0600541 strcpy(msg, unknown_str);
542 strncat(msg, table_info[category].desc,
543 sizeof(msg) - sizeof(unknown_str));
Simon Glass19864332016-06-30 10:52:16 -0600544
545 return msg;
546}
547
548/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900549 * genimg_get_cat_name - translate entry id to long name
Simon Glass19864332016-06-30 10:52:16 -0600550 * @category: category to look up (enum ih_category)
551 * @id: entry id to be translated
552 *
553 * This will scan the translation table trying to find the entry that matches
554 * the given id.
555 *
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900556 * @return long entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600557 */
558const char *genimg_get_cat_name(enum ih_category category, uint id)
559{
560 const table_entry_t *entry;
561
562 entry = get_table_entry(table_info[category].table, id);
563 if (!entry)
564 return unknown_msg(category);
Simon Glass684ef382021-09-25 07:03:18 -0600565 return manual_reloc(entry->lname);
Simon Glass19864332016-06-30 10:52:16 -0600566}
567
568/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900569 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass19864332016-06-30 10:52:16 -0600570 * @category: category to look up (enum ih_category)
571 * @id: entry id to be translated
572 *
573 * This will scan the translation table trying to find the entry that matches
574 * the given id.
575 *
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900576 * @return short entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600577 */
578const char *genimg_get_cat_short_name(enum ih_category category, uint id)
579{
580 const table_entry_t *entry;
581
582 entry = get_table_entry(table_info[category].table, id);
583 if (!entry)
584 return unknown_msg(category);
Simon Glass684ef382021-09-25 07:03:18 -0600585 return manual_reloc(entry->sname);
Simon Glass19864332016-06-30 10:52:16 -0600586}
587
588int genimg_get_cat_count(enum ih_category category)
589{
590 return table_info[category].count;
591}
592
593const char *genimg_get_cat_desc(enum ih_category category)
594{
595 return table_info[category].desc;
596}
597
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100598/**
Naoki Hayamad7e82912020-10-07 11:21:25 +0900599 * genimg_cat_has_id - check whether category has entry id
600 * @category: category to look up (enum ih_category)
601 * @id: entry id to be checked
602 *
603 * This will scan the translation table trying to find the entry that matches
604 * the given id.
605 *
606 * @return true if category has entry id; false if not
607 */
608bool genimg_cat_has_id(enum ih_category category, uint id)
609{
610 if (get_table_entry(table_info[category].table, id))
611 return true;
612
613 return false;
614}
615
616/**
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100617 * get_table_entry_name - translate entry id to long name
618 * @table: pointer to a translation table for entries of a specific type
619 * @msg: message to be returned when translation fails
620 * @id: entry id to be translated
621 *
622 * get_table_entry_name() will go over translation table trying to find
623 * entry that matches given id. If matching entry is found, its long
624 * name is returned to the caller.
625 *
626 * returns:
627 * long entry name if translation succeeds
628 * msg otherwise
629 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400630char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100631{
Simon Glass434a31b2015-06-23 15:38:25 -0600632 table = get_table_entry(table, id);
633 if (!table)
634 return msg;
Simon Glass684ef382021-09-25 07:03:18 -0600635 return manual_reloc(table->lname);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100636}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100637
Stephen Warren6904b6e2011-10-18 11:11:49 +0000638const char *genimg_get_os_name(uint8_t os)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100639{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000640 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100641}
642
Stephen Warren6904b6e2011-10-18 11:11:49 +0000643const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100644{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000645 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
646 arch));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100647}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100648
Stephen Warren6904b6e2011-10-18 11:11:49 +0000649const char *genimg_get_type_name(uint8_t type)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100650{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000651 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100652}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100653
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900654const char *genimg_get_comp_name(uint8_t comp)
655{
656 return (get_table_entry_name(uimage_comp, "Unknown Compression",
657 comp));
658}
659
Simon Glass86c362d2016-02-22 22:55:50 -0700660static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass434a31b2015-06-23 15:38:25 -0600661{
Simon Glass86c362d2016-02-22 22:55:50 -0700662 table = get_table_entry(table, val);
Simon Glass434a31b2015-06-23 15:38:25 -0600663 if (!table)
664 return "unknown";
Simon Glass684ef382021-09-25 07:03:18 -0600665 return manual_reloc(table->sname);
Simon Glass434a31b2015-06-23 15:38:25 -0600666}
667
Simon Glass86c362d2016-02-22 22:55:50 -0700668const char *genimg_get_type_short_name(uint8_t type)
669{
670 return genimg_get_short_name(uimage_type, type);
671}
672
Simon Glass86c362d2016-02-22 22:55:50 -0700673const char *genimg_get_comp_short_name(uint8_t comp)
674{
675 return genimg_get_short_name(uimage_comp, comp);
676}
677
678const char *genimg_get_os_short_name(uint8_t os)
679{
680 return genimg_get_short_name(uimage_os, os);
681}
682
683const char *genimg_get_arch_short_name(uint8_t arch)
684{
685 return genimg_get_short_name(uimage_arch, arch);
686}
687
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100688/**
689 * get_table_entry_id - translate short entry name to id
690 * @table: pointer to a translation table for entries of a specific type
691 * @table_name: to be used in case of error
692 * @name: entry short name to be translated
693 *
694 * get_table_entry_id() will go over translation table trying to find
695 * entry that matches given short name. If matching entry is found,
696 * its id returned to the caller.
697 *
698 * returns:
699 * entry id if translation succeeds
700 * -1 otherwise
701 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400702int get_table_entry_id(const table_entry_t *table,
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100703 const char *table_name, const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100704{
Mike Frysingercf2feb12010-10-20 07:17:39 -0400705 const table_entry_t *t;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100706
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100707 for (t = table; t->id >= 0; ++t) {
Simon Glass684ef382021-09-25 07:03:18 -0600708 if (t->sname && !strcasecmp(manual_reloc(t->sname), name))
709 return t->id;
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100710 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000711 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass434a31b2015-06-23 15:38:25 -0600712
713 return -1;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100714}
715
Stephen Warren6904b6e2011-10-18 11:11:49 +0000716int genimg_get_os_id(const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100717{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000718 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100719}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100720
Stephen Warren6904b6e2011-10-18 11:11:49 +0000721int genimg_get_arch_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100722{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000723 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100724}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100725
Stephen Warren6904b6e2011-10-18 11:11:49 +0000726int genimg_get_type_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100727{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000728 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100729}
Marian Balakowicz95418502008-01-31 13:55:39 +0100730
Stephen Warren6904b6e2011-10-18 11:11:49 +0000731int genimg_get_comp_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100732{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000733 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100734}