Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 Semihalf |
| 4 | * |
| 5 | * (C) Copyright 2000-2006 |
| 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 7 | */ |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 8 | |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 9 | #ifndef USE_HOSTCC |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 10 | #include <env.h> |
Simon Glass | 1ab1692 | 2022-07-31 12:28:48 -0600 | [diff] [blame] | 11 | #include <display_options.h> |
Andy Shevchenko | e3b3ad9 | 2021-11-08 21:03:38 +0300 | [diff] [blame] | 12 | #include <init.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 13 | #include <lmb.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 15 | #include <malloc.h> |
Simon Glass | 48b6c6b | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 16 | #include <u-boot/crc.h> |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 17 | |
| 18 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 19 | #include <status_led.h> |
| 20 | #endif |
| 21 | |
Simon Glass | 85c057e | 2021-09-25 19:43:21 -0600 | [diff] [blame] | 22 | #if CONFIG_IS_ENABLED(FIT) || CONFIG_IS_ENABLED(OF_LIBFDT) |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 23 | #include <linux/libfdt.h> |
Marian Balakowicz | c536d6f | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 24 | #include <fdt_support.h> |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 25 | #endif |
| 26 | |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 27 | #include <asm/global_data.h> |
Masahiro Yamada | 56a931c | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 28 | #include <linux/errno.h> |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 29 | #include <asm/io.h> |
Marian Balakowicz | a50d515 | 2008-03-12 10:12:37 +0100 | [diff] [blame] | 30 | |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
Marian Balakowicz | 61fde55 | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 32 | |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 33 | /* 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 Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 36 | #else |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 37 | #define CONSERVE_MEMORY false |
| 38 | #endif |
| 39 | |
| 40 | #else /* USE_HOSTCC */ |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 41 | #include "mkimage.h" |
Tom Rini | 8fac3d4 | 2023-12-14 07:16:54 -0500 | [diff] [blame] | 42 | #include <linux/kconfig.h> |
Andy Fleming | 72c23be | 2008-04-02 16:19:07 -0500 | [diff] [blame] | 43 | #include <u-boot/md5.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 44 | #include <time.h> |
Heiko Schocher | 62cb156 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 45 | |
| 46 | #ifndef __maybe_unused |
| 47 | # define __maybe_unused /* unimplemented */ |
| 48 | #endif |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 49 | |
| 50 | #define CONSERVE_MEMORY false |
| 51 | |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 52 | #endif /* !USE_HOSTCC*/ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 53 | |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 54 | #include <abuf.h> |
| 55 | #include <bzlib.h> |
Simon Glass | 4a8a8a1 | 2021-09-25 07:03:17 -0600 | [diff] [blame] | 56 | #include <display_options.h> |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 57 | #include <gzip.h> |
Simon Glass | 4d7237b | 2021-09-25 07:03:15 -0600 | [diff] [blame] | 58 | #include <image.h> |
Breno Matheus Lima | c592c34 | 2019-09-23 18:39:47 +0000 | [diff] [blame] | 59 | #include <imximage.h> |
Simon Glass | 684ef38 | 2021-09-25 07:03:18 -0600 | [diff] [blame] | 60 | #include <relocate.h> |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 61 | #include <linux/lzo.h> |
| 62 | #include <linux/zstd.h> |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 63 | #include <lzma/LzmaTypes.h> |
| 64 | #include <lzma/LzmaDec.h> |
| 65 | #include <lzma/LzmaTools.h> |
| 66 | #include <u-boot/crc.h> |
Simon Glass | caf6267 | 2021-10-09 09:28:21 -0600 | [diff] [blame] | 67 | #include <u-boot/lz4.h> |
Simon Glass | 9adb686 | 2013-02-24 17:33:25 +0000 | [diff] [blame] | 68 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 69 | static const table_entry_t uimage_arch[] = { |
Simon Glass | a3ed737 | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 70 | { IH_ARCH_INVALID, "invalid", "Invalid ARCH", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 71 | { 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 Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 79 | { IH_ARCH_NIOS2, "nios2", "NIOS II", }, |
Grant Erickson | 80f51b8 | 2008-05-04 16:45:01 -0700 | [diff] [blame] | 80 | { IH_ARCH_PPC, "powerpc", "PowerPC", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 81 | { 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 Lin | 354b4e3 | 2011-10-19 20:41:09 +0000 | [diff] [blame] | 88 | { IH_ARCH_NDS32, "nds32", "NDS32", }, |
Stefan Kristiansson | 15c669c | 2011-11-26 19:04:50 +0000 | [diff] [blame] | 89 | { IH_ARCH_OPENRISC, "or1k", "OpenRISC 1000",}, |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 90 | { IH_ARCH_SANDBOX, "sandbox", "Sandbox", }, |
David Feng | 85fd5f1 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 91 | { IH_ARCH_ARM64, "arm64", "AArch64", }, |
Alexey Brodkin | 78bc86f | 2014-02-04 12:56:16 +0400 | [diff] [blame] | 92 | { IH_ARCH_ARC, "arc", "ARC", }, |
Simon Glass | 9d42830 | 2014-10-10 08:21:57 -0600 | [diff] [blame] | 93 | { IH_ARCH_X86_64, "x86_64", "AMD x86_64", }, |
Chris Zankel | 41e3737 | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 94 | { IH_ARCH_XTENSA, "xtensa", "Xtensa", }, |
Rick Chen | cda2070 | 2018-03-13 13:37:29 +0800 | [diff] [blame] | 95 | { IH_ARCH_RISCV, "riscv", "RISC-V", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 96 | { -1, "", "", }, |
| 97 | }; |
| 98 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 99 | static const table_entry_t uimage_os[] = { |
Simon Glass | a3ed737 | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 100 | { IH_OS_INVALID, "invalid", "Invalid OS", }, |
Philipp Tomsich | 1bf3eb2 | 2017-09-13 21:29:29 +0200 | [diff] [blame] | 101 | { IH_OS_ARM_TRUSTED_FIRMWARE, "arm-trusted-firmware", "ARM Trusted Firmware" }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 102 | { IH_OS_LINUX, "linux", "Linux", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 103 | { IH_OS_NETBSD, "netbsd", "NetBSD", }, |
Torkel Lundgren | 29a5866 | 2010-09-28 11:05:36 +0200 | [diff] [blame] | 104 | { IH_OS_OSE, "ose", "Enea OSE", }, |
Steven Stallion | 36ec8ac | 2013-03-20 06:31:35 +0000 | [diff] [blame] | 105 | { IH_OS_PLAN9, "plan9", "Plan 9", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 106 | { IH_OS_RTEMS, "rtems", "RTEMS", }, |
Bryan O'Donoghue | 2f72dec | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 107 | { IH_OS_TEE, "tee", "Trusted Execution Environment" }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 108 | { IH_OS_U_BOOT, "u-boot", "U-Boot", }, |
miao.yan@windriver.com | 8bb6424 | 2013-12-27 16:01:50 +0800 | [diff] [blame] | 109 | { IH_OS_VXWORKS, "vxworks", "VxWorks", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 110 | #if defined(CONFIG_CMD_ELF) || defined(USE_HOSTCC) |
| 111 | { IH_OS_QNX, "qnx", "QNX", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 112 | #endif |
Peter Tyser | 56b8dd1 | 2008-09-08 14:56:49 -0500 | [diff] [blame] | 113 | #if defined(CONFIG_INTEGRITY) || defined(USE_HOSTCC) |
| 114 | { IH_OS_INTEGRITY,"integrity", "INTEGRITY", }, |
| 115 | #endif |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 116 | #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 Vasut | 0e3b512 | 2014-12-16 14:07:21 +0100 | [diff] [blame] | 129 | #if defined(CONFIG_BOOTM_OPENRTOS) || defined(USE_HOSTCC) |
| 130 | { IH_OS_OPENRTOS, "openrtos", "OpenRTOS", }, |
| 131 | #endif |
Lukas Auer | 515b934 | 2019-08-21 21:14:44 +0200 | [diff] [blame] | 132 | { IH_OS_OPENSBI, "opensbi", "RISC-V OpenSBI", }, |
Cristian Ciocaltea | 217f964 | 2019-12-24 18:05:38 +0200 | [diff] [blame] | 133 | { IH_OS_EFI, "efi", "EFI Firmware" }, |
Marek Vasut | 0e3b512 | 2014-12-16 14:07:21 +0100 | [diff] [blame] | 134 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 135 | { -1, "", "", }, |
| 136 | }; |
| 137 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 138 | static const table_entry_t uimage_type[] = { |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 139 | { IH_TYPE_AISIMAGE, "aisimage", "Davinci AIS image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 140 | { IH_TYPE_FILESYSTEM, "filesystem", "Filesystem Image", }, |
| 141 | { IH_TYPE_FIRMWARE, "firmware", "Firmware", }, |
John Rigby | 34d12a1 | 2011-07-21 09:10:30 -0400 | [diff] [blame] | 142 | { IH_TYPE_FLATDT, "flat_dt", "Flat Device Tree", }, |
Karicheri, Muralidharan | 8277793 | 2014-04-04 13:16:48 -0400 | [diff] [blame] | 143 | { IH_TYPE_GPIMAGE, "gpimage", "TI Keystone SPL Image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 144 | { IH_TYPE_KERNEL, "kernel", "Kernel Image", }, |
Stephen Warren | 8c87eba | 2011-11-10 13:17:53 -0700 | [diff] [blame] | 145 | { IH_TYPE_KERNEL_NOLOAD, "kernel_noload", "Kernel Image (no loading done)", }, |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 146 | { IH_TYPE_KWBIMAGE, "kwbimage", "Kirkwood Boot Image",}, |
| 147 | { IH_TYPE_IMXIMAGE, "imximage", "Freescale i.MX Boot Image",}, |
Peng Fan | 60a5607 | 2018-10-16 04:50:30 +0000 | [diff] [blame] | 148 | { IH_TYPE_IMX8IMAGE, "imx8image", "NXP i.MX8 Boot Image",}, |
Peng Fan | 31c51da | 2018-11-20 10:19:36 +0000 | [diff] [blame] | 149 | { IH_TYPE_IMX8MIMAGE, "imx8mimage", "NXP i.MX8M Boot Image",}, |
Simon Glass | a3ed737 | 2016-06-30 10:52:15 -0600 | [diff] [blame] | 150 | { IH_TYPE_INVALID, "invalid", "Invalid Image", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 151 | { IH_TYPE_MULTI, "multi", "Multi-File Image", }, |
Stefano Babic | 3885551 | 2011-10-17 00:07:43 +0000 | [diff] [blame] | 152 | { IH_TYPE_OMAPIMAGE, "omapimage", "TI OMAP SPL With GP CH",}, |
Shaohui Xie | ea65fd8 | 2012-08-10 02:49:35 +0000 | [diff] [blame] | 153 | { IH_TYPE_PBLIMAGE, "pblimage", "Freescale PBL Boot Image",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 154 | { IH_TYPE_RAMDISK, "ramdisk", "RAMDisk Image", }, |
| 155 | { IH_TYPE_SCRIPT, "script", "Script", }, |
Marek Vasut | 83f6928 | 2018-04-15 13:15:33 +0200 | [diff] [blame] | 156 | { IH_TYPE_SOCFPGAIMAGE, "socfpgaimage", "Altera SoCFPGA CV/AV preloader",}, |
| 157 | { IH_TYPE_SOCFPGAIMAGE_V1, "socfpgaimage_v1", "Altera SoCFPGA A10 preloader",}, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 158 | { IH_TYPE_STANDALONE, "standalone", "Standalone Program", }, |
Heiko Schocher | 58cb84d | 2011-07-16 00:06:42 +0000 | [diff] [blame] | 159 | { IH_TYPE_UBLIMAGE, "ublimage", "Davinci UBL image",}, |
Marek Vasut | 4a0e05d | 2013-08-26 20:43:33 +0200 | [diff] [blame] | 160 | { IH_TYPE_MXSIMAGE, "mxsimage", "Freescale MXS Boot Image",}, |
Andreas Bießmann | 7c75d3e | 2014-05-19 14:23:39 +0200 | [diff] [blame] | 161 | { IH_TYPE_ATMELIMAGE, "atmelimage", "ATMEL ROM-Boot Image",}, |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 162 | { IH_TYPE_X86_SETUP, "x86_setup", "x86 setup.bin", }, |
Albert ARIBAUD \(3ADEV\) | ed1cb1a | 2015-03-31 11:40:49 +0200 | [diff] [blame] | 163 | { IH_TYPE_LPC32XXIMAGE, "lpc32xximage", "LPC32XX Boot Image", }, |
Simon Glass | c9c7403 | 2015-08-30 16:55:24 -0600 | [diff] [blame] | 164 | { IH_TYPE_RKIMAGE, "rkimage", "Rockchip Boot Image" }, |
Simon Glass | 3b1e507 | 2015-08-30 16:55:25 -0600 | [diff] [blame] | 165 | { IH_TYPE_RKSD, "rksd", "Rockchip SD Boot Image" }, |
Simon Glass | c17b145 | 2015-08-30 16:55:26 -0600 | [diff] [blame] | 166 | { IH_TYPE_RKSPI, "rkspi", "Rockchip SPI Boot Image" }, |
Albert ARIBAUD \(3ADEV\) | 2e9f494 | 2016-09-26 09:08:06 +0200 | [diff] [blame] | 167 | { IH_TYPE_VYBRIDIMAGE, "vybridimage", "Vybrid Boot Image", }, |
Nathan Rossi | ce1771e | 2015-11-17 22:56:56 +1000 | [diff] [blame] | 168 | { IH_TYPE_ZYNQIMAGE, "zynqimage", "Xilinx Zynq Boot Image" }, |
Michal Simek | fa12466 | 2016-04-27 14:03:29 +0200 | [diff] [blame] | 169 | { IH_TYPE_ZYNQMPIMAGE, "zynqmpimage", "Xilinx ZynqMP Boot Image" }, |
Alexander Graf | 5329d67 | 2018-04-13 14:18:52 +0200 | [diff] [blame] | 170 | { IH_TYPE_ZYNQMPBIF, "zynqmpbif", "Xilinx ZynqMP Boot Image (bif)" }, |
Michal Simek | 0a130b1 | 2016-05-17 13:58:44 +0200 | [diff] [blame] | 171 | { IH_TYPE_FPGA, "fpga", "FPGA Image" }, |
Andrew F. Davis | 378bcff | 2016-11-29 16:33:21 -0600 | [diff] [blame] | 172 | { IH_TYPE_TEE, "tee", "Trusted Execution Environment Image",}, |
Sven Ebenfeld | 59697a2 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 173 | { IH_TYPE_FIRMWARE_IVT, "firmware_ivt", "Firmware with HABv4 IVT" }, |
Andrew F. Davis | 30f9d56 | 2017-07-31 10:58:20 -0500 | [diff] [blame] | 174 | { IH_TYPE_PMMC, "pmmc", "TI Power Management Micro-Controller Firmware",}, |
Patrick Delaunay | e6db5df | 2018-03-12 10:46:04 +0100 | [diff] [blame] | 175 | { IH_TYPE_STM32IMAGE, "stm32image", "STMicroelectronics STM32 Image" }, |
developer | e1de5d4 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 176 | { IH_TYPE_MTKIMAGE, "mtk_image", "MediaTek BootROM loadable Image" }, |
Patrick Delaunay | 42594db | 2019-08-02 15:07:19 +0200 | [diff] [blame] | 177 | { IH_TYPE_COPRO, "copro", "Coprocessor Image"}, |
Andre Przywara | e53f9d9 | 2018-12-20 01:15:18 +0000 | [diff] [blame] | 178 | { IH_TYPE_SUNXI_EGON, "sunxi_egon", "Allwinner eGON Boot Image" }, |
Samuel Holland | 7572878 | 2022-03-18 00:00:43 -0500 | [diff] [blame] | 179 | { IH_TYPE_SUNXI_TOC0, "sunxi_toc0", "Allwinner TOC0 Boot Image" }, |
Marc Kleine-Budde | 0aa1da6 | 2022-11-23 12:55:33 +0100 | [diff] [blame] | 180 | { IH_TYPE_FDT_LEGACY, "fdt_legacy", "legacy Image with Flat Device Tree ", }, |
Ralph Siemsen | 2d283fa | 2023-05-12 21:36:57 -0400 | [diff] [blame] | 181 | { IH_TYPE_RENESAS_SPKG, "spkgimage", "Renesas SPKG Image" }, |
Heinrich Schuchardt | b28f8f3 | 2023-09-17 13:47:30 +0200 | [diff] [blame] | 182 | { IH_TYPE_STARFIVE_SPL, "sfspl", "StarFive SPL Image" }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 183 | { -1, "", "", }, |
| 184 | }; |
| 185 | |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 186 | static const table_entry_t uimage_comp[] = { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 187 | { IH_COMP_NONE, "none", "uncompressed", }, |
| 188 | { IH_COMP_BZIP2, "bzip2", "bzip2 compressed", }, |
| 189 | { IH_COMP_GZIP, "gzip", "gzip compressed", }, |
Luigi 'Comio' Mantellini | 35afc06 | 2008-09-08 02:46:13 +0200 | [diff] [blame] | 190 | { IH_COMP_LZMA, "lzma", "lzma compressed", }, |
Peter Korsgaard | f7440cd | 2009-11-19 11:37:51 +0100 | [diff] [blame] | 191 | { IH_COMP_LZO, "lzo", "lzo compressed", }, |
Julius Werner | f41a3ca | 2015-10-06 20:03:53 -0700 | [diff] [blame] | 192 | { IH_COMP_LZ4, "lz4", "lz4 compressed", }, |
Robert Marko | d1c2484 | 2020-04-25 19:37:21 +0200 | [diff] [blame] | 193 | { IH_COMP_ZSTD, "zstd", "zstd compressed", }, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 194 | { -1, "", "", }, |
| 195 | }; |
| 196 | |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame] | 197 | static 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 Glass | 7da41d5 | 2016-06-30 10:52:14 -0600 | [diff] [blame] | 204 | struct table_info { |
| 205 | const char *desc; |
| 206 | int count; |
| 207 | const table_entry_t *table; |
| 208 | }; |
| 209 | |
Atish Patra | 04e8cd8 | 2020-03-05 16:24:22 -0800 | [diff] [blame] | 210 | static 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 Lapkin | c81801d | 2021-08-31 18:22:18 +0800 | [diff] [blame] | 215 | { IH_COMP_LZ4, "lz4", {0x04, 0x22},}, |
| 216 | { IH_COMP_ZSTD, "zstd", {0x28, 0xb5},}, |
Atish Patra | 04e8cd8 | 2020-03-05 16:24:22 -0800 | [diff] [blame] | 217 | { IH_COMP_NONE, "none", {}, }, |
| 218 | }; |
| 219 | |
Simon Glass | 7da41d5 | 2016-06-30 10:52:14 -0600 | [diff] [blame] | 220 | static 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 Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame] | 225 | { "phase", IH_PHASE_COUNT, uimage_phase }, |
Simon Glass | 7da41d5 | 2016-06-30 10:52:14 -0600 | [diff] [blame] | 226 | }; |
| 227 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 228 | /*****************************************************************************/ |
| 229 | /* Legacy format routines */ |
| 230 | /*****************************************************************************/ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 231 | int image_check_hcrc(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 232 | { |
| 233 | ulong hcrc; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 234 | ulong len = image_get_header_size(); |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 235 | struct legacy_img_hdr header; |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 236 | |
| 237 | /* Copy header so we can blank CRC field for re-calculation */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 238 | memmove(&header, (char *)hdr, image_get_header_size()); |
| 239 | image_set_hcrc(&header, 0); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 240 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 241 | hcrc = crc32(0, (unsigned char *)&header, len); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 242 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 243 | return (hcrc == image_get_hcrc(hdr)); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 244 | } |
| 245 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 246 | int image_check_dcrc(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 247 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 248 | 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 Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 251 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 252 | return (dcrc == image_get_dcrc(hdr)); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 253 | } |
| 254 | |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 255 | /** |
| 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 Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 268 | ulong image_multi_count(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 269 | { |
| 270 | ulong i, count = 0; |
Marian Balakowicz | a147421 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 271 | uint32_t *size; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 272 | |
| 273 | /* get start of the image payload, which in case of multi |
| 274 | * component images that points to a table of component sizes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 275 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 276 | |
| 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 Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 301 | void image_multi_getimg(const struct legacy_img_hdr *hdr, ulong idx, |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 302 | ulong *data, ulong *len) |
| 303 | { |
| 304 | int i; |
Marian Balakowicz | a147421 | 2008-02-29 16:00:06 +0100 | [diff] [blame] | 305 | uint32_t *size; |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 306 | ulong offset, count, img_data; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 307 | |
| 308 | /* get number of component */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 309 | count = image_multi_count(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 310 | |
| 311 | /* get start of the image payload, which in case of multi |
| 312 | * component images that points to a table of component sizes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 313 | size = (uint32_t *)image_get_data(hdr); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 314 | |
| 315 | /* get address of the proper component data start, which means |
| 316 | * skipping sizes table (add 1 for last, null entry) */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 317 | img_data = image_get_data(hdr) + (count + 1) * sizeof(uint32_t); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 318 | |
| 319 | if (idx < count) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 320 | *len = uimage_to_cpu(size[idx]); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 321 | offset = 0; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 322 | |
| 323 | /* go over all indices preceding requested component idx */ |
| 324 | for (i = 0; i < idx; i++) { |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 325 | /* add up i-th component size, rounding up to 4 bytes */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 326 | offset += (uimage_to_cpu(size[i]) + 3) & ~3 ; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | /* calculate idx-th component data address */ |
Nick Spence | 143a159 | 2008-05-10 14:02:04 -0700 | [diff] [blame] | 330 | *data = img_data + offset; |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 331 | } else { |
| 332 | *len = 0; |
| 333 | *data = 0; |
| 334 | } |
| 335 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 336 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 337 | static void image_print_type(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 338 | { |
Heiko Schocher | 62cb156 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 339 | const char __maybe_unused *os, *arch, *type, *comp; |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 340 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 341 | 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 Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 345 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 346 | printf("%s %s %s (%s)\n", arch, os, type, comp); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 347 | } |
| 348 | |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 349 | /** |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 350 | * image_print_contents - prints out the contents of the legacy format image |
Wolfgang Denk | 3b50677 | 2009-08-19 11:42:56 +0200 | [diff] [blame] | 351 | * @ptr: pointer to the legacy format image header |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 352 | * @p: pointer to prefix string |
| 353 | * |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 354 | * image_print_contents() formats a multi line legacy image contents description. |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 355 | * 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 Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 361 | void image_print_contents(const void *ptr) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 362 | { |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 363 | const struct legacy_img_hdr *hdr = (const struct legacy_img_hdr *)ptr; |
Heiko Schocher | 62cb156 | 2015-06-29 09:10:46 +0200 | [diff] [blame] | 364 | const char __maybe_unused *p; |
Bartlomiej Sieka | 4786859 | 2008-04-18 12:39:23 +0200 | [diff] [blame] | 365 | |
Simon Glass | 1030f16 | 2013-05-08 08:05:58 +0000 | [diff] [blame] | 366 | p = IMAGE_INDENT_STRING; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 367 | printf("%sImage Name: %.*s\n", p, IH_NMLEN, image_get_name(hdr)); |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 368 | if (IMAGE_ENABLE_TIMESTAMP) { |
| 369 | printf("%sCreated: ", p); |
| 370 | genimg_print_time((time_t)image_get_time(hdr)); |
| 371 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 372 | 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 Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 378 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 379 | if (image_check_type(hdr, IH_TYPE_MULTI) || |
| 380 | image_check_type(hdr, IH_TYPE_SCRIPT)) { |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 381 | int i; |
| 382 | ulong data, len; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 383 | ulong count = image_multi_count(hdr); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 384 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 385 | printf("%sContents:\n", p); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 386 | for (i = 0; i < count; i++) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 387 | image_multi_getimg(hdr, i, &data, &len); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 388 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 389 | printf("%s Image %d: ", p, i); |
| 390 | genimg_print_size(len); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 391 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 392 | if (image_check_type(hdr, IH_TYPE_SCRIPT) && i > 0) { |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 393 | /* |
| 394 | * the user may need to know offsets |
| 395 | * if planning to do something with |
| 396 | * multiple files |
| 397 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 398 | printf("%s Offset = 0x%08lx\n", p, data); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 399 | } |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 400 | } |
Sven Ebenfeld | 59697a2 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 401 | } else if (image_check_type(hdr, IH_TYPE_FIRMWARE_IVT)) { |
| 402 | printf("HAB Blocks: 0x%08x 0x0000 0x%08x\n", |
Breno Matheus Lima | c592c34 | 2019-09-23 18:39:47 +0000 | [diff] [blame] | 403 | 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 Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 406 | } |
| 407 | } |
| 408 | |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 409 | /** |
| 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 Glass | 59f0c4d | 2023-11-19 07:43:32 -0700 | [diff] [blame] | 415 | * @load: Load address for printing |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 416 | */ |
Simon Glass | 59f0c4d | 2023-11-19 07:43:32 -0700 | [diff] [blame] | 417 | static void print_decomp_msg(int comp_type, int type, bool is_xip, |
| 418 | ulong load) |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 419 | { |
| 420 | const char *name = genimg_get_type_name(type); |
| 421 | |
Simon Glass | 59f0c4d | 2023-11-19 07:43:32 -0700 | [diff] [blame] | 422 | /* Shows "Loading Kernel Image" for example */ |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 423 | if (comp_type == IH_COMP_NONE) |
Simon Glass | 59f0c4d | 2023-11-19 07:43:32 -0700 | [diff] [blame] | 424 | printf(" %s %s", is_xip ? "XIP" : "Loading", name); |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 425 | else |
Simon Glass | 59f0c4d | 2023-11-19 07:43:32 -0700 | [diff] [blame] | 426 | printf(" Uncompressing %s", name); |
| 427 | |
| 428 | printf(" to %lx\n", load); |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 429 | } |
| 430 | |
Atish Patra | 04e8cd8 | 2020-03-05 16:24:22 -0800 | [diff] [blame] | 431 | int 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 Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 446 | int 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 Glass | eefec3d | 2021-09-25 07:03:11 -0600 | [diff] [blame] | 450 | int ret = -ENOSYS; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 451 | |
| 452 | *load_end = load; |
Simon Glass | 59f0c4d | 2023-11-19 07:43:32 -0700 | [diff] [blame] | 453 | print_decomp_msg(comp, type, load == image_start, load); |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 454 | |
| 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 Glass | eefec3d | 2021-09-25 07:03:11 -0600 | [diff] [blame] | 462 | ret = 0; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 463 | 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 Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 470 | case IH_COMP_GZIP: |
Simon Glass | db503fb | 2021-09-25 19:43:14 -0600 | [diff] [blame] | 471 | if (!tools_build() && CONFIG_IS_ENABLED(GZIP)) |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 472 | ret = gunzip(load_buf, unc_len, image_buf, &image_len); |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 473 | break; |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 474 | case IH_COMP_BZIP2: |
Simon Glass | db503fb | 2021-09-25 19:43:14 -0600 | [diff] [blame] | 475 | if (!tools_build() && CONFIG_IS_ENABLED(BZIP2)) { |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 476 | uint size = unc_len; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 477 | |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 478 | /* |
| 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 Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 487 | break; |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 488 | case IH_COMP_LZMA: |
Simon Glass | db503fb | 2021-09-25 19:43:14 -0600 | [diff] [blame] | 489 | if (!tools_build() && CONFIG_IS_ENABLED(LZMA)) { |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 490 | SizeT lzma_len = unc_len; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 491 | |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 492 | ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len, |
| 493 | image_buf, image_len); |
| 494 | image_len = lzma_len; |
| 495 | } |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 496 | break; |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 497 | case IH_COMP_LZO: |
Simon Glass | db503fb | 2021-09-25 19:43:14 -0600 | [diff] [blame] | 498 | if (!tools_build() && CONFIG_IS_ENABLED(LZO)) { |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 499 | size_t size = unc_len; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 500 | |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 501 | ret = lzop_decompress(image_buf, image_len, load_buf, &size); |
| 502 | image_len = size; |
| 503 | } |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 504 | break; |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 505 | case IH_COMP_LZ4: |
Simon Glass | db503fb | 2021-09-25 19:43:14 -0600 | [diff] [blame] | 506 | if (!tools_build() && CONFIG_IS_ENABLED(LZ4)) { |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 507 | size_t size = unc_len; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 508 | |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 509 | ret = ulz4fn(image_buf, image_len, load_buf, &size); |
| 510 | image_len = size; |
| 511 | } |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 512 | break; |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 513 | case IH_COMP_ZSTD: |
Simon Glass | db503fb | 2021-09-25 19:43:14 -0600 | [diff] [blame] | 514 | if (!tools_build() && CONFIG_IS_ENABLED(ZSTD)) { |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 515 | struct abuf in, out; |
Robert Marko | d1c2484 | 2020-04-25 19:37:21 +0200 | [diff] [blame] | 516 | |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 517 | abuf_init_set(&in, image_buf, image_len); |
Jérôme Carretero | 0edb7a9 | 2022-03-16 15:35:36 -0400 | [diff] [blame] | 518 | abuf_init_set(&out, load_buf, unc_len); |
Simon Glass | fd86d01 | 2021-09-25 07:03:14 -0600 | [diff] [blame] | 519 | ret = zstd_decompress(&in, &out); |
| 520 | if (ret >= 0) { |
| 521 | image_len = ret; |
| 522 | ret = 0; |
| 523 | } |
Robert Marko | d1c2484 | 2020-04-25 19:37:21 +0200 | [diff] [blame] | 524 | } |
Robert Marko | d1c2484 | 2020-04-25 19:37:21 +0200 | [diff] [blame] | 525 | break; |
| 526 | } |
Simon Glass | eefec3d | 2021-09-25 07:03:11 -0600 | [diff] [blame] | 527 | if (ret == -ENOSYS) { |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 528 | printf("Unimplemented compression type %d\n", comp); |
Simon Glass | eefec3d | 2021-09-25 07:03:11 -0600 | [diff] [blame] | 529 | return ret; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 530 | } |
| 531 | |
| 532 | *load_end = load + image_len; |
Mattijs Korpershoek | 0b5aa9b | 2024-05-23 11:27:09 +0200 | [diff] [blame^] | 533 | if (ret) |
| 534 | return ret; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 535 | |
Simon Glass | eefec3d | 2021-09-25 07:03:11 -0600 | [diff] [blame] | 536 | return 0; |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 537 | } |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 538 | |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 539 | const 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 Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 548 | static const char *unknown_msg(enum ih_category category) |
| 549 | { |
Simon Glass | ddb2607 | 2016-10-31 10:21:09 -0600 | [diff] [blame] | 550 | static const char unknown_str[] = "Unknown "; |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 551 | static char msg[30]; |
| 552 | |
Simon Glass | ddb2607 | 2016-10-31 10:21:09 -0600 | [diff] [blame] | 553 | strcpy(msg, unknown_str); |
| 554 | strncat(msg, table_info[category].desc, |
| 555 | sizeof(msg) - sizeof(unknown_str)); |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 556 | |
| 557 | return msg; |
| 558 | } |
| 559 | |
| 560 | /** |
Naoki Hayama | 9f1622f | 2020-10-07 11:22:24 +0900 | [diff] [blame] | 561 | * genimg_get_cat_name - translate entry id to long name |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 562 | * @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 Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 568 | * Return: long entry name if translation succeeds; error string on failure |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 569 | */ |
| 570 | const 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 Vasut | 869835d | 2023-09-06 23:29:59 +0200 | [diff] [blame] | 577 | return entry->lname; |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | /** |
Naoki Hayama | 9f1622f | 2020-10-07 11:22:24 +0900 | [diff] [blame] | 581 | * genimg_get_cat_short_name - translate entry id to short name |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 582 | * @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 Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 588 | * Return: short entry name if translation succeeds; error string on failure |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 589 | */ |
| 590 | const 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 Vasut | 869835d | 2023-09-06 23:29:59 +0200 | [diff] [blame] | 597 | return entry->sname; |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 598 | } |
| 599 | |
| 600 | int genimg_get_cat_count(enum ih_category category) |
| 601 | { |
| 602 | return table_info[category].count; |
| 603 | } |
| 604 | |
| 605 | const char *genimg_get_cat_desc(enum ih_category category) |
| 606 | { |
| 607 | return table_info[category].desc; |
| 608 | } |
| 609 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 610 | /** |
Naoki Hayama | d7e8291 | 2020-10-07 11:21:25 +0900 | [diff] [blame] | 611 | * 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 Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 618 | * Return: true if category has entry id; false if not |
Naoki Hayama | d7e8291 | 2020-10-07 11:21:25 +0900 | [diff] [blame] | 619 | */ |
| 620 | bool 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 Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 629 | * 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 Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 642 | char *get_table_entry_name(const table_entry_t *table, char *msg, int id) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 643 | { |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 644 | table = get_table_entry(table, id); |
| 645 | if (!table) |
| 646 | return msg; |
Marek Vasut | 869835d | 2023-09-06 23:29:59 +0200 | [diff] [blame] | 647 | return table->lname; |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 648 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 649 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 650 | const char *genimg_get_os_name(uint8_t os) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 651 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 652 | return (get_table_entry_name(uimage_os, "Unknown OS", os)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 653 | } |
| 654 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 655 | const char *genimg_get_arch_name(uint8_t arch) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 656 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 657 | return (get_table_entry_name(uimage_arch, "Unknown Architecture", |
| 658 | arch)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 659 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 660 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 661 | const char *genimg_get_type_name(uint8_t type) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 662 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 663 | return (get_table_entry_name(uimage_type, "Unknown Image", type)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 664 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 665 | |
Naoki Hayama | 9f1622f | 2020-10-07 11:22:24 +0900 | [diff] [blame] | 666 | const char *genimg_get_comp_name(uint8_t comp) |
| 667 | { |
| 668 | return (get_table_entry_name(uimage_comp, "Unknown Compression", |
| 669 | comp)); |
| 670 | } |
| 671 | |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame] | 672 | const 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 Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 677 | static const char *genimg_get_short_name(const table_entry_t *table, int val) |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 678 | { |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 679 | table = get_table_entry(table, val); |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 680 | if (!table) |
| 681 | return "unknown"; |
Marek Vasut | 869835d | 2023-09-06 23:29:59 +0200 | [diff] [blame] | 682 | return table->sname; |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 683 | } |
| 684 | |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 685 | const char *genimg_get_type_short_name(uint8_t type) |
| 686 | { |
| 687 | return genimg_get_short_name(uimage_type, type); |
| 688 | } |
| 689 | |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 690 | const char *genimg_get_comp_short_name(uint8_t comp) |
| 691 | { |
| 692 | return genimg_get_short_name(uimage_comp, comp); |
| 693 | } |
| 694 | |
| 695 | const char *genimg_get_os_short_name(uint8_t os) |
| 696 | { |
| 697 | return genimg_get_short_name(uimage_os, os); |
| 698 | } |
| 699 | |
| 700 | const char *genimg_get_arch_short_name(uint8_t arch) |
| 701 | { |
| 702 | return genimg_get_short_name(uimage_arch, arch); |
| 703 | } |
| 704 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 705 | /** |
| 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 Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 719 | int get_table_entry_id(const table_entry_t *table, |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 720 | const char *table_name, const char *name) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 721 | { |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 722 | const table_entry_t *t; |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 723 | |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 724 | for (t = table; t->id >= 0; ++t) { |
Marek Vasut | 869835d | 2023-09-06 23:29:59 +0200 | [diff] [blame] | 725 | if (t->sname && !strcasecmp(t->sname, name)) |
Simon Glass | 684ef38 | 2021-09-25 07:03:18 -0600 | [diff] [blame] | 726 | return t->id; |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 727 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 728 | debug("Invalid %s Type: %s\n", table_name, name); |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 729 | |
| 730 | return -1; |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 731 | } |
| 732 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 733 | int genimg_get_os_id(const char *name) |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 734 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 735 | return (get_table_entry_id(uimage_os, "OS", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 736 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 737 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 738 | int genimg_get_arch_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 739 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 740 | return (get_table_entry_id(uimage_arch, "CPU", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 741 | } |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 742 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 743 | int genimg_get_type_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 744 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 745 | return (get_table_entry_id(uimage_type, "Image", name)); |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 746 | } |
Marian Balakowicz | 9541850 | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 747 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 748 | int genimg_get_comp_id(const char *name) |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 749 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 750 | return (get_table_entry_id(uimage_comp, "Compression", name)); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 751 | } |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame] | 752 | |
| 753 | int genimg_get_phase_id(const char *name) |
| 754 | { |
| 755 | return get_table_entry_id(uimage_phase, "Phase", name); |
| 756 | } |