blob: 98b33d0629df2c78870ae1749ab45cad9f7f90fa [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk5b1d7132002-11-03 00:07:02 +00002/*
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01003 * (C) Copyright 2008 Semihalf
4 *
Wolfgang Denkf08abe32005-11-25 16:38:03 +01005 * (C) Copyright 2000-2005
wdenk5b1d7132002-11-03 00:07:02 +00006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denkf08abe32005-11-25 16:38:03 +01007 ********************************************************************
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 ********************************************************************
wdenk5b1d7132002-11-03 00:07:02 +000013 */
14
15#ifndef __IMAGE_H__
16#define __IMAGE_H__
17
Mike Frysinger37566092009-07-02 19:23:25 -040018#include "compiler.h"
Kim Phillips2f220502012-10-29 13:34:30 +000019#include <asm/byteorder.h>
Marek Vasut7f13b372018-06-13 06:13:32 +020020#include <stdbool.h>
Mike Frysinger37566092009-07-02 19:23:25 -040021
Simon Glass13d06982013-05-08 08:06:01 +000022/* Define this to avoid #ifdefs later on */
23struct lmb;
Masahiro Yamada641599a2018-03-21 18:03:35 +090024struct fdt_region;
Simon Glass13d06982013-05-08 08:06:01 +000025
Mike Frysinger37566092009-07-02 19:23:25 -040026#ifdef USE_HOSTCC
Jörg Krause26e355d2015-04-22 21:36:22 +020027#include <sys/types.h>
Bartlomiej Sieka9d254382008-03-11 12:34:47 +010028
29/* new uImage format support enabled on host */
Simon Glassaa34fbc2016-02-22 22:55:45 -070030#define IMAGE_ENABLE_FIT 1
31#define IMAGE_ENABLE_OF_LIBFDT 1
Bartlomiej Sieka9d254382008-03-11 12:34:47 +010032#define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
Simon Glassad74aed2021-07-14 17:05:31 -050033#define CONFIG_FIT_RSASSA_PSS 1
Alexandru Gagniucfe54aea2021-09-02 19:54:20 -050034#define CONFIG_MD5
Tom Rini089df182017-05-15 12:17:49 -040035#define CONFIG_SHA1
36#define CONFIG_SHA256
Reuben Dowled16b38f2020-04-16 17:36:52 +120037#define CONFIG_SHA384
38#define CONFIG_SHA512
Bartlomiej Sieka9d254382008-03-11 12:34:47 +010039
Simon Glassab9efc62013-05-07 06:11:58 +000040#define IMAGE_ENABLE_IGNORE 0
Simon Glass1fe7d932013-05-08 08:05:58 +000041#define IMAGE_INDENT_STRING ""
Simon Glassab9efc62013-05-07 06:11:58 +000042
Wolfgang Denkdef08192008-10-21 11:23:56 +020043#else
44
45#include <lmb.h>
Wolfgang Denkdef08192008-10-21 11:23:56 +020046#include <asm/u-boot.h>
Mike Frysinger5daa1c12010-01-21 04:03:20 -050047#include <command.h>
Alexandru Gagniuc09801642021-07-14 17:05:39 -050048#include <linker_lists.h>
Wolfgang Denkdef08192008-10-21 11:23:56 +020049
Simon Glassab9efc62013-05-07 06:11:58 +000050/* Take notice of the 'ignore' property for hashes */
51#define IMAGE_ENABLE_IGNORE 1
Simon Glass1fe7d932013-05-08 08:05:58 +000052#define IMAGE_INDENT_STRING " "
Simon Glassab9efc62013-05-07 06:11:58 +000053
Simon Glassaa34fbc2016-02-22 22:55:45 -070054#define IMAGE_ENABLE_FIT CONFIG_IS_ENABLED(FIT)
55#define IMAGE_ENABLE_OF_LIBFDT CONFIG_IS_ENABLED(OF_LIBFDT)
Simon Glass73223f02016-02-22 22:55:43 -070056
Bartlomiej Sieka9d254382008-03-11 12:34:47 +010057#endif /* USE_HOSTCC */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010058
Simon Glass73223f02016-02-22 22:55:43 -070059#if IMAGE_ENABLE_FIT
Michael van der Westhuizen1de7bb42014-05-30 20:59:00 +020060#include <hash.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090061#include <linux/libfdt.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010062#include <fdt_support.h>
Simon Glass73223f02016-02-22 22:55:43 -070063#endif /* IMAGE_ENABLE_FIT */
Simon Glass13d06982013-05-08 08:06:01 +000064
Masahiro Yamada6f417512016-05-31 20:41:54 +090065#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
66# define IMAGE_BOOT_GET_CMDLINE 1
67#else
68# define IMAGE_BOOT_GET_CMDLINE 0
69#endif
70
71#ifdef CONFIG_OF_BOARD_SETUP
72# define IMAGE_OF_BOARD_SETUP 1
73#else
74# define IMAGE_OF_BOARD_SETUP 0
75#endif
76
77#ifdef CONFIG_OF_SYSTEM_SETUP
78# define IMAGE_OF_SYSTEM_SETUP 1
79#else
80# define IMAGE_OF_SYSTEM_SETUP 0
81#endif
Simon Glassc654b512014-10-23 18:58:54 -060082
Simon Glass8e8ccfe2019-12-28 10:45:03 -070083extern ulong image_load_addr; /* Default Load Address */
84extern ulong image_save_addr; /* Default Save Address */
85extern ulong image_save_size; /* Default Save Size */
86
Simon Glassc5819702021-02-15 17:08:09 -070087/* An invalid size, meaning that the image size is not known */
88#define IMAGE_SIZE_INVAL (-1UL)
89
Simon Glass56d7ab72016-06-30 10:52:14 -060090enum ih_category {
91 IH_ARCH,
92 IH_COMP,
93 IH_OS,
94 IH_TYPE,
95
96 IH_COUNT,
97};
98
wdenk5b1d7132002-11-03 00:07:02 +000099/*
100 * Operating System Codes
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900101 *
102 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +0100103 * New IDs *MUST* be appended at the end of the list and *NEVER*
104 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000105 */
Simon Glass555f45d2016-06-30 10:52:13 -0600106enum {
107 IH_OS_INVALID = 0, /* Invalid OS */
108 IH_OS_OPENBSD, /* OpenBSD */
109 IH_OS_NETBSD, /* NetBSD */
110 IH_OS_FREEBSD, /* FreeBSD */
111 IH_OS_4_4BSD, /* 4.4BSD */
112 IH_OS_LINUX, /* Linux */
113 IH_OS_SVR4, /* SVR4 */
114 IH_OS_ESIX, /* Esix */
115 IH_OS_SOLARIS, /* Solaris */
116 IH_OS_IRIX, /* Irix */
117 IH_OS_SCO, /* SCO */
118 IH_OS_DELL, /* Dell */
119 IH_OS_NCR, /* NCR */
120 IH_OS_LYNXOS, /* LynxOS */
121 IH_OS_VXWORKS, /* VxWorks */
122 IH_OS_PSOS, /* pSOS */
123 IH_OS_QNX, /* QNX */
124 IH_OS_U_BOOT, /* Firmware */
125 IH_OS_RTEMS, /* RTEMS */
126 IH_OS_ARTOS, /* ARTOS */
127 IH_OS_UNITY, /* Unity OS */
128 IH_OS_INTEGRITY, /* INTEGRITY */
129 IH_OS_OSE, /* OSE */
130 IH_OS_PLAN9, /* Plan 9 */
131 IH_OS_OPENRTOS, /* OpenRTOS */
Philipp Tomsich4914af12017-09-13 21:29:29 +0200132 IH_OS_ARM_TRUSTED_FIRMWARE, /* ARM Trusted Firmware */
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000133 IH_OS_TEE, /* Trusted Execution Environment */
Lukas Auer5e30e452019-08-21 21:14:44 +0200134 IH_OS_OPENSBI, /* RISC-V OpenSBI */
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200135 IH_OS_EFI, /* EFI Firmware (e.g. GRUB2) */
Simon Glass555f45d2016-06-30 10:52:13 -0600136
137 IH_OS_COUNT,
138};
wdenk5b1d7132002-11-03 00:07:02 +0000139
140/*
141 * CPU Architecture Codes (supported by Linux)
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900142 *
143 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +0100144 * New IDs *MUST* be appended at the end of the list and *NEVER*
145 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000146 */
Simon Glass555f45d2016-06-30 10:52:13 -0600147enum {
148 IH_ARCH_INVALID = 0, /* Invalid CPU */
149 IH_ARCH_ALPHA, /* Alpha */
150 IH_ARCH_ARM, /* ARM */
151 IH_ARCH_I386, /* Intel x86 */
152 IH_ARCH_IA64, /* IA64 */
153 IH_ARCH_MIPS, /* MIPS */
154 IH_ARCH_MIPS64, /* MIPS 64 Bit */
155 IH_ARCH_PPC, /* PowerPC */
156 IH_ARCH_S390, /* IBM S390 */
157 IH_ARCH_SH, /* SuperH */
158 IH_ARCH_SPARC, /* Sparc */
159 IH_ARCH_SPARC64, /* Sparc 64 Bit */
160 IH_ARCH_M68K, /* M68K */
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900161 IH_ARCH_NIOS, /* Nios-32 */
Simon Glass555f45d2016-06-30 10:52:13 -0600162 IH_ARCH_MICROBLAZE, /* MicroBlaze */
163 IH_ARCH_NIOS2, /* Nios-II */
164 IH_ARCH_BLACKFIN, /* Blackfin */
165 IH_ARCH_AVR32, /* AVR32 */
166 IH_ARCH_ST200, /* STMicroelectronics ST200 */
167 IH_ARCH_SANDBOX, /* Sandbox architecture (test only) */
168 IH_ARCH_NDS32, /* ANDES Technology - NDS32 */
169 IH_ARCH_OPENRISC, /* OpenRISC 1000 */
170 IH_ARCH_ARM64, /* ARM64 */
171 IH_ARCH_ARC, /* Synopsys DesignWare ARC */
172 IH_ARCH_X86_64, /* AMD x86_64, Intel and Via */
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300173 IH_ARCH_XTENSA, /* Xtensa */
Rick Chen068feb92017-12-26 13:55:58 +0800174 IH_ARCH_RISCV, /* RISC-V */
Simon Glass555f45d2016-06-30 10:52:13 -0600175
176 IH_ARCH_COUNT,
177};
wdenk5b1d7132002-11-03 00:07:02 +0000178
179/*
180 * Image Types
181 *
182 * "Standalone Programs" are directly runnable in the environment
183 * provided by U-Boot; it is expected that (if they behave
184 * well) you can continue to work in U-Boot after return from
185 * the Standalone Program.
186 * "OS Kernel Images" are usually images of some Embedded OS which
187 * will take over control completely. Usually these programs
188 * will install their own set of exception handlers, device
189 * drivers, set up the MMU, etc. - this means, that you cannot
190 * expect to re-enter U-Boot except by resetting the CPU.
191 * "RAMDisk Images" are more or less just data blocks, and their
192 * parameters (address, size) are passed to an OS kernel that is
193 * being started.
194 * "Multi-File Images" contain several images, typically an OS
195 * (Linux) kernel image and one or more data images like
196 * RAMDisks. This construct is useful for instance when you want
197 * to boot over the network using BOOTP etc., where the boot
198 * server provides just a single image file, but you want to get
199 * for instance an OS kernel and a RAMDisk image.
200 *
201 * "Multi-File Images" start with a list of image sizes, each
202 * image size (in bytes) specified by an "uint32_t" in network
203 * byte order. This list is terminated by an "(uint32_t)0".
204 * Immediately after the terminating 0 follow the images, one by
205 * one, all aligned on "uint32_t" boundaries (size rounded up to
wdenke1599e82004-10-10 23:27:33 +0000206 * a multiple of 4 bytes - except for the last file).
wdenk5b1d7132002-11-03 00:07:02 +0000207 *
208 * "Firmware Images" are binary images containing firmware (like
209 * U-Boot or FPGA images) which usually will be programmed to
210 * flash memory.
211 *
212 * "Script files" are command sequences that will be executed by
213 * U-Boot's command interpreter; this feature is especially
214 * useful when you configure U-Boot to use a real shell (hush)
wdenk27b207f2003-07-24 23:38:38 +0000215 * as command interpreter (=> Shell Scripts).
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900216 *
217 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +0100218 * New IDs *MUST* be appended at the end of the list and *NEVER*
219 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000220 */
221
Simon Glass555f45d2016-06-30 10:52:13 -0600222enum {
223 IH_TYPE_INVALID = 0, /* Invalid Image */
224 IH_TYPE_STANDALONE, /* Standalone Program */
225 IH_TYPE_KERNEL, /* OS Kernel Image */
226 IH_TYPE_RAMDISK, /* RAMDisk Image */
227 IH_TYPE_MULTI, /* Multi-File Image */
228 IH_TYPE_FIRMWARE, /* Firmware Image */
229 IH_TYPE_SCRIPT, /* Script file */
230 IH_TYPE_FILESYSTEM, /* Filesystem Image (any type) */
231 IH_TYPE_FLATDT, /* Binary Flat Device Tree Blob */
232 IH_TYPE_KWBIMAGE, /* Kirkwood Boot Image */
233 IH_TYPE_IMXIMAGE, /* Freescale IMXBoot Image */
234 IH_TYPE_UBLIMAGE, /* Davinci UBL Image */
235 IH_TYPE_OMAPIMAGE, /* TI OMAP Config Header Image */
236 IH_TYPE_AISIMAGE, /* TI Davinci AIS Image */
237 /* OS Kernel Image, can run from any load address */
238 IH_TYPE_KERNEL_NOLOAD,
239 IH_TYPE_PBLIMAGE, /* Freescale PBL Boot Image */
240 IH_TYPE_MXSIMAGE, /* Freescale MXSBoot Image */
241 IH_TYPE_GPIMAGE, /* TI Keystone GPHeader Image */
242 IH_TYPE_ATMELIMAGE, /* ATMEL ROM bootable Image */
Marek Vasut662abc42018-04-15 13:15:33 +0200243 IH_TYPE_SOCFPGAIMAGE, /* Altera SOCFPGA CV/AV Preloader */
Simon Glass555f45d2016-06-30 10:52:13 -0600244 IH_TYPE_X86_SETUP, /* x86 setup.bin Image */
245 IH_TYPE_LPC32XXIMAGE, /* x86 setup.bin Image */
246 IH_TYPE_LOADABLE, /* A list of typeless images */
247 IH_TYPE_RKIMAGE, /* Rockchip Boot Image */
248 IH_TYPE_RKSD, /* Rockchip SD card */
249 IH_TYPE_RKSPI, /* Rockchip SPI image */
250 IH_TYPE_ZYNQIMAGE, /* Xilinx Zynq Boot Image */
251 IH_TYPE_ZYNQMPIMAGE, /* Xilinx ZynqMP Boot Image */
Alexander Graf6915dcf2018-04-13 14:18:52 +0200252 IH_TYPE_ZYNQMPBIF, /* Xilinx ZynqMP Boot Image (bif) */
Simon Glass555f45d2016-06-30 10:52:13 -0600253 IH_TYPE_FPGA, /* FPGA Image */
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200254 IH_TYPE_VYBRIDIMAGE, /* VYBRID .vyb Image */
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600255 IH_TYPE_TEE, /* Trusted Execution Environment OS Image */
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100256 IH_TYPE_FIRMWARE_IVT, /* Firmware Image with HABv4 IVT */
Andrew F. Davis6442c962017-07-31 10:58:20 -0500257 IH_TYPE_PMMC, /* TI Power Management Micro-Controller Firmware */
Patrick Delaunay81260e32018-03-12 10:46:04 +0100258 IH_TYPE_STM32IMAGE, /* STMicroelectronics STM32 Image */
Marek Vasut662abc42018-04-15 13:15:33 +0200259 IH_TYPE_SOCFPGAIMAGE_V1, /* Altera SOCFPGA A10 Preloader */
Ryder Lee3b975a12018-11-15 10:07:49 +0800260 IH_TYPE_MTKIMAGE, /* MediaTek BootROM loadable Image */
Stefano Babic24431ad2018-12-17 11:02:00 +0100261 IH_TYPE_IMX8MIMAGE, /* Freescale IMX8MBoot Image */
262 IH_TYPE_IMX8IMAGE, /* Freescale IMX8Boot Image */
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200263 IH_TYPE_COPRO, /* Coprocessor Image for remoteproc*/
Andre Przywara6d295092018-12-20 01:15:18 +0000264 IH_TYPE_SUNXI_EGON, /* Allwinner eGON Boot Image */
wdenk5b1d7132002-11-03 00:07:02 +0000265
Simon Glass555f45d2016-06-30 10:52:13 -0600266 IH_TYPE_COUNT, /* Number of image types */
267};
Simon Glass5b9d44d2015-06-23 15:38:25 -0600268
wdenk5b1d7132002-11-03 00:07:02 +0000269/*
270 * Compression Types
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900271 *
272 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +0100273 * New IDs *MUST* be appended at the end of the list and *NEVER*
274 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000275 */
Simon Glass555f45d2016-06-30 10:52:13 -0600276enum {
277 IH_COMP_NONE = 0, /* No Compression Used */
278 IH_COMP_GZIP, /* gzip Compression Used */
279 IH_COMP_BZIP2, /* bzip2 Compression Used */
280 IH_COMP_LZMA, /* lzma Compression Used */
281 IH_COMP_LZO, /* lzo Compression Used */
282 IH_COMP_LZ4, /* lz4 Compression Used */
Robert Marko26073f92020-04-25 19:37:21 +0200283 IH_COMP_ZSTD, /* zstd Compression Used */
Simon Glass555f45d2016-06-30 10:52:13 -0600284
285 IH_COMP_COUNT,
286};
wdenk5b1d7132002-11-03 00:07:02 +0000287
Eugeniu Rosca829ceb22019-04-08 17:35:27 +0200288#define LZ4F_MAGIC 0x184D2204 /* LZ4 Magic Number */
wdenk5b1d7132002-11-03 00:07:02 +0000289#define IH_MAGIC 0x27051956 /* Image Magic Number */
290#define IH_NMLEN 32 /* Image Name Length */
291
Fabio Estevam1411fb32013-01-03 08:24:33 +0000292/* Reused from common.h */
293#define ROUND(a, b) (((a) + (b) - 1) & ~((b) - 1))
294
wdenk5b1d7132002-11-03 00:07:02 +0000295/*
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100296 * Legacy format image header,
297 * all data in network byte order (aka natural aka bigendian).
wdenk5b1d7132002-11-03 00:07:02 +0000298 */
wdenk5b1d7132002-11-03 00:07:02 +0000299typedef struct image_header {
Bin Meng1af5e972019-10-27 05:19:40 -0700300 uint32_t ih_magic; /* Image Header Magic Number */
301 uint32_t ih_hcrc; /* Image Header CRC Checksum */
302 uint32_t ih_time; /* Image Creation Timestamp */
303 uint32_t ih_size; /* Image Data Size */
304 uint32_t ih_load; /* Data Load Address */
305 uint32_t ih_ep; /* Entry Point Address */
306 uint32_t ih_dcrc; /* Image Data CRC Checksum */
wdenk5b1d7132002-11-03 00:07:02 +0000307 uint8_t ih_os; /* Operating System */
308 uint8_t ih_arch; /* CPU architecture */
309 uint8_t ih_type; /* Image Type */
310 uint8_t ih_comp; /* Compression Type */
311 uint8_t ih_name[IH_NMLEN]; /* Image Name */
312} image_header_t;
313
Kumar Gala396f6352008-08-15 08:24:41 -0500314typedef struct image_info {
315 ulong start, end; /* start/end of blob */
316 ulong image_start, image_len; /* start of image within blob, len of image */
317 ulong load; /* load addr for the image */
318 uint8_t comp, type, os; /* compression, type of image, os type */
Simon Glass90268b82014-10-19 21:11:24 -0600319 uint8_t arch; /* CPU architecture */
Kumar Gala396f6352008-08-15 08:24:41 -0500320} image_info_t;
321
Marian Balakowicz559316f2008-01-08 18:11:44 +0100322/*
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100323 * Legacy and FIT format headers used by do_bootm() and do_bootm_<os>()
324 * routines.
325 */
326typedef struct bootm_headers {
327 /*
328 * Legacy os image header, if it is a multi component image
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100329 * then boot_get_ramdisk() and get_fdt() will attempt to get
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100330 * data from second and third component accordingly.
331 */
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200332 image_header_t *legacy_hdr_os; /* image header pointer */
333 image_header_t legacy_hdr_os_copy; /* header copy */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100334 ulong legacy_hdr_valid;
335
Simon Glass73223f02016-02-22 22:55:43 -0700336#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100337 const char *fit_uname_cfg; /* configuration node unit name */
338
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100339 void *fit_hdr_os; /* os FIT image header */
Marian Balakowiczeb6175e2008-03-10 17:53:49 +0100340 const char *fit_uname_os; /* os subimage node unit name */
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100341 int fit_noffset_os; /* os subimage node offset */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100342
343 void *fit_hdr_rd; /* init ramdisk FIT image header */
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100344 const char *fit_uname_rd; /* init ramdisk subimage node unit name */
345 int fit_noffset_rd; /* init ramdisk subimage node offset */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100346
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100347 void *fit_hdr_fdt; /* FDT blob FIT image header */
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100348 const char *fit_uname_fdt; /* FDT blob subimage node unit name */
349 int fit_noffset_fdt;/* FDT blob subimage node offset */
Simon Glass90268b82014-10-19 21:11:24 -0600350
351 void *fit_hdr_setup; /* x86 setup FIT image header */
352 const char *fit_uname_setup; /* x86 setup subimage node name */
353 int fit_noffset_setup;/* x86 setup subimage node offset */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100354#endif
Marian Balakowicz1ec73762008-03-12 10:35:52 +0100355
Kumar Gala49c3a862008-10-21 17:25:45 -0500356#ifndef USE_HOSTCC
Kumar Gala396f6352008-08-15 08:24:41 -0500357 image_info_t os; /* os image info */
Kumar Galac160a952008-08-15 08:24:36 -0500358 ulong ep; /* entry point of OS */
359
Kumar Galac4f94192008-08-15 08:24:37 -0500360 ulong rd_start, rd_end;/* ramdisk start/end */
361
Kumar Gala06a09912008-08-15 08:24:38 -0500362 char *ft_addr; /* flat dev tree address */
Kumar Gala06a09912008-08-15 08:24:38 -0500363 ulong ft_len; /* length of flat device tree */
364
Kumar Gala49c3a862008-10-21 17:25:45 -0500365 ulong initrd_start;
366 ulong initrd_end;
367 ulong cmdline_start;
368 ulong cmdline_end;
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900369 struct bd_info *kbd;
Kumar Gala49c3a862008-10-21 17:25:45 -0500370#endif
371
Simon Glass00caae62017-08-03 12:22:12 -0600372 int verify; /* env_get("verify")[0] != 'n' */
Kumar Gala49c3a862008-10-21 17:25:45 -0500373
374#define BOOTM_STATE_START (0x00000001)
Simon Glass35fc84f2013-06-11 11:14:47 -0700375#define BOOTM_STATE_FINDOS (0x00000002)
376#define BOOTM_STATE_FINDOTHER (0x00000004)
377#define BOOTM_STATE_LOADOS (0x00000008)
378#define BOOTM_STATE_RAMDISK (0x00000010)
379#define BOOTM_STATE_FDT (0x00000020)
380#define BOOTM_STATE_OS_CMDLINE (0x00000040)
381#define BOOTM_STATE_OS_BD_T (0x00000080)
382#define BOOTM_STATE_OS_PREP (0x00000100)
Simon Glassd0ae31e2013-06-11 11:14:48 -0700383#define BOOTM_STATE_OS_FAKE_GO (0x00000200) /* 'Almost' run the OS */
384#define BOOTM_STATE_OS_GO (0x00000400)
Kumar Gala49c3a862008-10-21 17:25:45 -0500385 int state;
386
Patrick Delaunay77b8cfe2021-03-10 10:16:25 +0100387#if defined(CONFIG_LMB) && !defined(USE_HOSTCC)
Kumar Galae906cfa2008-08-15 08:24:40 -0500388 struct lmb lmb; /* for memory mgmt */
389#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100390} bootm_headers_t;
391
Simon Schwarz1648a372012-03-15 04:01:34 +0000392extern bootm_headers_t images;
393
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100394/*
Marian Balakowicz559316f2008-01-08 18:11:44 +0100395 * Some systems (for example LWMON) have very short watchdog periods;
396 * we must make sure to split long operations like memmove() or
Bartlomiej Sieka75903782008-04-25 13:54:02 +0200397 * checksum calculations into reasonable chunks.
Marian Balakowicz559316f2008-01-08 18:11:44 +0100398 */
Bartlomiej Sieka75903782008-04-25 13:54:02 +0200399#ifndef CHUNKSZ
Marian Balakowicz559316f2008-01-08 18:11:44 +0100400#define CHUNKSZ (64 * 1024)
Bartlomiej Sieka75903782008-04-25 13:54:02 +0200401#endif
402
403#ifndef CHUNKSZ_CRC32
404#define CHUNKSZ_CRC32 (64 * 1024)
405#endif
406
407#ifndef CHUNKSZ_MD5
408#define CHUNKSZ_MD5 (64 * 1024)
409#endif
410
411#ifndef CHUNKSZ_SHA1
412#define CHUNKSZ_SHA1 (64 * 1024)
413#endif
Marian Balakowicz559316f2008-01-08 18:11:44 +0100414
Mike Frysinger37566092009-07-02 19:23:25 -0400415#define uimage_to_cpu(x) be32_to_cpu(x)
416#define cpu_to_uimage(x) cpu_to_be32(x)
wdenk5b1d7132002-11-03 00:07:02 +0000417
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530418/*
419 * Translation table for entries of a specific type; used by
420 * get_table_entry_id() and get_table_entry_name().
421 */
422typedef struct table_entry {
423 int id;
424 char *sname; /* short (input) name to find table entry */
425 char *lname; /* long (output) name to print for messages */
426} table_entry_t;
427
428/*
Atish Patra155d6a32020-03-05 16:24:22 -0800429 * Compression type and magic number mapping table.
430 */
431struct comp_magic_map {
432 int comp_id;
433 const char *name;
434 unsigned char magic[2];
435};
436
437/*
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530438 * get_table_entry_id() scans the translation table trying to find an
439 * entry that matches the given short name. If a matching entry is
440 * found, it's id is returned to the caller.
441 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400442int get_table_entry_id(const table_entry_t *table,
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530443 const char *table_name, const char *name);
444/*
445 * get_table_entry_name() scans the translation table trying to find
446 * an entry that matches the given id. If a matching entry is found,
447 * its long name is returned to the caller.
448 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400449char *get_table_entry_name(const table_entry_t *table, char *msg, int id);
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530450
Stephen Warren712fbcf2011-10-18 11:11:49 +0000451const char *genimg_get_os_name(uint8_t os);
Simon Glasscef2e512016-02-22 22:55:50 -0700452
453/**
454 * genimg_get_os_short_name() - get the short name for an OS
455 *
456 * @param os OS (IH_OS_...)
457 * @return OS short name, or "unknown" if unknown
458 */
459const char *genimg_get_os_short_name(uint8_t comp);
460
Stephen Warren712fbcf2011-10-18 11:11:49 +0000461const char *genimg_get_arch_name(uint8_t arch);
Simon Glasscef2e512016-02-22 22:55:50 -0700462
463/**
464 * genimg_get_arch_short_name() - get the short name for an architecture
465 *
466 * @param arch Architecture type (IH_ARCH_...)
467 * @return architecture short name, or "unknown" if unknown
468 */
469const char *genimg_get_arch_short_name(uint8_t arch);
470
Stephen Warren712fbcf2011-10-18 11:11:49 +0000471const char *genimg_get_type_name(uint8_t type);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600472
473/**
474 * genimg_get_type_short_name() - get the short name for an image type
475 *
476 * @param type Image type (IH_TYPE_...)
477 * @return image short name, or "unknown" if unknown
478 */
479const char *genimg_get_type_short_name(uint8_t type);
480
Stephen Warren712fbcf2011-10-18 11:11:49 +0000481const char *genimg_get_comp_name(uint8_t comp);
Simon Glasscef2e512016-02-22 22:55:50 -0700482
483/**
484 * genimg_get_comp_short_name() - get the short name for a compression method
485 *
486 * @param comp compression method (IH_COMP_...)
487 * @return compression method short name, or "unknown" if unknown
488 */
489const char *genimg_get_comp_short_name(uint8_t comp);
490
Simon Glass14262202016-06-30 10:52:16 -0600491/**
492 * genimg_get_cat_name() - Get the name of an item in a category
493 *
494 * @category: Category of item
495 * @id: Item ID
496 * @return name of item, or "Unknown ..." if unknown
497 */
498const char *genimg_get_cat_name(enum ih_category category, uint id);
499
500/**
501 * genimg_get_cat_short_name() - Get the short name of an item in a category
502 *
503 * @category: Category of item
504 * @id: Item ID
505 * @return short name of item, or "Unknown ..." if unknown
506 */
507const char *genimg_get_cat_short_name(enum ih_category category, uint id);
508
509/**
510 * genimg_get_cat_count() - Get the number of items in a category
511 *
512 * @category: Category to check
513 * @return the number of items in the category (IH_xxx_COUNT)
514 */
515int genimg_get_cat_count(enum ih_category category);
516
517/**
518 * genimg_get_cat_desc() - Get the description of a category
519 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900520 * @category: Category to check
Simon Glass14262202016-06-30 10:52:16 -0600521 * @return the description of a category, e.g. "architecture". This
522 * effectively converts the enum to a string.
523 */
524const char *genimg_get_cat_desc(enum ih_category category);
525
Naoki Hayama02d41b02020-10-07 11:21:25 +0900526/**
527 * genimg_cat_has_id() - Check whether a category has an item
528 *
529 * @category: Category to check
530 * @id: Item ID
531 * @return true or false as to whether a category has an item
532 */
533bool genimg_cat_has_id(enum ih_category category, uint id);
534
Stephen Warren712fbcf2011-10-18 11:11:49 +0000535int genimg_get_os_id(const char *name);
536int genimg_get_arch_id(const char *name);
537int genimg_get_type_id(const char *name);
538int genimg_get_comp_id(const char *name);
539void genimg_print_size(uint32_t size);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100540
Simon Glass859e92b2013-05-07 06:11:51 +0000541#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || \
542 defined(USE_HOSTCC)
543#define IMAGE_ENABLE_TIMESTAMP 1
544#else
545#define IMAGE_ENABLE_TIMESTAMP 0
546#endif
547void genimg_print_time(time_t timestamp);
548
Simon Glass782cfbb2013-05-16 13:53:21 +0000549/* What to do with a image load address ('load = <> 'in the FIT) */
550enum fit_load_op {
551 FIT_LOAD_IGNORED, /* Ignore load address */
552 FIT_LOAD_OPTIONAL, /* Can be provided, but optional */
Simon Glassfe20a812014-08-22 14:26:43 -0600553 FIT_LOAD_OPTIONAL_NON_ZERO, /* Optional, a value of 0 is ignored */
Simon Glass782cfbb2013-05-16 13:53:21 +0000554 FIT_LOAD_REQUIRED, /* Must be provided */
555};
556
Simon Glass90268b82014-10-19 21:11:24 -0600557int boot_get_setup(bootm_headers_t *images, uint8_t arch, ulong *setup_start,
558 ulong *setup_len);
559
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100560#ifndef USE_HOSTCC
561/* Image format types, returned by _get_format() routine */
562#define IMAGE_FORMAT_INVALID 0x00
Tom Rinic76c93a2019-05-23 07:14:07 -0400563#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100564#define IMAGE_FORMAT_LEGACY 0x01 /* legacy image_header based format */
Heiko Schocher21d29f72014-05-28 11:33:33 +0200565#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100566#define IMAGE_FORMAT_FIT 0x02 /* new, libfdt based format */
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500567#define IMAGE_FORMAT_ANDROID 0x03 /* Android boot image */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100568
Bryan Wu6c454fe2014-08-15 16:51:38 -0700569ulong genimg_get_kernel_addr_fit(char * const img_addr,
570 const char **fit_uname_config,
571 const char **fit_uname_kernel);
Bryan Wu0f641402014-07-31 17:39:58 -0700572ulong genimg_get_kernel_addr(char * const img_addr);
Simon Glass35e7b0f2013-05-07 06:12:03 +0000573int genimg_get_format(const void *img_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000574int genimg_has_config(bootm_headers_t *images);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100575
Simon Glass09140112020-05-10 11:40:03 -0600576int boot_get_fpga(int argc, char *const argv[], bootm_headers_t *images,
577 uint8_t arch, const ulong *ld_start, ulong * const ld_len);
578int boot_get_ramdisk(int argc, char *const argv[], bootm_headers_t *images,
579 uint8_t arch, ulong *rd_start, ulong *rd_end);
Karl Apsite84a07db2015-05-21 09:52:48 -0400580
581/**
582 * boot_get_loadable - routine to load a list of binaries to memory
583 * @argc: Ignored Argument
584 * @argv: Ignored Argument
585 * @images: pointer to the bootm images structure
586 * @arch: expected architecture for the image
587 * @ld_start: Ignored Argument
588 * @ld_len: Ignored Argument
589 *
590 * boot_get_loadable() will take the given FIT configuration, and look
591 * for a field named "loadables". Loadables, is a list of elements in
592 * the FIT given as strings. exe:
Andre Przywarab2267e82017-12-04 02:05:10 +0000593 * loadables = "linux_kernel", "fdt-2";
Karl Apsite84a07db2015-05-21 09:52:48 -0400594 * this function will attempt to parse each string, and load the
595 * corresponding element from the FIT into memory. Once placed,
596 * no aditional actions are taken.
597 *
598 * @return:
599 * 0, if only valid images or no images are found
600 * error code, if an error occurs during fit_image_load
601 */
Simon Glass09140112020-05-10 11:40:03 -0600602int boot_get_loadable(int argc, char *const argv[], bootm_headers_t *images,
603 uint8_t arch, const ulong *ld_start, ulong *const ld_len);
Karl Apsite84a07db2015-05-21 09:52:48 -0400604#endif /* !USE_HOSTCC */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100605
Simon Glass90268b82014-10-19 21:11:24 -0600606int boot_get_setup_fit(bootm_headers_t *images, uint8_t arch,
607 ulong *setup_start, ulong *setup_len);
608
Simon Glass782cfbb2013-05-16 13:53:21 +0000609/**
Pantelis Antoniou169043d2017-09-04 23:12:16 +0300610 * boot_get_fdt_fit() - load a DTB from a FIT file (applying overlays)
611 *
612 * This deals with all aspects of loading an DTB from a FIT.
613 * The correct base image based on configuration will be selected, and
614 * then any overlays specified will be applied (as present in fit_uname_configp).
615 *
616 * @param images Boot images structure
617 * @param addr Address of FIT in memory
618 * @param fit_unamep On entry this is the requested image name
Andre Przywarab2267e82017-12-04 02:05:10 +0000619 * (e.g. "kernel") or NULL to use the default. On exit
Pantelis Antoniou169043d2017-09-04 23:12:16 +0300620 * points to the selected image name
621 * @param fit_uname_configp On entry this is the requested configuration
Andre Przywarab2267e82017-12-04 02:05:10 +0000622 * name (e.g. "conf-1") or NULL to use the default. On
Pantelis Antoniou169043d2017-09-04 23:12:16 +0300623 * exit points to the selected configuration name.
624 * @param arch Expected architecture (IH_ARCH_...)
625 * @param datap Returns address of loaded image
626 * @param lenp Returns length of loaded image
627 *
628 * @return node offset of base image, or -ve error code on error
629 */
630int boot_get_fdt_fit(bootm_headers_t *images, ulong addr,
631 const char **fit_unamep, const char **fit_uname_configp,
632 int arch, ulong *datap, ulong *lenp);
633
634/**
Simon Glass782cfbb2013-05-16 13:53:21 +0000635 * fit_image_load() - load an image from a FIT
636 *
637 * This deals with all aspects of loading an image from a FIT, including
638 * selecting the right image based on configuration, verifying it, printing
639 * out progress messages, checking the type/arch/os and optionally copying it
640 * to the right load address.
641 *
Simon Glass126cc862014-06-12 07:24:47 -0600642 * The property to look up is defined by image_type.
643 *
Simon Glass782cfbb2013-05-16 13:53:21 +0000644 * @param images Boot images structure
Simon Glass782cfbb2013-05-16 13:53:21 +0000645 * @param addr Address of FIT in memory
646 * @param fit_unamep On entry this is the requested image name
Andre Przywarab2267e82017-12-04 02:05:10 +0000647 * (e.g. "kernel") or NULL to use the default. On exit
Simon Glass782cfbb2013-05-16 13:53:21 +0000648 * points to the selected image name
Simon Glassf320a4d2013-07-10 23:08:10 -0700649 * @param fit_uname_configp On entry this is the requested configuration
Andre Przywarab2267e82017-12-04 02:05:10 +0000650 * name (e.g. "conf-1") or NULL to use the default. On
Simon Glassf320a4d2013-07-10 23:08:10 -0700651 * exit points to the selected configuration name.
Simon Glass782cfbb2013-05-16 13:53:21 +0000652 * @param arch Expected architecture (IH_ARCH_...)
653 * @param image_type Required image type (IH_TYPE_...). If this is
654 * IH_TYPE_KERNEL then we allow IH_TYPE_KERNEL_NOLOAD
655 * also.
656 * @param bootstage_id ID of starting bootstage to use for progress updates.
657 * This will be added to the BOOTSTAGE_SUB values when
658 * calling bootstage_mark()
659 * @param load_op Decribes what to do with the load address
660 * @param datap Returns address of loaded image
661 * @param lenp Returns length of loaded image
Simon Glassce1400f2014-06-12 07:24:53 -0600662 * @return node offset of image, or -ve error code on error
Simon Glass782cfbb2013-05-16 13:53:21 +0000663 */
Simon Glass126cc862014-06-12 07:24:47 -0600664int fit_image_load(bootm_headers_t *images, ulong addr,
Simon Glassf320a4d2013-07-10 23:08:10 -0700665 const char **fit_unamep, const char **fit_uname_configp,
Simon Glass782cfbb2013-05-16 13:53:21 +0000666 int arch, int image_type, int bootstage_id,
667 enum fit_load_op load_op, ulong *datap, ulong *lenp);
668
Simon Glass220a3a42019-12-28 10:45:04 -0700669/**
670 * image_source_script() - Execute a script
671 *
672 * Executes a U-Boot script at a particular address in memory. The script should
673 * have a header (FIT or legacy) with the script type (IH_TYPE_SCRIPT).
674 *
675 * @addr: Address of script
676 * @fit_uname: FIT subimage name
677 * @return result code (enum command_ret_t)
678 */
679int image_source_script(ulong addr, const char *fit_uname);
680
Simon Glassce1400f2014-06-12 07:24:53 -0600681#ifndef USE_HOSTCC
Simon Glass782cfbb2013-05-16 13:53:21 +0000682/**
683 * fit_get_node_from_config() - Look up an image a FIT by type
684 *
Andre Przywarab2267e82017-12-04 02:05:10 +0000685 * This looks in the selected conf- node (images->fit_uname_cfg) for a
Simon Glass782cfbb2013-05-16 13:53:21 +0000686 * particular image type (e.g. "kernel") and then finds the image that is
687 * referred to.
688 *
689 * For example, for something like:
690 *
691 * images {
Andre Przywarab2267e82017-12-04 02:05:10 +0000692 * kernel {
Simon Glass782cfbb2013-05-16 13:53:21 +0000693 * ...
694 * };
695 * };
696 * configurations {
Andre Przywarab2267e82017-12-04 02:05:10 +0000697 * conf-1 {
698 * kernel = "kernel";
Simon Glass782cfbb2013-05-16 13:53:21 +0000699 * };
700 * };
701 *
702 * the function will return the node offset of the kernel@1 node, assuming
Andre Przywarab2267e82017-12-04 02:05:10 +0000703 * that conf-1 is the chosen configuration.
Simon Glass782cfbb2013-05-16 13:53:21 +0000704 *
705 * @param images Boot images structure
706 * @param prop_name Property name to look up (FIT_..._PROP)
707 * @param addr Address of FIT in memory
708 */
709int fit_get_node_from_config(bootm_headers_t *images, const char *prop_name,
710 ulong addr);
711
Simon Glass09140112020-05-10 11:40:03 -0600712int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
Simon Glass53f375f2013-05-16 13:53:23 +0000713 bootm_headers_t *images,
714 char **of_flat_tree, ulong *of_size);
Grant Likely55b0a392011-03-28 09:59:01 +0000715void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000716int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size);
Kumar Gala06a09912008-08-15 08:24:38 -0500717
Stephen Warren712fbcf2011-10-18 11:11:49 +0000718int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100719 ulong *initrd_start, ulong *initrd_end);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000720int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end);
John Rigbyfca43cc2010-10-13 13:57:35 -0600721#ifdef CONFIG_SYS_BOOT_GET_KBD
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900722int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd);
John Rigbyfca43cc2010-10-13 13:57:35 -0600723#endif /* CONFIG_SYS_BOOT_GET_KBD */
Marian Balakowicz570abb02008-02-29 15:59:59 +0100724#endif /* !USE_HOSTCC */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100725
726/*******************************************************************/
727/* Legacy format specific code (prefixed with image_) */
728/*******************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000729static inline uint32_t image_get_header_size(void)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100730{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000731 return (sizeof(image_header_t));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100732}
733
734#define image_get_hdr_l(f) \
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200735 static inline uint32_t image_get_##f(const image_header_t *hdr) \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100736 { \
Stephen Warren712fbcf2011-10-18 11:11:49 +0000737 return uimage_to_cpu(hdr->ih_##f); \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100738 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000739image_get_hdr_l(magic) /* image_get_magic */
740image_get_hdr_l(hcrc) /* image_get_hcrc */
741image_get_hdr_l(time) /* image_get_time */
742image_get_hdr_l(size) /* image_get_size */
743image_get_hdr_l(load) /* image_get_load */
744image_get_hdr_l(ep) /* image_get_ep */
745image_get_hdr_l(dcrc) /* image_get_dcrc */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100746
747#define image_get_hdr_b(f) \
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200748 static inline uint8_t image_get_##f(const image_header_t *hdr) \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100749 { \
750 return hdr->ih_##f; \
751 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000752image_get_hdr_b(os) /* image_get_os */
753image_get_hdr_b(arch) /* image_get_arch */
754image_get_hdr_b(type) /* image_get_type */
755image_get_hdr_b(comp) /* image_get_comp */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100756
Stephen Warren712fbcf2011-10-18 11:11:49 +0000757static inline char *image_get_name(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100758{
759 return (char *)hdr->ih_name;
760}
761
Stephen Warren712fbcf2011-10-18 11:11:49 +0000762static inline uint32_t image_get_data_size(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100763{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000764 return image_get_size(hdr);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100765}
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100766
767/**
768 * image_get_data - get image payload start address
769 * @hdr: image header
770 *
771 * image_get_data() returns address of the image payload. For single
772 * component images it is image data start. For multi component
773 * images it points to the null terminated table of sub-images sizes.
774 *
775 * returns:
776 * image payload data start address
777 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000778static inline ulong image_get_data(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100779{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000780 return ((ulong)hdr + image_get_header_size());
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100781}
782
Stephen Warren712fbcf2011-10-18 11:11:49 +0000783static inline uint32_t image_get_image_size(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100784{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000785 return (image_get_size(hdr) + image_get_header_size());
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100786}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000787static inline ulong image_get_image_end(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100788{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000789 return ((ulong)hdr + image_get_image_size(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100790}
791
792#define image_set_hdr_l(f) \
793 static inline void image_set_##f(image_header_t *hdr, uint32_t val) \
794 { \
Stephen Warren712fbcf2011-10-18 11:11:49 +0000795 hdr->ih_##f = cpu_to_uimage(val); \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100796 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000797image_set_hdr_l(magic) /* image_set_magic */
798image_set_hdr_l(hcrc) /* image_set_hcrc */
799image_set_hdr_l(time) /* image_set_time */
800image_set_hdr_l(size) /* image_set_size */
801image_set_hdr_l(load) /* image_set_load */
802image_set_hdr_l(ep) /* image_set_ep */
803image_set_hdr_l(dcrc) /* image_set_dcrc */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100804
805#define image_set_hdr_b(f) \
806 static inline void image_set_##f(image_header_t *hdr, uint8_t val) \
807 { \
808 hdr->ih_##f = val; \
809 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000810image_set_hdr_b(os) /* image_set_os */
811image_set_hdr_b(arch) /* image_set_arch */
812image_set_hdr_b(type) /* image_set_type */
813image_set_hdr_b(comp) /* image_set_comp */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100814
Stephen Warren712fbcf2011-10-18 11:11:49 +0000815static inline void image_set_name(image_header_t *hdr, const char *name)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100816{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000817 strncpy(image_get_name(hdr), name, IH_NMLEN);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100818}
819
Stephen Warren712fbcf2011-10-18 11:11:49 +0000820int image_check_hcrc(const image_header_t *hdr);
821int image_check_dcrc(const image_header_t *hdr);
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100822#ifndef USE_HOSTCC
Simon Glass723806c2017-08-03 12:22:15 -0600823ulong env_get_bootm_low(void);
824phys_size_t env_get_bootm_size(void);
825phys_size_t env_get_bootm_mapsize(void);
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100826#endif
Simon Glassce1400f2014-06-12 07:24:53 -0600827void memmove_wd(void *to, void *from, size_t len, ulong chunksz);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100828
Stephen Warren712fbcf2011-10-18 11:11:49 +0000829static inline int image_check_magic(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100830{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000831 return (image_get_magic(hdr) == IH_MAGIC);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100832}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000833static inline int image_check_type(const image_header_t *hdr, uint8_t type)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100834{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000835 return (image_get_type(hdr) == type);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100836}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000837static inline int image_check_arch(const image_header_t *hdr, uint8_t arch)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100838{
Simon Glasse2734d62021-03-15 18:11:12 +1300839#ifndef USE_HOSTCC
840 /* Let's assume that sandbox can load any architecture */
841 if (IS_ENABLED(CONFIG_SANDBOX))
842 return true;
843#endif
Alison Wang4ac0a322017-06-06 15:32:40 +0800844 return (image_get_arch(hdr) == arch) ||
845 (image_get_arch(hdr) == IH_ARCH_ARM && arch == IH_ARCH_ARM64);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100846}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000847static inline int image_check_os(const image_header_t *hdr, uint8_t os)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100848{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000849 return (image_get_os(hdr) == os);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100850}
851
Stephen Warren712fbcf2011-10-18 11:11:49 +0000852ulong image_multi_count(const image_header_t *hdr);
853void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100854 ulong *data, ulong *len);
855
Stephen Warren712fbcf2011-10-18 11:11:49 +0000856void image_print_contents(const void *hdr);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100857
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100858#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000859static inline int image_check_target_arch(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100860{
Mike Frysinger476af292011-10-03 14:50:33 +0000861#ifndef IH_ARCH_DEFAULT
862# error "please define IH_ARCH_DEFAULT in your arch asm/u-boot.h"
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100863#endif
Mike Frysinger476af292011-10-03 14:50:33 +0000864 return image_check_arch(hdr, IH_ARCH_DEFAULT);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100865}
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100866#endif /* USE_HOSTCC */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100867
Simon Glass13d06982013-05-08 08:06:01 +0000868/**
Atish Patra155d6a32020-03-05 16:24:22 -0800869 * image_decomp_type() - Find out compression type of an image
870 *
871 * @buf: Address in U-Boot memory where image is loaded.
872 * @len: Length of the compressed image.
873 * @return compression type or IH_COMP_NONE if not compressed.
874 *
875 * Note: Only following compression types are supported now.
876 * lzo, lzma, gzip, bzip2
877 */
878int image_decomp_type(const unsigned char *buf, ulong len);
879
880/**
Julius Werner20908542019-07-24 19:37:54 -0700881 * image_decomp() - decompress an image
882 *
883 * @comp: Compression algorithm that is used (IH_COMP_...)
884 * @load: Destination load address in U-Boot memory
885 * @image_start Image start address (where we are decompressing from)
886 * @type: OS type (IH_OS_...)
887 * @load_bug: Place to decompress to
888 * @image_buf: Address to decompress from
889 * @image_len: Number of bytes in @image_buf to decompress
890 * @unc_len: Available space for decompression
891 * @return 0 if OK, -ve on error (BOOTM_ERR_...)
892 */
893int image_decomp(int comp, ulong load, ulong image_start, int type,
894 void *load_buf, void *image_buf, ulong image_len,
895 uint unc_len, ulong *load_end);
896
897/**
Simon Glass13d06982013-05-08 08:06:01 +0000898 * Set up properties in the FDT
899 *
900 * This sets up properties in the FDT that is to be passed to linux.
901 *
902 * @images: Images information
903 * @blob: FDT to update
904 * @of_size: Size of the FDT
905 * @lmb: Points to logical memory block structure
906 * @return 0 if ok, <0 on failure
907 */
908int image_setup_libfdt(bootm_headers_t *images, void *blob,
909 int of_size, struct lmb *lmb);
910
911/**
912 * Set up the FDT to use for booting a kernel
913 *
914 * This performs ramdisk setup, sets up the FDT if required, and adds
915 * paramters to the FDT if libfdt is available.
916 *
917 * @param images Images information
918 * @return 0 if ok, <0 on failure
919 */
920int image_setup_linux(bootm_headers_t *images);
921
Simon Glassa5266d62013-07-04 13:26:10 -0700922/**
923 * bootz_setup() - Extract stat and size of a Linux xImage
924 *
925 * @image: Address of image
926 * @start: Returns start address of image
927 * @end : Returns end address of image
928 * @return 0 if OK, 1 if the image was not recognised
929 */
930int bootz_setup(ulong image, ulong *start, ulong *end);
931
Bin Chen6808ef92018-01-27 16:59:09 +1100932/**
933 * Return the correct start address and size of a Linux aarch64 Image.
934 *
935 * @image: Address of image
936 * @start: Returns start address of image
937 * @size : Returns size image
Marek Vasut7f13b372018-06-13 06:13:32 +0200938 * @force_reloc: Ignore image->ep field, always place image to RAM start
Bin Chen6808ef92018-01-27 16:59:09 +1100939 * @return 0 if OK, 1 if the image was not recognised
940 */
Marek Vasut7f13b372018-06-13 06:13:32 +0200941int booti_setup(ulong image, ulong *relocated_addr, ulong *size,
942 bool force_reloc);
Simon Glassa5266d62013-07-04 13:26:10 -0700943
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100944/*******************************************************************/
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100945/* New uImage format specific code (prefixed with fit_) */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100946/*******************************************************************/
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100947
948#define FIT_IMAGES_PATH "/images"
949#define FIT_CONFS_PATH "/configurations"
950
Simon Glass72188f52020-03-18 11:44:06 -0600951/* hash/signature/key node */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100952#define FIT_HASH_NODENAME "hash"
953#define FIT_ALGO_PROP "algo"
954#define FIT_VALUE_PROP "value"
Joe Hershberger8ac88f22012-08-17 10:34:39 +0000955#define FIT_IGNORE_PROP "uboot-ignore"
Simon Glass3e569a62013-06-13 15:10:00 -0700956#define FIT_SIG_NODENAME "signature"
Simon Glass72188f52020-03-18 11:44:06 -0600957#define FIT_KEY_REQUIRED "required"
958#define FIT_KEY_HINT "key-name-hint"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100959
Philippe Reynes7298e422019-12-18 18:25:41 +0100960/* cipher node */
961#define FIT_CIPHER_NODENAME "cipher"
962#define FIT_ALGO_PROP "algo"
963
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100964/* image node */
965#define FIT_DATA_PROP "data"
Peng Fana1be94b2017-12-05 13:20:59 +0800966#define FIT_DATA_POSITION_PROP "data-position"
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +0200967#define FIT_DATA_OFFSET_PROP "data-offset"
968#define FIT_DATA_SIZE_PROP "data-size"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100969#define FIT_TIMESTAMP_PROP "timestamp"
970#define FIT_DESC_PROP "description"
971#define FIT_ARCH_PROP "arch"
972#define FIT_TYPE_PROP "type"
973#define FIT_OS_PROP "os"
974#define FIT_COMP_PROP "compression"
975#define FIT_ENTRY_PROP "entry"
976#define FIT_LOAD_PROP "load"
977
978/* configuration node */
979#define FIT_KERNEL_PROP "kernel"
980#define FIT_RAMDISK_PROP "ramdisk"
981#define FIT_FDT_PROP "fdt"
Karl Apsiteecf8cd62015-05-21 09:52:47 -0400982#define FIT_LOADABLE_PROP "loadables"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100983#define FIT_DEFAULT_PROP "default"
Simon Glass90268b82014-10-19 21:11:24 -0600984#define FIT_SETUP_PROP "setup"
Michal Simeked0cea72016-05-17 13:58:44 +0200985#define FIT_FPGA_PROP "fpga"
Michal Simek1f8e4bf2018-03-26 16:31:26 +0200986#define FIT_FIRMWARE_PROP "firmware"
Marek Vasut0298d202018-05-13 00:22:54 +0200987#define FIT_STANDALONE_PROP "standalone"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100988
Michael van der Westhuizen1de7bb42014-05-30 20:59:00 +0200989#define FIT_MAX_HASH_LEN HASH_MAX_DIGEST_SIZE
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100990
Simon Glassf1dcee52016-02-22 22:55:56 -0700991#if IMAGE_ENABLE_FIT
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100992/* cmdline argument format parsing */
Mike Frysinger314f6342012-04-22 06:59:06 +0000993int fit_parse_conf(const char *spec, ulong addr_curr,
Marian Balakowiczf50433d2008-02-21 17:20:20 +0100994 ulong *addr, const char **conf_name);
Mike Frysinger314f6342012-04-22 06:59:06 +0000995int fit_parse_subimage(const char *spec, ulong addr_curr,
Marian Balakowiczf50433d2008-02-21 17:20:20 +0100996 ulong *addr, const char **image_name);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100997
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200998int fit_get_subimage_count(const void *fit, int images_noffset);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000999void fit_print_contents(const void *fit);
1000void fit_image_print(const void *fit, int noffset, const char *p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001001
1002/**
1003 * fit_get_end - get FIT image size
1004 * @fit: pointer to the FIT format image header
1005 *
1006 * returns:
1007 * size of the FIT image (blob) in memory
1008 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001009static inline ulong fit_get_size(const void *fit)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001010{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001011 return fdt_totalsize(fit);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001012}
1013
1014/**
1015 * fit_get_end - get FIT image end
1016 * @fit: pointer to the FIT format image header
1017 *
1018 * returns:
1019 * end address of the FIT image (blob) in memory
1020 */
Simon Glass7a80de42016-02-24 09:14:42 -07001021ulong fit_get_end(const void *fit);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001022
1023/**
1024 * fit_get_name - get FIT node name
1025 * @fit: pointer to the FIT format image header
1026 *
1027 * returns:
1028 * NULL, on error
1029 * pointer to node name, on success
1030 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001031static inline const char *fit_get_name(const void *fit_hdr,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001032 int noffset, int *len)
1033{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001034 return fdt_get_name(fit_hdr, noffset, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001035}
1036
Stephen Warren712fbcf2011-10-18 11:11:49 +00001037int fit_get_desc(const void *fit, int noffset, char **desc);
1038int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001039
Stephen Warren712fbcf2011-10-18 11:11:49 +00001040int fit_image_get_node(const void *fit, const char *image_uname);
1041int fit_image_get_os(const void *fit, int noffset, uint8_t *os);
1042int fit_image_get_arch(const void *fit, int noffset, uint8_t *arch);
1043int fit_image_get_type(const void *fit, int noffset, uint8_t *type);
1044int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp);
1045int fit_image_get_load(const void *fit, int noffset, ulong *load);
1046int fit_image_get_entry(const void *fit, int noffset, ulong *entry);
1047int fit_image_get_data(const void *fit, int noffset,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001048 const void **data, size_t *size);
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +02001049int fit_image_get_data_offset(const void *fit, int noffset, int *data_offset);
Peng Fana1be94b2017-12-05 13:20:59 +08001050int fit_image_get_data_position(const void *fit, int noffset,
1051 int *data_position);
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +02001052int fit_image_get_data_size(const void *fit, int noffset, int *data_size);
Philippe Reynes4df35782019-12-18 18:25:42 +01001053int fit_image_get_data_size_unciphered(const void *fit, int noffset,
1054 size_t *data_size);
Kelvin Cheungc3c86382018-05-19 18:21:37 +08001055int fit_image_get_data_and_size(const void *fit, int noffset,
1056 const void **data, size_t *size);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001057
Stephen Warren712fbcf2011-10-18 11:11:49 +00001058int fit_image_hash_get_algo(const void *fit, int noffset, char **algo);
1059int fit_image_hash_get_value(const void *fit, int noffset, uint8_t **value,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001060 int *value_len);
1061
Stephen Warren712fbcf2011-10-18 11:11:49 +00001062int fit_set_timestamp(void *fit, int noffset, time_t timestamp);
Simon Glassbbb467d2013-05-07 06:12:01 +00001063
Philippe Reynes7298e422019-12-18 18:25:41 +01001064int fit_cipher_data(const char *keydir, void *keydest, void *fit,
1065 const char *comment, int require_keys,
1066 const char *engine_id, const char *cmdname);
1067
Simon Glassbbb467d2013-05-07 06:12:01 +00001068/**
Simon Glass56518e72013-06-13 15:10:01 -07001069 * fit_add_verification_data() - add verification data to FIT image nodes
Simon Glassbbb467d2013-05-07 06:12:01 +00001070 *
Simon Glass56518e72013-06-13 15:10:01 -07001071 * @keydir: Directory containing keys
1072 * @kwydest: FDT blob to write public key information to
1073 * @fit: Pointer to the FIT format image header
1074 * @comment: Comment to add to signature nodes
1075 * @require_keys: Mark all keys as 'required'
George McCollisterf1ca1fd2017-01-06 13:14:17 -06001076 * @engine_id: Engine to use for signing
Alex Kiernan795f4522018-06-20 20:10:52 +00001077 * @cmdname: Command name used when reporting errors
Simon Glass56518e72013-06-13 15:10:01 -07001078 *
1079 * Adds hash values for all component images in the FIT blob.
1080 * Hashes are calculated for all component images which have hash subnodes
1081 * with algorithm property set to one of the supported hash algorithms.
1082 *
1083 * Also add signatures if signature nodes are present.
1084 *
1085 * returns
1086 * 0, on success
1087 * libfdt error code, on failure
Simon Glassbbb467d2013-05-07 06:12:01 +00001088 */
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -06001089int fit_add_verification_data(const char *keydir, const char *keyfile,
1090 void *keydest, void *fit, const char *comment,
1091 int require_keys, const char *engine_id,
1092 const char *cmdname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001093
Jun Nie5c643db2018-02-27 16:55:58 +08001094int fit_image_verify_with_data(const void *fit, int image_noffset,
1095 const void *data, size_t size);
Simon Glassb8da8362013-05-07 06:11:57 +00001096int fit_image_verify(const void *fit, int noffset);
Simon Glass782cfbb2013-05-16 13:53:21 +00001097int fit_config_verify(const void *fit, int conf_noffset);
Simon Glassb8da8362013-05-07 06:11:57 +00001098int fit_all_image_verify(const void *fit);
Philippe Reynes4df35782019-12-18 18:25:42 +01001099int fit_config_decrypt(const void *fit, int conf_noffset);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001100int fit_image_check_os(const void *fit, int noffset, uint8_t os);
1101int fit_image_check_arch(const void *fit, int noffset, uint8_t arch);
1102int fit_image_check_type(const void *fit, int noffset, uint8_t type);
1103int fit_image_check_comp(const void *fit, int noffset, uint8_t comp);
Simon Glassc5819702021-02-15 17:08:09 -07001104
1105/**
1106 * fit_check_format() - Check that the FIT is valid
1107 *
1108 * This performs various checks on the FIT to make sure it is suitable for
1109 * use, looking for mandatory properties, nodes, etc.
1110 *
1111 * If FIT_FULL_CHECK is enabled, it also runs it through libfdt to make
1112 * sure that there are no strange tags or broken nodes in the FIT.
1113 *
1114 * @fit: pointer to the FIT format image header
1115 * @return 0 if OK, -ENOEXEC if not an FDT file, -EINVAL if the full FDT check
1116 * failed (e.g. due to bad structure), -ENOMSG if the description is
Simon Glass29cbc4b2021-02-24 08:50:32 -05001117 * missing, -EBADMSG if the timestamp is missing, -ENOENT if the /images
Simon Glassc5819702021-02-15 17:08:09 -07001118 * path is missing
1119 */
1120int fit_check_format(const void *fit, ulong size);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001121
Gabe Blackd95f6ec2012-10-25 16:31:10 +00001122int fit_conf_find_compat(const void *fit, const void *fdt);
Simon Glass390b26d2020-03-18 11:43:55 -06001123
1124/**
1125 * fit_conf_get_node - get node offset for configuration of a given unit name
1126 * @fit: pointer to the FIT format image header
1127 * @conf_uname: configuration node unit name (NULL to use default)
1128 *
1129 * fit_conf_get_node() finds a configuration (within the '/configurations'
1130 * parent node) of a provided unit name. If configuration is found its node
1131 * offset is returned to the caller.
1132 *
1133 * When NULL is provided in second argument fit_conf_get_node() will search
1134 * for a default configuration node instead. Default configuration node unit
1135 * name is retrieved from FIT_DEFAULT_PROP property of the '/configurations'
1136 * node.
1137 *
1138 * returns:
1139 * configuration node offset when found (>=0)
1140 * negative number on failure (FDT_ERR_* code)
1141 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001142int fit_conf_get_node(const void *fit, const char *conf_uname);
Simon Glass390b26d2020-03-18 11:43:55 -06001143
Tien Fong Chee0a42a132019-05-07 17:42:28 +08001144int fit_conf_get_prop_node_count(const void *fit, int noffset,
1145 const char *prop_name);
1146int fit_conf_get_prop_node_index(const void *fit, int noffset,
1147 const char *prop_name, int index);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001148
Simon Glass003efd72013-05-07 06:12:00 +00001149/**
1150 * fit_conf_get_prop_node() - Get node refered to by a configuration
1151 * @fit: FIT to check
1152 * @noffset: Offset of conf@xxx node to check
1153 * @prop_name: Property to read from the conf node
1154 *
Andre Przywarab2267e82017-12-04 02:05:10 +00001155 * The conf- nodes contain references to other nodes, using properties
1156 * like 'kernel = "kernel"'. Given such a property name (e.g. "kernel"),
Simon Glass003efd72013-05-07 06:12:00 +00001157 * return the offset of the node referred to (e.g. offset of node
Andre Przywarab2267e82017-12-04 02:05:10 +00001158 * "/images/kernel".
Simon Glass003efd72013-05-07 06:12:00 +00001159 */
1160int fit_conf_get_prop_node(const void *fit, int noffset,
1161 const char *prop_name);
1162
Simon Glass61a439a2013-05-07 06:11:52 +00001163int fit_check_ramdisk(const void *fit, int os_noffset,
1164 uint8_t arch, int verify);
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001165#endif /* IMAGE_ENABLE_FIT */
Simon Glass61a439a2013-05-07 06:11:52 +00001166
Simon Glass604f23d2013-05-07 06:11:54 +00001167int calculate_hash(const void *data, int data_len, const char *algo,
1168 uint8_t *value, int *value_len);
1169
Simon Glass782cfbb2013-05-16 13:53:21 +00001170/*
Simon Glass3e569a62013-06-13 15:10:00 -07001171 * At present we only support signing on the host, and verification on the
1172 * device
Simon Glass782cfbb2013-05-16 13:53:21 +00001173 */
Alex Kiernan89665f22019-04-18 20:34:55 +00001174#if defined(USE_HOSTCC)
1175# if defined(CONFIG_FIT_SIGNATURE)
Simon Glass3e569a62013-06-13 15:10:00 -07001176# define IMAGE_ENABLE_SIGN 1
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001177# define FIT_IMAGE_ENABLE_VERIFY 1
Alex Kiernan89665f22019-04-18 20:34:55 +00001178# include <openssl/evp.h>
1179# else
Simon Glass3e569a62013-06-13 15:10:00 -07001180# define IMAGE_ENABLE_SIGN 0
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001181# define FIT_IMAGE_ENABLE_VERIFY 0
Simon Glass782cfbb2013-05-16 13:53:21 +00001182# endif
1183#else
Simon Glass3e569a62013-06-13 15:10:00 -07001184# define IMAGE_ENABLE_SIGN 0
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001185# define FIT_IMAGE_ENABLE_VERIFY CONFIG_IS_ENABLED(FIT_SIGNATURE)
Simon Glass782cfbb2013-05-16 13:53:21 +00001186#endif
1187
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001188#if IMAGE_ENABLE_FIT
Simon Glass782cfbb2013-05-16 13:53:21 +00001189#ifdef USE_HOSTCC
Heiko Schocher29a23f92014-03-03 12:19:30 +01001190void *image_get_host_blob(void);
1191void image_set_host_blob(void *host_blob);
1192# define gd_fdt_blob() image_get_host_blob()
Simon Glass782cfbb2013-05-16 13:53:21 +00001193#else
1194# define gd_fdt_blob() (gd->fdt_blob)
1195#endif
1196
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001197#endif /* IMAGE_ENABLE_FIT */
Simon Glass782cfbb2013-05-16 13:53:21 +00001198
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -06001199/*
1200 * Information passed to the signing routines
1201 *
1202 * Either 'keydir', 'keyname', or 'keyfile' can be NULL. However, either
1203 * 'keyfile', or both 'keydir' and 'keyname' should have valid values. If
1204 * neither are valid, some operations might fail with EINVAL.
1205 */
Simon Glass3e569a62013-06-13 15:10:00 -07001206struct image_sign_info {
1207 const char *keydir; /* Directory conaining keys */
1208 const char *keyname; /* Name of key to use */
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -06001209 const char *keyfile; /* Filename of private or public key */
Simon Glass3e569a62013-06-13 15:10:00 -07001210 void *fit; /* Pointer to FIT blob */
1211 int node_offset; /* Offset of signature node */
Andrew Duda83dd98e2016-11-08 18:53:41 +00001212 const char *name; /* Algorithm name */
1213 struct checksum_algo *checksum; /* Checksum algorithm information */
Philippe Reynes20031562018-11-14 13:51:00 +01001214 struct padding_algo *padding; /* Padding algorithm information */
Andrew Duda83dd98e2016-11-08 18:53:41 +00001215 struct crypto_algo *crypto; /* Crypto algorithm information */
Simon Glass3e569a62013-06-13 15:10:00 -07001216 const void *fdt_blob; /* FDT containing public keys */
1217 int required_keynode; /* Node offset of key to use: -1=any */
1218 const char *require_keys; /* Value for 'required' property */
George McCollisterf1ca1fd2017-01-06 13:14:17 -06001219 const char *engine_id; /* Engine to use for signing */
AKASHI Takahiroa8fc3df2020-02-21 15:12:57 +09001220 /*
1221 * Note: the following two fields are always valid even w/o
1222 * RSA_VERIFY_WITH_PKEY in order to make sure this structure is
1223 * the same on target and host. Otherwise, vboot test may fail.
1224 */
1225 const void *key; /* Pointer to public key in DER */
1226 int keylen; /* Length of public key */
Simon Glass3e569a62013-06-13 15:10:00 -07001227};
Philippe Reynes7298e422019-12-18 18:25:41 +01001228
Simon Glass3e569a62013-06-13 15:10:00 -07001229/* A part of an image, used for hashing */
1230struct image_region {
1231 const void *data;
1232 int size;
1233};
1234
Alexandru Gagniuc8be18182021-07-14 17:05:44 -05001235#if FIT_IMAGE_ENABLE_VERIFY
Alexandru Gagniuc0bcb28d2021-02-19 12:45:10 -06001236# include <u-boot/hash-checksum.h>
Heiko Schocher646257d2014-03-03 12:19:26 +01001237#endif
1238struct checksum_algo {
1239 const char *name;
1240 const int checksum_len;
Andrew Dudada29f292016-11-08 18:53:40 +00001241 const int der_len;
1242 const uint8_t *der_prefix;
Heiko Schocher646257d2014-03-03 12:19:26 +01001243#if IMAGE_ENABLE_SIGN
Heiko Schocher29a23f92014-03-03 12:19:30 +01001244 const EVP_MD *(*calculate_sign)(void);
1245#endif
Ruchika Guptab37b46f2015-01-23 16:01:59 +05301246 int (*calculate)(const char *name,
1247 const struct image_region region[],
1248 int region_count, uint8_t *checksum);
Heiko Schocher646257d2014-03-03 12:19:26 +01001249};
1250
Andrew Duda0c1d74f2016-11-08 18:53:41 +00001251struct crypto_algo {
Simon Glass3e569a62013-06-13 15:10:00 -07001252 const char *name; /* Name of algorithm */
Andrew Duda0c1d74f2016-11-08 18:53:41 +00001253 const int key_len;
Simon Glass3e569a62013-06-13 15:10:00 -07001254
1255 /**
1256 * sign() - calculate and return signature for given input data
1257 *
1258 * @info: Specifies key and FIT information
1259 * @data: Pointer to the input data
1260 * @data_len: Data length
1261 * @sigp: Set to an allocated buffer holding the signature
1262 * @sig_len: Set to length of the calculated hash
1263 *
1264 * This computes input data signature according to selected algorithm.
1265 * Resulting signature value is placed in an allocated buffer, the
1266 * pointer is returned as *sigp. The length of the calculated
1267 * signature is returned via the sig_len pointer argument. The caller
1268 * should free *sigp.
1269 *
1270 * @return: 0, on success, -ve on error
1271 */
1272 int (*sign)(struct image_sign_info *info,
1273 const struct image_region region[],
1274 int region_count, uint8_t **sigp, uint *sig_len);
1275
1276 /**
1277 * add_verify_data() - Add verification information to FDT
1278 *
1279 * Add public key information to the FDT node, suitable for
1280 * verification at run-time. The information added depends on the
1281 * algorithm being used.
1282 *
1283 * @info: Specifies key and FIT information
1284 * @keydest: Destination FDT blob for public key data
1285 * @return: 0, on success, -ve on error
1286 */
1287 int (*add_verify_data)(struct image_sign_info *info, void *keydest);
1288
1289 /**
1290 * verify() - Verify a signature against some data
1291 *
1292 * @info: Specifies key and FIT information
1293 * @data: Pointer to the input data
1294 * @data_len: Data length
1295 * @sig: Signature
1296 * @sig_len: Number of bytes in signature
1297 * @return 0 if verified, -ve on error
1298 */
1299 int (*verify)(struct image_sign_info *info,
1300 const struct image_region region[], int region_count,
1301 uint8_t *sig, uint sig_len);
Andrew Duda0c1d74f2016-11-08 18:53:41 +00001302};
Heiko Schocher646257d2014-03-03 12:19:26 +01001303
Alexandru Gagniuc09801642021-07-14 17:05:39 -05001304/* Declare a new U-Boot crypto algorithm handler */
1305#define U_BOOT_CRYPTO_ALGO(__name) \
1306ll_entry_declare(struct crypto_algo, __name, cryptos)
1307
Philippe Reynes20031562018-11-14 13:51:00 +01001308struct padding_algo {
1309 const char *name;
1310 int (*verify)(struct image_sign_info *info,
1311 uint8_t *pad, int pad_len,
1312 const uint8_t *hash, int hash_len);
1313};
1314
Simon Glass3e569a62013-06-13 15:10:00 -07001315/**
Andrew Duda83dd98e2016-11-08 18:53:41 +00001316 * image_get_checksum_algo() - Look up a checksum algorithm
Simon Glass3e569a62013-06-13 15:10:00 -07001317 *
Andrew Duda83dd98e2016-11-08 18:53:41 +00001318 * @param full_name Name of algorithm in the form "checksum,crypto"
Simon Glass3e569a62013-06-13 15:10:00 -07001319 * @return pointer to algorithm information, or NULL if not found
1320 */
Andrew Duda83dd98e2016-11-08 18:53:41 +00001321struct checksum_algo *image_get_checksum_algo(const char *full_name);
1322
1323/**
1324 * image_get_crypto_algo() - Look up a cryptosystem algorithm
1325 *
1326 * @param full_name Name of algorithm in the form "checksum,crypto"
1327 * @return pointer to algorithm information, or NULL if not found
1328 */
1329struct crypto_algo *image_get_crypto_algo(const char *full_name);
Simon Glass3e569a62013-06-13 15:10:00 -07001330
Simon Glass56518e72013-06-13 15:10:01 -07001331/**
Philippe Reynes20031562018-11-14 13:51:00 +01001332 * image_get_padding_algo() - Look up a padding algorithm
1333 *
1334 * @param name Name of padding algorithm
1335 * @return pointer to algorithm information, or NULL if not found
1336 */
1337struct padding_algo *image_get_padding_algo(const char *name);
1338
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001339#if IMAGE_ENABLE_FIT
1340
Philippe Reynes20031562018-11-14 13:51:00 +01001341/**
Simon Glass56518e72013-06-13 15:10:01 -07001342 * fit_image_verify_required_sigs() - Verify signatures marked as 'required'
1343 *
1344 * @fit: FIT to check
1345 * @image_noffset: Offset of image node to check
1346 * @data: Image data to check
1347 * @size: Size of image data
1348 * @sig_blob: FDT containing public keys
1349 * @no_sigsp: Returns 1 if no signatures were required, and
1350 * therefore nothing was checked. The caller may wish
1351 * to fall back to other mechanisms, or refuse to
1352 * boot.
1353 * @return 0 if all verified ok, <0 on error
1354 */
1355int fit_image_verify_required_sigs(const void *fit, int image_noffset,
1356 const char *data, size_t size, const void *sig_blob,
1357 int *no_sigsp);
1358
1359/**
1360 * fit_image_check_sig() - Check a single image signature node
1361 *
1362 * @fit: FIT to check
1363 * @noffset: Offset of signature node to check
1364 * @data: Image data to check
1365 * @size: Size of image data
1366 * @required_keynode: Offset in the control FDT of the required key node,
1367 * if any. If this is given, then the image wil not
1368 * pass verification unless that key is used. If this is
1369 * -1 then any signature will do.
1370 * @err_msgp: In the event of an error, this will be pointed to a
1371 * help error string to display to the user.
1372 * @return 0 if all verified ok, <0 on error
1373 */
1374int fit_image_check_sig(const void *fit, int noffset, const void *data,
1375 size_t size, int required_keynode, char **err_msgp);
1376
Philippe Reynes4df35782019-12-18 18:25:42 +01001377int fit_image_decrypt_data(const void *fit,
1378 int image_noffset, int cipher_noffset,
1379 const void *data, size_t size,
1380 void **data_unciphered, size_t *size_unciphered);
1381
Simon Glass4d098522013-06-13 15:10:09 -07001382/**
1383 * fit_region_make_list() - Make a list of regions to hash
1384 *
1385 * Given a list of FIT regions (offset, size) provided by libfdt, create
1386 * a list of regions (void *, size) for use by the signature creationg
1387 * and verification code.
1388 *
1389 * @fit: FIT image to process
1390 * @fdt_regions: Regions as returned by libfdt
1391 * @count: Number of regions returned by libfdt
1392 * @region: Place to put list of regions (NULL to allocate it)
1393 * @return pointer to list of regions, or NULL if out of memory
1394 */
1395struct image_region *fit_region_make_list(const void *fit,
1396 struct fdt_region *fdt_regions, int count,
1397 struct image_region *region);
Simon Glass56518e72013-06-13 15:10:01 -07001398
Stephen Warren712fbcf2011-10-18 11:11:49 +00001399static inline int fit_image_check_target_arch(const void *fdt, int node)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001400{
Heiko Schocher29a23f92014-03-03 12:19:30 +01001401#ifndef USE_HOSTCC
Thierry Reding75668322011-10-27 08:58:25 +00001402 return fit_image_check_arch(fdt, node, IH_ARCH_DEFAULT);
Heiko Schocher29a23f92014-03-03 12:19:30 +01001403#else
1404 return 0;
1405#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001406}
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001407
Philippe Reynes7298e422019-12-18 18:25:41 +01001408/*
1409 * At present we only support ciphering on the host, and unciphering on the
1410 * device
1411 */
1412#if defined(USE_HOSTCC)
1413# if defined(CONFIG_FIT_CIPHER)
1414# define IMAGE_ENABLE_ENCRYPT 1
1415# define IMAGE_ENABLE_DECRYPT 1
1416# include <openssl/evp.h>
1417# else
1418# define IMAGE_ENABLE_ENCRYPT 0
1419# define IMAGE_ENABLE_DECRYPT 0
1420# endif
1421#else
1422# define IMAGE_ENABLE_ENCRYPT 0
1423# define IMAGE_ENABLE_DECRYPT CONFIG_IS_ENABLED(FIT_CIPHER)
1424#endif
1425
1426/* Information passed to the ciphering routines */
1427struct image_cipher_info {
1428 const char *keydir; /* Directory containing keys */
1429 const char *keyname; /* Name of key to use */
1430 const char *ivname; /* Name of IV to use */
1431 const void *fit; /* Pointer to FIT blob */
1432 int node_noffset; /* Offset of the cipher node */
1433 const char *name; /* Algorithm name */
1434 struct cipher_algo *cipher; /* Cipher algorithm information */
1435 const void *fdt_blob; /* FDT containing key and IV */
1436 const void *key; /* Value of the key */
1437 const void *iv; /* Value of the IV */
1438 size_t size_unciphered; /* Size of the unciphered data */
1439};
1440
1441struct cipher_algo {
1442 const char *name; /* Name of algorithm */
1443 int key_len; /* Length of the key */
1444 int iv_len; /* Length of the IV */
1445
1446#if IMAGE_ENABLE_ENCRYPT
1447 const EVP_CIPHER * (*calculate_type)(void);
1448#endif
1449
1450 int (*encrypt)(struct image_cipher_info *info,
1451 const unsigned char *data, int data_len,
1452 unsigned char **cipher, int *cipher_len);
1453
1454 int (*add_cipher_data)(struct image_cipher_info *info,
Philippe Reynesa6982a62020-09-17 15:01:46 +02001455 void *keydest, void *fit, int node_noffset);
Philippe Reynes4df35782019-12-18 18:25:42 +01001456
1457 int (*decrypt)(struct image_cipher_info *info,
1458 const void *cipher, size_t cipher_len,
1459 void **data, size_t *data_len);
Philippe Reynes7298e422019-12-18 18:25:41 +01001460};
1461
1462int fit_image_cipher_get_algo(const void *fit, int noffset, char **algo);
1463
1464struct cipher_algo *image_get_cipher_algo(const char *full_name);
1465
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001466#ifdef CONFIG_FIT_VERBOSE
Stephen Warren712fbcf2011-10-18 11:11:49 +00001467#define fit_unsupported(msg) printf("! %s:%d " \
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001468 "FIT images not supported for '%s'\n", \
1469 __FILE__, __LINE__, (msg))
1470
Stephen Warren712fbcf2011-10-18 11:11:49 +00001471#define fit_unsupported_reset(msg) printf("! %s:%d " \
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001472 "FIT images not supported for '%s' " \
1473 "- must reset board to recover!\n", \
1474 __FILE__, __LINE__, (msg))
1475#else
1476#define fit_unsupported(msg)
1477#define fit_unsupported_reset(msg)
1478#endif /* CONFIG_FIT_VERBOSE */
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001479#endif /* CONFIG_FIT */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001480
Eugeniu Roscad08b16e2020-03-08 01:11:18 +01001481#if !defined(USE_HOSTCC)
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001482#if defined(CONFIG_ANDROID_BOOT_IMAGE)
1483struct andr_img_hdr;
1484int android_image_check_header(const struct andr_img_hdr *hdr);
1485int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify,
1486 ulong *os_data, ulong *os_len);
1487int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
1488 ulong *rd_data, ulong *rd_len);
Bin Chen10481612018-01-27 16:59:08 +11001489int android_image_get_second(const struct andr_img_hdr *hdr,
1490 ulong *second_data, ulong *second_len);
Sam Protsenko7f253152020-01-24 17:53:41 +02001491bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
Sam Protsenkoc3bfad82020-01-24 17:53:40 +02001492bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
1493 u32 *size);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001494ulong android_image_get_end(const struct andr_img_hdr *hdr);
1495ulong android_image_get_kload(const struct andr_img_hdr *hdr);
Eugeniu Rosca829ceb22019-04-08 17:35:27 +02001496ulong android_image_get_kcomp(const struct andr_img_hdr *hdr);
Michael Trimarchi4f1318b2016-06-10 19:54:37 +02001497void android_print_contents(const struct andr_img_hdr *hdr);
Sam Protsenkoc3bfad82020-01-24 17:53:40 +02001498#if !defined(CONFIG_SPL_BUILD)
1499bool android_image_print_dtb_contents(ulong hdr_addr);
1500#endif
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001501
1502#endif /* CONFIG_ANDROID_BOOT_IMAGE */
Eugeniu Roscad08b16e2020-03-08 01:11:18 +01001503#endif /* !USE_HOSTCC */
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001504
Simon Glass4b307f22016-02-22 22:55:55 -07001505/**
1506 * board_fit_config_name_match() - Check for a matching board name
1507 *
1508 * This is used when SPL loads a FIT containing multiple device tree files
1509 * and wants to work out which one to use. The description of each one is
1510 * passed to this function. The description comes from the 'description' field
1511 * in each (FDT) image node.
1512 *
1513 * @name: Device tree description
1514 * @return 0 if this device tree should be used, non-zero to try the next
1515 */
1516int board_fit_config_name_match(const char *name);
1517
Daniel Allredda74d1f2016-06-27 09:19:21 -05001518/**
1519 * board_fit_image_post_process() - Do any post-process on FIT binary data
1520 *
1521 * This is used to do any sort of image manipulation, verification, decryption
1522 * etc. in a platform or board specific way. Obviously, anything done here would
1523 * need to be comprehended in how the images were prepared before being injected
1524 * into the FIT creation (i.e. the binary blobs would have been pre-processed
1525 * before being added to the FIT image).
1526 *
Lokesh Vutla481d3942021-06-11 11:45:05 +03001527 * @fit: pointer to fit image
1528 * @node: offset of image node
Daniel Allredda74d1f2016-06-27 09:19:21 -05001529 * @image: pointer to the image start pointer
1530 * @size: pointer to the image size
1531 * @return no return value (failure should be handled internally)
1532 */
Lokesh Vutla481d3942021-06-11 11:45:05 +03001533void board_fit_image_post_process(const void *fit, int node, void **p_image,
1534 size_t *p_size);
Daniel Allredda74d1f2016-06-27 09:19:21 -05001535
Cooper Jr., Franklin3863f842017-06-16 17:25:05 -05001536#define FDT_ERROR ((ulong)(-1))
1537
Cooper Jr., Franklin92926bc2017-06-16 17:25:06 -05001538ulong fdt_getprop_u32(const void *fdt, int node, const char *prop);
Jean-Jacques Hiblot02035d02017-09-15 12:57:27 +02001539
1540/**
1541 * fit_find_config_node() - Find the node for the best DTB in a FIT image
1542 *
1543 * A FIT image contains one or more DTBs. This function parses the
1544 * configurations described in the FIT images and returns the node of
1545 * the first matching DTB. To check if a DTB matches a board, this function
1546 * calls board_fit_config_name_match(). If no matching DTB is found, it returns
1547 * the node described by the default configuration if it exists.
1548 *
1549 * @fdt: pointer to flat device tree
1550 * @return the node if found, -ve otherwise
1551 */
Cooper Jr., Franklin92926bc2017-06-16 17:25:06 -05001552int fit_find_config_node(const void *fdt);
1553
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001554/**
1555 * Mapping of image types to function handlers to be invoked on the associated
1556 * loaded images
1557 *
1558 * @type: Type of image, I.E. IH_TYPE_*
1559 * @handler: Function to call on loaded image
1560 */
1561struct fit_loadable_tbl {
1562 int type;
1563 /**
1564 * handler() - Process a loaded image
1565 *
1566 * @data: Pointer to start of loaded image data
1567 * @size: Size of loaded image data
1568 */
1569 void (*handler)(ulong data, size_t size);
1570};
1571
1572/*
1573 * Define a FIT loadable image type handler
1574 *
1575 * _type is a valid uimage_type ID as defined in the "Image Type" enum above
1576 * _handler is the handler function to call after this image type is loaded
1577 */
1578#define U_BOOT_FIT_LOADABLE_HANDLER(_type, _handler) \
1579 ll_entry_declare(struct fit_loadable_tbl, _function, fit_loadable) = { \
1580 .type = _type, \
1581 .handler = _handler, \
1582 }
1583
AKASHI Takahiro3149e522020-10-29 13:47:43 +09001584/**
1585 * fit_update - update storage with FIT image
1586 * @fit: Pointer to FIT image
1587 *
1588 * Update firmware on storage using FIT image as input.
1589 * The storage area to be update will be identified by the name
1590 * in FIT and matching it to "dfu_alt_info" variable.
1591 *
1592 * Return: 0 on success, non-zero otherwise
1593 */
1594int fit_update(const void *fit);
1595
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001596#endif /* __IMAGE_H__ */