blob: 3eb6a7fca1d46aa5e59e0218a44aa25bf6cd5de1 [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>
Simon Glass2dc9c342020-05-10 11:40:01 -060012#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070014#include <malloc.h>
Simon Glass48b6c6b2019-11-14 12:57:16 -070015#include <u-boot/crc.h>
Marian Balakowicz95418502008-01-31 13:55:39 +010016
17#ifdef CONFIG_SHOW_BOOT_PROGRESS
18#include <status_led.h>
19#endif
20
Simon Glass8b426922016-02-22 22:55:45 -070021#if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
Masahiro Yamada75f82d02018-03-05 01:20:11 +090022#include <linux/libfdt.h>
Marian Balakowiczc536d6f2008-02-21 17:20:19 +010023#include <fdt_support.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010024#endif
25
Simon Glass3ba929a2020-10-30 21:38:53 -060026#include <asm/global_data.h>
Andy Fleming72c23be2008-04-02 16:19:07 -050027#include <u-boot/md5.h>
Jeroen Hofsteebfe88fe2014-06-12 22:27:12 +020028#include <u-boot/sha1.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090029#include <linux/errno.h>
Simon Glass49648062013-05-07 06:12:03 +000030#include <asm/io.h>
Marian Balakowicza50d5152008-03-12 10:12:37 +010031
Marian Balakowicz2efc2642008-01-31 13:58:13 +010032#ifdef CONFIG_CMD_BDI
Simon Glassed38aef2020-05-10 11:40:03 -060033extern int do_bdinfo(struct cmd_tbl *cmdtp, int flag, int argc,
34 char *const argv[]);
Marian Balakowicz2efc2642008-01-31 13:58:13 +010035#endif
36
37DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz61fde552008-02-27 11:01:04 +010038
Simon Glassfd86d012021-09-25 07:03:14 -060039/* Set this if we have less than 4 MB of malloc() space */
40#if CONFIG_SYS_MALLOC_LEN < (4096 * 1024)
41#define CONSERVE_MEMORY true
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010042#else
Simon Glassfd86d012021-09-25 07:03:14 -060043#define CONSERVE_MEMORY false
44#endif
45
46#else /* USE_HOSTCC */
Marian Balakowicz95418502008-01-31 13:55:39 +010047#include "mkimage.h"
Andy Fleming72c23be2008-04-02 16:19:07 -050048#include <u-boot/md5.h>
Marian Balakowicze227fbb2008-02-29 21:24:06 +010049#include <time.h>
Heiko Schocher62cb1562015-06-29 09:10:46 +020050
51#ifndef __maybe_unused
52# define __maybe_unused /* unimplemented */
53#endif
Simon Glassfd86d012021-09-25 07:03:14 -060054
55#define CONSERVE_MEMORY false
56
Marian Balakowicze227fbb2008-02-29 21:24:06 +010057#endif /* !USE_HOSTCC*/
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010058
Simon Glassfd86d012021-09-25 07:03:14 -060059#include <abuf.h>
60#include <bzlib.h>
Simon Glass4a8a8a12021-09-25 07:03:17 -060061#include <display_options.h>
Simon Glassfd86d012021-09-25 07:03:14 -060062#include <gzip.h>
Simon Glass4d7237b2021-09-25 07:03:15 -060063#include <image.h>
Simon Glassfd86d012021-09-25 07:03:14 -060064#include <lz4.h>
Breno Matheus Limac592c342019-09-23 18:39:47 +000065#include <imximage.h>
Simon Glassfd86d012021-09-25 07:03:14 -060066#include <linux/lzo.h>
67#include <linux/zstd.h>
68#include <linux/kconfig.h>
69#include <lzma/LzmaTypes.h>
70#include <lzma/LzmaDec.h>
71#include <lzma/LzmaTools.h>
72#include <u-boot/crc.h>
Simon Glass9adb6862013-02-24 17:33:25 +000073
Mike Frysingercf2feb12010-10-20 07:17:39 -040074static const table_entry_t uimage_arch[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -060075 { IH_ARCH_INVALID, "invalid", "Invalid ARCH", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010076 { IH_ARCH_ALPHA, "alpha", "Alpha", },
77 { IH_ARCH_ARM, "arm", "ARM", },
78 { IH_ARCH_I386, "x86", "Intel x86", },
79 { IH_ARCH_IA64, "ia64", "IA64", },
80 { IH_ARCH_M68K, "m68k", "M68K", },
81 { IH_ARCH_MICROBLAZE, "microblaze", "MicroBlaze", },
82 { IH_ARCH_MIPS, "mips", "MIPS", },
83 { IH_ARCH_MIPS64, "mips64", "MIPS 64 Bit", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010084 { IH_ARCH_NIOS2, "nios2", "NIOS II", },
Grant Erickson80f51b82008-05-04 16:45:01 -070085 { IH_ARCH_PPC, "powerpc", "PowerPC", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +010086 { IH_ARCH_PPC, "ppc", "PowerPC", },
87 { IH_ARCH_S390, "s390", "IBM S390", },
88 { IH_ARCH_SH, "sh", "SuperH", },
89 { IH_ARCH_SPARC, "sparc", "SPARC", },
90 { IH_ARCH_SPARC64, "sparc64", "SPARC 64 Bit", },
91 { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", },
92 { IH_ARCH_AVR32, "avr32", "AVR32", },
Macpaul Lin354b4e32011-10-19 20:41:09 +000093 { IH_ARCH_NDS32, "nds32", "NDS32", },
Stefan Kristiansson15c669c2011-11-26 19:04:50 +000094 { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",},
Simon Glass49648062013-05-07 06:12:03 +000095 { IH_ARCH_SANDBOX, "sandbox", "Sandbox", },
David Feng85fd5f12013-12-14 11:47:35 +080096 { IH_ARCH_ARM64, "arm64", "AArch64", },
Alexey Brodkin78bc86f2014-02-04 12:56:16 +040097 { IH_ARCH_ARC, "arc", "ARC", },
Simon Glass9d428302014-10-10 08:21:57 -060098 { IH_ARCH_X86_64, "x86_64", "AMD x86_64", },
Chris Zankel41e37372016-08-10 18:36:43 +030099 { IH_ARCH_XTENSA, "xtensa", "Xtensa", },
Rick Chencda20702018-03-13 13:37:29 +0800100 { IH_ARCH_RISCV, "riscv", "RISC-V", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100101 { -1, "", "", },
102};
103
Mike Frysingercf2feb12010-10-20 07:17:39 -0400104static const table_entry_t uimage_os[] = {
Simon Glassa3ed7372016-06-30 10:52:15 -0600105 { IH_OS_INVALID, "invalid", "Invalid OS", },
Philipp Tomsich1bf3eb22017-09-13 21:29:29 +0200106 { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100107 { IH_OS_LINUX, "linux", "Linux", },
108#if defined(CONFIG_LYNXKDI) || defined(USE_HOSTCC)
109 { IH_OS_LYNXOS, "lynxos", "LynxOS", },
110#endif
111 { IH_OS_NETBSD, "netbsd", "NetBSD", },
Torkel Lundgren29a58662010-09-28 11:05:36 +0200112 { IH_OS_OSE, "ose", "Enea OSE", },
Steven Stallion36ec8ac2013-03-20 06:31:35 +0000113 { IH_OS_PLAN9, "plan9", "Plan 9", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100114 { IH_OS_RTEMS, "rtems", "RTEMS", },
Bryan O'Donoghue2f72dec2018-03-13 16:50:35 +0000115 { IH_OS_TEE, "tee", "Trusted Execution Environment" },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100116 { IH_OS_U_BOOT, "u-boot", "U-Boot", },
miao.yan@windriver.com8bb64242013-12-27 16:01:50 +0800117 { IH_OS_VXWORKS, "vxworks", "VxWorks", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100118#if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC)
119 { IH_OS_QNX, "qnx", "QNX", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100120#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500121#if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC)
122 { IH_OS_INTEGRITY,"integrity", "INTEGRITY", },
123#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100124#ifdef USE_HOSTCC
125 { IH_OS_4_4BSD, "4_4bsd", "4_4BSD", },
126 { IH_OS_DELL, "dell", "Dell", },
127 { IH_OS_ESIX, "esix", "Esix", },
128 { IH_OS_FREEBSD, "freebsd", "FreeBSD", },
129 { IH_OS_IRIX, "irix", "Irix", },
130 { IH_OS_NCR, "ncr", "NCR", },
131 { IH_OS_OPENBSD, "openbsd", "OpenBSD", },
132 { IH_OS_PSOS, "psos", "pSOS", },
133 { IH_OS_SCO, "sco", "SCO", },
134 { IH_OS_SOLARIS, "solaris", "Solaris", },
135 { IH_OS_SVR4, "svr4", "SVR4", },
136#endif
Marek Vasut0e3b5122014-12-16 14:07:21 +0100137#if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC)
138 { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", },
139#endif
Lukas Auer515b9342019-08-21 21:14:44 +0200140 { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", },
Cristian Ciocaltea217f9642019-12-24 18:05:38 +0200141 { IH_OS_EFI, "efi", "EFI Firmware" },
Marek Vasut0e3b5122014-12-16 14:07:21 +0100142
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100143 { -1, "", "", },
144};
145
Mike Frysingercf2feb12010-10-20 07:17:39 -0400146static const table_entry_t uimage_type[] = {
Stefano Babic38855512011-10-17 00:07:43 +0000147 { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100148 { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", },
149 { IH_TYPE_FIRMWARE, "firmware", "Firmware", },
John Rigby34d12a12011-07-21 09:10:30 -0400150 { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", },
Karicheri, Muralidharan82777932014-04-04 13:16:48 -0400151 { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100152 { IH_TYPE_KERNEL, "kernel", "Kernel Image", },
Stephen Warren8c87eba2011-11-10 13:17:53 -0700153 { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", },
Stefano Babic38855512011-10-17 00:07:43 +0000154 { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",},
155 { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",},
Peng Fan60a56072018-10-16 04:50:30 +0000156 { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",},
Peng Fan31c51da2018-11-20 10:19:36 +0000157 { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",},
Simon Glassa3ed7372016-06-30 10:52:15 -0600158 { IH_TYPE_INVALID, "invalid", "Invalid Image", },
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100159 { IH_TYPE_MULTI, "multi", "Multi-File Image", },
Stefano Babic38855512011-10-17 00:07:43 +0000160 { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",},
Shaohui Xieea65fd82012-08-10 02:49:35 +0000161 { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100162 { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", },
163 { IH_TYPE_SCRIPT, "script", "Script", },
Marek Vasut83f69282018-04-15 13:15:33 +0200164 { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",},
165 { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",},
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100166 { IH_TYPE_STANDALONE, "standalone", "Standalone Program", },
Heiko Schocher58cb84d2011-07-16 00:06:42 +0000167 { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",},
Marek Vasut4a0e05d2013-08-26 20:43:33 +0200168 { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",},
Andreas Bießmann7c75d3e2014-05-19 14:23:39 +0200169 { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",},
Simon Glass0129b522014-10-19 21:11:24 -0600170 { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", },
Albert ARIBAUD \(3ADEV\)ed1cb1a2015-03-31 11:40:49 +0200171 { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", },
Simon Glassc9c74032015-08-30 16:55:24 -0600172 { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" },
Simon Glass3b1e5072015-08-30 16:55:25 -0600173 { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" },
Simon Glassc17b1452015-08-30 16:55:26 -0600174 { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" },
Albert ARIBAUD \(3ADEV\)2e9f4942016-09-26 09:08:06 +0200175 { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", },
Nathan Rossice1771e2015-11-17 22:56:56 +1000176 { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" },
Michal Simekfa124662016-04-27 14:03:29 +0200177 { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" },
Alexander Graf5329d672018-04-13 14:18:52 +0200178 { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" },
Michal Simek0a130b12016-05-17 13:58:44 +0200179 { IH_TYPE_FPGA, "fpga", "FPGA Image" },
Andrew F. Davis378bcff2016-11-29 16:33:21 -0600180 { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",},
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100181 { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" },
Andrew F. Davis30f9d562017-07-31 10:58:20 -0500182 { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",},
Patrick Delaunaye6db5df2018-03-12 10:46:04 +0100183 { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" },
developere1de5d42018-11-15 10:07:49 +0800184 { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" },
Patrick Delaunay42594db2019-08-02 15:07:19 +0200185 { IH_TYPE_COPRO, "copro", "Coprocessor Image"},
Andre Przywarae53f9d92018-12-20 01:15:18 +0000186 { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot 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 Glass7da41d52016-06-30 10:52:14 -0600201struct table_info {
202 const char *desc;
203 int count;
204 const table_entry_t *table;
205};
206
Atish Patra04e8cd82020-03-05 16:24:22 -0800207static const struct comp_magic_map image_comp[] = {
208 { IH_COMP_BZIP2, "bzip2", {0x42, 0x5a},},
209 { IH_COMP_GZIP, "gzip", {0x1f, 0x8b},},
210 { IH_COMP_LZMA, "lzma", {0x5d, 0x00},},
211 { IH_COMP_LZO, "lzo", {0x89, 0x4c},},
Artem Lapkinc81801d2021-08-31 18:22:18 +0800212 { IH_COMP_LZ4, "lz4", {0x04, 0x22},},
213 { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},},
Atish Patra04e8cd82020-03-05 16:24:22 -0800214 { IH_COMP_NONE, "none", {}, },
215};
216
Simon Glass7da41d52016-06-30 10:52:14 -0600217static const struct table_info table_info[IH_COUNT] = {
218 { "architecture", IH_ARCH_COUNT, uimage_arch },
219 { "compression", IH_COMP_COUNT, uimage_comp },
220 { "operating system", IH_OS_COUNT, uimage_os },
221 { "image type", IH_TYPE_COUNT, uimage_type },
222};
223
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100224/*****************************************************************************/
225/* Legacy format routines */
226/*****************************************************************************/
Stephen Warren6904b6e2011-10-18 11:11:49 +0000227int image_check_hcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100228{
229 ulong hcrc;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000230 ulong len = image_get_header_size();
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100231 image_header_t header;
232
233 /* Copy header so we can blank CRC field for re-calculation */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000234 memmove(&header, (char *)hdr, image_get_header_size());
235 image_set_hcrc(&header, 0);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100236
Stephen Warren6904b6e2011-10-18 11:11:49 +0000237 hcrc = crc32(0, (unsigned char *)&header, len);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100238
Stephen Warren6904b6e2011-10-18 11:11:49 +0000239 return (hcrc == image_get_hcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100240}
241
Stephen Warren6904b6e2011-10-18 11:11:49 +0000242int image_check_dcrc(const image_header_t *hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100243{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000244 ulong data = image_get_data(hdr);
245 ulong len = image_get_data_size(hdr);
246 ulong dcrc = crc32_wd(0, (unsigned char *)data, len, CHUNKSZ_CRC32);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100247
Stephen Warren6904b6e2011-10-18 11:11:49 +0000248 return (dcrc == image_get_dcrc(hdr));
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100249}
250
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100251/**
252 * image_multi_count - get component (sub-image) count
253 * @hdr: pointer to the header of the multi component image
254 *
255 * image_multi_count() returns number of components in a multi
256 * component image.
257 *
258 * Note: no checking of the image type is done, caller must pass
259 * a valid multi component image.
260 *
261 * returns:
262 * number of components
263 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000264ulong image_multi_count(const image_header_t *hdr)
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100265{
266 ulong i, count = 0;
Marian Balakowicza1474212008-02-29 16:00:06 +0100267 uint32_t *size;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100268
269 /* get start of the image payload, which in case of multi
270 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000271 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100272
273 /* count non empty slots */
274 for (i = 0; size[i]; ++i)
275 count++;
276
277 return count;
278}
279
280/**
281 * image_multi_getimg - get component data address and size
282 * @hdr: pointer to the header of the multi component image
283 * @idx: index of the requested component
284 * @data: pointer to a ulong variable, will hold component data address
285 * @len: pointer to a ulong variable, will hold component size
286 *
287 * image_multi_getimg() returns size and data address for the requested
288 * component in a multi component image.
289 *
290 * Note: no checking of the image type is done, caller must pass
291 * a valid multi component image.
292 *
293 * returns:
294 * data address and size of the component, if idx is valid
295 * 0 in data and len, if idx is out of range
296 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000297void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100298 ulong *data, ulong *len)
299{
300 int i;
Marian Balakowicza1474212008-02-29 16:00:06 +0100301 uint32_t *size;
Nick Spence143a1592008-05-10 14:02:04 -0700302 ulong offset, count, img_data;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100303
304 /* get number of component */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000305 count = image_multi_count(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100306
307 /* get start of the image payload, which in case of multi
308 * component images that points to a table of component sizes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000309 size = (uint32_t *)image_get_data(hdr);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100310
311 /* get address of the proper component data start, which means
312 * skipping sizes table (add 1 for last, null entry) */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000313 img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100314
315 if (idx < count) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000316 *len = uimage_to_cpu(size[idx]);
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100317 offset = 0;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100318
319 /* go over all indices preceding requested component idx */
320 for (i = 0; i < idx; i++) {
Nick Spence143a1592008-05-10 14:02:04 -0700321 /* add up i-th component size, rounding up to 4 bytes */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000322 offset += (uimage_to_cpu(size[i]) + 3) & ~3 ;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100323 }
324
325 /* calculate idx-th component data address */
Nick Spence143a1592008-05-10 14:02:04 -0700326 *data = img_data + offset;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100327 } else {
328 *len = 0;
329 *data = 0;
330 }
331}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100332
Stephen Warren6904b6e2011-10-18 11:11:49 +0000333static void image_print_type(const image_header_t *hdr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100334{
Heiko Schocher62cb1562015-06-29 09:10:46 +0200335 const char __maybe_unused *os, *arch, *type, *comp;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100336
Stephen Warren6904b6e2011-10-18 11:11:49 +0000337 os = genimg_get_os_name(image_get_os(hdr));
338 arch = genimg_get_arch_name(image_get_arch(hdr));
339 type = genimg_get_type_name(image_get_type(hdr));
340 comp = genimg_get_comp_name(image_get_comp(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100341
Stephen Warren6904b6e2011-10-18 11:11:49 +0000342 printf("%s %s %s (%s)\n", arch, os, type, comp);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100343}
344
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100345/**
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200346 * image_print_contents - prints out the contents of the legacy format image
Wolfgang Denk3b506772009-08-19 11:42:56 +0200347 * @ptr: pointer to the legacy format image header
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100348 * @p: pointer to prefix string
349 *
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200350 * image_print_contents() formats a multi line legacy image contents description.
Marian Balakowicze227fbb2008-02-29 21:24:06 +0100351 * The routine prints out all header fields followed by the size/offset data
352 * for MULTI/SCRIPT images.
353 *
354 * returns:
355 * no returned results
356 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000357void image_print_contents(const void *ptr)
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100358{
Wolfgang Denk3b506772009-08-19 11:42:56 +0200359 const image_header_t *hdr = (const image_header_t *)ptr;
Heiko Schocher62cb1562015-06-29 09:10:46 +0200360 const char __maybe_unused *p;
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200361
Simon Glass1030f162013-05-08 08:05:58 +0000362 p = IMAGE_INDENT_STRING;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000363 printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr));
Simon Glassaf0ec0d2013-05-07 06:11:51 +0000364 if (IMAGE_ENABLE_TIMESTAMP) {
365 printf("%sCreated: ", p);
366 genimg_print_time((time_t)image_get_time(hdr));
367 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000368 printf("%sImage Type: ", p);
369 image_print_type(hdr);
370 printf("%sData Size: ", p);
371 genimg_print_size(image_get_data_size(hdr));
372 printf("%sLoad Address: %08x\n", p, image_get_load(hdr));
373 printf("%sEntry Point: %08x\n", p, image_get_ep(hdr));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100374
Stephen Warren6904b6e2011-10-18 11:11:49 +0000375 if (image_check_type(hdr, IH_TYPE_MULTI) ||
376 image_check_type(hdr, IH_TYPE_SCRIPT)) {
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100377 int i;
378 ulong data, len;
Stephen Warren6904b6e2011-10-18 11:11:49 +0000379 ulong count = image_multi_count(hdr);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100380
Stephen Warren6904b6e2011-10-18 11:11:49 +0000381 printf("%sContents:\n", p);
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100382 for (i = 0; i < count; i++) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000383 image_multi_getimg(hdr, i, &data, &len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100384
Stephen Warren6904b6e2011-10-18 11:11:49 +0000385 printf("%s Image %d: ", p, i);
386 genimg_print_size(len);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100387
Stephen Warren6904b6e2011-10-18 11:11:49 +0000388 if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) {
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100389 /*
390 * the user may need to know offsets
391 * if planning to do something with
392 * multiple files
393 */
Stephen Warren6904b6e2011-10-18 11:11:49 +0000394 printf("%s Offset = 0x%08lx\n", p, data);
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100395 }
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100396 }
Sven Ebenfeld59697a22016-11-06 16:37:56 +0100397 } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) {
398 printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n",
Breno Matheus Limac592c342019-09-23 18:39:47 +0000399 image_get_load(hdr) - image_get_header_size(),
400 (int)(image_get_size(hdr) + image_get_header_size()
401 + sizeof(flash_header_v2_t) - 0x2060));
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100402 }
403}
404
Julius Werner47ef9862019-07-24 19:37:54 -0700405/**
406 * print_decomp_msg() - Print a suitable decompression/loading message
407 *
408 * @type: OS type (IH_OS_...)
409 * @comp_type: Compression type being used (IH_COMP_...)
410 * @is_xip: true if the load address matches the image start
411 */
412static void print_decomp_msg(int comp_type, int type, bool is_xip)
413{
414 const char *name = genimg_get_type_name(type);
415
416 if (comp_type == IH_COMP_NONE)
417 printf(" %s %s\n", is_xip ? "XIP" : "Loading", name);
418 else
419 printf(" Uncompressing %s\n", name);
420}
421
Atish Patra04e8cd82020-03-05 16:24:22 -0800422int image_decomp_type(const unsigned char *buf, ulong len)
423{
424 const struct comp_magic_map *cmagic = image_comp;
425
426 if (len < 2)
427 return -EINVAL;
428
429 for (; cmagic->comp_id > 0; cmagic++) {
430 if (!memcmp(buf, cmagic->magic, 2))
431 break;
432 }
433
434 return cmagic->comp_id;
435}
436
Julius Werner47ef9862019-07-24 19:37:54 -0700437int image_decomp(int comp, ulong load, ulong image_start, int type,
438 void *load_buf, void *image_buf, ulong image_len,
439 uint unc_len, ulong *load_end)
440{
Simon Glasseefec3d2021-09-25 07:03:11 -0600441 int ret = -ENOSYS;
Julius Werner47ef9862019-07-24 19:37:54 -0700442
443 *load_end = load;
444 print_decomp_msg(comp, type, load == image_start);
445
446 /*
447 * Load the image to the right place, decompressing if needed. After
448 * this, image_len will be set to the number of uncompressed bytes
449 * loaded, ret will be non-zero on error.
450 */
451 switch (comp) {
452 case IH_COMP_NONE:
Simon Glasseefec3d2021-09-25 07:03:11 -0600453 ret = 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700454 if (load == image_start)
455 break;
456 if (image_len <= unc_len)
457 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
458 else
459 ret = -ENOSPC;
460 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600461 case IH_COMP_GZIP:
462 if (!host_build() && CONFIG_IS_ENABLED(GZIP))
463 ret = gunzip(load_buf, unc_len, image_buf, &image_len);
Julius Werner47ef9862019-07-24 19:37:54 -0700464 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600465 case IH_COMP_BZIP2:
466 if (!host_build() && CONFIG_IS_ENABLED(BZIP2)) {
467 uint size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700468
Simon Glassfd86d012021-09-25 07:03:14 -0600469 /*
470 * If we've got less than 4 MB of malloc() space,
471 * use slower decompression algorithm which requires
472 * at most 2300 KB of memory.
473 */
474 ret = BZ2_bzBuffToBuffDecompress(load_buf, &size,
475 image_buf, image_len, CONSERVE_MEMORY, 0);
476 image_len = size;
477 }
Julius Werner47ef9862019-07-24 19:37:54 -0700478 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600479 case IH_COMP_LZMA:
480 if (!host_build() && CONFIG_IS_ENABLED(LZMA)) {
481 SizeT lzma_len = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700482
Simon Glassfd86d012021-09-25 07:03:14 -0600483 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
484 image_buf, image_len);
485 image_len = lzma_len;
486 }
Julius Werner47ef9862019-07-24 19:37:54 -0700487 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600488 case IH_COMP_LZO:
489 if (!host_build() && CONFIG_IS_ENABLED(LZO)) {
490 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700491
Simon Glassfd86d012021-09-25 07:03:14 -0600492 ret = lzop_decompress(image_buf, image_len, load_buf, &size);
493 image_len = size;
494 }
Julius Werner47ef9862019-07-24 19:37:54 -0700495 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600496 case IH_COMP_LZ4:
497 if (!host_build() && CONFIG_IS_ENABLED(LZ4)) {
498 size_t size = unc_len;
Julius Werner47ef9862019-07-24 19:37:54 -0700499
Simon Glassfd86d012021-09-25 07:03:14 -0600500 ret = ulz4fn(image_buf, image_len, load_buf, &size);
501 image_len = size;
502 }
Julius Werner47ef9862019-07-24 19:37:54 -0700503 break;
Simon Glassfd86d012021-09-25 07:03:14 -0600504 case IH_COMP_ZSTD:
505 if (!host_build() && CONFIG_IS_ENABLED(ZSTD)) {
506 struct abuf in, out;
Robert Markod1c24842020-04-25 19:37:21 +0200507
Simon Glassfd86d012021-09-25 07:03:14 -0600508 abuf_init_set(&in, image_buf, image_len);
509 abuf_init_set(&in, load_buf, unc_len);
510 ret = zstd_decompress(&in, &out);
511 if (ret >= 0) {
512 image_len = ret;
513 ret = 0;
514 }
Robert Markod1c24842020-04-25 19:37:21 +0200515 }
Robert Markod1c24842020-04-25 19:37:21 +0200516 break;
517 }
Simon Glasseefec3d2021-09-25 07:03:11 -0600518 if (ret == -ENOSYS) {
Julius Werner47ef9862019-07-24 19:37:54 -0700519 printf("Unimplemented compression type %d\n", comp);
Simon Glasseefec3d2021-09-25 07:03:11 -0600520 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700521 }
Simon Glasseefec3d2021-09-25 07:03:11 -0600522 if (ret)
523 return ret;
Julius Werner47ef9862019-07-24 19:37:54 -0700524
525 *load_end = load + image_len;
526
Simon Glasseefec3d2021-09-25 07:03:11 -0600527 return 0;
Julius Werner47ef9862019-07-24 19:37:54 -0700528}
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100529
Simon Glass434a31b2015-06-23 15:38:25 -0600530const table_entry_t *get_table_entry(const table_entry_t *table, int id)
531{
532 for (; table->id >= 0; ++table) {
533 if (table->id == id)
534 return table;
535 }
536 return NULL;
537}
538
Simon Glass19864332016-06-30 10:52:16 -0600539static const char *unknown_msg(enum ih_category category)
540{
Simon Glassddb26072016-10-31 10:21:09 -0600541 static const char unknown_str[] = "Unknown ";
Simon Glass19864332016-06-30 10:52:16 -0600542 static char msg[30];
543
Simon Glassddb26072016-10-31 10:21:09 -0600544 strcpy(msg, unknown_str);
545 strncat(msg, table_info[category].desc,
546 sizeof(msg) - sizeof(unknown_str));
Simon Glass19864332016-06-30 10:52:16 -0600547
548 return msg;
549}
550
551/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900552 * genimg_get_cat_name - translate entry id to long name
Simon Glass19864332016-06-30 10:52:16 -0600553 * @category: category to look up (enum ih_category)
554 * @id: entry id to be translated
555 *
556 * This will scan the translation table trying to find the entry that matches
557 * the given id.
558 *
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900559 * @return long entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600560 */
561const char *genimg_get_cat_name(enum ih_category category, uint id)
562{
563 const table_entry_t *entry;
564
565 entry = get_table_entry(table_info[category].table, id);
566 if (!entry)
567 return unknown_msg(category);
568#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
569 return entry->lname;
570#else
571 return entry->lname + gd->reloc_off;
572#endif
573}
574
575/**
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900576 * genimg_get_cat_short_name - translate entry id to short name
Simon Glass19864332016-06-30 10:52:16 -0600577 * @category: category to look up (enum ih_category)
578 * @id: entry id to be translated
579 *
580 * This will scan the translation table trying to find the entry that matches
581 * the given id.
582 *
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900583 * @return short entry name if translation succeeds; error string on failure
Simon Glass19864332016-06-30 10:52:16 -0600584 */
585const char *genimg_get_cat_short_name(enum ih_category category, uint id)
586{
587 const table_entry_t *entry;
588
589 entry = get_table_entry(table_info[category].table, id);
590 if (!entry)
591 return unknown_msg(category);
592#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
593 return entry->sname;
594#else
595 return entry->sname + gd->reloc_off;
596#endif
597}
598
599int genimg_get_cat_count(enum ih_category category)
600{
601 return table_info[category].count;
602}
603
604const char *genimg_get_cat_desc(enum ih_category category)
605{
606 return table_info[category].desc;
607}
608
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100609/**
Naoki Hayamad7e82912020-10-07 11:21:25 +0900610 * genimg_cat_has_id - check whether category has entry id
611 * @category: category to look up (enum ih_category)
612 * @id: entry id to be checked
613 *
614 * This will scan the translation table trying to find the entry that matches
615 * the given id.
616 *
617 * @return true if category has entry id; false if not
618 */
619bool genimg_cat_has_id(enum ih_category category, uint id)
620{
621 if (get_table_entry(table_info[category].table, id))
622 return true;
623
624 return false;
625}
626
627/**
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100628 * get_table_entry_name - translate entry id to long name
629 * @table: pointer to a translation table for entries of a specific type
630 * @msg: message to be returned when translation fails
631 * @id: entry id to be translated
632 *
633 * get_table_entry_name() will go over translation table trying to find
634 * entry that matches given id. If matching entry is found, its long
635 * name is returned to the caller.
636 *
637 * returns:
638 * long entry name if translation succeeds
639 * msg otherwise
640 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400641char *get_table_entry_name(const table_entry_t *table, char *msg, int id)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100642{
Simon Glass434a31b2015-06-23 15:38:25 -0600643 table = get_table_entry(table, id);
644 if (!table)
645 return msg;
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200646#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass434a31b2015-06-23 15:38:25 -0600647 return table->lname;
Scott Wood68498ab2009-04-02 16:15:10 -0500648#else
Simon Glass434a31b2015-06-23 15:38:25 -0600649 return table->lname + gd->reloc_off;
Scott Wood68498ab2009-04-02 16:15:10 -0500650#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100651}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100652
Stephen Warren6904b6e2011-10-18 11:11:49 +0000653const char *genimg_get_os_name(uint8_t os)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100654{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000655 return (get_table_entry_name(uimage_os, "Unknown OS", os));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100656}
657
Stephen Warren6904b6e2011-10-18 11:11:49 +0000658const char *genimg_get_arch_name(uint8_t arch)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100659{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000660 return (get_table_entry_name(uimage_arch, "Unknown Architecture",
661 arch));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100662}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100663
Stephen Warren6904b6e2011-10-18 11:11:49 +0000664const char *genimg_get_type_name(uint8_t type)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100665{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000666 return (get_table_entry_name(uimage_type, "Unknown Image", type));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100667}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100668
Naoki Hayama9f1622f2020-10-07 11:22:24 +0900669const char *genimg_get_comp_name(uint8_t comp)
670{
671 return (get_table_entry_name(uimage_comp, "Unknown Compression",
672 comp));
673}
674
Simon Glass86c362d2016-02-22 22:55:50 -0700675static const char *genimg_get_short_name(const table_entry_t *table, int val)
Simon Glass434a31b2015-06-23 15:38:25 -0600676{
Simon Glass86c362d2016-02-22 22:55:50 -0700677 table = get_table_entry(table, val);
Simon Glass434a31b2015-06-23 15:38:25 -0600678 if (!table)
679 return "unknown";
680#if defined(USE_HOSTCC) || !defined(CONFIG_NEEDS_MANUAL_RELOC)
681 return table->sname;
682#else
683 return table->sname + gd->reloc_off;
684#endif
685}
686
Simon Glass86c362d2016-02-22 22:55:50 -0700687const char *genimg_get_type_short_name(uint8_t type)
688{
689 return genimg_get_short_name(uimage_type, type);
690}
691
Simon Glass86c362d2016-02-22 22:55:50 -0700692const char *genimg_get_comp_short_name(uint8_t comp)
693{
694 return genimg_get_short_name(uimage_comp, comp);
695}
696
697const char *genimg_get_os_short_name(uint8_t os)
698{
699 return genimg_get_short_name(uimage_os, os);
700}
701
702const char *genimg_get_arch_short_name(uint8_t arch)
703{
704 return genimg_get_short_name(uimage_arch, arch);
705}
706
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100707/**
708 * get_table_entry_id - translate short entry name to id
709 * @table: pointer to a translation table for entries of a specific type
710 * @table_name: to be used in case of error
711 * @name: entry short name to be translated
712 *
713 * get_table_entry_id() will go over translation table trying to find
714 * entry that matches given short name. If matching entry is found,
715 * its id returned to the caller.
716 *
717 * returns:
718 * entry id if translation succeeds
719 * -1 otherwise
720 */
Mike Frysingercf2feb12010-10-20 07:17:39 -0400721int get_table_entry_id(const table_entry_t *table,
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100722 const char *table_name, const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100723{
Mike Frysingercf2feb12010-10-20 07:17:39 -0400724 const table_entry_t *t;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100725
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100726 for (t = table; t->id >= 0; ++t) {
Simon Glassfd86d012021-09-25 07:03:14 -0600727#if !defined(USE_HOSTCC) && defined(CONFIG_NEEDS_MANUAL_RELOC)
Simon Glass434a31b2015-06-23 15:38:25 -0600728 if (t->sname && strcasecmp(t->sname + gd->reloc_off, name) == 0)
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200729#else
Simon Glass434a31b2015-06-23 15:38:25 -0600730 if (t->sname && strcasecmp(t->sname, name) == 0)
Peter Tyser9057cbf2009-09-21 11:20:36 -0500731#endif
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100732 return (t->id);
733 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000734 debug("Invalid %s Type: %s\n", table_name, name);
Simon Glass434a31b2015-06-23 15:38:25 -0600735
736 return -1;
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100737}
738
Stephen Warren6904b6e2011-10-18 11:11:49 +0000739int genimg_get_os_id(const char *name)
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100740{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000741 return (get_table_entry_id(uimage_os, "OS", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100742}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100743
Stephen Warren6904b6e2011-10-18 11:11:49 +0000744int genimg_get_arch_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100745{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000746 return (get_table_entry_id(uimage_arch, "CPU", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100747}
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100748
Stephen Warren6904b6e2011-10-18 11:11:49 +0000749int genimg_get_type_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100750{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000751 return (get_table_entry_id(uimage_type, "Image", name));
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100752}
Marian Balakowicz95418502008-01-31 13:55:39 +0100753
Stephen Warren6904b6e2011-10-18 11:11:49 +0000754int genimg_get_comp_id(const char *name)
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100755{
Stephen Warren6904b6e2011-10-18 11:11:49 +0000756 return (get_table_entry_id(uimage_comp, "Compression", name));
Marian Balakowiczc3c7eb22008-02-29 15:59:59 +0100757}