Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 2 | /* |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 3 | * (C) Copyright 2008 Semihalf |
| 4 | * |
Wolfgang Denk | f3f4518 | 2005-11-25 16:38:03 +0100 | [diff] [blame] | 5 | * (C) Copyright 2000-2005 |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 6 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Wolfgang Denk | f3f4518 | 2005-11-25 16:38:03 +0100 | [diff] [blame] | 7 | ******************************************************************** |
| 8 | * NOTE: This header file defines an interface to U-Boot. Including |
| 9 | * this (unmodified) header file in another file is considered normal |
| 10 | * use of U-Boot, and does *not* fall under the heading of "derived |
| 11 | * work". |
| 12 | ******************************************************************** |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #ifndef __IMAGE_H__ |
| 16 | #define __IMAGE_H__ |
| 17 | |
Mike Frysinger | 4ad8e9f | 2009-07-02 19:23:25 -0400 | [diff] [blame] | 18 | #include "compiler.h" |
Kim Phillips | e69030c | 2012-10-29 13:34:30 +0000 | [diff] [blame] | 19 | #include <asm/byteorder.h> |
Marek Vasut | 85ed289 | 2018-06-13 06:13:32 +0200 | [diff] [blame] | 20 | #include <stdbool.h> |
Mike Frysinger | 4ad8e9f | 2009-07-02 19:23:25 -0400 | [diff] [blame] | 21 | |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 22 | /* Define this to avoid #ifdefs later on */ |
| 23 | struct lmb; |
Masahiro Yamada | fe11aee | 2018-03-21 18:03:35 +0900 | [diff] [blame] | 24 | struct fdt_region; |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 25 | |
Mike Frysinger | 4ad8e9f | 2009-07-02 19:23:25 -0400 | [diff] [blame] | 26 | #ifdef USE_HOSTCC |
Jörg Krause | 983487f | 2015-04-22 21:36:22 +0200 | [diff] [blame] | 27 | #include <sys/types.h> |
Simon Glass | e719d3b | 2021-09-25 19:43:20 -0600 | [diff] [blame] | 28 | #include <linux/kconfig.h> |
Marian Balakowicz | f4891a1 | 2008-02-21 17:20:18 +0100 | [diff] [blame] | 29 | |
Simon Glass | 1030f16 | 2013-05-08 08:05:58 +0000 | [diff] [blame] | 30 | #define IMAGE_INDENT_STRING "" |
Simon Glass | f0fd511 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 31 | |
Wolfgang Denk | bf36877 | 2008-10-21 11:23:56 +0200 | [diff] [blame] | 32 | #else |
| 33 | |
| 34 | #include <lmb.h> |
Wolfgang Denk | bf36877 | 2008-10-21 11:23:56 +0200 | [diff] [blame] | 35 | #include <asm/u-boot.h> |
Mike Frysinger | 175467a | 2010-01-21 04:03:20 -0500 | [diff] [blame] | 36 | #include <command.h> |
Alexandru Gagniuc | b04e918 | 2021-07-14 17:05:39 -0500 | [diff] [blame] | 37 | #include <linker_lists.h> |
Wolfgang Denk | bf36877 | 2008-10-21 11:23:56 +0200 | [diff] [blame] | 38 | |
Simon Glass | 1030f16 | 2013-05-08 08:05:58 +0000 | [diff] [blame] | 39 | #define IMAGE_INDENT_STRING " " |
Simon Glass | f0fd511 | 2013-05-07 06:11:58 +0000 | [diff] [blame] | 40 | |
Bartlomiej Sieka | d7816fb | 2008-03-11 12:34:47 +0100 | [diff] [blame] | 41 | #endif /* USE_HOSTCC */ |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 42 | |
Michael van der Westhuizen | e36c6c3 | 2014-05-30 20:59:00 +0200 | [diff] [blame] | 43 | #include <hash.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 44 | #include <linux/libfdt.h> |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 45 | #include <fdt_support.h> |
Simon Glass | 2c6a1b0 | 2021-09-25 19:43:33 -0600 | [diff] [blame] | 46 | #include <u-boot/hash-checksum.h> |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 47 | |
Simon Glass | 85f1378 | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 48 | extern ulong image_load_addr; /* Default Load Address */ |
| 49 | extern ulong image_save_addr; /* Default Save Address */ |
| 50 | extern ulong image_save_size; /* Default Save Size */ |
Philippe Reynes | d28484e | 2022-03-28 22:56:59 +0200 | [diff] [blame] | 51 | extern ulong image_load_offset; /* Default Load Address Offset */ |
Simon Glass | 85f1378 | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 52 | |
Simon Glass | d563c25 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 53 | /* An invalid size, meaning that the image size is not known */ |
| 54 | #define IMAGE_SIZE_INVAL (-1UL) |
| 55 | |
Simon Glass | 7da41d5 | 2016-06-30 10:52:14 -0600 | [diff] [blame] | 56 | enum ih_category { |
| 57 | IH_ARCH, |
| 58 | IH_COMP, |
| 59 | IH_OS, |
| 60 | IH_TYPE, |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame^] | 61 | IH_PHASE, |
Simon Glass | 7da41d5 | 2016-06-30 10:52:14 -0600 | [diff] [blame] | 62 | |
| 63 | IH_COUNT, |
| 64 | }; |
| 65 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 66 | /* |
| 67 | * Operating System Codes |
Masahiro Yamada | 166829f | 2016-07-21 15:16:00 +0900 | [diff] [blame] | 68 | * |
| 69 | * The following are exposed to uImage header. |
Stefano Babic | 10d7c4b | 2018-12-17 11:02:00 +0100 | [diff] [blame] | 70 | * New IDs *MUST* be appended at the end of the list and *NEVER* |
| 71 | * inserted for backward compatibility. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 72 | */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 73 | enum { |
| 74 | IH_OS_INVALID = 0, /* Invalid OS */ |
| 75 | IH_OS_OPENBSD, /* OpenBSD */ |
| 76 | IH_OS_NETBSD, /* NetBSD */ |
| 77 | IH_OS_FREEBSD, /* FreeBSD */ |
| 78 | IH_OS_4_4BSD, /* 4.4BSD */ |
| 79 | IH_OS_LINUX, /* Linux */ |
| 80 | IH_OS_SVR4, /* SVR4 */ |
| 81 | IH_OS_ESIX, /* Esix */ |
| 82 | IH_OS_SOLARIS, /* Solaris */ |
| 83 | IH_OS_IRIX, /* Irix */ |
| 84 | IH_OS_SCO, /* SCO */ |
| 85 | IH_OS_DELL, /* Dell */ |
| 86 | IH_OS_NCR, /* NCR */ |
| 87 | IH_OS_LYNXOS, /* LynxOS */ |
| 88 | IH_OS_VXWORKS, /* VxWorks */ |
| 89 | IH_OS_PSOS, /* pSOS */ |
| 90 | IH_OS_QNX, /* QNX */ |
| 91 | IH_OS_U_BOOT, /* Firmware */ |
| 92 | IH_OS_RTEMS, /* RTEMS */ |
| 93 | IH_OS_ARTOS, /* ARTOS */ |
| 94 | IH_OS_UNITY, /* Unity OS */ |
| 95 | IH_OS_INTEGRITY, /* INTEGRITY */ |
| 96 | IH_OS_OSE, /* OSE */ |
| 97 | IH_OS_PLAN9, /* Plan 9 */ |
| 98 | IH_OS_OPENRTOS, /* OpenRTOS */ |
Philipp Tomsich | 1bf3eb2 | 2017-09-13 21:29:29 +0200 | [diff] [blame] | 99 | IH_OS_ARM_TRUSTED_FIRMWARE, /* ARM Trusted Firmware */ |
Bryan O'Donoghue | 2f72dec | 2018-03-13 16:50:35 +0000 | [diff] [blame] | 100 | IH_OS_TEE, /* Trusted Execution Environment */ |
Lukas Auer | 515b934 | 2019-08-21 21:14:44 +0200 | [diff] [blame] | 101 | IH_OS_OPENSBI, /* RISC-V OpenSBI */ |
Cristian Ciocaltea | 217f964 | 2019-12-24 18:05:38 +0200 | [diff] [blame] | 102 | IH_OS_EFI, /* EFI Firmware (e.g. GRUB2) */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 103 | |
| 104 | IH_OS_COUNT, |
| 105 | }; |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 106 | |
| 107 | /* |
| 108 | * CPU Architecture Codes (supported by Linux) |
Masahiro Yamada | 166829f | 2016-07-21 15:16:00 +0900 | [diff] [blame] | 109 | * |
| 110 | * The following are exposed to uImage header. |
Stefano Babic | 10d7c4b | 2018-12-17 11:02:00 +0100 | [diff] [blame] | 111 | * New IDs *MUST* be appended at the end of the list and *NEVER* |
| 112 | * inserted for backward compatibility. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 113 | */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 114 | enum { |
| 115 | IH_ARCH_INVALID = 0, /* Invalid CPU */ |
| 116 | IH_ARCH_ALPHA, /* Alpha */ |
| 117 | IH_ARCH_ARM, /* ARM */ |
| 118 | IH_ARCH_I386, /* Intel x86 */ |
| 119 | IH_ARCH_IA64, /* IA64 */ |
| 120 | IH_ARCH_MIPS, /* MIPS */ |
| 121 | IH_ARCH_MIPS64, /* MIPS 64 Bit */ |
| 122 | IH_ARCH_PPC, /* PowerPC */ |
| 123 | IH_ARCH_S390, /* IBM S390 */ |
| 124 | IH_ARCH_SH, /* SuperH */ |
| 125 | IH_ARCH_SPARC, /* Sparc */ |
| 126 | IH_ARCH_SPARC64, /* Sparc 64 Bit */ |
| 127 | IH_ARCH_M68K, /* M68K */ |
Masahiro Yamada | 166829f | 2016-07-21 15:16:00 +0900 | [diff] [blame] | 128 | IH_ARCH_NIOS, /* Nios-32 */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 129 | IH_ARCH_MICROBLAZE, /* MicroBlaze */ |
| 130 | IH_ARCH_NIOS2, /* Nios-II */ |
| 131 | IH_ARCH_BLACKFIN, /* Blackfin */ |
| 132 | IH_ARCH_AVR32, /* AVR32 */ |
| 133 | IH_ARCH_ST200, /* STMicroelectronics ST200 */ |
| 134 | IH_ARCH_SANDBOX, /* Sandbox architecture (test only) */ |
| 135 | IH_ARCH_NDS32, /* ANDES Technology - NDS32 */ |
| 136 | IH_ARCH_OPENRISC, /* OpenRISC 1000 */ |
| 137 | IH_ARCH_ARM64, /* ARM64 */ |
| 138 | IH_ARCH_ARC, /* Synopsys DesignWare ARC */ |
| 139 | IH_ARCH_X86_64, /* AMD x86_64, Intel and Via */ |
Chris Zankel | 41e3737 | 2016-08-10 18:36:43 +0300 | [diff] [blame] | 140 | IH_ARCH_XTENSA, /* Xtensa */ |
Rick Chen | 3301bfc | 2017-12-26 13:55:58 +0800 | [diff] [blame] | 141 | IH_ARCH_RISCV, /* RISC-V */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 142 | |
| 143 | IH_ARCH_COUNT, |
| 144 | }; |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 145 | |
| 146 | /* |
| 147 | * Image Types |
| 148 | * |
| 149 | * "Standalone Programs" are directly runnable in the environment |
| 150 | * provided by U-Boot; it is expected that (if they behave |
| 151 | * well) you can continue to work in U-Boot after return from |
| 152 | * the Standalone Program. |
| 153 | * "OS Kernel Images" are usually images of some Embedded OS which |
| 154 | * will take over control completely. Usually these programs |
| 155 | * will install their own set of exception handlers, device |
| 156 | * drivers, set up the MMU, etc. - this means, that you cannot |
| 157 | * expect to re-enter U-Boot except by resetting the CPU. |
| 158 | * "RAMDisk Images" are more or less just data blocks, and their |
| 159 | * parameters (address, size) are passed to an OS kernel that is |
| 160 | * being started. |
| 161 | * "Multi-File Images" contain several images, typically an OS |
| 162 | * (Linux) kernel image and one or more data images like |
| 163 | * RAMDisks. This construct is useful for instance when you want |
| 164 | * to boot over the network using BOOTP etc., where the boot |
| 165 | * server provides just a single image file, but you want to get |
| 166 | * for instance an OS kernel and a RAMDisk image. |
| 167 | * |
| 168 | * "Multi-File Images" start with a list of image sizes, each |
| 169 | * image size (in bytes) specified by an "uint32_t" in network |
| 170 | * byte order. This list is terminated by an "(uint32_t)0". |
| 171 | * Immediately after the terminating 0 follow the images, one by |
| 172 | * one, all aligned on "uint32_t" boundaries (size rounded up to |
wdenk | 391b574 | 2004-10-10 23:27:33 +0000 | [diff] [blame] | 173 | * a multiple of 4 bytes - except for the last file). |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 174 | * |
| 175 | * "Firmware Images" are binary images containing firmware (like |
| 176 | * U-Boot or FPGA images) which usually will be programmed to |
| 177 | * flash memory. |
| 178 | * |
| 179 | * "Script files" are command sequences that will be executed by |
| 180 | * U-Boot's command interpreter; this feature is especially |
| 181 | * useful when you configure U-Boot to use a real shell (hush) |
wdenk | 874ac26 | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 182 | * as command interpreter (=> Shell Scripts). |
Masahiro Yamada | 166829f | 2016-07-21 15:16:00 +0900 | [diff] [blame] | 183 | * |
| 184 | * The following are exposed to uImage header. |
Stefano Babic | 10d7c4b | 2018-12-17 11:02:00 +0100 | [diff] [blame] | 185 | * New IDs *MUST* be appended at the end of the list and *NEVER* |
| 186 | * inserted for backward compatibility. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 187 | */ |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame^] | 188 | enum image_type_t { |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 189 | IH_TYPE_INVALID = 0, /* Invalid Image */ |
| 190 | IH_TYPE_STANDALONE, /* Standalone Program */ |
| 191 | IH_TYPE_KERNEL, /* OS Kernel Image */ |
| 192 | IH_TYPE_RAMDISK, /* RAMDisk Image */ |
| 193 | IH_TYPE_MULTI, /* Multi-File Image */ |
| 194 | IH_TYPE_FIRMWARE, /* Firmware Image */ |
| 195 | IH_TYPE_SCRIPT, /* Script file */ |
| 196 | IH_TYPE_FILESYSTEM, /* Filesystem Image (any type) */ |
| 197 | IH_TYPE_FLATDT, /* Binary Flat Device Tree Blob */ |
| 198 | IH_TYPE_KWBIMAGE, /* Kirkwood Boot Image */ |
| 199 | IH_TYPE_IMXIMAGE, /* Freescale IMXBoot Image */ |
| 200 | IH_TYPE_UBLIMAGE, /* Davinci UBL Image */ |
| 201 | IH_TYPE_OMAPIMAGE, /* TI OMAP Config Header Image */ |
| 202 | IH_TYPE_AISIMAGE, /* TI Davinci AIS Image */ |
| 203 | /* OS Kernel Image, can run from any load address */ |
| 204 | IH_TYPE_KERNEL_NOLOAD, |
| 205 | IH_TYPE_PBLIMAGE, /* Freescale PBL Boot Image */ |
| 206 | IH_TYPE_MXSIMAGE, /* Freescale MXSBoot Image */ |
| 207 | IH_TYPE_GPIMAGE, /* TI Keystone GPHeader Image */ |
| 208 | IH_TYPE_ATMELIMAGE, /* ATMEL ROM bootable Image */ |
Marek Vasut | 83f6928 | 2018-04-15 13:15:33 +0200 | [diff] [blame] | 209 | IH_TYPE_SOCFPGAIMAGE, /* Altera SOCFPGA CV/AV Preloader */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 210 | IH_TYPE_X86_SETUP, /* x86 setup.bin Image */ |
| 211 | IH_TYPE_LPC32XXIMAGE, /* x86 setup.bin Image */ |
| 212 | IH_TYPE_LOADABLE, /* A list of typeless images */ |
| 213 | IH_TYPE_RKIMAGE, /* Rockchip Boot Image */ |
| 214 | IH_TYPE_RKSD, /* Rockchip SD card */ |
| 215 | IH_TYPE_RKSPI, /* Rockchip SPI image */ |
| 216 | IH_TYPE_ZYNQIMAGE, /* Xilinx Zynq Boot Image */ |
| 217 | IH_TYPE_ZYNQMPIMAGE, /* Xilinx ZynqMP Boot Image */ |
Alexander Graf | 5329d67 | 2018-04-13 14:18:52 +0200 | [diff] [blame] | 218 | IH_TYPE_ZYNQMPBIF, /* Xilinx ZynqMP Boot Image (bif) */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 219 | IH_TYPE_FPGA, /* FPGA Image */ |
Albert ARIBAUD \(3ADEV\) | 2e9f494 | 2016-09-26 09:08:06 +0200 | [diff] [blame] | 220 | IH_TYPE_VYBRIDIMAGE, /* VYBRID .vyb Image */ |
Andrew F. Davis | 378bcff | 2016-11-29 16:33:21 -0600 | [diff] [blame] | 221 | IH_TYPE_TEE, /* Trusted Execution Environment OS Image */ |
Sven Ebenfeld | 59697a2 | 2016-11-06 16:37:56 +0100 | [diff] [blame] | 222 | IH_TYPE_FIRMWARE_IVT, /* Firmware Image with HABv4 IVT */ |
Andrew F. Davis | 30f9d56 | 2017-07-31 10:58:20 -0500 | [diff] [blame] | 223 | IH_TYPE_PMMC, /* TI Power Management Micro-Controller Firmware */ |
Patrick Delaunay | e6db5df | 2018-03-12 10:46:04 +0100 | [diff] [blame] | 224 | IH_TYPE_STM32IMAGE, /* STMicroelectronics STM32 Image */ |
Marek Vasut | 83f6928 | 2018-04-15 13:15:33 +0200 | [diff] [blame] | 225 | IH_TYPE_SOCFPGAIMAGE_V1, /* Altera SOCFPGA A10 Preloader */ |
developer | e1de5d4 | 2018-11-15 10:07:49 +0800 | [diff] [blame] | 226 | IH_TYPE_MTKIMAGE, /* MediaTek BootROM loadable Image */ |
Stefano Babic | 10d7c4b | 2018-12-17 11:02:00 +0100 | [diff] [blame] | 227 | IH_TYPE_IMX8MIMAGE, /* Freescale IMX8MBoot Image */ |
| 228 | IH_TYPE_IMX8IMAGE, /* Freescale IMX8Boot Image */ |
Patrick Delaunay | 42594db | 2019-08-02 15:07:19 +0200 | [diff] [blame] | 229 | IH_TYPE_COPRO, /* Coprocessor Image for remoteproc*/ |
Andre Przywara | e53f9d9 | 2018-12-20 01:15:18 +0000 | [diff] [blame] | 230 | IH_TYPE_SUNXI_EGON, /* Allwinner eGON Boot Image */ |
Samuel Holland | 7572878 | 2022-03-18 00:00:43 -0500 | [diff] [blame] | 231 | IH_TYPE_SUNXI_TOC0, /* Allwinner TOC0 Boot Image */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 232 | |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 233 | IH_TYPE_COUNT, /* Number of image types */ |
| 234 | }; |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 235 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 236 | /* |
| 237 | * Compression Types |
Masahiro Yamada | 166829f | 2016-07-21 15:16:00 +0900 | [diff] [blame] | 238 | * |
| 239 | * The following are exposed to uImage header. |
Stefano Babic | 10d7c4b | 2018-12-17 11:02:00 +0100 | [diff] [blame] | 240 | * New IDs *MUST* be appended at the end of the list and *NEVER* |
| 241 | * inserted for backward compatibility. |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 242 | */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 243 | enum { |
| 244 | IH_COMP_NONE = 0, /* No Compression Used */ |
| 245 | IH_COMP_GZIP, /* gzip Compression Used */ |
| 246 | IH_COMP_BZIP2, /* bzip2 Compression Used */ |
| 247 | IH_COMP_LZMA, /* lzma Compression Used */ |
| 248 | IH_COMP_LZO, /* lzo Compression Used */ |
| 249 | IH_COMP_LZ4, /* lz4 Compression Used */ |
Robert Marko | d1c2484 | 2020-04-25 19:37:21 +0200 | [diff] [blame] | 250 | IH_COMP_ZSTD, /* zstd Compression Used */ |
Simon Glass | 3c536ed | 2016-06-30 10:52:13 -0600 | [diff] [blame] | 251 | |
| 252 | IH_COMP_COUNT, |
| 253 | }; |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 254 | |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame^] | 255 | /** |
| 256 | * Phases - images intended for particular U-Boot phases (SPL, etc.) |
| 257 | * |
| 258 | * @IH_PHASE_NONE: No phase information, can be loaded by any phase |
| 259 | * @IH_PHASE_U_BOOT: Only for U-Boot proper |
| 260 | * @IH_PHASE_SPL: Only for SPL |
| 261 | */ |
| 262 | enum image_phase_t { |
| 263 | IH_PHASE_NONE = 0, |
| 264 | IH_PHASE_U_BOOT, |
| 265 | IH_PHASE_SPL, |
| 266 | |
| 267 | IH_PHASE_COUNT, |
| 268 | }; |
| 269 | |
| 270 | #define IMAGE_PHASE_SHIFT 8 |
| 271 | #define IMAGE_PHASE_MASK (0xff << IMAGE_PHASE_SHIFT) |
| 272 | #define IMAGE_TYPE_MASK 0xff |
| 273 | |
| 274 | /** |
| 275 | * image_ph() - build a composite value combining and type |
| 276 | * |
| 277 | * @phase: Image phase value |
| 278 | * @type: Image type value |
| 279 | * Returns: Composite value containing both |
| 280 | */ |
| 281 | static inline int image_ph(enum image_phase_t phase, enum image_type_t type) |
| 282 | { |
| 283 | return type | (phase << IMAGE_PHASE_SHIFT); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * image_ph_phase() - obtain the phase from a composite phase/type value |
| 288 | * |
| 289 | * @image_ph_type: Composite value to convert |
| 290 | * Returns: Phase value taken from the composite value |
| 291 | */ |
| 292 | static inline int image_ph_phase(int image_ph_type) |
| 293 | { |
| 294 | return (image_ph_type & IMAGE_PHASE_MASK) >> IMAGE_PHASE_SHIFT; |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * image_ph_type() - obtain the type from a composite phase/type value |
| 299 | * |
| 300 | * @image_ph_type: Composite value to convert |
| 301 | * Returns: Type value taken from the composite value |
| 302 | */ |
| 303 | static inline int image_ph_type(int image_ph_type) |
| 304 | { |
| 305 | return image_ph_type & IMAGE_TYPE_MASK; |
| 306 | } |
| 307 | |
Eugeniu Rosca | 1403f39 | 2019-04-08 17:35:27 +0200 | [diff] [blame] | 308 | #define LZ4F_MAGIC 0x184D2204 /* LZ4 Magic Number */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 309 | #define IH_MAGIC 0x27051956 /* Image Magic Number */ |
| 310 | #define IH_NMLEN 32 /* Image Name Length */ |
| 311 | |
Fabio Estevam | 5fd7c5d | 2013-01-03 08:24:33 +0000 | [diff] [blame] | 312 | /* Reused from common.h */ |
| 313 | #define ROUND(a, b) (((a) + (b) - 1) & ~((b) - 1)) |
| 314 | |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 315 | /* |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 316 | * Legacy format image header, |
| 317 | * all data in network byte order (aka natural aka bigendian). |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 318 | */ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 319 | struct legacy_img_hdr { |
Bin Meng | f0b8eb1 | 2019-10-27 05:19:40 -0700 | [diff] [blame] | 320 | uint32_t ih_magic; /* Image Header Magic Number */ |
| 321 | uint32_t ih_hcrc; /* Image Header CRC Checksum */ |
| 322 | uint32_t ih_time; /* Image Creation Timestamp */ |
| 323 | uint32_t ih_size; /* Image Data Size */ |
| 324 | uint32_t ih_load; /* Data Load Address */ |
| 325 | uint32_t ih_ep; /* Entry Point Address */ |
| 326 | uint32_t ih_dcrc; /* Image Data CRC Checksum */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 327 | uint8_t ih_os; /* Operating System */ |
| 328 | uint8_t ih_arch; /* CPU architecture */ |
| 329 | uint8_t ih_type; /* Image Type */ |
| 330 | uint8_t ih_comp; /* Compression Type */ |
| 331 | uint8_t ih_name[IH_NMLEN]; /* Image Name */ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 332 | }; |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 333 | |
Simon Glass | 74578f5 | 2022-09-06 20:26:51 -0600 | [diff] [blame] | 334 | struct image_info { |
Kumar Gala | bd70bbe | 2008-08-15 08:24:41 -0500 | [diff] [blame] | 335 | ulong start, end; /* start/end of blob */ |
| 336 | ulong image_start, image_len; /* start of image within blob, len of image */ |
| 337 | ulong load; /* load addr for the image */ |
| 338 | uint8_t comp, type, os; /* compression, type of image, os type */ |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 339 | uint8_t arch; /* CPU architecture */ |
Simon Glass | 74578f5 | 2022-09-06 20:26:51 -0600 | [diff] [blame] | 340 | }; |
Kumar Gala | bd70bbe | 2008-08-15 08:24:41 -0500 | [diff] [blame] | 341 | |
Marian Balakowicz | 20c4372 | 2008-01-08 18:11:44 +0100 | [diff] [blame] | 342 | /* |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 343 | * Legacy and FIT format headers used by do_bootm() and do_bootm_<os>() |
| 344 | * routines. |
| 345 | */ |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 346 | struct bootm_headers { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 347 | /* |
| 348 | * Legacy os image header, if it is a multi component image |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 349 | * then boot_get_ramdisk() and get_fdt() will attempt to get |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 350 | * data from second and third component accordingly. |
| 351 | */ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 352 | struct legacy_img_hdr *legacy_hdr_os; /* image header pointer */ |
| 353 | struct legacy_img_hdr legacy_hdr_os_copy; /* header copy */ |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 354 | ulong legacy_hdr_valid; |
| 355 | |
Simon Glass | 0f78138 | 2021-09-25 19:43:35 -0600 | [diff] [blame] | 356 | /* |
| 357 | * The fit_ members are only used with FIT, but it involves a lot of |
| 358 | * #ifdefs to avoid compiling that code. Since FIT is the standard |
| 359 | * format, even for SPL, this extra data size seems worth it. |
| 360 | */ |
Marian Balakowicz | 0cd4f3d | 2008-03-12 10:35:46 +0100 | [diff] [blame] | 361 | const char *fit_uname_cfg; /* configuration node unit name */ |
| 362 | |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 363 | void *fit_hdr_os; /* os FIT image header */ |
Marian Balakowicz | 6a2b2c2 | 2008-03-10 17:53:49 +0100 | [diff] [blame] | 364 | const char *fit_uname_os; /* os subimage node unit name */ |
Marian Balakowicz | 61c1ad5 | 2008-03-12 10:32:59 +0100 | [diff] [blame] | 365 | int fit_noffset_os; /* os subimage node offset */ |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 366 | |
| 367 | void *fit_hdr_rd; /* init ramdisk FIT image header */ |
Marian Balakowicz | 61c1ad5 | 2008-03-12 10:32:59 +0100 | [diff] [blame] | 368 | const char *fit_uname_rd; /* init ramdisk subimage node unit name */ |
| 369 | int fit_noffset_rd; /* init ramdisk subimage node offset */ |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 370 | |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 371 | void *fit_hdr_fdt; /* FDT blob FIT image header */ |
Marian Balakowicz | 61c1ad5 | 2008-03-12 10:32:59 +0100 | [diff] [blame] | 372 | const char *fit_uname_fdt; /* FDT blob subimage node unit name */ |
| 373 | int fit_noffset_fdt;/* FDT blob subimage node offset */ |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 374 | |
| 375 | void *fit_hdr_setup; /* x86 setup FIT image header */ |
| 376 | const char *fit_uname_setup; /* x86 setup subimage node name */ |
| 377 | int fit_noffset_setup;/* x86 setup subimage node offset */ |
Marian Balakowicz | aa6aae4 | 2008-03-12 10:35:52 +0100 | [diff] [blame] | 378 | |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 379 | #ifndef USE_HOSTCC |
Simon Glass | 74578f5 | 2022-09-06 20:26:51 -0600 | [diff] [blame] | 380 | struct image_info os; /* os image info */ |
Kumar Gala | 93467bc | 2008-08-15 08:24:36 -0500 | [diff] [blame] | 381 | ulong ep; /* entry point of OS */ |
| 382 | |
Kumar Gala | fffb143 | 2008-08-15 08:24:37 -0500 | [diff] [blame] | 383 | ulong rd_start, rd_end;/* ramdisk start/end */ |
| 384 | |
Kumar Gala | a5130ad | 2008-08-15 08:24:38 -0500 | [diff] [blame] | 385 | char *ft_addr; /* flat dev tree address */ |
Kumar Gala | a5130ad | 2008-08-15 08:24:38 -0500 | [diff] [blame] | 386 | ulong ft_len; /* length of flat device tree */ |
| 387 | |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 388 | ulong initrd_start; |
| 389 | ulong initrd_end; |
| 390 | ulong cmdline_start; |
| 391 | ulong cmdline_end; |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 392 | struct bd_info *kbd; |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 393 | #endif |
| 394 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 395 | int verify; /* env_get("verify")[0] != 'n' */ |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 396 | |
Simon Glass | 5f074d4 | 2022-09-06 20:26:49 -0600 | [diff] [blame] | 397 | #define BOOTM_STATE_START 0x00000001 |
| 398 | #define BOOTM_STATE_FINDOS 0x00000002 |
| 399 | #define BOOTM_STATE_FINDOTHER 0x00000004 |
| 400 | #define BOOTM_STATE_LOADOS 0x00000008 |
| 401 | #define BOOTM_STATE_RAMDISK 0x00000010 |
| 402 | #define BOOTM_STATE_FDT 0x00000020 |
| 403 | #define BOOTM_STATE_OS_CMDLINE 0x00000040 |
| 404 | #define BOOTM_STATE_OS_BD_T 0x00000080 |
| 405 | #define BOOTM_STATE_OS_PREP 0x00000100 |
| 406 | #define BOOTM_STATE_OS_FAKE_GO 0x00000200 /* 'Almost' run the OS */ |
| 407 | #define BOOTM_STATE_OS_GO 0x00000400 |
| 408 | #define BOOTM_STATE_PRE_LOAD 0x00000800 |
Kumar Gala | 18178bc | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 409 | int state; |
| 410 | |
Patrick Delaunay | d62063d | 2021-03-10 10:16:25 +0100 | [diff] [blame] | 411 | #if defined(CONFIG_LMB) && !defined(USE_HOSTCC) |
Kumar Gala | da6d11e | 2008-08-15 08:24:40 -0500 | [diff] [blame] | 412 | struct lmb lmb; /* for memory mgmt */ |
| 413 | #endif |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 414 | }; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 415 | |
Simon Glass | 7ae16bb | 2022-08-28 12:32:53 -0600 | [diff] [blame] | 416 | #ifdef CONFIG_LMB |
| 417 | #define images_lmb(_images) (&(_images)->lmb) |
| 418 | #else |
| 419 | #define images_lmb(_images) NULL |
| 420 | #endif |
| 421 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 422 | extern struct bootm_headers images; |
Simon Schwarz | af775a0 | 2012-03-15 04:01:34 +0000 | [diff] [blame] | 423 | |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 424 | /* |
Marian Balakowicz | 20c4372 | 2008-01-08 18:11:44 +0100 | [diff] [blame] | 425 | * Some systems (for example LWMON) have very short watchdog periods; |
| 426 | * we must make sure to split long operations like memmove() or |
Bartlomiej Sieka | 222e2ca | 2008-04-25 13:54:02 +0200 | [diff] [blame] | 427 | * checksum calculations into reasonable chunks. |
Marian Balakowicz | 20c4372 | 2008-01-08 18:11:44 +0100 | [diff] [blame] | 428 | */ |
Bartlomiej Sieka | 222e2ca | 2008-04-25 13:54:02 +0200 | [diff] [blame] | 429 | #ifndef CHUNKSZ |
Marian Balakowicz | 20c4372 | 2008-01-08 18:11:44 +0100 | [diff] [blame] | 430 | #define CHUNKSZ (64 * 1024) |
Bartlomiej Sieka | 222e2ca | 2008-04-25 13:54:02 +0200 | [diff] [blame] | 431 | #endif |
| 432 | |
| 433 | #ifndef CHUNKSZ_CRC32 |
| 434 | #define CHUNKSZ_CRC32 (64 * 1024) |
| 435 | #endif |
| 436 | |
| 437 | #ifndef CHUNKSZ_MD5 |
| 438 | #define CHUNKSZ_MD5 (64 * 1024) |
| 439 | #endif |
| 440 | |
| 441 | #ifndef CHUNKSZ_SHA1 |
| 442 | #define CHUNKSZ_SHA1 (64 * 1024) |
| 443 | #endif |
Marian Balakowicz | 20c4372 | 2008-01-08 18:11:44 +0100 | [diff] [blame] | 444 | |
Mike Frysinger | 4ad8e9f | 2009-07-02 19:23:25 -0400 | [diff] [blame] | 445 | #define uimage_to_cpu(x) be32_to_cpu(x) |
| 446 | #define cpu_to_uimage(x) cpu_to_be32(x) |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 447 | |
Prafulla Wadaskar | 4454c9e | 2009-09-07 14:59:08 +0530 | [diff] [blame] | 448 | /* |
| 449 | * Translation table for entries of a specific type; used by |
| 450 | * get_table_entry_id() and get_table_entry_name(). |
| 451 | */ |
| 452 | typedef struct table_entry { |
| 453 | int id; |
| 454 | char *sname; /* short (input) name to find table entry */ |
| 455 | char *lname; /* long (output) name to print for messages */ |
| 456 | } table_entry_t; |
| 457 | |
| 458 | /* |
Atish Patra | 04e8cd8 | 2020-03-05 16:24:22 -0800 | [diff] [blame] | 459 | * Compression type and magic number mapping table. |
| 460 | */ |
| 461 | struct comp_magic_map { |
| 462 | int comp_id; |
| 463 | const char *name; |
| 464 | unsigned char magic[2]; |
| 465 | }; |
| 466 | |
| 467 | /* |
Prafulla Wadaskar | 4454c9e | 2009-09-07 14:59:08 +0530 | [diff] [blame] | 468 | * get_table_entry_id() scans the translation table trying to find an |
| 469 | * entry that matches the given short name. If a matching entry is |
| 470 | * found, it's id is returned to the caller. |
| 471 | */ |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 472 | int get_table_entry_id(const table_entry_t *table, |
Prafulla Wadaskar | 4454c9e | 2009-09-07 14:59:08 +0530 | [diff] [blame] | 473 | const char *table_name, const char *name); |
| 474 | /* |
| 475 | * get_table_entry_name() scans the translation table trying to find |
| 476 | * an entry that matches the given id. If a matching entry is found, |
| 477 | * its long name is returned to the caller. |
| 478 | */ |
Mike Frysinger | cf2feb1 | 2010-10-20 07:17:39 -0400 | [diff] [blame] | 479 | char *get_table_entry_name(const table_entry_t *table, char *msg, int id); |
Prafulla Wadaskar | 4454c9e | 2009-09-07 14:59:08 +0530 | [diff] [blame] | 480 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 481 | const char *genimg_get_os_name(uint8_t os); |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 482 | |
| 483 | /** |
| 484 | * genimg_get_os_short_name() - get the short name for an OS |
| 485 | * |
| 486 | * @param os OS (IH_OS_...) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 487 | * Return: OS short name, or "unknown" if unknown |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 488 | */ |
| 489 | const char *genimg_get_os_short_name(uint8_t comp); |
| 490 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 491 | const char *genimg_get_arch_name(uint8_t arch); |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 492 | |
| 493 | /** |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame^] | 494 | * genimg_get_phase_name() - Get the friendly name for a phase |
| 495 | * |
| 496 | * @phase: Phase value to look up |
| 497 | * Returns: Friendly name for the phase (e.g. "U-Boot phase") |
| 498 | */ |
| 499 | const char *genimg_get_phase_name(enum image_phase_t phase); |
| 500 | |
| 501 | /** |
| 502 | * genimg_get_phase_id() - Convert a phase name to an ID |
| 503 | * |
| 504 | * @name: Name to convert (e.g. "u-boot") |
| 505 | * Returns: ID for that phase (e.g. IH_PHASE_U_BOOT) |
| 506 | */ |
| 507 | int genimg_get_phase_id(const char *name); |
| 508 | |
| 509 | /** |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 510 | * genimg_get_arch_short_name() - get the short name for an architecture |
| 511 | * |
| 512 | * @param arch Architecture type (IH_ARCH_...) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 513 | * Return: architecture short name, or "unknown" if unknown |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 514 | */ |
| 515 | const char *genimg_get_arch_short_name(uint8_t arch); |
| 516 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 517 | const char *genimg_get_type_name(uint8_t type); |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 518 | |
| 519 | /** |
| 520 | * genimg_get_type_short_name() - get the short name for an image type |
| 521 | * |
| 522 | * @param type Image type (IH_TYPE_...) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 523 | * Return: image short name, or "unknown" if unknown |
Simon Glass | 434a31b | 2015-06-23 15:38:25 -0600 | [diff] [blame] | 524 | */ |
| 525 | const char *genimg_get_type_short_name(uint8_t type); |
| 526 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 527 | const char *genimg_get_comp_name(uint8_t comp); |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 528 | |
| 529 | /** |
| 530 | * genimg_get_comp_short_name() - get the short name for a compression method |
| 531 | * |
| 532 | * @param comp compression method (IH_COMP_...) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 533 | * Return: compression method short name, or "unknown" if unknown |
Simon Glass | 86c362d | 2016-02-22 22:55:50 -0700 | [diff] [blame] | 534 | */ |
| 535 | const char *genimg_get_comp_short_name(uint8_t comp); |
| 536 | |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 537 | /** |
| 538 | * genimg_get_cat_name() - Get the name of an item in a category |
| 539 | * |
| 540 | * @category: Category of item |
| 541 | * @id: Item ID |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 542 | * Return: name of item, or "Unknown ..." if unknown |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 543 | */ |
| 544 | const char *genimg_get_cat_name(enum ih_category category, uint id); |
| 545 | |
| 546 | /** |
| 547 | * genimg_get_cat_short_name() - Get the short name of an item in a category |
| 548 | * |
| 549 | * @category: Category of item |
| 550 | * @id: Item ID |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 551 | * Return: short name of item, or "Unknown ..." if unknown |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 552 | */ |
| 553 | const char *genimg_get_cat_short_name(enum ih_category category, uint id); |
| 554 | |
| 555 | /** |
| 556 | * genimg_get_cat_count() - Get the number of items in a category |
| 557 | * |
| 558 | * @category: Category to check |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 559 | * Return: the number of items in the category (IH_xxx_COUNT) |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 560 | */ |
| 561 | int genimg_get_cat_count(enum ih_category category); |
| 562 | |
| 563 | /** |
| 564 | * genimg_get_cat_desc() - Get the description of a category |
| 565 | * |
Naoki Hayama | 9f1622f | 2020-10-07 11:22:24 +0900 | [diff] [blame] | 566 | * @category: Category to check |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 567 | * Return: the description of a category, e.g. "architecture". This |
Simon Glass | 1986433 | 2016-06-30 10:52:16 -0600 | [diff] [blame] | 568 | * effectively converts the enum to a string. |
| 569 | */ |
| 570 | const char *genimg_get_cat_desc(enum ih_category category); |
| 571 | |
Naoki Hayama | d7e8291 | 2020-10-07 11:21:25 +0900 | [diff] [blame] | 572 | /** |
| 573 | * genimg_cat_has_id() - Check whether a category has an item |
| 574 | * |
| 575 | * @category: Category to check |
| 576 | * @id: Item ID |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 577 | * Return: true or false as to whether a category has an item |
Naoki Hayama | d7e8291 | 2020-10-07 11:21:25 +0900 | [diff] [blame] | 578 | */ |
| 579 | bool genimg_cat_has_id(enum ih_category category, uint id); |
| 580 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 581 | int genimg_get_os_id(const char *name); |
| 582 | int genimg_get_arch_id(const char *name); |
| 583 | int genimg_get_type_id(const char *name); |
| 584 | int genimg_get_comp_id(const char *name); |
| 585 | void genimg_print_size(uint32_t size); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 586 | |
Simon Glass | 2c6a1b0 | 2021-09-25 19:43:33 -0600 | [diff] [blame] | 587 | #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || defined(USE_HOSTCC) |
Simon Glass | af0ec0d | 2013-05-07 06:11:51 +0000 | [diff] [blame] | 588 | #define IMAGE_ENABLE_TIMESTAMP 1 |
| 589 | #else |
| 590 | #define IMAGE_ENABLE_TIMESTAMP 0 |
| 591 | #endif |
| 592 | void genimg_print_time(time_t timestamp); |
| 593 | |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 594 | /* What to do with a image load address ('load = <> 'in the FIT) */ |
| 595 | enum fit_load_op { |
| 596 | FIT_LOAD_IGNORED, /* Ignore load address */ |
| 597 | FIT_LOAD_OPTIONAL, /* Can be provided, but optional */ |
Simon Glass | 05a9ad7 | 2014-08-22 14:26:43 -0600 | [diff] [blame] | 598 | FIT_LOAD_OPTIONAL_NON_ZERO, /* Optional, a value of 0 is ignored */ |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 599 | FIT_LOAD_REQUIRED, /* Must be provided */ |
| 600 | }; |
| 601 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 602 | int boot_get_setup(struct bootm_headers *images, uint8_t arch, ulong *setup_start, |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 603 | ulong *setup_len); |
| 604 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 605 | /* Image format types, returned by _get_format() routine */ |
| 606 | #define IMAGE_FORMAT_INVALID 0x00 |
| 607 | #define IMAGE_FORMAT_LEGACY 0x01 /* legacy image_header based format */ |
| 608 | #define IMAGE_FORMAT_FIT 0x02 /* new, libfdt based format */ |
Sebastian Siewior | 686d667 | 2014-05-05 15:08:09 -0500 | [diff] [blame] | 609 | #define IMAGE_FORMAT_ANDROID 0x03 /* Android boot image */ |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 610 | |
Bryan Wu | f5c377a | 2014-08-15 16:51:38 -0700 | [diff] [blame] | 611 | ulong genimg_get_kernel_addr_fit(char * const img_addr, |
| 612 | const char **fit_uname_config, |
| 613 | const char **fit_uname_kernel); |
Bryan Wu | af7b0de | 2014-07-31 17:39:58 -0700 | [diff] [blame] | 614 | ulong genimg_get_kernel_addr(char * const img_addr); |
Simon Glass | 4964806 | 2013-05-07 06:12:03 +0000 | [diff] [blame] | 615 | int genimg_get_format(const void *img_addr); |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 616 | int genimg_has_config(struct bootm_headers *images); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 617 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 618 | int boot_get_fpga(int argc, char *const argv[], struct bootm_headers *images, |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 619 | uint8_t arch, const ulong *ld_start, ulong * const ld_len); |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 620 | int boot_get_ramdisk(int argc, char *const argv[], struct bootm_headers *images, |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 621 | uint8_t arch, ulong *rd_start, ulong *rd_end); |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 622 | |
| 623 | /** |
| 624 | * boot_get_loadable - routine to load a list of binaries to memory |
| 625 | * @argc: Ignored Argument |
| 626 | * @argv: Ignored Argument |
| 627 | * @images: pointer to the bootm images structure |
| 628 | * @arch: expected architecture for the image |
| 629 | * @ld_start: Ignored Argument |
| 630 | * @ld_len: Ignored Argument |
| 631 | * |
| 632 | * boot_get_loadable() will take the given FIT configuration, and look |
| 633 | * for a field named "loadables". Loadables, is a list of elements in |
| 634 | * the FIT given as strings. exe: |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 635 | * loadables = "linux_kernel", "fdt-2"; |
Karl Apsite | 1b21c28 | 2015-05-21 09:52:48 -0400 | [diff] [blame] | 636 | * this function will attempt to parse each string, and load the |
| 637 | * corresponding element from the FIT into memory. Once placed, |
| 638 | * no aditional actions are taken. |
| 639 | * |
| 640 | * @return: |
| 641 | * 0, if only valid images or no images are found |
| 642 | * error code, if an error occurs during fit_image_load |
| 643 | */ |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 644 | int boot_get_loadable(int argc, char *const argv[], struct bootm_headers *images, |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 645 | uint8_t arch, const ulong *ld_start, ulong *const ld_len); |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 646 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 647 | int boot_get_setup_fit(struct bootm_headers *images, uint8_t arch, |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 648 | ulong *setup_start, ulong *setup_len); |
| 649 | |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 650 | /** |
Pantelis Antoniou | 6e51fb2 | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 651 | * boot_get_fdt_fit() - load a DTB from a FIT file (applying overlays) |
| 652 | * |
| 653 | * This deals with all aspects of loading an DTB from a FIT. |
| 654 | * The correct base image based on configuration will be selected, and |
| 655 | * then any overlays specified will be applied (as present in fit_uname_configp). |
| 656 | * |
| 657 | * @param images Boot images structure |
| 658 | * @param addr Address of FIT in memory |
| 659 | * @param fit_unamep On entry this is the requested image name |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 660 | * (e.g. "kernel") or NULL to use the default. On exit |
Pantelis Antoniou | 6e51fb2 | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 661 | * points to the selected image name |
| 662 | * @param fit_uname_configp On entry this is the requested configuration |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 663 | * name (e.g. "conf-1") or NULL to use the default. On |
Pantelis Antoniou | 6e51fb2 | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 664 | * exit points to the selected configuration name. |
| 665 | * @param arch Expected architecture (IH_ARCH_...) |
| 666 | * @param datap Returns address of loaded image |
| 667 | * @param lenp Returns length of loaded image |
| 668 | * |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 669 | * Return: node offset of base image, or -ve error code on error |
Pantelis Antoniou | 6e51fb2 | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 670 | */ |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 671 | int boot_get_fdt_fit(struct bootm_headers *images, ulong addr, |
| 672 | const char **fit_unamep, const char **fit_uname_configp, |
| 673 | int arch, ulong *datap, ulong *lenp); |
Pantelis Antoniou | 6e51fb2 | 2017-09-04 23:12:16 +0300 | [diff] [blame] | 674 | |
| 675 | /** |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 676 | * fit_image_load() - load an image from a FIT |
| 677 | * |
| 678 | * This deals with all aspects of loading an image from a FIT, including |
| 679 | * selecting the right image based on configuration, verifying it, printing |
| 680 | * out progress messages, checking the type/arch/os and optionally copying it |
| 681 | * to the right load address. |
| 682 | * |
Simon Glass | a0c0b63 | 2014-06-12 07:24:47 -0600 | [diff] [blame] | 683 | * The property to look up is defined by image_type. |
| 684 | * |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 685 | * @param images Boot images structure |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 686 | * @param addr Address of FIT in memory |
| 687 | * @param fit_unamep On entry this is the requested image name |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 688 | * (e.g. "kernel") or NULL to use the default. On exit |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 689 | * points to the selected image name |
Simon Glass | ad68fc3 | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 690 | * @param fit_uname_configp On entry this is the requested configuration |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 691 | * name (e.g. "conf-1") or NULL to use the default. On |
Simon Glass | ad68fc3 | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 692 | * exit points to the selected configuration name. |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 693 | * @param arch Expected architecture (IH_ARCH_...) |
| 694 | * @param image_type Required image type (IH_TYPE_...). If this is |
| 695 | * IH_TYPE_KERNEL then we allow IH_TYPE_KERNEL_NOLOAD |
| 696 | * also. |
| 697 | * @param bootstage_id ID of starting bootstage to use for progress updates. |
| 698 | * This will be added to the BOOTSTAGE_SUB values when |
| 699 | * calling bootstage_mark() |
| 700 | * @param load_op Decribes what to do with the load address |
| 701 | * @param datap Returns address of loaded image |
| 702 | * @param lenp Returns length of loaded image |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 703 | * Return: node offset of image, or -ve error code on error |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 704 | */ |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 705 | int fit_image_load(struct bootm_headers *images, ulong addr, |
Simon Glass | ad68fc3 | 2013-07-10 23:08:10 -0700 | [diff] [blame] | 706 | const char **fit_unamep, const char **fit_uname_configp, |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 707 | int arch, int image_type, int bootstage_id, |
| 708 | enum fit_load_op load_op, ulong *datap, ulong *lenp); |
| 709 | |
Simon Glass | 606f09b | 2019-12-28 10:45:04 -0700 | [diff] [blame] | 710 | /** |
| 711 | * image_source_script() - Execute a script |
| 712 | * |
| 713 | * Executes a U-Boot script at a particular address in memory. The script should |
| 714 | * have a header (FIT or legacy) with the script type (IH_TYPE_SCRIPT). |
| 715 | * |
| 716 | * @addr: Address of script |
| 717 | * @fit_uname: FIT subimage name |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 718 | * Return: result code (enum command_ret_t) |
Simon Glass | 606f09b | 2019-12-28 10:45:04 -0700 | [diff] [blame] | 719 | */ |
| 720 | int image_source_script(ulong addr, const char *fit_uname); |
| 721 | |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 722 | /** |
| 723 | * fit_get_node_from_config() - Look up an image a FIT by type |
| 724 | * |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 725 | * This looks in the selected conf- node (images->fit_uname_cfg) for a |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 726 | * particular image type (e.g. "kernel") and then finds the image that is |
| 727 | * referred to. |
| 728 | * |
| 729 | * For example, for something like: |
| 730 | * |
| 731 | * images { |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 732 | * kernel { |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 733 | * ... |
| 734 | * }; |
| 735 | * }; |
| 736 | * configurations { |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 737 | * conf-1 { |
| 738 | * kernel = "kernel"; |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 739 | * }; |
| 740 | * }; |
| 741 | * |
| 742 | * the function will return the node offset of the kernel@1 node, assuming |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 743 | * that conf-1 is the chosen configuration. |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 744 | * |
| 745 | * @param images Boot images structure |
| 746 | * @param prop_name Property name to look up (FIT_..._PROP) |
| 747 | * @param addr Address of FIT in memory |
| 748 | */ |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 749 | int fit_get_node_from_config(struct bootm_headers *images, |
| 750 | const char *prop_name, ulong addr); |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 751 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 752 | int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch, |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 753 | struct bootm_headers *images, |
Simon Glass | b1b7992 | 2013-05-16 13:53:23 +0000 | [diff] [blame] | 754 | char **of_flat_tree, ulong *of_size); |
Grant Likely | 20f5492 | 2011-03-28 09:59:01 +0000 | [diff] [blame] | 755 | void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 756 | int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size); |
Kumar Gala | a5130ad | 2008-08-15 08:24:38 -0500 | [diff] [blame] | 757 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 758 | int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len, |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 759 | ulong *initrd_start, ulong *initrd_end); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 760 | int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end); |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 761 | int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 762 | |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 763 | /*******************************************************************/ |
| 764 | /* Legacy format specific code (prefixed with image_) */ |
| 765 | /*******************************************************************/ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 766 | static inline uint32_t image_get_header_size(void) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 767 | { |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 768 | return sizeof(struct legacy_img_hdr); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 769 | } |
| 770 | |
| 771 | #define image_get_hdr_l(f) \ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 772 | static inline uint32_t image_get_##f(const struct legacy_img_hdr *hdr) \ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 773 | { \ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 774 | return uimage_to_cpu(hdr->ih_##f); \ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 775 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 776 | image_get_hdr_l(magic) /* image_get_magic */ |
| 777 | image_get_hdr_l(hcrc) /* image_get_hcrc */ |
| 778 | image_get_hdr_l(time) /* image_get_time */ |
| 779 | image_get_hdr_l(size) /* image_get_size */ |
| 780 | image_get_hdr_l(load) /* image_get_load */ |
| 781 | image_get_hdr_l(ep) /* image_get_ep */ |
| 782 | image_get_hdr_l(dcrc) /* image_get_dcrc */ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 783 | |
| 784 | #define image_get_hdr_b(f) \ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 785 | static inline uint8_t image_get_##f(const struct legacy_img_hdr *hdr) \ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 786 | { \ |
| 787 | return hdr->ih_##f; \ |
| 788 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 789 | image_get_hdr_b(os) /* image_get_os */ |
| 790 | image_get_hdr_b(arch) /* image_get_arch */ |
| 791 | image_get_hdr_b(type) /* image_get_type */ |
| 792 | image_get_hdr_b(comp) /* image_get_comp */ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 793 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 794 | static inline char *image_get_name(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 795 | { |
| 796 | return (char *)hdr->ih_name; |
| 797 | } |
| 798 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 799 | static inline uint32_t image_get_data_size(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 800 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 801 | return image_get_size(hdr); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 802 | } |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 803 | |
| 804 | /** |
| 805 | * image_get_data - get image payload start address |
| 806 | * @hdr: image header |
| 807 | * |
| 808 | * image_get_data() returns address of the image payload. For single |
| 809 | * component images it is image data start. For multi component |
| 810 | * images it points to the null terminated table of sub-images sizes. |
| 811 | * |
| 812 | * returns: |
| 813 | * image payload data start address |
| 814 | */ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 815 | static inline ulong image_get_data(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 816 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 817 | return ((ulong)hdr + image_get_header_size()); |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 818 | } |
| 819 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 820 | static inline uint32_t image_get_image_size(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 821 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 822 | return (image_get_size(hdr) + image_get_header_size()); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 823 | } |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 824 | |
| 825 | static inline ulong image_get_image_end(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 826 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 827 | return ((ulong)hdr + image_get_image_size(hdr)); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 828 | } |
| 829 | |
| 830 | #define image_set_hdr_l(f) \ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 831 | static inline void image_set_##f(struct legacy_img_hdr *hdr, uint32_t val) \ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 832 | { \ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 833 | hdr->ih_##f = cpu_to_uimage(val); \ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 834 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 835 | image_set_hdr_l(magic) /* image_set_magic */ |
| 836 | image_set_hdr_l(hcrc) /* image_set_hcrc */ |
| 837 | image_set_hdr_l(time) /* image_set_time */ |
| 838 | image_set_hdr_l(size) /* image_set_size */ |
| 839 | image_set_hdr_l(load) /* image_set_load */ |
| 840 | image_set_hdr_l(ep) /* image_set_ep */ |
| 841 | image_set_hdr_l(dcrc) /* image_set_dcrc */ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 842 | |
| 843 | #define image_set_hdr_b(f) \ |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 844 | static inline void image_set_##f(struct legacy_img_hdr *hdr, uint8_t val) \ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 845 | { \ |
| 846 | hdr->ih_##f = val; \ |
| 847 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 848 | image_set_hdr_b(os) /* image_set_os */ |
| 849 | image_set_hdr_b(arch) /* image_set_arch */ |
| 850 | image_set_hdr_b(type) /* image_set_type */ |
| 851 | image_set_hdr_b(comp) /* image_set_comp */ |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 852 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 853 | static inline void image_set_name(struct legacy_img_hdr *hdr, const char *name) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 854 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 855 | strncpy(image_get_name(hdr), name, IH_NMLEN); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 856 | } |
| 857 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 858 | int image_check_hcrc(const struct legacy_img_hdr *hdr); |
| 859 | int image_check_dcrc(const struct legacy_img_hdr *hdr); |
Marian Balakowicz | f9a67bd | 2008-01-08 18:11:45 +0100 | [diff] [blame] | 860 | #ifndef USE_HOSTCC |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 861 | ulong env_get_bootm_low(void); |
| 862 | phys_size_t env_get_bootm_size(void); |
| 863 | phys_size_t env_get_bootm_mapsize(void); |
Marian Balakowicz | f9a67bd | 2008-01-08 18:11:45 +0100 | [diff] [blame] | 864 | #endif |
Simon Glass | a51991d | 2014-06-12 07:24:53 -0600 | [diff] [blame] | 865 | void memmove_wd(void *to, void *from, size_t len, ulong chunksz); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 866 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 867 | static inline int image_check_magic(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 868 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 869 | return (image_get_magic(hdr) == IH_MAGIC); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 870 | } |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 871 | |
| 872 | static inline int image_check_type(const struct legacy_img_hdr *hdr, uint8_t type) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 873 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 874 | return (image_get_type(hdr) == type); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 875 | } |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 876 | |
| 877 | static inline int image_check_arch(const struct legacy_img_hdr *hdr, uint8_t arch) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 878 | { |
Simon Glass | 062e79f | 2021-03-15 18:11:12 +1300 | [diff] [blame] | 879 | /* Let's assume that sandbox can load any architecture */ |
Simon Glass | 2c6a1b0 | 2021-09-25 19:43:33 -0600 | [diff] [blame] | 880 | if (!tools_build() && IS_ENABLED(CONFIG_SANDBOX)) |
Simon Glass | 062e79f | 2021-03-15 18:11:12 +1300 | [diff] [blame] | 881 | return true; |
Alison Wang | 42664e0 | 2017-06-06 15:32:40 +0800 | [diff] [blame] | 882 | return (image_get_arch(hdr) == arch) || |
| 883 | (image_get_arch(hdr) == IH_ARCH_ARM && arch == IH_ARCH_ARM64); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 884 | } |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 885 | |
| 886 | static inline int image_check_os(const struct legacy_img_hdr *hdr, uint8_t os) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 887 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 888 | return (image_get_os(hdr) == os); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 889 | } |
| 890 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 891 | ulong image_multi_count(const struct legacy_img_hdr *hdr); |
| 892 | void image_multi_getimg(const struct legacy_img_hdr *hdr, ulong idx, |
Marian Balakowicz | 05c1d3f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 893 | ulong *data, ulong *len); |
| 894 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 895 | void image_print_contents(const void *hdr); |
Marian Balakowicz | c3c7eb2 | 2008-02-29 15:59:59 +0100 | [diff] [blame] | 896 | |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 897 | #ifndef USE_HOSTCC |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 898 | static inline int image_check_target_arch(const struct legacy_img_hdr *hdr) |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 899 | { |
Mike Frysinger | 5da0bed | 2011-10-03 14:50:33 +0000 | [diff] [blame] | 900 | #ifndef IH_ARCH_DEFAULT |
| 901 | # error "please define IH_ARCH_DEFAULT in your arch asm/u-boot.h" |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 902 | #endif |
Mike Frysinger | 5da0bed | 2011-10-03 14:50:33 +0000 | [diff] [blame] | 903 | return image_check_arch(hdr, IH_ARCH_DEFAULT); |
Marian Balakowicz | 41d71ed | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 904 | } |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 905 | #endif /* USE_HOSTCC */ |
wdenk | 5b1d713 | 2002-11-03 00:07:02 +0000 | [diff] [blame] | 906 | |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 907 | /** |
Atish Patra | 04e8cd8 | 2020-03-05 16:24:22 -0800 | [diff] [blame] | 908 | * image_decomp_type() - Find out compression type of an image |
| 909 | * |
| 910 | * @buf: Address in U-Boot memory where image is loaded. |
| 911 | * @len: Length of the compressed image. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 912 | * Return: compression type or IH_COMP_NONE if not compressed. |
Atish Patra | 04e8cd8 | 2020-03-05 16:24:22 -0800 | [diff] [blame] | 913 | * |
| 914 | * Note: Only following compression types are supported now. |
| 915 | * lzo, lzma, gzip, bzip2 |
| 916 | */ |
| 917 | int image_decomp_type(const unsigned char *buf, ulong len); |
| 918 | |
| 919 | /** |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 920 | * image_decomp() - decompress an image |
| 921 | * |
| 922 | * @comp: Compression algorithm that is used (IH_COMP_...) |
| 923 | * @load: Destination load address in U-Boot memory |
| 924 | * @image_start Image start address (where we are decompressing from) |
| 925 | * @type: OS type (IH_OS_...) |
| 926 | * @load_bug: Place to decompress to |
| 927 | * @image_buf: Address to decompress from |
| 928 | * @image_len: Number of bytes in @image_buf to decompress |
| 929 | * @unc_len: Available space for decompression |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 930 | * Return: 0 if OK, -ve on error (BOOTM_ERR_...) |
Julius Werner | 47ef986 | 2019-07-24 19:37:54 -0700 | [diff] [blame] | 931 | */ |
| 932 | int image_decomp(int comp, ulong load, ulong image_start, int type, |
| 933 | void *load_buf, void *image_buf, ulong image_len, |
| 934 | uint unc_len, ulong *load_end); |
| 935 | |
| 936 | /** |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 937 | * Set up properties in the FDT |
| 938 | * |
| 939 | * This sets up properties in the FDT that is to be passed to linux. |
| 940 | * |
| 941 | * @images: Images information |
| 942 | * @blob: FDT to update |
| 943 | * @of_size: Size of the FDT |
| 944 | * @lmb: Points to logical memory block structure |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 945 | * Return: 0 if ok, <0 on failure |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 946 | */ |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 947 | int image_setup_libfdt(struct bootm_headers *images, void *blob, |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 948 | int of_size, struct lmb *lmb); |
| 949 | |
| 950 | /** |
| 951 | * Set up the FDT to use for booting a kernel |
| 952 | * |
| 953 | * This performs ramdisk setup, sets up the FDT if required, and adds |
| 954 | * paramters to the FDT if libfdt is available. |
| 955 | * |
| 956 | * @param images Images information |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 957 | * Return: 0 if ok, <0 on failure |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 958 | */ |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 959 | int image_setup_linux(struct bootm_headers *images); |
Simon Glass | 9ca3742 | 2013-05-08 08:06:01 +0000 | [diff] [blame] | 960 | |
Simon Glass | 5f1afdd | 2013-07-04 13:26:10 -0700 | [diff] [blame] | 961 | /** |
| 962 | * bootz_setup() - Extract stat and size of a Linux xImage |
| 963 | * |
| 964 | * @image: Address of image |
| 965 | * @start: Returns start address of image |
| 966 | * @end : Returns end address of image |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 967 | * Return: 0 if OK, 1 if the image was not recognised |
Simon Glass | 5f1afdd | 2013-07-04 13:26:10 -0700 | [diff] [blame] | 968 | */ |
| 969 | int bootz_setup(ulong image, ulong *start, ulong *end); |
| 970 | |
Bin Chen | dac184b | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 971 | /** |
| 972 | * Return the correct start address and size of a Linux aarch64 Image. |
| 973 | * |
| 974 | * @image: Address of image |
| 975 | * @start: Returns start address of image |
| 976 | * @size : Returns size image |
Marek Vasut | 85ed289 | 2018-06-13 06:13:32 +0200 | [diff] [blame] | 977 | * @force_reloc: Ignore image->ep field, always place image to RAM start |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 978 | * Return: 0 if OK, 1 if the image was not recognised |
Bin Chen | dac184b | 2018-01-27 16:59:09 +1100 | [diff] [blame] | 979 | */ |
Marek Vasut | 85ed289 | 2018-06-13 06:13:32 +0200 | [diff] [blame] | 980 | int booti_setup(ulong image, ulong *relocated_addr, ulong *size, |
| 981 | bool force_reloc); |
Simon Glass | 5f1afdd | 2013-07-04 13:26:10 -0700 | [diff] [blame] | 982 | |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 983 | /*******************************************************************/ |
Marian Balakowicz | d7c88a4 | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 984 | /* New uImage format specific code (prefixed with fit_) */ |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 985 | /*******************************************************************/ |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 986 | |
| 987 | #define FIT_IMAGES_PATH "/images" |
| 988 | #define FIT_CONFS_PATH "/configurations" |
| 989 | |
Simon Glass | d7aabcc | 2020-03-18 11:44:06 -0600 | [diff] [blame] | 990 | /* hash/signature/key node */ |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 991 | #define FIT_HASH_NODENAME "hash" |
| 992 | #define FIT_ALGO_PROP "algo" |
| 993 | #define FIT_VALUE_PROP "value" |
Joe Hershberger | 8b7d32a | 2012-08-17 10:34:39 +0000 | [diff] [blame] | 994 | #define FIT_IGNORE_PROP "uboot-ignore" |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 995 | #define FIT_SIG_NODENAME "signature" |
Simon Glass | d7aabcc | 2020-03-18 11:44:06 -0600 | [diff] [blame] | 996 | #define FIT_KEY_REQUIRED "required" |
| 997 | #define FIT_KEY_HINT "key-name-hint" |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 998 | |
Philippe Reynes | 3148e42 | 2019-12-18 18:25:41 +0100 | [diff] [blame] | 999 | /* cipher node */ |
| 1000 | #define FIT_CIPHER_NODENAME "cipher" |
| 1001 | #define FIT_ALGO_PROP "algo" |
| 1002 | |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1003 | /* image node */ |
| 1004 | #define FIT_DATA_PROP "data" |
Peng Fan | 8876c7e | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 1005 | #define FIT_DATA_POSITION_PROP "data-position" |
tomas.melin@vaisala.com | 45ee790 | 2017-01-13 13:20:14 +0200 | [diff] [blame] | 1006 | #define FIT_DATA_OFFSET_PROP "data-offset" |
| 1007 | #define FIT_DATA_SIZE_PROP "data-size" |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1008 | #define FIT_TIMESTAMP_PROP "timestamp" |
| 1009 | #define FIT_DESC_PROP "description" |
| 1010 | #define FIT_ARCH_PROP "arch" |
| 1011 | #define FIT_TYPE_PROP "type" |
| 1012 | #define FIT_OS_PROP "os" |
| 1013 | #define FIT_COMP_PROP "compression" |
| 1014 | #define FIT_ENTRY_PROP "entry" |
| 1015 | #define FIT_LOAD_PROP "load" |
| 1016 | |
| 1017 | /* configuration node */ |
| 1018 | #define FIT_KERNEL_PROP "kernel" |
| 1019 | #define FIT_RAMDISK_PROP "ramdisk" |
| 1020 | #define FIT_FDT_PROP "fdt" |
Karl Apsite | 8f0537d | 2015-05-21 09:52:47 -0400 | [diff] [blame] | 1021 | #define FIT_LOADABLE_PROP "loadables" |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1022 | #define FIT_DEFAULT_PROP "default" |
Simon Glass | 0129b52 | 2014-10-19 21:11:24 -0600 | [diff] [blame] | 1023 | #define FIT_SETUP_PROP "setup" |
Michal Simek | 0a130b1 | 2016-05-17 13:58:44 +0200 | [diff] [blame] | 1024 | #define FIT_FPGA_PROP "fpga" |
Michal Simek | b766e8f | 2018-03-26 16:31:26 +0200 | [diff] [blame] | 1025 | #define FIT_FIRMWARE_PROP "firmware" |
Marek Vasut | 93e9575 | 2018-05-13 00:22:54 +0200 | [diff] [blame] | 1026 | #define FIT_STANDALONE_PROP "standalone" |
Simon Glass | e3f81ae | 2022-10-20 18:23:03 -0600 | [diff] [blame^] | 1027 | #define FIT_PHASE_PROP "phase" |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1028 | |
Michael van der Westhuizen | e36c6c3 | 2014-05-30 20:59:00 +0200 | [diff] [blame] | 1029 | #define FIT_MAX_HASH_LEN HASH_MAX_DIGEST_SIZE |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1030 | |
| 1031 | /* cmdline argument format parsing */ |
Mike Frysinger | 711453d | 2012-04-22 06:59:06 +0000 | [diff] [blame] | 1032 | int fit_parse_conf(const char *spec, ulong addr_curr, |
Marian Balakowicz | 3413e22 | 2008-02-21 17:20:20 +0100 | [diff] [blame] | 1033 | ulong *addr, const char **conf_name); |
Mike Frysinger | 711453d | 2012-04-22 06:59:06 +0000 | [diff] [blame] | 1034 | int fit_parse_subimage(const char *spec, ulong addr_curr, |
Marian Balakowicz | 3413e22 | 2008-02-21 17:20:20 +0100 | [diff] [blame] | 1035 | ulong *addr, const char **image_name); |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 1036 | |
Guilherme Maciel Ferreira | 3c46bcd | 2015-01-15 02:54:42 -0200 | [diff] [blame] | 1037 | int fit_get_subimage_count(const void *fit, int images_noffset); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1038 | void fit_print_contents(const void *fit); |
| 1039 | void fit_image_print(const void *fit, int noffset, const char *p); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1040 | |
| 1041 | /** |
| 1042 | * fit_get_end - get FIT image size |
| 1043 | * @fit: pointer to the FIT format image header |
| 1044 | * |
| 1045 | * returns: |
| 1046 | * size of the FIT image (blob) in memory |
| 1047 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1048 | static inline ulong fit_get_size(const void *fit) |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1049 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1050 | return fdt_totalsize(fit); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1051 | } |
| 1052 | |
| 1053 | /** |
| 1054 | * fit_get_end - get FIT image end |
| 1055 | * @fit: pointer to the FIT format image header |
| 1056 | * |
| 1057 | * returns: |
| 1058 | * end address of the FIT image (blob) in memory |
| 1059 | */ |
Simon Glass | 5b539a0 | 2016-02-24 09:14:42 -0700 | [diff] [blame] | 1060 | ulong fit_get_end(const void *fit); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1061 | |
| 1062 | /** |
| 1063 | * fit_get_name - get FIT node name |
| 1064 | * @fit: pointer to the FIT format image header |
| 1065 | * |
| 1066 | * returns: |
| 1067 | * NULL, on error |
| 1068 | * pointer to node name, on success |
| 1069 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1070 | static inline const char *fit_get_name(const void *fit_hdr, |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1071 | int noffset, int *len) |
| 1072 | { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1073 | return fdt_get_name(fit_hdr, noffset, len); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1074 | } |
| 1075 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1076 | int fit_get_desc(const void *fit, int noffset, char **desc); |
| 1077 | int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1078 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1079 | int fit_image_get_node(const void *fit, const char *image_uname); |
| 1080 | int fit_image_get_os(const void *fit, int noffset, uint8_t *os); |
| 1081 | int fit_image_get_arch(const void *fit, int noffset, uint8_t *arch); |
| 1082 | int fit_image_get_type(const void *fit, int noffset, uint8_t *type); |
| 1083 | int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp); |
| 1084 | int fit_image_get_load(const void *fit, int noffset, ulong *load); |
| 1085 | int fit_image_get_entry(const void *fit, int noffset, ulong *entry); |
| 1086 | int fit_image_get_data(const void *fit, int noffset, |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1087 | const void **data, size_t *size); |
tomas.melin@vaisala.com | 45ee790 | 2017-01-13 13:20:14 +0200 | [diff] [blame] | 1088 | int fit_image_get_data_offset(const void *fit, int noffset, int *data_offset); |
Peng Fan | 8876c7e | 2017-12-05 13:20:59 +0800 | [diff] [blame] | 1089 | int fit_image_get_data_position(const void *fit, int noffset, |
| 1090 | int *data_position); |
tomas.melin@vaisala.com | 45ee790 | 2017-01-13 13:20:14 +0200 | [diff] [blame] | 1091 | int fit_image_get_data_size(const void *fit, int noffset, int *data_size); |
Philippe Reynes | 3d96470 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 1092 | int fit_image_get_data_size_unciphered(const void *fit, int noffset, |
| 1093 | size_t *data_size); |
Kelvin Cheung | 186cc99 | 2018-05-19 18:21:37 +0800 | [diff] [blame] | 1094 | int fit_image_get_data_and_size(const void *fit, int noffset, |
| 1095 | const void **data, size_t *size); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1096 | |
Sean Anderson | 080d3a0 | 2022-08-16 11:16:03 -0400 | [diff] [blame] | 1097 | /** |
| 1098 | * fit_get_data_node() - Get verified image data for an image |
| 1099 | * @fit: Pointer to the FIT format image header |
| 1100 | * @image_uname: The name of the image node |
| 1101 | * @data: A pointer which will be filled with the location of the image data |
| 1102 | * @size: A pointer which will be filled with the size of the image data |
| 1103 | * |
| 1104 | * This function looks up the location and size of an image specified by its |
| 1105 | * name. For example, if you had a FIT like:: |
| 1106 | * |
| 1107 | * images { |
| 1108 | * my-firmware { |
| 1109 | * ... |
| 1110 | * }; |
| 1111 | * }; |
| 1112 | * |
| 1113 | * Then you could look up the data location and size of the my-firmware image |
| 1114 | * by calling this function with @image_uname set to "my-firmware". This |
| 1115 | * function also verifies the image data (if enabled) before returning. The |
| 1116 | * image description is printed out on success. @data and @size will not be |
| 1117 | * modified on faulure. |
| 1118 | * |
| 1119 | * Return: |
| 1120 | * * 0 on success |
| 1121 | * * -EINVAL if the image could not be verified |
| 1122 | * * -ENOENT if there was a problem getting the data/size |
| 1123 | * * Another negative error if there was a problem looking up the image node. |
| 1124 | */ |
| 1125 | int fit_get_data_node(const void *fit, const char *image_uname, |
| 1126 | const void **data, size_t *size); |
| 1127 | |
| 1128 | /** |
| 1129 | * fit_get_data_conf_prop() - Get verified image data for a property in /conf |
| 1130 | * @fit: Pointer to the FIT format image header |
| 1131 | * @prop_name: The name of the property in /conf referencing the image |
| 1132 | * @data: A pointer which will be filled with the location of the image data |
| 1133 | * @size: A pointer which will be filled with the size of the image data |
| 1134 | * |
| 1135 | * This function looks up the location and size of an image specified by a |
| 1136 | * property in /conf. For example, if you had a FIT like:: |
| 1137 | * |
| 1138 | * images { |
| 1139 | * my-firmware { |
| 1140 | * ... |
| 1141 | * }; |
| 1142 | * }; |
| 1143 | * |
| 1144 | * configurations { |
| 1145 | * default = "conf-1"; |
| 1146 | * conf-1 { |
| 1147 | * some-firmware = "my-firmware"; |
| 1148 | * }; |
| 1149 | * }; |
| 1150 | * |
| 1151 | * Then you could look up the data location and size of the my-firmware image |
| 1152 | * by calling this function with @prop_name set to "some-firmware". This |
| 1153 | * function also verifies the image data (if enabled) before returning. The |
| 1154 | * image description is printed out on success. @data and @size will not be |
| 1155 | * modified on faulure. |
| 1156 | * |
| 1157 | * Return: |
| 1158 | * * 0 on success |
| 1159 | * * -EINVAL if the image could not be verified |
| 1160 | * * -ENOENT if there was a problem getting the data/size |
| 1161 | * * Another negative error if there was a problem looking up the configuration |
| 1162 | * or image node. |
| 1163 | */ |
| 1164 | int fit_get_data_conf_prop(const void *fit, const char *prop_name, |
| 1165 | const void **data, size_t *size); |
| 1166 | |
Jan Kiszka | 27beec2 | 2022-01-14 10:21:17 +0100 | [diff] [blame] | 1167 | int fit_image_hash_get_algo(const void *fit, int noffset, const char **algo); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1168 | int fit_image_hash_get_value(const void *fit, int noffset, uint8_t **value, |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1169 | int *value_len); |
| 1170 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1171 | int fit_set_timestamp(void *fit, int noffset, time_t timestamp); |
Simon Glass | ee38265 | 2013-05-07 06:12:01 +0000 | [diff] [blame] | 1172 | |
Philippe Reynes | 3e3899c | 2022-03-28 22:57:02 +0200 | [diff] [blame] | 1173 | /** |
| 1174 | * fit_pre_load_data() - add public key to fdt blob |
| 1175 | * |
| 1176 | * Adds public key to the node pre load. |
| 1177 | * |
| 1178 | * @keydir: Directory containing keys |
| 1179 | * @keydest: FDT blob to write public key |
| 1180 | * @fit: Pointer to the FIT format image header |
| 1181 | * |
| 1182 | * returns: |
| 1183 | * 0, on success |
| 1184 | * < 0, on failure |
| 1185 | */ |
| 1186 | int fit_pre_load_data(const char *keydir, void *keydest, void *fit); |
| 1187 | |
Philippe Reynes | 3148e42 | 2019-12-18 18:25:41 +0100 | [diff] [blame] | 1188 | int fit_cipher_data(const char *keydir, void *keydest, void *fit, |
| 1189 | const char *comment, int require_keys, |
| 1190 | const char *engine_id, const char *cmdname); |
| 1191 | |
Simon Glass | e460726 | 2021-11-12 12:28:13 -0700 | [diff] [blame] | 1192 | #define NODE_MAX_NAME_LEN 80 |
| 1193 | |
| 1194 | /** |
| 1195 | * struct image_summary - Provides information about signing info added |
| 1196 | * |
| 1197 | * @sig_offset: Offset of the node in the blob devicetree where the signature |
| 1198 | * was wriiten |
| 1199 | * @sig_path: Path to @sig_offset |
| 1200 | * @keydest_offset: Offset of the node in the keydest devicetree where the |
| 1201 | * public key was written (-1 if none) |
| 1202 | * @keydest_path: Path to @keydest_offset |
| 1203 | */ |
| 1204 | struct image_summary { |
| 1205 | int sig_offset; |
| 1206 | char sig_path[NODE_MAX_NAME_LEN]; |
| 1207 | int keydest_offset; |
| 1208 | char keydest_path[NODE_MAX_NAME_LEN]; |
| 1209 | }; |
| 1210 | |
Simon Glass | ee38265 | 2013-05-07 06:12:01 +0000 | [diff] [blame] | 1211 | /** |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1212 | * fit_add_verification_data() - add verification data to FIT image nodes |
Simon Glass | ee38265 | 2013-05-07 06:12:01 +0000 | [diff] [blame] | 1213 | * |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1214 | * @keydir: Directory containing keys |
Simon Glass | 6a0efc8 | 2021-11-12 12:28:06 -0700 | [diff] [blame] | 1215 | * @kwydest: FDT blob to write public key information to (NULL if none) |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1216 | * @fit: Pointer to the FIT format image header |
| 1217 | * @comment: Comment to add to signature nodes |
| 1218 | * @require_keys: Mark all keys as 'required' |
George McCollister | 23d1489 | 2017-01-06 13:14:17 -0600 | [diff] [blame] | 1219 | * @engine_id: Engine to use for signing |
Alex Kiernan | 697fcdc | 2018-06-20 20:10:52 +0000 | [diff] [blame] | 1220 | * @cmdname: Command name used when reporting errors |
Jan Kiszka | 4043f32 | 2022-01-14 10:21:19 +0100 | [diff] [blame] | 1221 | * @algo_name: Algorithm name, or NULL if to be read from FIT |
Simon Glass | e460726 | 2021-11-12 12:28:13 -0700 | [diff] [blame] | 1222 | * @summary: Returns information about what data was written |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1223 | * |
| 1224 | * Adds hash values for all component images in the FIT blob. |
| 1225 | * Hashes are calculated for all component images which have hash subnodes |
| 1226 | * with algorithm property set to one of the supported hash algorithms. |
| 1227 | * |
| 1228 | * Also add signatures if signature nodes are present. |
| 1229 | * |
| 1230 | * returns |
| 1231 | * 0, on success |
| 1232 | * libfdt error code, on failure |
Simon Glass | ee38265 | 2013-05-07 06:12:01 +0000 | [diff] [blame] | 1233 | */ |
Alexandru Gagniuc | 8fcea12 | 2021-02-19 12:45:17 -0600 | [diff] [blame] | 1234 | int fit_add_verification_data(const char *keydir, const char *keyfile, |
| 1235 | void *keydest, void *fit, const char *comment, |
| 1236 | int require_keys, const char *engine_id, |
Simon Glass | e460726 | 2021-11-12 12:28:13 -0700 | [diff] [blame] | 1237 | const char *cmdname, const char *algo_name, |
| 1238 | struct image_summary *summary); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1239 | |
Simon Glass | e10e2ee | 2021-11-12 12:28:10 -0700 | [diff] [blame] | 1240 | /** |
| 1241 | * fit_image_verify_with_data() - Verify an image with given data |
| 1242 | * |
| 1243 | * @fit: Pointer to the FIT format image header |
| 1244 | * @image_offset: Offset in @fit of image to verify |
| 1245 | * @key_blob: FDT containing public keys |
| 1246 | * @data: Image data to verify |
| 1247 | * @size: Size of image data |
| 1248 | */ |
Jun Nie | adf5d1c | 2018-02-27 16:55:58 +0800 | [diff] [blame] | 1249 | int fit_image_verify_with_data(const void *fit, int image_noffset, |
Simon Glass | e10e2ee | 2021-11-12 12:28:10 -0700 | [diff] [blame] | 1250 | const void *key_blob, const void *data, |
| 1251 | size_t size); |
| 1252 | |
Simon Glass | 7428ad1 | 2013-05-07 06:11:57 +0000 | [diff] [blame] | 1253 | int fit_image_verify(const void *fit, int noffset); |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1254 | int fit_config_verify(const void *fit, int conf_noffset); |
Simon Glass | 7428ad1 | 2013-05-07 06:11:57 +0000 | [diff] [blame] | 1255 | int fit_all_image_verify(const void *fit); |
Philippe Reynes | 3d96470 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 1256 | int fit_config_decrypt(const void *fit, int conf_noffset); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1257 | int fit_image_check_os(const void *fit, int noffset, uint8_t os); |
| 1258 | int fit_image_check_arch(const void *fit, int noffset, uint8_t arch); |
| 1259 | int fit_image_check_type(const void *fit, int noffset, uint8_t type); |
| 1260 | int fit_image_check_comp(const void *fit, int noffset, uint8_t comp); |
Simon Glass | d563c25 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1261 | |
| 1262 | /** |
| 1263 | * fit_check_format() - Check that the FIT is valid |
| 1264 | * |
| 1265 | * This performs various checks on the FIT to make sure it is suitable for |
| 1266 | * use, looking for mandatory properties, nodes, etc. |
| 1267 | * |
| 1268 | * If FIT_FULL_CHECK is enabled, it also runs it through libfdt to make |
| 1269 | * sure that there are no strange tags or broken nodes in the FIT. |
| 1270 | * |
| 1271 | * @fit: pointer to the FIT format image header |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1272 | * Return: 0 if OK, -ENOEXEC if not an FDT file, -EINVAL if the full FDT check |
Simon Glass | d563c25 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1273 | * failed (e.g. due to bad structure), -ENOMSG if the description is |
Simon Glass | b641de8 | 2021-02-24 08:50:32 -0500 | [diff] [blame] | 1274 | * missing, -EBADMSG if the timestamp is missing, -ENOENT if the /images |
Simon Glass | d563c25 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 1275 | * path is missing |
| 1276 | */ |
| 1277 | int fit_check_format(const void *fit, ulong size); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1278 | |
Simon Glass | 4bf6987 | 2022-10-20 18:23:00 -0600 | [diff] [blame] | 1279 | /** |
| 1280 | * fit_conf_find_compat() - find most compatible configuration |
| 1281 | * @fit: pointer to the FIT format image header |
| 1282 | * @fdt: pointer to the device tree to compare against |
| 1283 | * |
| 1284 | * Attempts to find the configuration whose fdt is the most compatible with the |
| 1285 | * passed in device tree |
| 1286 | * |
| 1287 | * Example:: |
| 1288 | * |
| 1289 | * / o image-tree |
| 1290 | * |-o images |
| 1291 | * | |-o fdt-1 |
| 1292 | * | |-o fdt-2 |
| 1293 | * | |
| 1294 | * |-o configurations |
| 1295 | * |-o config-1 |
| 1296 | * | |-fdt = fdt-1 |
| 1297 | * | |
| 1298 | * |-o config-2 |
| 1299 | * |-fdt = fdt-2 |
| 1300 | * |
| 1301 | * / o U-Boot fdt |
| 1302 | * |-compatible = "foo,bar", "bim,bam" |
| 1303 | * |
| 1304 | * / o kernel fdt1 |
| 1305 | * |-compatible = "foo,bar", |
| 1306 | * |
| 1307 | * / o kernel fdt2 |
| 1308 | * |-compatible = "bim,bam", "baz,biz" |
| 1309 | * |
| 1310 | * Configuration 1 would be picked because the first string in U-Boot's |
| 1311 | * compatible list, "foo,bar", matches a compatible string in the root of fdt1. |
| 1312 | * "bim,bam" in fdt2 matches the second string which isn't as good as fdt1. |
| 1313 | * |
| 1314 | * As an optimization, the compatible property from the FDT's root node can be |
| 1315 | * copied into the configuration node in the FIT image. This is required to |
| 1316 | * match configurations with compressed FDTs. |
| 1317 | * |
| 1318 | * Returns: offset to the configuration to use if one was found, -1 otherwise |
| 1319 | */ |
Gabe Black | d572e16 | 2012-10-25 16:31:10 +0000 | [diff] [blame] | 1320 | int fit_conf_find_compat(const void *fit, const void *fdt); |
Simon Glass | 2f3c6c5 | 2020-03-18 11:43:55 -0600 | [diff] [blame] | 1321 | |
| 1322 | /** |
| 1323 | * fit_conf_get_node - get node offset for configuration of a given unit name |
| 1324 | * @fit: pointer to the FIT format image header |
| 1325 | * @conf_uname: configuration node unit name (NULL to use default) |
| 1326 | * |
| 1327 | * fit_conf_get_node() finds a configuration (within the '/configurations' |
| 1328 | * parent node) of a provided unit name. If configuration is found its node |
| 1329 | * offset is returned to the caller. |
| 1330 | * |
| 1331 | * When NULL is provided in second argument fit_conf_get_node() will search |
| 1332 | * for a default configuration node instead. Default configuration node unit |
| 1333 | * name is retrieved from FIT_DEFAULT_PROP property of the '/configurations' |
| 1334 | * node. |
| 1335 | * |
| 1336 | * returns: |
| 1337 | * configuration node offset when found (>=0) |
| 1338 | * negative number on failure (FDT_ERR_* code) |
| 1339 | */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1340 | int fit_conf_get_node(const void *fit, const char *conf_uname); |
Simon Glass | 2f3c6c5 | 2020-03-18 11:43:55 -0600 | [diff] [blame] | 1341 | |
Tien Fong Chee | ca99a8a | 2019-05-07 17:42:28 +0800 | [diff] [blame] | 1342 | int fit_conf_get_prop_node_count(const void *fit, int noffset, |
| 1343 | const char *prop_name); |
| 1344 | int fit_conf_get_prop_node_index(const void *fit, int noffset, |
| 1345 | const char *prop_name, int index); |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1346 | |
Simon Glass | dc0f52c | 2013-05-07 06:12:00 +0000 | [diff] [blame] | 1347 | /** |
| 1348 | * fit_conf_get_prop_node() - Get node refered to by a configuration |
| 1349 | * @fit: FIT to check |
| 1350 | * @noffset: Offset of conf@xxx node to check |
| 1351 | * @prop_name: Property to read from the conf node |
| 1352 | * |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 1353 | * The conf- nodes contain references to other nodes, using properties |
| 1354 | * like 'kernel = "kernel"'. Given such a property name (e.g. "kernel"), |
Simon Glass | dc0f52c | 2013-05-07 06:12:00 +0000 | [diff] [blame] | 1355 | * return the offset of the node referred to (e.g. offset of node |
Andre Przywara | 3234ecd | 2017-12-04 02:05:10 +0000 | [diff] [blame] | 1356 | * "/images/kernel". |
Simon Glass | dc0f52c | 2013-05-07 06:12:00 +0000 | [diff] [blame] | 1357 | */ |
| 1358 | int fit_conf_get_prop_node(const void *fit, int noffset, |
| 1359 | const char *prop_name); |
| 1360 | |
Simon Glass | 36b916a | 2013-05-07 06:11:52 +0000 | [diff] [blame] | 1361 | int fit_check_ramdisk(const void *fit, int os_noffset, |
| 1362 | uint8_t arch, int verify); |
| 1363 | |
Simon Glass | 10a1eca | 2013-05-07 06:11:54 +0000 | [diff] [blame] | 1364 | int calculate_hash(const void *data, int data_len, const char *algo, |
| 1365 | uint8_t *value, int *value_len); |
| 1366 | |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1367 | /* |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1368 | * At present we only support signing on the host, and verification on the |
| 1369 | * device |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1370 | */ |
Alex Kiernan | bb6abce | 2019-04-18 20:34:55 +0000 | [diff] [blame] | 1371 | #if defined(USE_HOSTCC) |
| 1372 | # if defined(CONFIG_FIT_SIGNATURE) |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1373 | # define IMAGE_ENABLE_SIGN 1 |
AKASHI Takahiro | 2223c7d | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 1374 | # define FIT_IMAGE_ENABLE_VERIFY 1 |
Alex Kiernan | bb6abce | 2019-04-18 20:34:55 +0000 | [diff] [blame] | 1375 | # include <openssl/evp.h> |
| 1376 | # else |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1377 | # define IMAGE_ENABLE_SIGN 0 |
AKASHI Takahiro | 2223c7d | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 1378 | # define FIT_IMAGE_ENABLE_VERIFY 0 |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1379 | # endif |
| 1380 | #else |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1381 | # define IMAGE_ENABLE_SIGN 0 |
AKASHI Takahiro | 2223c7d | 2020-02-21 15:12:55 +0900 | [diff] [blame] | 1382 | # define FIT_IMAGE_ENABLE_VERIFY CONFIG_IS_ENABLED(FIT_SIGNATURE) |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1383 | #endif |
| 1384 | |
| 1385 | #ifdef USE_HOSTCC |
Heiko Schocher | d7b4232 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 1386 | void *image_get_host_blob(void); |
| 1387 | void image_set_host_blob(void *host_blob); |
| 1388 | # define gd_fdt_blob() image_get_host_blob() |
Simon Glass | 384d86d | 2013-05-16 13:53:21 +0000 | [diff] [blame] | 1389 | #else |
| 1390 | # define gd_fdt_blob() (gd->fdt_blob) |
| 1391 | #endif |
| 1392 | |
Alexandru Gagniuc | 8fcea12 | 2021-02-19 12:45:17 -0600 | [diff] [blame] | 1393 | /* |
| 1394 | * Information passed to the signing routines |
| 1395 | * |
| 1396 | * Either 'keydir', 'keyname', or 'keyfile' can be NULL. However, either |
| 1397 | * 'keyfile', or both 'keydir' and 'keyname' should have valid values. If |
| 1398 | * neither are valid, some operations might fail with EINVAL. |
| 1399 | */ |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1400 | struct image_sign_info { |
| 1401 | const char *keydir; /* Directory conaining keys */ |
| 1402 | const char *keyname; /* Name of key to use */ |
Alexandru Gagniuc | 8fcea12 | 2021-02-19 12:45:17 -0600 | [diff] [blame] | 1403 | const char *keyfile; /* Filename of private or public key */ |
Hannu Lounento | e2b1e1f | 2021-10-18 08:49:03 +0300 | [diff] [blame] | 1404 | const void *fit; /* Pointer to FIT blob */ |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1405 | int node_offset; /* Offset of signature node */ |
Andrew Duda | 6616c82 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1406 | const char *name; /* Algorithm name */ |
| 1407 | struct checksum_algo *checksum; /* Checksum algorithm information */ |
Philippe Reynes | 1246835 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 1408 | struct padding_algo *padding; /* Padding algorithm information */ |
Andrew Duda | 6616c82 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1409 | struct crypto_algo *crypto; /* Crypto algorithm information */ |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1410 | const void *fdt_blob; /* FDT containing public keys */ |
| 1411 | int required_keynode; /* Node offset of key to use: -1=any */ |
| 1412 | const char *require_keys; /* Value for 'required' property */ |
George McCollister | 23d1489 | 2017-01-06 13:14:17 -0600 | [diff] [blame] | 1413 | const char *engine_id; /* Engine to use for signing */ |
AKASHI Takahiro | 3eae5fd | 2020-02-21 15:12:57 +0900 | [diff] [blame] | 1414 | /* |
| 1415 | * Note: the following two fields are always valid even w/o |
| 1416 | * RSA_VERIFY_WITH_PKEY in order to make sure this structure is |
| 1417 | * the same on target and host. Otherwise, vboot test may fail. |
| 1418 | */ |
| 1419 | const void *key; /* Pointer to public key in DER */ |
| 1420 | int keylen; /* Length of public key */ |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1421 | }; |
Philippe Reynes | 3148e42 | 2019-12-18 18:25:41 +0100 | [diff] [blame] | 1422 | |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1423 | /* A part of an image, used for hashing */ |
| 1424 | struct image_region { |
| 1425 | const void *data; |
| 1426 | int size; |
| 1427 | }; |
| 1428 | |
Heiko Schocher | edaf9b1 | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 1429 | struct checksum_algo { |
| 1430 | const char *name; |
| 1431 | const int checksum_len; |
Andrew Duda | 3db9ff0 | 2016-11-08 18:53:40 +0000 | [diff] [blame] | 1432 | const int der_len; |
| 1433 | const uint8_t *der_prefix; |
Heiko Schocher | edaf9b1 | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 1434 | #if IMAGE_ENABLE_SIGN |
Heiko Schocher | d7b4232 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 1435 | const EVP_MD *(*calculate_sign)(void); |
| 1436 | #endif |
Ruchika Gupta | 2c8987f | 2015-01-23 16:01:59 +0530 | [diff] [blame] | 1437 | int (*calculate)(const char *name, |
Simon Glass | 2c6a1b0 | 2021-09-25 19:43:33 -0600 | [diff] [blame] | 1438 | const struct image_region *region, |
Ruchika Gupta | 2c8987f | 2015-01-23 16:01:59 +0530 | [diff] [blame] | 1439 | int region_count, uint8_t *checksum); |
Heiko Schocher | edaf9b1 | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 1440 | }; |
| 1441 | |
Andrew Duda | 06ca6d6 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1442 | struct crypto_algo { |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1443 | const char *name; /* Name of algorithm */ |
Andrew Duda | 06ca6d6 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1444 | const int key_len; |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1445 | |
| 1446 | /** |
| 1447 | * sign() - calculate and return signature for given input data |
| 1448 | * |
| 1449 | * @info: Specifies key and FIT information |
| 1450 | * @data: Pointer to the input data |
| 1451 | * @data_len: Data length |
| 1452 | * @sigp: Set to an allocated buffer holding the signature |
| 1453 | * @sig_len: Set to length of the calculated hash |
| 1454 | * |
| 1455 | * This computes input data signature according to selected algorithm. |
| 1456 | * Resulting signature value is placed in an allocated buffer, the |
| 1457 | * pointer is returned as *sigp. The length of the calculated |
| 1458 | * signature is returned via the sig_len pointer argument. The caller |
| 1459 | * should free *sigp. |
| 1460 | * |
| 1461 | * @return: 0, on success, -ve on error |
| 1462 | */ |
| 1463 | int (*sign)(struct image_sign_info *info, |
| 1464 | const struct image_region region[], |
| 1465 | int region_count, uint8_t **sigp, uint *sig_len); |
| 1466 | |
| 1467 | /** |
| 1468 | * add_verify_data() - Add verification information to FDT |
| 1469 | * |
| 1470 | * Add public key information to the FDT node, suitable for |
| 1471 | * verification at run-time. The information added depends on the |
| 1472 | * algorithm being used. |
| 1473 | * |
| 1474 | * @info: Specifies key and FIT information |
| 1475 | * @keydest: Destination FDT blob for public key data |
Simon Glass | 94336dc | 2021-11-12 12:28:11 -0700 | [diff] [blame] | 1476 | * @return: node offset within the FDT blob where the data was written, |
| 1477 | * or -ve on error |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1478 | */ |
| 1479 | int (*add_verify_data)(struct image_sign_info *info, void *keydest); |
| 1480 | |
| 1481 | /** |
| 1482 | * verify() - Verify a signature against some data |
| 1483 | * |
| 1484 | * @info: Specifies key and FIT information |
| 1485 | * @data: Pointer to the input data |
| 1486 | * @data_len: Data length |
| 1487 | * @sig: Signature |
| 1488 | * @sig_len: Number of bytes in signature |
| 1489 | * @return 0 if verified, -ve on error |
| 1490 | */ |
| 1491 | int (*verify)(struct image_sign_info *info, |
| 1492 | const struct image_region region[], int region_count, |
| 1493 | uint8_t *sig, uint sig_len); |
Andrew Duda | 06ca6d6 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1494 | }; |
Heiko Schocher | edaf9b1 | 2014-03-03 12:19:26 +0100 | [diff] [blame] | 1495 | |
Alexandru Gagniuc | b04e918 | 2021-07-14 17:05:39 -0500 | [diff] [blame] | 1496 | /* Declare a new U-Boot crypto algorithm handler */ |
| 1497 | #define U_BOOT_CRYPTO_ALGO(__name) \ |
| 1498 | ll_entry_declare(struct crypto_algo, __name, cryptos) |
| 1499 | |
Philippe Reynes | 1246835 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 1500 | struct padding_algo { |
| 1501 | const char *name; |
| 1502 | int (*verify)(struct image_sign_info *info, |
SESA644425 | 1304b46 | 2022-03-09 01:27:15 -0800 | [diff] [blame] | 1503 | const uint8_t *pad, int pad_len, |
Philippe Reynes | 1246835 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 1504 | const uint8_t *hash, int hash_len); |
| 1505 | }; |
| 1506 | |
Alexandru Gagniuc | f3b5e58 | 2021-08-18 17:49:02 -0500 | [diff] [blame] | 1507 | /* Declare a new U-Boot padding algorithm handler */ |
| 1508 | #define U_BOOT_PADDING_ALGO(__name) \ |
| 1509 | ll_entry_declare(struct padding_algo, __name, paddings) |
| 1510 | |
Andrew Duda | 6616c82 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1511 | /** |
| 1512 | * image_get_checksum_algo() - Look up a checksum algorithm |
| 1513 | * |
| 1514 | * @param full_name Name of algorithm in the form "checksum,crypto" |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1515 | * Return: pointer to algorithm information, or NULL if not found |
Andrew Duda | 6616c82 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1516 | */ |
| 1517 | struct checksum_algo *image_get_checksum_algo(const char *full_name); |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1518 | |
| 1519 | /** |
Andrew Duda | 6616c82 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1520 | * image_get_crypto_algo() - Look up a cryptosystem algorithm |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1521 | * |
Andrew Duda | 6616c82 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1522 | * @param full_name Name of algorithm in the form "checksum,crypto" |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1523 | * Return: pointer to algorithm information, or NULL if not found |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1524 | */ |
Andrew Duda | 6616c82 | 2016-11-08 18:53:41 +0000 | [diff] [blame] | 1525 | struct crypto_algo *image_get_crypto_algo(const char *full_name); |
Simon Glass | 58fe7e5 | 2013-06-13 15:10:00 -0700 | [diff] [blame] | 1526 | |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1527 | /** |
Philippe Reynes | 1246835 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 1528 | * image_get_padding_algo() - Look up a padding algorithm |
| 1529 | * |
| 1530 | * @param name Name of padding algorithm |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1531 | * Return: pointer to algorithm information, or NULL if not found |
Philippe Reynes | 1246835 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 1532 | */ |
| 1533 | struct padding_algo *image_get_padding_algo(const char *name); |
| 1534 | |
Steven Lawrance | db7b157 | 2022-09-14 20:57:27 +0200 | [diff] [blame] | 1535 | #define IMAGE_PRE_LOAD_SIG_MAGIC 0x55425348 |
| 1536 | #define IMAGE_PRE_LOAD_SIG_OFFSET_MAGIC 0 |
| 1537 | #define IMAGE_PRE_LOAD_SIG_OFFSET_IMG_LEN 4 |
| 1538 | #define IMAGE_PRE_LOAD_SIG_OFFSET_SIG 8 |
| 1539 | |
| 1540 | #define IMAGE_PRE_LOAD_PATH "/image/pre-load/sig" |
| 1541 | #define IMAGE_PRE_LOAD_PROP_ALGO_NAME "algo-name" |
| 1542 | #define IMAGE_PRE_LOAD_PROP_PADDING_NAME "padding-name" |
| 1543 | #define IMAGE_PRE_LOAD_PROP_SIG_SIZE "signature-size" |
| 1544 | #define IMAGE_PRE_LOAD_PROP_PUBLIC_KEY "public-key" |
| 1545 | #define IMAGE_PRE_LOAD_PROP_MANDATORY "mandatory" |
| 1546 | |
| 1547 | /* |
| 1548 | * Information in the device-tree about the signature in the header |
| 1549 | */ |
| 1550 | struct image_sig_info { |
| 1551 | char *algo_name; /* Name of the algo (eg: sha256,rsa2048) */ |
| 1552 | char *padding_name; /* Name of the padding */ |
| 1553 | uint8_t *key; /* Public signature key */ |
| 1554 | int key_len; /* Length of the public key */ |
| 1555 | uint32_t sig_size; /* size of the signature (in the header) */ |
| 1556 | int mandatory; /* Set if the signature is mandatory */ |
| 1557 | |
| 1558 | struct image_sign_info sig_info; /* Signature info */ |
| 1559 | }; |
| 1560 | |
| 1561 | /* |
| 1562 | * Header of the signature header |
| 1563 | */ |
| 1564 | struct sig_header_s { |
| 1565 | uint32_t magic; |
| 1566 | uint32_t version; |
| 1567 | uint32_t header_size; |
| 1568 | uint32_t image_size; |
| 1569 | uint32_t offset_img_sig; |
| 1570 | uint32_t flags; |
| 1571 | uint32_t reserved0; |
| 1572 | uint32_t reserved1; |
| 1573 | uint8_t sha256_img_sig[SHA256_SUM_LEN]; |
| 1574 | }; |
| 1575 | |
| 1576 | #define SIG_HEADER_LEN (sizeof(struct sig_header_s)) |
| 1577 | |
Philippe Reynes | 1246835 | 2018-11-14 13:51:00 +0100 | [diff] [blame] | 1578 | /** |
Philippe Reynes | d28484e | 2022-03-28 22:56:59 +0200 | [diff] [blame] | 1579 | * image_pre_load() - Manage pre load header |
| 1580 | * |
| 1581 | * Manage the pre-load header before launching the image. |
| 1582 | * It checks the signature of the image. It also set the |
| 1583 | * variable image_load_offset to skip this header before |
| 1584 | * launching the image. |
| 1585 | * |
| 1586 | * @param addr Address of the image |
| 1587 | * @return: 0 on success, -ve on error |
| 1588 | */ |
| 1589 | int image_pre_load(ulong addr); |
| 1590 | |
| 1591 | /** |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1592 | * fit_image_verify_required_sigs() - Verify signatures marked as 'required' |
| 1593 | * |
| 1594 | * @fit: FIT to check |
| 1595 | * @image_noffset: Offset of image node to check |
| 1596 | * @data: Image data to check |
| 1597 | * @size: Size of image data |
Simon Glass | e10e2ee | 2021-11-12 12:28:10 -0700 | [diff] [blame] | 1598 | * @key_blob: FDT containing public keys |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1599 | * @no_sigsp: Returns 1 if no signatures were required, and |
| 1600 | * therefore nothing was checked. The caller may wish |
| 1601 | * to fall back to other mechanisms, or refuse to |
| 1602 | * boot. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1603 | * Return: 0 if all verified ok, <0 on error |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1604 | */ |
| 1605 | int fit_image_verify_required_sigs(const void *fit, int image_noffset, |
Simon Glass | e10e2ee | 2021-11-12 12:28:10 -0700 | [diff] [blame] | 1606 | const char *data, size_t size, const void *key_blob, |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1607 | int *no_sigsp); |
| 1608 | |
| 1609 | /** |
| 1610 | * fit_image_check_sig() - Check a single image signature node |
| 1611 | * |
| 1612 | * @fit: FIT to check |
| 1613 | * @noffset: Offset of signature node to check |
| 1614 | * @data: Image data to check |
| 1615 | * @size: Size of image data |
Simon Glass | e10e2ee | 2021-11-12 12:28:10 -0700 | [diff] [blame] | 1616 | * @keyblob: Key blob to check (typically the control FDT) |
| 1617 | * @required_keynode: Offset in the keyblob of the required key node, |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1618 | * if any. If this is given, then the image wil not |
| 1619 | * pass verification unless that key is used. If this is |
| 1620 | * -1 then any signature will do. |
| 1621 | * @err_msgp: In the event of an error, this will be pointed to a |
| 1622 | * help error string to display to the user. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1623 | * Return: 0 if all verified ok, <0 on error |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1624 | */ |
| 1625 | int fit_image_check_sig(const void *fit, int noffset, const void *data, |
Simon Glass | e10e2ee | 2021-11-12 12:28:10 -0700 | [diff] [blame] | 1626 | size_t size, const void *key_blob, int required_keynode, |
| 1627 | char **err_msgp); |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1628 | |
Philippe Reynes | 3d96470 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 1629 | int fit_image_decrypt_data(const void *fit, |
| 1630 | int image_noffset, int cipher_noffset, |
| 1631 | const void *data, size_t size, |
| 1632 | void **data_unciphered, size_t *size_unciphered); |
| 1633 | |
Simon Glass | 56ab8d6 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 1634 | /** |
| 1635 | * fit_region_make_list() - Make a list of regions to hash |
| 1636 | * |
| 1637 | * Given a list of FIT regions (offset, size) provided by libfdt, create |
| 1638 | * a list of regions (void *, size) for use by the signature creationg |
| 1639 | * and verification code. |
| 1640 | * |
| 1641 | * @fit: FIT image to process |
| 1642 | * @fdt_regions: Regions as returned by libfdt |
| 1643 | * @count: Number of regions returned by libfdt |
| 1644 | * @region: Place to put list of regions (NULL to allocate it) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1645 | * Return: pointer to list of regions, or NULL if out of memory |
Simon Glass | 56ab8d6 | 2013-06-13 15:10:09 -0700 | [diff] [blame] | 1646 | */ |
| 1647 | struct image_region *fit_region_make_list(const void *fit, |
| 1648 | struct fdt_region *fdt_regions, int count, |
| 1649 | struct image_region *region); |
Simon Glass | fbabc0f | 2013-06-13 15:10:01 -0700 | [diff] [blame] | 1650 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 1651 | static inline int fit_image_check_target_arch(const void *fdt, int node) |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1652 | { |
Heiko Schocher | d7b4232 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 1653 | #ifndef USE_HOSTCC |
Thierry Reding | 7d731a9 | 2011-10-27 08:58:25 +0000 | [diff] [blame] | 1654 | return fit_image_check_arch(fdt, node, IH_ARCH_DEFAULT); |
Heiko Schocher | d7b4232 | 2014-03-03 12:19:30 +0100 | [diff] [blame] | 1655 | #else |
| 1656 | return 0; |
| 1657 | #endif |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1658 | } |
Marian Balakowicz | e227fbb | 2008-02-29 21:24:06 +0100 | [diff] [blame] | 1659 | |
Philippe Reynes | 3148e42 | 2019-12-18 18:25:41 +0100 | [diff] [blame] | 1660 | /* |
| 1661 | * At present we only support ciphering on the host, and unciphering on the |
| 1662 | * device |
| 1663 | */ |
| 1664 | #if defined(USE_HOSTCC) |
| 1665 | # if defined(CONFIG_FIT_CIPHER) |
| 1666 | # define IMAGE_ENABLE_ENCRYPT 1 |
| 1667 | # define IMAGE_ENABLE_DECRYPT 1 |
| 1668 | # include <openssl/evp.h> |
| 1669 | # else |
| 1670 | # define IMAGE_ENABLE_ENCRYPT 0 |
| 1671 | # define IMAGE_ENABLE_DECRYPT 0 |
| 1672 | # endif |
| 1673 | #else |
| 1674 | # define IMAGE_ENABLE_ENCRYPT 0 |
| 1675 | # define IMAGE_ENABLE_DECRYPT CONFIG_IS_ENABLED(FIT_CIPHER) |
| 1676 | #endif |
| 1677 | |
| 1678 | /* Information passed to the ciphering routines */ |
| 1679 | struct image_cipher_info { |
| 1680 | const char *keydir; /* Directory containing keys */ |
| 1681 | const char *keyname; /* Name of key to use */ |
| 1682 | const char *ivname; /* Name of IV to use */ |
| 1683 | const void *fit; /* Pointer to FIT blob */ |
| 1684 | int node_noffset; /* Offset of the cipher node */ |
| 1685 | const char *name; /* Algorithm name */ |
| 1686 | struct cipher_algo *cipher; /* Cipher algorithm information */ |
| 1687 | const void *fdt_blob; /* FDT containing key and IV */ |
| 1688 | const void *key; /* Value of the key */ |
| 1689 | const void *iv; /* Value of the IV */ |
| 1690 | size_t size_unciphered; /* Size of the unciphered data */ |
| 1691 | }; |
| 1692 | |
| 1693 | struct cipher_algo { |
| 1694 | const char *name; /* Name of algorithm */ |
| 1695 | int key_len; /* Length of the key */ |
| 1696 | int iv_len; /* Length of the IV */ |
| 1697 | |
| 1698 | #if IMAGE_ENABLE_ENCRYPT |
| 1699 | const EVP_CIPHER * (*calculate_type)(void); |
| 1700 | #endif |
| 1701 | |
| 1702 | int (*encrypt)(struct image_cipher_info *info, |
| 1703 | const unsigned char *data, int data_len, |
| 1704 | unsigned char **cipher, int *cipher_len); |
| 1705 | |
| 1706 | int (*add_cipher_data)(struct image_cipher_info *info, |
Philippe Reynes | 64d67c4 | 2020-09-17 15:01:46 +0200 | [diff] [blame] | 1707 | void *keydest, void *fit, int node_noffset); |
Philippe Reynes | 3d96470 | 2019-12-18 18:25:42 +0100 | [diff] [blame] | 1708 | |
| 1709 | int (*decrypt)(struct image_cipher_info *info, |
| 1710 | const void *cipher, size_t cipher_len, |
| 1711 | void **data, size_t *data_len); |
Philippe Reynes | 3148e42 | 2019-12-18 18:25:41 +0100 | [diff] [blame] | 1712 | }; |
| 1713 | |
| 1714 | int fit_image_cipher_get_algo(const void *fit, int noffset, char **algo); |
| 1715 | |
| 1716 | struct cipher_algo *image_get_cipher_algo(const char *full_name); |
| 1717 | |
Sebastian Siewior | 686d667 | 2014-05-05 15:08:09 -0500 | [diff] [blame] | 1718 | struct andr_img_hdr; |
| 1719 | int android_image_check_header(const struct andr_img_hdr *hdr); |
| 1720 | int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify, |
| 1721 | ulong *os_data, ulong *os_len); |
| 1722 | int android_image_get_ramdisk(const struct andr_img_hdr *hdr, |
| 1723 | ulong *rd_data, ulong *rd_len); |
Bin Chen | 909f140 | 2018-01-27 16:59:08 +1100 | [diff] [blame] | 1724 | int android_image_get_second(const struct andr_img_hdr *hdr, |
| 1725 | ulong *second_data, ulong *second_len); |
Sam Protsenko | 2666a1a | 2020-01-24 17:53:41 +0200 | [diff] [blame] | 1726 | bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size); |
Sam Protsenko | 4fabf40 | 2020-01-24 17:53:40 +0200 | [diff] [blame] | 1727 | bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr, |
| 1728 | u32 *size); |
Sebastian Siewior | 686d667 | 2014-05-05 15:08:09 -0500 | [diff] [blame] | 1729 | ulong android_image_get_end(const struct andr_img_hdr *hdr); |
| 1730 | ulong android_image_get_kload(const struct andr_img_hdr *hdr); |
Eugeniu Rosca | 1403f39 | 2019-04-08 17:35:27 +0200 | [diff] [blame] | 1731 | ulong android_image_get_kcomp(const struct andr_img_hdr *hdr); |
Michael Trimarchi | 44af20b | 2016-06-10 19:54:37 +0200 | [diff] [blame] | 1732 | void android_print_contents(const struct andr_img_hdr *hdr); |
Sam Protsenko | 4fabf40 | 2020-01-24 17:53:40 +0200 | [diff] [blame] | 1733 | bool android_image_print_dtb_contents(ulong hdr_addr); |
Sebastian Siewior | 686d667 | 2014-05-05 15:08:09 -0500 | [diff] [blame] | 1734 | |
Simon Glass | f287dfd | 2016-02-22 22:55:55 -0700 | [diff] [blame] | 1735 | /** |
| 1736 | * board_fit_config_name_match() - Check for a matching board name |
| 1737 | * |
| 1738 | * This is used when SPL loads a FIT containing multiple device tree files |
| 1739 | * and wants to work out which one to use. The description of each one is |
| 1740 | * passed to this function. The description comes from the 'description' field |
| 1741 | * in each (FDT) image node. |
| 1742 | * |
| 1743 | * @name: Device tree description |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1744 | * Return: 0 if this device tree should be used, non-zero to try the next |
Simon Glass | f287dfd | 2016-02-22 22:55:55 -0700 | [diff] [blame] | 1745 | */ |
| 1746 | int board_fit_config_name_match(const char *name); |
| 1747 | |
Daniel Allred | cf839bd | 2016-06-27 09:19:21 -0500 | [diff] [blame] | 1748 | /** |
| 1749 | * board_fit_image_post_process() - Do any post-process on FIT binary data |
| 1750 | * |
| 1751 | * This is used to do any sort of image manipulation, verification, decryption |
| 1752 | * etc. in a platform or board specific way. Obviously, anything done here would |
| 1753 | * need to be comprehended in how the images were prepared before being injected |
| 1754 | * into the FIT creation (i.e. the binary blobs would have been pre-processed |
| 1755 | * before being added to the FIT image). |
| 1756 | * |
Lokesh Vutla | b36dd3e | 2021-06-11 11:45:05 +0300 | [diff] [blame] | 1757 | * @fit: pointer to fit image |
| 1758 | * @node: offset of image node |
Daniel Allred | cf839bd | 2016-06-27 09:19:21 -0500 | [diff] [blame] | 1759 | * @image: pointer to the image start pointer |
| 1760 | * @size: pointer to the image size |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1761 | * Return: no return value (failure should be handled internally) |
Daniel Allred | cf839bd | 2016-06-27 09:19:21 -0500 | [diff] [blame] | 1762 | */ |
Lokesh Vutla | b36dd3e | 2021-06-11 11:45:05 +0300 | [diff] [blame] | 1763 | void board_fit_image_post_process(const void *fit, int node, void **p_image, |
| 1764 | size_t *p_size); |
Daniel Allred | cf839bd | 2016-06-27 09:19:21 -0500 | [diff] [blame] | 1765 | |
Cooper Jr., Franklin | e679240 | 2017-06-16 17:25:05 -0500 | [diff] [blame] | 1766 | #define FDT_ERROR ((ulong)(-1)) |
| 1767 | |
Cooper Jr., Franklin | 899aad2 | 2017-06-16 17:25:06 -0500 | [diff] [blame] | 1768 | ulong fdt_getprop_u32(const void *fdt, int node, const char *prop); |
Jean-Jacques Hiblot | 5e7c12e | 2017-09-15 12:57:27 +0200 | [diff] [blame] | 1769 | |
| 1770 | /** |
| 1771 | * fit_find_config_node() - Find the node for the best DTB in a FIT image |
| 1772 | * |
| 1773 | * A FIT image contains one or more DTBs. This function parses the |
| 1774 | * configurations described in the FIT images and returns the node of |
| 1775 | * the first matching DTB. To check if a DTB matches a board, this function |
| 1776 | * calls board_fit_config_name_match(). If no matching DTB is found, it returns |
| 1777 | * the node described by the default configuration if it exists. |
| 1778 | * |
| 1779 | * @fdt: pointer to flat device tree |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 1780 | * Return: the node if found, -ve otherwise |
Jean-Jacques Hiblot | 5e7c12e | 2017-09-15 12:57:27 +0200 | [diff] [blame] | 1781 | */ |
Cooper Jr., Franklin | 899aad2 | 2017-06-16 17:25:06 -0500 | [diff] [blame] | 1782 | int fit_find_config_node(const void *fdt); |
| 1783 | |
Andrew F. Davis | 28b28f7 | 2016-11-29 16:33:20 -0600 | [diff] [blame] | 1784 | /** |
| 1785 | * Mapping of image types to function handlers to be invoked on the associated |
| 1786 | * loaded images |
| 1787 | * |
| 1788 | * @type: Type of image, I.E. IH_TYPE_* |
| 1789 | * @handler: Function to call on loaded image |
| 1790 | */ |
| 1791 | struct fit_loadable_tbl { |
| 1792 | int type; |
| 1793 | /** |
| 1794 | * handler() - Process a loaded image |
| 1795 | * |
| 1796 | * @data: Pointer to start of loaded image data |
| 1797 | * @size: Size of loaded image data |
| 1798 | */ |
| 1799 | void (*handler)(ulong data, size_t size); |
| 1800 | }; |
| 1801 | |
| 1802 | /* |
| 1803 | * Define a FIT loadable image type handler |
| 1804 | * |
| 1805 | * _type is a valid uimage_type ID as defined in the "Image Type" enum above |
| 1806 | * _handler is the handler function to call after this image type is loaded |
| 1807 | */ |
| 1808 | #define U_BOOT_FIT_LOADABLE_HANDLER(_type, _handler) \ |
| 1809 | ll_entry_declare(struct fit_loadable_tbl, _function, fit_loadable) = { \ |
| 1810 | .type = _type, \ |
| 1811 | .handler = _handler, \ |
| 1812 | } |
| 1813 | |
AKASHI Takahiro | 768d58d | 2020-10-29 13:47:43 +0900 | [diff] [blame] | 1814 | /** |
| 1815 | * fit_update - update storage with FIT image |
| 1816 | * @fit: Pointer to FIT image |
| 1817 | * |
| 1818 | * Update firmware on storage using FIT image as input. |
| 1819 | * The storage area to be update will be identified by the name |
| 1820 | * in FIT and matching it to "dfu_alt_info" variable. |
| 1821 | * |
| 1822 | * Return: 0 on success, non-zero otherwise |
| 1823 | */ |
| 1824 | int fit_update(const void *fit); |
| 1825 | |
Marian Balakowicz | b4a12a9 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 1826 | #endif /* __IMAGE_H__ */ |