blob: 03857f4b5002ca12f8d409374df3f376ea9ae551 [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
Bartlomiej Sieka9d254382008-03-11 12:34:47 +010034
Simon Glassab9efc62013-05-07 06:11:58 +000035#define IMAGE_ENABLE_IGNORE 0
Simon Glass1fe7d932013-05-08 08:05:58 +000036#define IMAGE_INDENT_STRING ""
Simon Glassab9efc62013-05-07 06:11:58 +000037
Wolfgang Denkdef08192008-10-21 11:23:56 +020038#else
39
40#include <lmb.h>
Wolfgang Denkdef08192008-10-21 11:23:56 +020041#include <asm/u-boot.h>
Mike Frysinger5daa1c12010-01-21 04:03:20 -050042#include <command.h>
Alexandru Gagniuc09801642021-07-14 17:05:39 -050043#include <linker_lists.h>
Wolfgang Denkdef08192008-10-21 11:23:56 +020044
Simon Glassab9efc62013-05-07 06:11:58 +000045/* Take notice of the 'ignore' property for hashes */
46#define IMAGE_ENABLE_IGNORE 1
Simon Glass1fe7d932013-05-08 08:05:58 +000047#define IMAGE_INDENT_STRING " "
Simon Glassab9efc62013-05-07 06:11:58 +000048
Simon Glassaa34fbc2016-02-22 22:55:45 -070049#define IMAGE_ENABLE_FIT CONFIG_IS_ENABLED(FIT)
50#define IMAGE_ENABLE_OF_LIBFDT CONFIG_IS_ENABLED(OF_LIBFDT)
Simon Glass73223f02016-02-22 22:55:43 -070051
Bartlomiej Sieka9d254382008-03-11 12:34:47 +010052#endif /* USE_HOSTCC */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010053
Simon Glass73223f02016-02-22 22:55:43 -070054#if IMAGE_ENABLE_FIT
Michael van der Westhuizen1de7bb42014-05-30 20:59:00 +020055#include <hash.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090056#include <linux/libfdt.h>
Marian Balakowicz5dfb5212008-02-29 21:24:06 +010057#include <fdt_support.h>
Simon Glass73223f02016-02-22 22:55:43 -070058#endif /* IMAGE_ENABLE_FIT */
Simon Glass13d06982013-05-08 08:06:01 +000059
Masahiro Yamada6f417512016-05-31 20:41:54 +090060#ifdef CONFIG_SYS_BOOT_GET_CMDLINE
61# define IMAGE_BOOT_GET_CMDLINE 1
62#else
63# define IMAGE_BOOT_GET_CMDLINE 0
64#endif
65
66#ifdef CONFIG_OF_BOARD_SETUP
67# define IMAGE_OF_BOARD_SETUP 1
68#else
69# define IMAGE_OF_BOARD_SETUP 0
70#endif
71
72#ifdef CONFIG_OF_SYSTEM_SETUP
73# define IMAGE_OF_SYSTEM_SETUP 1
74#else
75# define IMAGE_OF_SYSTEM_SETUP 0
76#endif
Simon Glassc654b512014-10-23 18:58:54 -060077
Simon Glass8e8ccfe2019-12-28 10:45:03 -070078extern ulong image_load_addr; /* Default Load Address */
79extern ulong image_save_addr; /* Default Save Address */
80extern ulong image_save_size; /* Default Save Size */
81
Simon Glassc5819702021-02-15 17:08:09 -070082/* An invalid size, meaning that the image size is not known */
83#define IMAGE_SIZE_INVAL (-1UL)
84
Simon Glass56d7ab72016-06-30 10:52:14 -060085enum ih_category {
86 IH_ARCH,
87 IH_COMP,
88 IH_OS,
89 IH_TYPE,
90
91 IH_COUNT,
92};
93
wdenk5b1d7132002-11-03 00:07:02 +000094/*
95 * Operating System Codes
Masahiro Yamadaff87b082016-07-21 15:16:00 +090096 *
97 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +010098 * New IDs *MUST* be appended at the end of the list and *NEVER*
99 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000100 */
Simon Glass555f45d2016-06-30 10:52:13 -0600101enum {
102 IH_OS_INVALID = 0, /* Invalid OS */
103 IH_OS_OPENBSD, /* OpenBSD */
104 IH_OS_NETBSD, /* NetBSD */
105 IH_OS_FREEBSD, /* FreeBSD */
106 IH_OS_4_4BSD, /* 4.4BSD */
107 IH_OS_LINUX, /* Linux */
108 IH_OS_SVR4, /* SVR4 */
109 IH_OS_ESIX, /* Esix */
110 IH_OS_SOLARIS, /* Solaris */
111 IH_OS_IRIX, /* Irix */
112 IH_OS_SCO, /* SCO */
113 IH_OS_DELL, /* Dell */
114 IH_OS_NCR, /* NCR */
115 IH_OS_LYNXOS, /* LynxOS */
116 IH_OS_VXWORKS, /* VxWorks */
117 IH_OS_PSOS, /* pSOS */
118 IH_OS_QNX, /* QNX */
119 IH_OS_U_BOOT, /* Firmware */
120 IH_OS_RTEMS, /* RTEMS */
121 IH_OS_ARTOS, /* ARTOS */
122 IH_OS_UNITY, /* Unity OS */
123 IH_OS_INTEGRITY, /* INTEGRITY */
124 IH_OS_OSE, /* OSE */
125 IH_OS_PLAN9, /* Plan 9 */
126 IH_OS_OPENRTOS, /* OpenRTOS */
Philipp Tomsich4914af12017-09-13 21:29:29 +0200127 IH_OS_ARM_TRUSTED_FIRMWARE, /* ARM Trusted Firmware */
Bryan O'Donoghue45b55712018-03-13 16:50:35 +0000128 IH_OS_TEE, /* Trusted Execution Environment */
Lukas Auer5e30e452019-08-21 21:14:44 +0200129 IH_OS_OPENSBI, /* RISC-V OpenSBI */
Cristian Ciocalteaa031b032019-12-24 18:05:38 +0200130 IH_OS_EFI, /* EFI Firmware (e.g. GRUB2) */
Simon Glass555f45d2016-06-30 10:52:13 -0600131
132 IH_OS_COUNT,
133};
wdenk5b1d7132002-11-03 00:07:02 +0000134
135/*
136 * CPU Architecture Codes (supported by Linux)
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900137 *
138 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +0100139 * New IDs *MUST* be appended at the end of the list and *NEVER*
140 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000141 */
Simon Glass555f45d2016-06-30 10:52:13 -0600142enum {
143 IH_ARCH_INVALID = 0, /* Invalid CPU */
144 IH_ARCH_ALPHA, /* Alpha */
145 IH_ARCH_ARM, /* ARM */
146 IH_ARCH_I386, /* Intel x86 */
147 IH_ARCH_IA64, /* IA64 */
148 IH_ARCH_MIPS, /* MIPS */
149 IH_ARCH_MIPS64, /* MIPS 64 Bit */
150 IH_ARCH_PPC, /* PowerPC */
151 IH_ARCH_S390, /* IBM S390 */
152 IH_ARCH_SH, /* SuperH */
153 IH_ARCH_SPARC, /* Sparc */
154 IH_ARCH_SPARC64, /* Sparc 64 Bit */
155 IH_ARCH_M68K, /* M68K */
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900156 IH_ARCH_NIOS, /* Nios-32 */
Simon Glass555f45d2016-06-30 10:52:13 -0600157 IH_ARCH_MICROBLAZE, /* MicroBlaze */
158 IH_ARCH_NIOS2, /* Nios-II */
159 IH_ARCH_BLACKFIN, /* Blackfin */
160 IH_ARCH_AVR32, /* AVR32 */
161 IH_ARCH_ST200, /* STMicroelectronics ST200 */
162 IH_ARCH_SANDBOX, /* Sandbox architecture (test only) */
163 IH_ARCH_NDS32, /* ANDES Technology - NDS32 */
164 IH_ARCH_OPENRISC, /* OpenRISC 1000 */
165 IH_ARCH_ARM64, /* ARM64 */
166 IH_ARCH_ARC, /* Synopsys DesignWare ARC */
167 IH_ARCH_X86_64, /* AMD x86_64, Intel and Via */
Chris Zankelde5e5ce2016-08-10 18:36:43 +0300168 IH_ARCH_XTENSA, /* Xtensa */
Rick Chen068feb92017-12-26 13:55:58 +0800169 IH_ARCH_RISCV, /* RISC-V */
Simon Glass555f45d2016-06-30 10:52:13 -0600170
171 IH_ARCH_COUNT,
172};
wdenk5b1d7132002-11-03 00:07:02 +0000173
174/*
175 * Image Types
176 *
177 * "Standalone Programs" are directly runnable in the environment
178 * provided by U-Boot; it is expected that (if they behave
179 * well) you can continue to work in U-Boot after return from
180 * the Standalone Program.
181 * "OS Kernel Images" are usually images of some Embedded OS which
182 * will take over control completely. Usually these programs
183 * will install their own set of exception handlers, device
184 * drivers, set up the MMU, etc. - this means, that you cannot
185 * expect to re-enter U-Boot except by resetting the CPU.
186 * "RAMDisk Images" are more or less just data blocks, and their
187 * parameters (address, size) are passed to an OS kernel that is
188 * being started.
189 * "Multi-File Images" contain several images, typically an OS
190 * (Linux) kernel image and one or more data images like
191 * RAMDisks. This construct is useful for instance when you want
192 * to boot over the network using BOOTP etc., where the boot
193 * server provides just a single image file, but you want to get
194 * for instance an OS kernel and a RAMDisk image.
195 *
196 * "Multi-File Images" start with a list of image sizes, each
197 * image size (in bytes) specified by an "uint32_t" in network
198 * byte order. This list is terminated by an "(uint32_t)0".
199 * Immediately after the terminating 0 follow the images, one by
200 * one, all aligned on "uint32_t" boundaries (size rounded up to
wdenke1599e82004-10-10 23:27:33 +0000201 * a multiple of 4 bytes - except for the last file).
wdenk5b1d7132002-11-03 00:07:02 +0000202 *
203 * "Firmware Images" are binary images containing firmware (like
204 * U-Boot or FPGA images) which usually will be programmed to
205 * flash memory.
206 *
207 * "Script files" are command sequences that will be executed by
208 * U-Boot's command interpreter; this feature is especially
209 * useful when you configure U-Boot to use a real shell (hush)
wdenk27b207f2003-07-24 23:38:38 +0000210 * as command interpreter (=> Shell Scripts).
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900211 *
212 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +0100213 * New IDs *MUST* be appended at the end of the list and *NEVER*
214 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000215 */
216
Simon Glass555f45d2016-06-30 10:52:13 -0600217enum {
218 IH_TYPE_INVALID = 0, /* Invalid Image */
219 IH_TYPE_STANDALONE, /* Standalone Program */
220 IH_TYPE_KERNEL, /* OS Kernel Image */
221 IH_TYPE_RAMDISK, /* RAMDisk Image */
222 IH_TYPE_MULTI, /* Multi-File Image */
223 IH_TYPE_FIRMWARE, /* Firmware Image */
224 IH_TYPE_SCRIPT, /* Script file */
225 IH_TYPE_FILESYSTEM, /* Filesystem Image (any type) */
226 IH_TYPE_FLATDT, /* Binary Flat Device Tree Blob */
227 IH_TYPE_KWBIMAGE, /* Kirkwood Boot Image */
228 IH_TYPE_IMXIMAGE, /* Freescale IMXBoot Image */
229 IH_TYPE_UBLIMAGE, /* Davinci UBL Image */
230 IH_TYPE_OMAPIMAGE, /* TI OMAP Config Header Image */
231 IH_TYPE_AISIMAGE, /* TI Davinci AIS Image */
232 /* OS Kernel Image, can run from any load address */
233 IH_TYPE_KERNEL_NOLOAD,
234 IH_TYPE_PBLIMAGE, /* Freescale PBL Boot Image */
235 IH_TYPE_MXSIMAGE, /* Freescale MXSBoot Image */
236 IH_TYPE_GPIMAGE, /* TI Keystone GPHeader Image */
237 IH_TYPE_ATMELIMAGE, /* ATMEL ROM bootable Image */
Marek Vasut662abc42018-04-15 13:15:33 +0200238 IH_TYPE_SOCFPGAIMAGE, /* Altera SOCFPGA CV/AV Preloader */
Simon Glass555f45d2016-06-30 10:52:13 -0600239 IH_TYPE_X86_SETUP, /* x86 setup.bin Image */
240 IH_TYPE_LPC32XXIMAGE, /* x86 setup.bin Image */
241 IH_TYPE_LOADABLE, /* A list of typeless images */
242 IH_TYPE_RKIMAGE, /* Rockchip Boot Image */
243 IH_TYPE_RKSD, /* Rockchip SD card */
244 IH_TYPE_RKSPI, /* Rockchip SPI image */
245 IH_TYPE_ZYNQIMAGE, /* Xilinx Zynq Boot Image */
246 IH_TYPE_ZYNQMPIMAGE, /* Xilinx ZynqMP Boot Image */
Alexander Graf6915dcf2018-04-13 14:18:52 +0200247 IH_TYPE_ZYNQMPBIF, /* Xilinx ZynqMP Boot Image (bif) */
Simon Glass555f45d2016-06-30 10:52:13 -0600248 IH_TYPE_FPGA, /* FPGA Image */
Albert ARIBAUD \(3ADEV\)ed0c2c02016-09-26 09:08:06 +0200249 IH_TYPE_VYBRIDIMAGE, /* VYBRID .vyb Image */
Andrew F. Davis7e719ee2016-11-29 16:33:21 -0600250 IH_TYPE_TEE, /* Trusted Execution Environment OS Image */
Sven Ebenfeldd21bd692016-11-06 16:37:56 +0100251 IH_TYPE_FIRMWARE_IVT, /* Firmware Image with HABv4 IVT */
Andrew F. Davis6442c962017-07-31 10:58:20 -0500252 IH_TYPE_PMMC, /* TI Power Management Micro-Controller Firmware */
Patrick Delaunay81260e32018-03-12 10:46:04 +0100253 IH_TYPE_STM32IMAGE, /* STMicroelectronics STM32 Image */
Marek Vasut662abc42018-04-15 13:15:33 +0200254 IH_TYPE_SOCFPGAIMAGE_V1, /* Altera SOCFPGA A10 Preloader */
Ryder Lee3b975a12018-11-15 10:07:49 +0800255 IH_TYPE_MTKIMAGE, /* MediaTek BootROM loadable Image */
Stefano Babic24431ad2018-12-17 11:02:00 +0100256 IH_TYPE_IMX8MIMAGE, /* Freescale IMX8MBoot Image */
257 IH_TYPE_IMX8IMAGE, /* Freescale IMX8Boot Image */
Patrick Delaunaye7fabe72019-08-02 15:07:19 +0200258 IH_TYPE_COPRO, /* Coprocessor Image for remoteproc*/
Andre Przywara6d295092018-12-20 01:15:18 +0000259 IH_TYPE_SUNXI_EGON, /* Allwinner eGON Boot Image */
wdenk5b1d7132002-11-03 00:07:02 +0000260
Simon Glass555f45d2016-06-30 10:52:13 -0600261 IH_TYPE_COUNT, /* Number of image types */
262};
Simon Glass5b9d44d2015-06-23 15:38:25 -0600263
wdenk5b1d7132002-11-03 00:07:02 +0000264/*
265 * Compression Types
Masahiro Yamadaff87b082016-07-21 15:16:00 +0900266 *
267 * The following are exposed to uImage header.
Stefano Babic24431ad2018-12-17 11:02:00 +0100268 * New IDs *MUST* be appended at the end of the list and *NEVER*
269 * inserted for backward compatibility.
wdenk5b1d7132002-11-03 00:07:02 +0000270 */
Simon Glass555f45d2016-06-30 10:52:13 -0600271enum {
272 IH_COMP_NONE = 0, /* No Compression Used */
273 IH_COMP_GZIP, /* gzip Compression Used */
274 IH_COMP_BZIP2, /* bzip2 Compression Used */
275 IH_COMP_LZMA, /* lzma Compression Used */
276 IH_COMP_LZO, /* lzo Compression Used */
277 IH_COMP_LZ4, /* lz4 Compression Used */
Robert Marko26073f92020-04-25 19:37:21 +0200278 IH_COMP_ZSTD, /* zstd Compression Used */
Simon Glass555f45d2016-06-30 10:52:13 -0600279
280 IH_COMP_COUNT,
281};
wdenk5b1d7132002-11-03 00:07:02 +0000282
Eugeniu Rosca829ceb22019-04-08 17:35:27 +0200283#define LZ4F_MAGIC 0x184D2204 /* LZ4 Magic Number */
wdenk5b1d7132002-11-03 00:07:02 +0000284#define IH_MAGIC 0x27051956 /* Image Magic Number */
285#define IH_NMLEN 32 /* Image Name Length */
286
Fabio Estevam1411fb32013-01-03 08:24:33 +0000287/* Reused from common.h */
288#define ROUND(a, b) (((a) + (b) - 1) & ~((b) - 1))
289
wdenk5b1d7132002-11-03 00:07:02 +0000290/*
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100291 * Legacy format image header,
292 * all data in network byte order (aka natural aka bigendian).
wdenk5b1d7132002-11-03 00:07:02 +0000293 */
wdenk5b1d7132002-11-03 00:07:02 +0000294typedef struct image_header {
Bin Meng1af5e972019-10-27 05:19:40 -0700295 uint32_t ih_magic; /* Image Header Magic Number */
296 uint32_t ih_hcrc; /* Image Header CRC Checksum */
297 uint32_t ih_time; /* Image Creation Timestamp */
298 uint32_t ih_size; /* Image Data Size */
299 uint32_t ih_load; /* Data Load Address */
300 uint32_t ih_ep; /* Entry Point Address */
301 uint32_t ih_dcrc; /* Image Data CRC Checksum */
wdenk5b1d7132002-11-03 00:07:02 +0000302 uint8_t ih_os; /* Operating System */
303 uint8_t ih_arch; /* CPU architecture */
304 uint8_t ih_type; /* Image Type */
305 uint8_t ih_comp; /* Compression Type */
306 uint8_t ih_name[IH_NMLEN]; /* Image Name */
307} image_header_t;
308
Kumar Gala396f6352008-08-15 08:24:41 -0500309typedef struct image_info {
310 ulong start, end; /* start/end of blob */
311 ulong image_start, image_len; /* start of image within blob, len of image */
312 ulong load; /* load addr for the image */
313 uint8_t comp, type, os; /* compression, type of image, os type */
Simon Glass90268b82014-10-19 21:11:24 -0600314 uint8_t arch; /* CPU architecture */
Kumar Gala396f6352008-08-15 08:24:41 -0500315} image_info_t;
316
Marian Balakowicz559316f2008-01-08 18:11:44 +0100317/*
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100318 * Legacy and FIT format headers used by do_bootm() and do_bootm_<os>()
319 * routines.
320 */
321typedef struct bootm_headers {
322 /*
323 * Legacy os image header, if it is a multi component image
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100324 * then boot_get_ramdisk() and get_fdt() will attempt to get
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100325 * data from second and third component accordingly.
326 */
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200327 image_header_t *legacy_hdr_os; /* image header pointer */
328 image_header_t legacy_hdr_os_copy; /* header copy */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100329 ulong legacy_hdr_valid;
330
Simon Glass73223f02016-02-22 22:55:43 -0700331#if IMAGE_ENABLE_FIT
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100332 const char *fit_uname_cfg; /* configuration node unit name */
333
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100334 void *fit_hdr_os; /* os FIT image header */
Marian Balakowiczeb6175e2008-03-10 17:53:49 +0100335 const char *fit_uname_os; /* os subimage node unit name */
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100336 int fit_noffset_os; /* os subimage node offset */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100337
338 void *fit_hdr_rd; /* init ramdisk FIT image header */
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100339 const char *fit_uname_rd; /* init ramdisk subimage node unit name */
340 int fit_noffset_rd; /* init ramdisk subimage node offset */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100341
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100342 void *fit_hdr_fdt; /* FDT blob FIT image header */
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100343 const char *fit_uname_fdt; /* FDT blob subimage node unit name */
344 int fit_noffset_fdt;/* FDT blob subimage node offset */
Simon Glass90268b82014-10-19 21:11:24 -0600345
346 void *fit_hdr_setup; /* x86 setup FIT image header */
347 const char *fit_uname_setup; /* x86 setup subimage node name */
348 int fit_noffset_setup;/* x86 setup subimage node offset */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100349#endif
Marian Balakowicz1ec73762008-03-12 10:35:52 +0100350
Kumar Gala49c3a862008-10-21 17:25:45 -0500351#ifndef USE_HOSTCC
Kumar Gala396f6352008-08-15 08:24:41 -0500352 image_info_t os; /* os image info */
Kumar Galac160a952008-08-15 08:24:36 -0500353 ulong ep; /* entry point of OS */
354
Kumar Galac4f94192008-08-15 08:24:37 -0500355 ulong rd_start, rd_end;/* ramdisk start/end */
356
Kumar Gala06a09912008-08-15 08:24:38 -0500357 char *ft_addr; /* flat dev tree address */
Kumar Gala06a09912008-08-15 08:24:38 -0500358 ulong ft_len; /* length of flat device tree */
359
Kumar Gala49c3a862008-10-21 17:25:45 -0500360 ulong initrd_start;
361 ulong initrd_end;
362 ulong cmdline_start;
363 ulong cmdline_end;
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900364 struct bd_info *kbd;
Kumar Gala49c3a862008-10-21 17:25:45 -0500365#endif
366
Simon Glass00caae62017-08-03 12:22:12 -0600367 int verify; /* env_get("verify")[0] != 'n' */
Kumar Gala49c3a862008-10-21 17:25:45 -0500368
369#define BOOTM_STATE_START (0x00000001)
Simon Glass35fc84f2013-06-11 11:14:47 -0700370#define BOOTM_STATE_FINDOS (0x00000002)
371#define BOOTM_STATE_FINDOTHER (0x00000004)
372#define BOOTM_STATE_LOADOS (0x00000008)
373#define BOOTM_STATE_RAMDISK (0x00000010)
374#define BOOTM_STATE_FDT (0x00000020)
375#define BOOTM_STATE_OS_CMDLINE (0x00000040)
376#define BOOTM_STATE_OS_BD_T (0x00000080)
377#define BOOTM_STATE_OS_PREP (0x00000100)
Simon Glassd0ae31e2013-06-11 11:14:48 -0700378#define BOOTM_STATE_OS_FAKE_GO (0x00000200) /* 'Almost' run the OS */
379#define BOOTM_STATE_OS_GO (0x00000400)
Kumar Gala49c3a862008-10-21 17:25:45 -0500380 int state;
381
Patrick Delaunay77b8cfe2021-03-10 10:16:25 +0100382#if defined(CONFIG_LMB) && !defined(USE_HOSTCC)
Kumar Galae906cfa2008-08-15 08:24:40 -0500383 struct lmb lmb; /* for memory mgmt */
384#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100385} bootm_headers_t;
386
Simon Schwarz1648a372012-03-15 04:01:34 +0000387extern bootm_headers_t images;
388
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100389/*
Marian Balakowicz559316f2008-01-08 18:11:44 +0100390 * Some systems (for example LWMON) have very short watchdog periods;
391 * we must make sure to split long operations like memmove() or
Bartlomiej Sieka75903782008-04-25 13:54:02 +0200392 * checksum calculations into reasonable chunks.
Marian Balakowicz559316f2008-01-08 18:11:44 +0100393 */
Bartlomiej Sieka75903782008-04-25 13:54:02 +0200394#ifndef CHUNKSZ
Marian Balakowicz559316f2008-01-08 18:11:44 +0100395#define CHUNKSZ (64 * 1024)
Bartlomiej Sieka75903782008-04-25 13:54:02 +0200396#endif
397
398#ifndef CHUNKSZ_CRC32
399#define CHUNKSZ_CRC32 (64 * 1024)
400#endif
401
402#ifndef CHUNKSZ_MD5
403#define CHUNKSZ_MD5 (64 * 1024)
404#endif
405
406#ifndef CHUNKSZ_SHA1
407#define CHUNKSZ_SHA1 (64 * 1024)
408#endif
Marian Balakowicz559316f2008-01-08 18:11:44 +0100409
Mike Frysinger37566092009-07-02 19:23:25 -0400410#define uimage_to_cpu(x) be32_to_cpu(x)
411#define cpu_to_uimage(x) cpu_to_be32(x)
wdenk5b1d7132002-11-03 00:07:02 +0000412
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530413/*
414 * Translation table for entries of a specific type; used by
415 * get_table_entry_id() and get_table_entry_name().
416 */
417typedef struct table_entry {
418 int id;
419 char *sname; /* short (input) name to find table entry */
420 char *lname; /* long (output) name to print for messages */
421} table_entry_t;
422
423/*
Atish Patra155d6a32020-03-05 16:24:22 -0800424 * Compression type and magic number mapping table.
425 */
426struct comp_magic_map {
427 int comp_id;
428 const char *name;
429 unsigned char magic[2];
430};
431
432/*
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530433 * get_table_entry_id() scans the translation table trying to find an
434 * entry that matches the given short name. If a matching entry is
435 * found, it's id is returned to the caller.
436 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400437int get_table_entry_id(const table_entry_t *table,
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530438 const char *table_name, const char *name);
439/*
440 * get_table_entry_name() scans the translation table trying to find
441 * an entry that matches the given id. If a matching entry is found,
442 * its long name is returned to the caller.
443 */
Mike Frysinger7edb1862010-10-20 07:17:39 -0400444char *get_table_entry_name(const table_entry_t *table, char *msg, int id);
Prafulla Wadaskarb029ddd2009-09-07 14:59:08 +0530445
Stephen Warren712fbcf2011-10-18 11:11:49 +0000446const char *genimg_get_os_name(uint8_t os);
Simon Glasscef2e512016-02-22 22:55:50 -0700447
448/**
449 * genimg_get_os_short_name() - get the short name for an OS
450 *
451 * @param os OS (IH_OS_...)
452 * @return OS short name, or "unknown" if unknown
453 */
454const char *genimg_get_os_short_name(uint8_t comp);
455
Stephen Warren712fbcf2011-10-18 11:11:49 +0000456const char *genimg_get_arch_name(uint8_t arch);
Simon Glasscef2e512016-02-22 22:55:50 -0700457
458/**
459 * genimg_get_arch_short_name() - get the short name for an architecture
460 *
461 * @param arch Architecture type (IH_ARCH_...)
462 * @return architecture short name, or "unknown" if unknown
463 */
464const char *genimg_get_arch_short_name(uint8_t arch);
465
Stephen Warren712fbcf2011-10-18 11:11:49 +0000466const char *genimg_get_type_name(uint8_t type);
Simon Glass5b9d44d2015-06-23 15:38:25 -0600467
468/**
469 * genimg_get_type_short_name() - get the short name for an image type
470 *
471 * @param type Image type (IH_TYPE_...)
472 * @return image short name, or "unknown" if unknown
473 */
474const char *genimg_get_type_short_name(uint8_t type);
475
Stephen Warren712fbcf2011-10-18 11:11:49 +0000476const char *genimg_get_comp_name(uint8_t comp);
Simon Glasscef2e512016-02-22 22:55:50 -0700477
478/**
479 * genimg_get_comp_short_name() - get the short name for a compression method
480 *
481 * @param comp compression method (IH_COMP_...)
482 * @return compression method short name, or "unknown" if unknown
483 */
484const char *genimg_get_comp_short_name(uint8_t comp);
485
Simon Glass14262202016-06-30 10:52:16 -0600486/**
487 * genimg_get_cat_name() - Get the name of an item in a category
488 *
489 * @category: Category of item
490 * @id: Item ID
491 * @return name of item, or "Unknown ..." if unknown
492 */
493const char *genimg_get_cat_name(enum ih_category category, uint id);
494
495/**
496 * genimg_get_cat_short_name() - Get the short name of an item in a category
497 *
498 * @category: Category of item
499 * @id: Item ID
500 * @return short name of item, or "Unknown ..." if unknown
501 */
502const char *genimg_get_cat_short_name(enum ih_category category, uint id);
503
504/**
505 * genimg_get_cat_count() - Get the number of items in a category
506 *
507 * @category: Category to check
508 * @return the number of items in the category (IH_xxx_COUNT)
509 */
510int genimg_get_cat_count(enum ih_category category);
511
512/**
513 * genimg_get_cat_desc() - Get the description of a category
514 *
Naoki Hayama898a0842020-10-07 11:22:24 +0900515 * @category: Category to check
Simon Glass14262202016-06-30 10:52:16 -0600516 * @return the description of a category, e.g. "architecture". This
517 * effectively converts the enum to a string.
518 */
519const char *genimg_get_cat_desc(enum ih_category category);
520
Naoki Hayama02d41b02020-10-07 11:21:25 +0900521/**
522 * genimg_cat_has_id() - Check whether a category has an item
523 *
524 * @category: Category to check
525 * @id: Item ID
526 * @return true or false as to whether a category has an item
527 */
528bool genimg_cat_has_id(enum ih_category category, uint id);
529
Stephen Warren712fbcf2011-10-18 11:11:49 +0000530int genimg_get_os_id(const char *name);
531int genimg_get_arch_id(const char *name);
532int genimg_get_type_id(const char *name);
533int genimg_get_comp_id(const char *name);
534void genimg_print_size(uint32_t size);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100535
Simon Glass859e92b2013-05-07 06:11:51 +0000536#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) || \
537 defined(USE_HOSTCC)
538#define IMAGE_ENABLE_TIMESTAMP 1
539#else
540#define IMAGE_ENABLE_TIMESTAMP 0
541#endif
542void genimg_print_time(time_t timestamp);
543
Simon Glass782cfbb2013-05-16 13:53:21 +0000544/* What to do with a image load address ('load = <> 'in the FIT) */
545enum fit_load_op {
546 FIT_LOAD_IGNORED, /* Ignore load address */
547 FIT_LOAD_OPTIONAL, /* Can be provided, but optional */
Simon Glassfe20a812014-08-22 14:26:43 -0600548 FIT_LOAD_OPTIONAL_NON_ZERO, /* Optional, a value of 0 is ignored */
Simon Glass782cfbb2013-05-16 13:53:21 +0000549 FIT_LOAD_REQUIRED, /* Must be provided */
550};
551
Simon Glass90268b82014-10-19 21:11:24 -0600552int boot_get_setup(bootm_headers_t *images, uint8_t arch, ulong *setup_start,
553 ulong *setup_len);
554
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100555#ifndef USE_HOSTCC
556/* Image format types, returned by _get_format() routine */
557#define IMAGE_FORMAT_INVALID 0x00
Tom Rinic76c93a2019-05-23 07:14:07 -0400558#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100559#define IMAGE_FORMAT_LEGACY 0x01 /* legacy image_header based format */
Heiko Schocher21d29f72014-05-28 11:33:33 +0200560#endif
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100561#define IMAGE_FORMAT_FIT 0x02 /* new, libfdt based format */
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -0500562#define IMAGE_FORMAT_ANDROID 0x03 /* Android boot image */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100563
Bryan Wu6c454fe2014-08-15 16:51:38 -0700564ulong genimg_get_kernel_addr_fit(char * const img_addr,
565 const char **fit_uname_config,
566 const char **fit_uname_kernel);
Bryan Wu0f641402014-07-31 17:39:58 -0700567ulong genimg_get_kernel_addr(char * const img_addr);
Simon Glass35e7b0f2013-05-07 06:12:03 +0000568int genimg_get_format(const void *img_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000569int genimg_has_config(bootm_headers_t *images);
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100570
Simon Glass09140112020-05-10 11:40:03 -0600571int boot_get_fpga(int argc, char *const argv[], bootm_headers_t *images,
572 uint8_t arch, const ulong *ld_start, ulong * const ld_len);
573int boot_get_ramdisk(int argc, char *const argv[], bootm_headers_t *images,
574 uint8_t arch, ulong *rd_start, ulong *rd_end);
Karl Apsite84a07db2015-05-21 09:52:48 -0400575
576/**
577 * boot_get_loadable - routine to load a list of binaries to memory
578 * @argc: Ignored Argument
579 * @argv: Ignored Argument
580 * @images: pointer to the bootm images structure
581 * @arch: expected architecture for the image
582 * @ld_start: Ignored Argument
583 * @ld_len: Ignored Argument
584 *
585 * boot_get_loadable() will take the given FIT configuration, and look
586 * for a field named "loadables". Loadables, is a list of elements in
587 * the FIT given as strings. exe:
Andre Przywarab2267e82017-12-04 02:05:10 +0000588 * loadables = "linux_kernel", "fdt-2";
Karl Apsite84a07db2015-05-21 09:52:48 -0400589 * this function will attempt to parse each string, and load the
590 * corresponding element from the FIT into memory. Once placed,
591 * no aditional actions are taken.
592 *
593 * @return:
594 * 0, if only valid images or no images are found
595 * error code, if an error occurs during fit_image_load
596 */
Simon Glass09140112020-05-10 11:40:03 -0600597int boot_get_loadable(int argc, char *const argv[], bootm_headers_t *images,
598 uint8_t arch, const ulong *ld_start, ulong *const ld_len);
Karl Apsite84a07db2015-05-21 09:52:48 -0400599#endif /* !USE_HOSTCC */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100600
Simon Glass90268b82014-10-19 21:11:24 -0600601int boot_get_setup_fit(bootm_headers_t *images, uint8_t arch,
602 ulong *setup_start, ulong *setup_len);
603
Simon Glass782cfbb2013-05-16 13:53:21 +0000604/**
Pantelis Antoniou169043d2017-09-04 23:12:16 +0300605 * boot_get_fdt_fit() - load a DTB from a FIT file (applying overlays)
606 *
607 * This deals with all aspects of loading an DTB from a FIT.
608 * The correct base image based on configuration will be selected, and
609 * then any overlays specified will be applied (as present in fit_uname_configp).
610 *
611 * @param images Boot images structure
612 * @param addr Address of FIT in memory
613 * @param fit_unamep On entry this is the requested image name
Andre Przywarab2267e82017-12-04 02:05:10 +0000614 * (e.g. "kernel") or NULL to use the default. On exit
Pantelis Antoniou169043d2017-09-04 23:12:16 +0300615 * points to the selected image name
616 * @param fit_uname_configp On entry this is the requested configuration
Andre Przywarab2267e82017-12-04 02:05:10 +0000617 * name (e.g. "conf-1") or NULL to use the default. On
Pantelis Antoniou169043d2017-09-04 23:12:16 +0300618 * exit points to the selected configuration name.
619 * @param arch Expected architecture (IH_ARCH_...)
620 * @param datap Returns address of loaded image
621 * @param lenp Returns length of loaded image
622 *
623 * @return node offset of base image, or -ve error code on error
624 */
625int boot_get_fdt_fit(bootm_headers_t *images, ulong addr,
626 const char **fit_unamep, const char **fit_uname_configp,
627 int arch, ulong *datap, ulong *lenp);
628
629/**
Simon Glass782cfbb2013-05-16 13:53:21 +0000630 * fit_image_load() - load an image from a FIT
631 *
632 * This deals with all aspects of loading an image from a FIT, including
633 * selecting the right image based on configuration, verifying it, printing
634 * out progress messages, checking the type/arch/os and optionally copying it
635 * to the right load address.
636 *
Simon Glass126cc862014-06-12 07:24:47 -0600637 * The property to look up is defined by image_type.
638 *
Simon Glass782cfbb2013-05-16 13:53:21 +0000639 * @param images Boot images structure
Simon Glass782cfbb2013-05-16 13:53:21 +0000640 * @param addr Address of FIT in memory
641 * @param fit_unamep On entry this is the requested image name
Andre Przywarab2267e82017-12-04 02:05:10 +0000642 * (e.g. "kernel") or NULL to use the default. On exit
Simon Glass782cfbb2013-05-16 13:53:21 +0000643 * points to the selected image name
Simon Glassf320a4d2013-07-10 23:08:10 -0700644 * @param fit_uname_configp On entry this is the requested configuration
Andre Przywarab2267e82017-12-04 02:05:10 +0000645 * name (e.g. "conf-1") or NULL to use the default. On
Simon Glassf320a4d2013-07-10 23:08:10 -0700646 * exit points to the selected configuration name.
Simon Glass782cfbb2013-05-16 13:53:21 +0000647 * @param arch Expected architecture (IH_ARCH_...)
648 * @param image_type Required image type (IH_TYPE_...). If this is
649 * IH_TYPE_KERNEL then we allow IH_TYPE_KERNEL_NOLOAD
650 * also.
651 * @param bootstage_id ID of starting bootstage to use for progress updates.
652 * This will be added to the BOOTSTAGE_SUB values when
653 * calling bootstage_mark()
654 * @param load_op Decribes what to do with the load address
655 * @param datap Returns address of loaded image
656 * @param lenp Returns length of loaded image
Simon Glassce1400f2014-06-12 07:24:53 -0600657 * @return node offset of image, or -ve error code on error
Simon Glass782cfbb2013-05-16 13:53:21 +0000658 */
Simon Glass126cc862014-06-12 07:24:47 -0600659int fit_image_load(bootm_headers_t *images, ulong addr,
Simon Glassf320a4d2013-07-10 23:08:10 -0700660 const char **fit_unamep, const char **fit_uname_configp,
Simon Glass782cfbb2013-05-16 13:53:21 +0000661 int arch, int image_type, int bootstage_id,
662 enum fit_load_op load_op, ulong *datap, ulong *lenp);
663
Simon Glass220a3a42019-12-28 10:45:04 -0700664/**
665 * image_source_script() - Execute a script
666 *
667 * Executes a U-Boot script at a particular address in memory. The script should
668 * have a header (FIT or legacy) with the script type (IH_TYPE_SCRIPT).
669 *
670 * @addr: Address of script
671 * @fit_uname: FIT subimage name
672 * @return result code (enum command_ret_t)
673 */
674int image_source_script(ulong addr, const char *fit_uname);
675
Simon Glassce1400f2014-06-12 07:24:53 -0600676#ifndef USE_HOSTCC
Simon Glass782cfbb2013-05-16 13:53:21 +0000677/**
678 * fit_get_node_from_config() - Look up an image a FIT by type
679 *
Andre Przywarab2267e82017-12-04 02:05:10 +0000680 * This looks in the selected conf- node (images->fit_uname_cfg) for a
Simon Glass782cfbb2013-05-16 13:53:21 +0000681 * particular image type (e.g. "kernel") and then finds the image that is
682 * referred to.
683 *
684 * For example, for something like:
685 *
686 * images {
Andre Przywarab2267e82017-12-04 02:05:10 +0000687 * kernel {
Simon Glass782cfbb2013-05-16 13:53:21 +0000688 * ...
689 * };
690 * };
691 * configurations {
Andre Przywarab2267e82017-12-04 02:05:10 +0000692 * conf-1 {
693 * kernel = "kernel";
Simon Glass782cfbb2013-05-16 13:53:21 +0000694 * };
695 * };
696 *
697 * the function will return the node offset of the kernel@1 node, assuming
Andre Przywarab2267e82017-12-04 02:05:10 +0000698 * that conf-1 is the chosen configuration.
Simon Glass782cfbb2013-05-16 13:53:21 +0000699 *
700 * @param images Boot images structure
701 * @param prop_name Property name to look up (FIT_..._PROP)
702 * @param addr Address of FIT in memory
703 */
704int fit_get_node_from_config(bootm_headers_t *images, const char *prop_name,
705 ulong addr);
706
Simon Glass09140112020-05-10 11:40:03 -0600707int boot_get_fdt(int flag, int argc, char *const argv[], uint8_t arch,
Simon Glass53f375f2013-05-16 13:53:23 +0000708 bootm_headers_t *images,
709 char **of_flat_tree, ulong *of_size);
Grant Likely55b0a392011-03-28 09:59:01 +0000710void boot_fdt_add_mem_rsv_regions(struct lmb *lmb, void *fdt_blob);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000711int boot_relocate_fdt(struct lmb *lmb, char **of_flat_tree, ulong *of_size);
Kumar Gala06a09912008-08-15 08:24:38 -0500712
Stephen Warren712fbcf2011-10-18 11:11:49 +0000713int boot_ramdisk_high(struct lmb *lmb, ulong rd_data, ulong rd_len,
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100714 ulong *initrd_start, ulong *initrd_end);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000715int boot_get_cmdline(struct lmb *lmb, ulong *cmd_start, ulong *cmd_end);
John Rigbyfca43cc2010-10-13 13:57:35 -0600716#ifdef CONFIG_SYS_BOOT_GET_KBD
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900717int boot_get_kbd(struct lmb *lmb, struct bd_info **kbd);
John Rigbyfca43cc2010-10-13 13:57:35 -0600718#endif /* CONFIG_SYS_BOOT_GET_KBD */
Marian Balakowicz570abb02008-02-29 15:59:59 +0100719#endif /* !USE_HOSTCC */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100720
721/*******************************************************************/
722/* Legacy format specific code (prefixed with image_) */
723/*******************************************************************/
Stephen Warren712fbcf2011-10-18 11:11:49 +0000724static inline uint32_t image_get_header_size(void)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100725{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000726 return (sizeof(image_header_t));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100727}
728
729#define image_get_hdr_l(f) \
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200730 static inline uint32_t image_get_##f(const image_header_t *hdr) \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100731 { \
Stephen Warren712fbcf2011-10-18 11:11:49 +0000732 return uimage_to_cpu(hdr->ih_##f); \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100733 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000734image_get_hdr_l(magic) /* image_get_magic */
735image_get_hdr_l(hcrc) /* image_get_hcrc */
736image_get_hdr_l(time) /* image_get_time */
737image_get_hdr_l(size) /* image_get_size */
738image_get_hdr_l(load) /* image_get_load */
739image_get_hdr_l(ep) /* image_get_ep */
740image_get_hdr_l(dcrc) /* image_get_dcrc */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100741
742#define image_get_hdr_b(f) \
Wolfgang Denk3a2003f2009-08-19 11:42:56 +0200743 static inline uint8_t image_get_##f(const image_header_t *hdr) \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100744 { \
745 return hdr->ih_##f; \
746 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000747image_get_hdr_b(os) /* image_get_os */
748image_get_hdr_b(arch) /* image_get_arch */
749image_get_hdr_b(type) /* image_get_type */
750image_get_hdr_b(comp) /* image_get_comp */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100751
Stephen Warren712fbcf2011-10-18 11:11:49 +0000752static inline char *image_get_name(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100753{
754 return (char *)hdr->ih_name;
755}
756
Stephen Warren712fbcf2011-10-18 11:11:49 +0000757static inline uint32_t image_get_data_size(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100758{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000759 return image_get_size(hdr);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100760}
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100761
762/**
763 * image_get_data - get image payload start address
764 * @hdr: image header
765 *
766 * image_get_data() returns address of the image payload. For single
767 * component images it is image data start. For multi component
768 * images it points to the null terminated table of sub-images sizes.
769 *
770 * returns:
771 * image payload data start address
772 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000773static inline ulong image_get_data(const image_header_t *hdr)
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100774{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000775 return ((ulong)hdr + image_get_header_size());
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100776}
777
Stephen Warren712fbcf2011-10-18 11:11:49 +0000778static inline uint32_t image_get_image_size(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100779{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000780 return (image_get_size(hdr) + image_get_header_size());
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100781}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000782static inline ulong image_get_image_end(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100783{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000784 return ((ulong)hdr + image_get_image_size(hdr));
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100785}
786
787#define image_set_hdr_l(f) \
788 static inline void image_set_##f(image_header_t *hdr, uint32_t val) \
789 { \
Stephen Warren712fbcf2011-10-18 11:11:49 +0000790 hdr->ih_##f = cpu_to_uimage(val); \
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100791 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000792image_set_hdr_l(magic) /* image_set_magic */
793image_set_hdr_l(hcrc) /* image_set_hcrc */
794image_set_hdr_l(time) /* image_set_time */
795image_set_hdr_l(size) /* image_set_size */
796image_set_hdr_l(load) /* image_set_load */
797image_set_hdr_l(ep) /* image_set_ep */
798image_set_hdr_l(dcrc) /* image_set_dcrc */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100799
800#define image_set_hdr_b(f) \
801 static inline void image_set_##f(image_header_t *hdr, uint8_t val) \
802 { \
803 hdr->ih_##f = val; \
804 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000805image_set_hdr_b(os) /* image_set_os */
806image_set_hdr_b(arch) /* image_set_arch */
807image_set_hdr_b(type) /* image_set_type */
808image_set_hdr_b(comp) /* image_set_comp */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100809
Stephen Warren712fbcf2011-10-18 11:11:49 +0000810static inline void image_set_name(image_header_t *hdr, const char *name)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100811{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000812 strncpy(image_get_name(hdr), name, IH_NMLEN);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100813}
814
Stephen Warren712fbcf2011-10-18 11:11:49 +0000815int image_check_hcrc(const image_header_t *hdr);
816int image_check_dcrc(const image_header_t *hdr);
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100817#ifndef USE_HOSTCC
Simon Glass723806c2017-08-03 12:22:15 -0600818ulong env_get_bootm_low(void);
819phys_size_t env_get_bootm_size(void);
820phys_size_t env_get_bootm_mapsize(void);
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100821#endif
Simon Glassce1400f2014-06-12 07:24:53 -0600822void memmove_wd(void *to, void *from, size_t len, ulong chunksz);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100823
Stephen Warren712fbcf2011-10-18 11:11:49 +0000824static inline int image_check_magic(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100825{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000826 return (image_get_magic(hdr) == IH_MAGIC);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100827}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000828static inline int image_check_type(const image_header_t *hdr, uint8_t type)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100829{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000830 return (image_get_type(hdr) == type);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100831}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000832static inline int image_check_arch(const image_header_t *hdr, uint8_t arch)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100833{
Simon Glasse2734d62021-03-15 18:11:12 +1300834#ifndef USE_HOSTCC
835 /* Let's assume that sandbox can load any architecture */
836 if (IS_ENABLED(CONFIG_SANDBOX))
837 return true;
838#endif
Alison Wang4ac0a322017-06-06 15:32:40 +0800839 return (image_get_arch(hdr) == arch) ||
840 (image_get_arch(hdr) == IH_ARCH_ARM && arch == IH_ARCH_ARM64);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100841}
Stephen Warren712fbcf2011-10-18 11:11:49 +0000842static inline int image_check_os(const image_header_t *hdr, uint8_t os)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100843{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000844 return (image_get_os(hdr) == os);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100845}
846
Stephen Warren712fbcf2011-10-18 11:11:49 +0000847ulong image_multi_count(const image_header_t *hdr);
848void image_multi_getimg(const image_header_t *hdr, ulong idx,
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100849 ulong *data, ulong *len);
850
Stephen Warren712fbcf2011-10-18 11:11:49 +0000851void image_print_contents(const void *hdr);
Marian Balakowicz570abb02008-02-29 15:59:59 +0100852
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100853#ifndef USE_HOSTCC
Stephen Warren712fbcf2011-10-18 11:11:49 +0000854static inline int image_check_target_arch(const image_header_t *hdr)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100855{
Mike Frysinger476af292011-10-03 14:50:33 +0000856#ifndef IH_ARCH_DEFAULT
857# error "please define IH_ARCH_DEFAULT in your arch asm/u-boot.h"
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100858#endif
Mike Frysinger476af292011-10-03 14:50:33 +0000859 return image_check_arch(hdr, IH_ARCH_DEFAULT);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100860}
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100861#endif /* USE_HOSTCC */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100862
Simon Glass13d06982013-05-08 08:06:01 +0000863/**
Atish Patra155d6a32020-03-05 16:24:22 -0800864 * image_decomp_type() - Find out compression type of an image
865 *
866 * @buf: Address in U-Boot memory where image is loaded.
867 * @len: Length of the compressed image.
868 * @return compression type or IH_COMP_NONE if not compressed.
869 *
870 * Note: Only following compression types are supported now.
871 * lzo, lzma, gzip, bzip2
872 */
873int image_decomp_type(const unsigned char *buf, ulong len);
874
875/**
Julius Werner20908542019-07-24 19:37:54 -0700876 * image_decomp() - decompress an image
877 *
878 * @comp: Compression algorithm that is used (IH_COMP_...)
879 * @load: Destination load address in U-Boot memory
880 * @image_start Image start address (where we are decompressing from)
881 * @type: OS type (IH_OS_...)
882 * @load_bug: Place to decompress to
883 * @image_buf: Address to decompress from
884 * @image_len: Number of bytes in @image_buf to decompress
885 * @unc_len: Available space for decompression
886 * @return 0 if OK, -ve on error (BOOTM_ERR_...)
887 */
888int image_decomp(int comp, ulong load, ulong image_start, int type,
889 void *load_buf, void *image_buf, ulong image_len,
890 uint unc_len, ulong *load_end);
891
892/**
Simon Glass13d06982013-05-08 08:06:01 +0000893 * Set up properties in the FDT
894 *
895 * This sets up properties in the FDT that is to be passed to linux.
896 *
897 * @images: Images information
898 * @blob: FDT to update
899 * @of_size: Size of the FDT
900 * @lmb: Points to logical memory block structure
901 * @return 0 if ok, <0 on failure
902 */
903int image_setup_libfdt(bootm_headers_t *images, void *blob,
904 int of_size, struct lmb *lmb);
905
906/**
907 * Set up the FDT to use for booting a kernel
908 *
909 * This performs ramdisk setup, sets up the FDT if required, and adds
910 * paramters to the FDT if libfdt is available.
911 *
912 * @param images Images information
913 * @return 0 if ok, <0 on failure
914 */
915int image_setup_linux(bootm_headers_t *images);
916
Simon Glassa5266d62013-07-04 13:26:10 -0700917/**
918 * bootz_setup() - Extract stat and size of a Linux xImage
919 *
920 * @image: Address of image
921 * @start: Returns start address of image
922 * @end : Returns end address of image
923 * @return 0 if OK, 1 if the image was not recognised
924 */
925int bootz_setup(ulong image, ulong *start, ulong *end);
926
Bin Chen6808ef92018-01-27 16:59:09 +1100927/**
928 * Return the correct start address and size of a Linux aarch64 Image.
929 *
930 * @image: Address of image
931 * @start: Returns start address of image
932 * @size : Returns size image
Marek Vasut7f13b372018-06-13 06:13:32 +0200933 * @force_reloc: Ignore image->ep field, always place image to RAM start
Bin Chen6808ef92018-01-27 16:59:09 +1100934 * @return 0 if OK, 1 if the image was not recognised
935 */
Marek Vasut7f13b372018-06-13 06:13:32 +0200936int booti_setup(ulong image, ulong *relocated_addr, ulong *size,
937 bool force_reloc);
Simon Glassa5266d62013-07-04 13:26:10 -0700938
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100939/*******************************************************************/
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100940/* New uImage format specific code (prefixed with fit_) */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100941/*******************************************************************/
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100942
943#define FIT_IMAGES_PATH "/images"
944#define FIT_CONFS_PATH "/configurations"
945
Simon Glass72188f52020-03-18 11:44:06 -0600946/* hash/signature/key node */
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100947#define FIT_HASH_NODENAME "hash"
948#define FIT_ALGO_PROP "algo"
949#define FIT_VALUE_PROP "value"
Joe Hershberger8ac88f22012-08-17 10:34:39 +0000950#define FIT_IGNORE_PROP "uboot-ignore"
Simon Glass3e569a62013-06-13 15:10:00 -0700951#define FIT_SIG_NODENAME "signature"
Simon Glass72188f52020-03-18 11:44:06 -0600952#define FIT_KEY_REQUIRED "required"
953#define FIT_KEY_HINT "key-name-hint"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100954
Philippe Reynes7298e422019-12-18 18:25:41 +0100955/* cipher node */
956#define FIT_CIPHER_NODENAME "cipher"
957#define FIT_ALGO_PROP "algo"
958
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100959/* image node */
960#define FIT_DATA_PROP "data"
Peng Fana1be94b2017-12-05 13:20:59 +0800961#define FIT_DATA_POSITION_PROP "data-position"
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +0200962#define FIT_DATA_OFFSET_PROP "data-offset"
963#define FIT_DATA_SIZE_PROP "data-size"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100964#define FIT_TIMESTAMP_PROP "timestamp"
965#define FIT_DESC_PROP "description"
966#define FIT_ARCH_PROP "arch"
967#define FIT_TYPE_PROP "type"
968#define FIT_OS_PROP "os"
969#define FIT_COMP_PROP "compression"
970#define FIT_ENTRY_PROP "entry"
971#define FIT_LOAD_PROP "load"
972
973/* configuration node */
974#define FIT_KERNEL_PROP "kernel"
975#define FIT_RAMDISK_PROP "ramdisk"
976#define FIT_FDT_PROP "fdt"
Karl Apsiteecf8cd62015-05-21 09:52:47 -0400977#define FIT_LOADABLE_PROP "loadables"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100978#define FIT_DEFAULT_PROP "default"
Simon Glass90268b82014-10-19 21:11:24 -0600979#define FIT_SETUP_PROP "setup"
Michal Simeked0cea72016-05-17 13:58:44 +0200980#define FIT_FPGA_PROP "fpga"
Michal Simek1f8e4bf2018-03-26 16:31:26 +0200981#define FIT_FIRMWARE_PROP "firmware"
Marek Vasut0298d202018-05-13 00:22:54 +0200982#define FIT_STANDALONE_PROP "standalone"
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100983
Michael van der Westhuizen1de7bb42014-05-30 20:59:00 +0200984#define FIT_MAX_HASH_LEN HASH_MAX_DIGEST_SIZE
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100985
Simon Glassf1dcee52016-02-22 22:55:56 -0700986#if IMAGE_ENABLE_FIT
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100987/* cmdline argument format parsing */
Mike Frysinger314f6342012-04-22 06:59:06 +0000988int fit_parse_conf(const char *spec, ulong addr_curr,
Marian Balakowiczf50433d2008-02-21 17:20:20 +0100989 ulong *addr, const char **conf_name);
Mike Frysinger314f6342012-04-22 06:59:06 +0000990int fit_parse_subimage(const char *spec, ulong addr_curr,
Marian Balakowiczf50433d2008-02-21 17:20:20 +0100991 ulong *addr, const char **image_name);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100992
Guilherme Maciel Ferreira39931f92015-01-15 02:54:42 -0200993int fit_get_subimage_count(const void *fit, int images_noffset);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000994void fit_print_contents(const void *fit);
995void fit_image_print(const void *fit, int noffset, const char *p);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +0100996
997/**
998 * fit_get_end - get FIT image size
999 * @fit: pointer to the FIT format image header
1000 *
1001 * returns:
1002 * size of the FIT image (blob) in memory
1003 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001004static inline ulong fit_get_size(const void *fit)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001005{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001006 return fdt_totalsize(fit);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001007}
1008
1009/**
1010 * fit_get_end - get FIT image end
1011 * @fit: pointer to the FIT format image header
1012 *
1013 * returns:
1014 * end address of the FIT image (blob) in memory
1015 */
Simon Glass7a80de42016-02-24 09:14:42 -07001016ulong fit_get_end(const void *fit);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001017
1018/**
1019 * fit_get_name - get FIT node name
1020 * @fit: pointer to the FIT format image header
1021 *
1022 * returns:
1023 * NULL, on error
1024 * pointer to node name, on success
1025 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001026static inline const char *fit_get_name(const void *fit_hdr,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001027 int noffset, int *len)
1028{
Stephen Warren712fbcf2011-10-18 11:11:49 +00001029 return fdt_get_name(fit_hdr, noffset, len);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001030}
1031
Stephen Warren712fbcf2011-10-18 11:11:49 +00001032int fit_get_desc(const void *fit, int noffset, char **desc);
1033int fit_get_timestamp(const void *fit, int noffset, time_t *timestamp);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001034
Stephen Warren712fbcf2011-10-18 11:11:49 +00001035int fit_image_get_node(const void *fit, const char *image_uname);
1036int fit_image_get_os(const void *fit, int noffset, uint8_t *os);
1037int fit_image_get_arch(const void *fit, int noffset, uint8_t *arch);
1038int fit_image_get_type(const void *fit, int noffset, uint8_t *type);
1039int fit_image_get_comp(const void *fit, int noffset, uint8_t *comp);
1040int fit_image_get_load(const void *fit, int noffset, ulong *load);
1041int fit_image_get_entry(const void *fit, int noffset, ulong *entry);
1042int fit_image_get_data(const void *fit, int noffset,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001043 const void **data, size_t *size);
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +02001044int fit_image_get_data_offset(const void *fit, int noffset, int *data_offset);
Peng Fana1be94b2017-12-05 13:20:59 +08001045int fit_image_get_data_position(const void *fit, int noffset,
1046 int *data_position);
tomas.melin@vaisala.comdb1b79b2017-01-13 13:20:14 +02001047int fit_image_get_data_size(const void *fit, int noffset, int *data_size);
Philippe Reynes4df35782019-12-18 18:25:42 +01001048int fit_image_get_data_size_unciphered(const void *fit, int noffset,
1049 size_t *data_size);
Kelvin Cheungc3c86382018-05-19 18:21:37 +08001050int fit_image_get_data_and_size(const void *fit, int noffset,
1051 const void **data, size_t *size);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001052
Stephen Warren712fbcf2011-10-18 11:11:49 +00001053int fit_image_hash_get_algo(const void *fit, int noffset, char **algo);
1054int fit_image_hash_get_value(const void *fit, int noffset, uint8_t **value,
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001055 int *value_len);
1056
Stephen Warren712fbcf2011-10-18 11:11:49 +00001057int fit_set_timestamp(void *fit, int noffset, time_t timestamp);
Simon Glassbbb467d2013-05-07 06:12:01 +00001058
Philippe Reynes7298e422019-12-18 18:25:41 +01001059int fit_cipher_data(const char *keydir, void *keydest, void *fit,
1060 const char *comment, int require_keys,
1061 const char *engine_id, const char *cmdname);
1062
Simon Glassbbb467d2013-05-07 06:12:01 +00001063/**
Simon Glass56518e72013-06-13 15:10:01 -07001064 * fit_add_verification_data() - add verification data to FIT image nodes
Simon Glassbbb467d2013-05-07 06:12:01 +00001065 *
Simon Glass56518e72013-06-13 15:10:01 -07001066 * @keydir: Directory containing keys
1067 * @kwydest: FDT blob to write public key information to
1068 * @fit: Pointer to the FIT format image header
1069 * @comment: Comment to add to signature nodes
1070 * @require_keys: Mark all keys as 'required'
George McCollisterf1ca1fd2017-01-06 13:14:17 -06001071 * @engine_id: Engine to use for signing
Alex Kiernan795f4522018-06-20 20:10:52 +00001072 * @cmdname: Command name used when reporting errors
Simon Glass56518e72013-06-13 15:10:01 -07001073 *
1074 * Adds hash values for all component images in the FIT blob.
1075 * Hashes are calculated for all component images which have hash subnodes
1076 * with algorithm property set to one of the supported hash algorithms.
1077 *
1078 * Also add signatures if signature nodes are present.
1079 *
1080 * returns
1081 * 0, on success
1082 * libfdt error code, on failure
Simon Glassbbb467d2013-05-07 06:12:01 +00001083 */
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -06001084int fit_add_verification_data(const char *keydir, const char *keyfile,
1085 void *keydest, void *fit, const char *comment,
1086 int require_keys, const char *engine_id,
1087 const char *cmdname);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001088
Jun Nie5c643db2018-02-27 16:55:58 +08001089int fit_image_verify_with_data(const void *fit, int image_noffset,
1090 const void *data, size_t size);
Simon Glassb8da8362013-05-07 06:11:57 +00001091int fit_image_verify(const void *fit, int noffset);
Simon Glass782cfbb2013-05-16 13:53:21 +00001092int fit_config_verify(const void *fit, int conf_noffset);
Simon Glassb8da8362013-05-07 06:11:57 +00001093int fit_all_image_verify(const void *fit);
Philippe Reynes4df35782019-12-18 18:25:42 +01001094int fit_config_decrypt(const void *fit, int conf_noffset);
Stephen Warren712fbcf2011-10-18 11:11:49 +00001095int fit_image_check_os(const void *fit, int noffset, uint8_t os);
1096int fit_image_check_arch(const void *fit, int noffset, uint8_t arch);
1097int fit_image_check_type(const void *fit, int noffset, uint8_t type);
1098int fit_image_check_comp(const void *fit, int noffset, uint8_t comp);
Simon Glassc5819702021-02-15 17:08:09 -07001099
1100/**
1101 * fit_check_format() - Check that the FIT is valid
1102 *
1103 * This performs various checks on the FIT to make sure it is suitable for
1104 * use, looking for mandatory properties, nodes, etc.
1105 *
1106 * If FIT_FULL_CHECK is enabled, it also runs it through libfdt to make
1107 * sure that there are no strange tags or broken nodes in the FIT.
1108 *
1109 * @fit: pointer to the FIT format image header
1110 * @return 0 if OK, -ENOEXEC if not an FDT file, -EINVAL if the full FDT check
1111 * failed (e.g. due to bad structure), -ENOMSG if the description is
Simon Glass29cbc4b2021-02-24 08:50:32 -05001112 * missing, -EBADMSG if the timestamp is missing, -ENOENT if the /images
Simon Glassc5819702021-02-15 17:08:09 -07001113 * path is missing
1114 */
1115int fit_check_format(const void *fit, ulong size);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001116
Gabe Blackd95f6ec2012-10-25 16:31:10 +00001117int fit_conf_find_compat(const void *fit, const void *fdt);
Simon Glass390b26d2020-03-18 11:43:55 -06001118
1119/**
1120 * fit_conf_get_node - get node offset for configuration of a given unit name
1121 * @fit: pointer to the FIT format image header
1122 * @conf_uname: configuration node unit name (NULL to use default)
1123 *
1124 * fit_conf_get_node() finds a configuration (within the '/configurations'
1125 * parent node) of a provided unit name. If configuration is found its node
1126 * offset is returned to the caller.
1127 *
1128 * When NULL is provided in second argument fit_conf_get_node() will search
1129 * for a default configuration node instead. Default configuration node unit
1130 * name is retrieved from FIT_DEFAULT_PROP property of the '/configurations'
1131 * node.
1132 *
1133 * returns:
1134 * configuration node offset when found (>=0)
1135 * negative number on failure (FDT_ERR_* code)
1136 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001137int fit_conf_get_node(const void *fit, const char *conf_uname);
Simon Glass390b26d2020-03-18 11:43:55 -06001138
Tien Fong Chee0a42a132019-05-07 17:42:28 +08001139int fit_conf_get_prop_node_count(const void *fit, int noffset,
1140 const char *prop_name);
1141int fit_conf_get_prop_node_index(const void *fit, int noffset,
1142 const char *prop_name, int index);
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001143
Simon Glass003efd72013-05-07 06:12:00 +00001144/**
1145 * fit_conf_get_prop_node() - Get node refered to by a configuration
1146 * @fit: FIT to check
1147 * @noffset: Offset of conf@xxx node to check
1148 * @prop_name: Property to read from the conf node
1149 *
Andre Przywarab2267e82017-12-04 02:05:10 +00001150 * The conf- nodes contain references to other nodes, using properties
1151 * like 'kernel = "kernel"'. Given such a property name (e.g. "kernel"),
Simon Glass003efd72013-05-07 06:12:00 +00001152 * return the offset of the node referred to (e.g. offset of node
Andre Przywarab2267e82017-12-04 02:05:10 +00001153 * "/images/kernel".
Simon Glass003efd72013-05-07 06:12:00 +00001154 */
1155int fit_conf_get_prop_node(const void *fit, int noffset,
1156 const char *prop_name);
1157
Simon Glass61a439a2013-05-07 06:11:52 +00001158int fit_check_ramdisk(const void *fit, int os_noffset,
1159 uint8_t arch, int verify);
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001160#endif /* IMAGE_ENABLE_FIT */
Simon Glass61a439a2013-05-07 06:11:52 +00001161
Simon Glass604f23d2013-05-07 06:11:54 +00001162int calculate_hash(const void *data, int data_len, const char *algo,
1163 uint8_t *value, int *value_len);
1164
Simon Glass782cfbb2013-05-16 13:53:21 +00001165/*
Simon Glass3e569a62013-06-13 15:10:00 -07001166 * At present we only support signing on the host, and verification on the
1167 * device
Simon Glass782cfbb2013-05-16 13:53:21 +00001168 */
Alex Kiernan89665f22019-04-18 20:34:55 +00001169#if defined(USE_HOSTCC)
1170# if defined(CONFIG_FIT_SIGNATURE)
Simon Glass3e569a62013-06-13 15:10:00 -07001171# define IMAGE_ENABLE_SIGN 1
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001172# define FIT_IMAGE_ENABLE_VERIFY 1
Alex Kiernan89665f22019-04-18 20:34:55 +00001173# include <openssl/evp.h>
1174# else
Simon Glass3e569a62013-06-13 15:10:00 -07001175# define IMAGE_ENABLE_SIGN 0
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001176# define FIT_IMAGE_ENABLE_VERIFY 0
Simon Glass782cfbb2013-05-16 13:53:21 +00001177# endif
1178#else
Simon Glass3e569a62013-06-13 15:10:00 -07001179# define IMAGE_ENABLE_SIGN 0
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001180# define FIT_IMAGE_ENABLE_VERIFY CONFIG_IS_ENABLED(FIT_SIGNATURE)
Simon Glass782cfbb2013-05-16 13:53:21 +00001181#endif
1182
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001183#if IMAGE_ENABLE_FIT
Simon Glass782cfbb2013-05-16 13:53:21 +00001184#ifdef USE_HOSTCC
Heiko Schocher29a23f92014-03-03 12:19:30 +01001185void *image_get_host_blob(void);
1186void image_set_host_blob(void *host_blob);
1187# define gd_fdt_blob() image_get_host_blob()
Simon Glass782cfbb2013-05-16 13:53:21 +00001188#else
1189# define gd_fdt_blob() (gd->fdt_blob)
1190#endif
1191
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001192#endif /* IMAGE_ENABLE_FIT */
Simon Glass782cfbb2013-05-16 13:53:21 +00001193
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -06001194/*
1195 * Information passed to the signing routines
1196 *
1197 * Either 'keydir', 'keyname', or 'keyfile' can be NULL. However, either
1198 * 'keyfile', or both 'keydir' and 'keyname' should have valid values. If
1199 * neither are valid, some operations might fail with EINVAL.
1200 */
Simon Glass3e569a62013-06-13 15:10:00 -07001201struct image_sign_info {
1202 const char *keydir; /* Directory conaining keys */
1203 const char *keyname; /* Name of key to use */
Alexandru Gagniuc36bfcb62021-02-19 12:45:17 -06001204 const char *keyfile; /* Filename of private or public key */
Simon Glass3e569a62013-06-13 15:10:00 -07001205 void *fit; /* Pointer to FIT blob */
1206 int node_offset; /* Offset of signature node */
Andrew Duda83dd98e2016-11-08 18:53:41 +00001207 const char *name; /* Algorithm name */
1208 struct checksum_algo *checksum; /* Checksum algorithm information */
Philippe Reynes20031562018-11-14 13:51:00 +01001209 struct padding_algo *padding; /* Padding algorithm information */
Andrew Duda83dd98e2016-11-08 18:53:41 +00001210 struct crypto_algo *crypto; /* Crypto algorithm information */
Simon Glass3e569a62013-06-13 15:10:00 -07001211 const void *fdt_blob; /* FDT containing public keys */
1212 int required_keynode; /* Node offset of key to use: -1=any */
1213 const char *require_keys; /* Value for 'required' property */
George McCollisterf1ca1fd2017-01-06 13:14:17 -06001214 const char *engine_id; /* Engine to use for signing */
AKASHI Takahiroa8fc3df2020-02-21 15:12:57 +09001215 /*
1216 * Note: the following two fields are always valid even w/o
1217 * RSA_VERIFY_WITH_PKEY in order to make sure this structure is
1218 * the same on target and host. Otherwise, vboot test may fail.
1219 */
1220 const void *key; /* Pointer to public key in DER */
1221 int keylen; /* Length of public key */
Simon Glass3e569a62013-06-13 15:10:00 -07001222};
Philippe Reynes7298e422019-12-18 18:25:41 +01001223
Simon Glass3e569a62013-06-13 15:10:00 -07001224/* A part of an image, used for hashing */
1225struct image_region {
1226 const void *data;
1227 int size;
1228};
1229
Alexandru Gagniuc8be18182021-07-14 17:05:44 -05001230#if FIT_IMAGE_ENABLE_VERIFY
Alexandru Gagniuc0bcb28d2021-02-19 12:45:10 -06001231# include <u-boot/hash-checksum.h>
Heiko Schocher646257d2014-03-03 12:19:26 +01001232#endif
1233struct checksum_algo {
1234 const char *name;
1235 const int checksum_len;
Andrew Dudada29f292016-11-08 18:53:40 +00001236 const int der_len;
1237 const uint8_t *der_prefix;
Heiko Schocher646257d2014-03-03 12:19:26 +01001238#if IMAGE_ENABLE_SIGN
Heiko Schocher29a23f92014-03-03 12:19:30 +01001239 const EVP_MD *(*calculate_sign)(void);
1240#endif
Ruchika Guptab37b46f2015-01-23 16:01:59 +05301241 int (*calculate)(const char *name,
1242 const struct image_region region[],
1243 int region_count, uint8_t *checksum);
Heiko Schocher646257d2014-03-03 12:19:26 +01001244};
1245
Andrew Duda0c1d74f2016-11-08 18:53:41 +00001246struct crypto_algo {
Simon Glass3e569a62013-06-13 15:10:00 -07001247 const char *name; /* Name of algorithm */
Andrew Duda0c1d74f2016-11-08 18:53:41 +00001248 const int key_len;
Simon Glass3e569a62013-06-13 15:10:00 -07001249
1250 /**
1251 * sign() - calculate and return signature for given input data
1252 *
1253 * @info: Specifies key and FIT information
1254 * @data: Pointer to the input data
1255 * @data_len: Data length
1256 * @sigp: Set to an allocated buffer holding the signature
1257 * @sig_len: Set to length of the calculated hash
1258 *
1259 * This computes input data signature according to selected algorithm.
1260 * Resulting signature value is placed in an allocated buffer, the
1261 * pointer is returned as *sigp. The length of the calculated
1262 * signature is returned via the sig_len pointer argument. The caller
1263 * should free *sigp.
1264 *
1265 * @return: 0, on success, -ve on error
1266 */
1267 int (*sign)(struct image_sign_info *info,
1268 const struct image_region region[],
1269 int region_count, uint8_t **sigp, uint *sig_len);
1270
1271 /**
1272 * add_verify_data() - Add verification information to FDT
1273 *
1274 * Add public key information to the FDT node, suitable for
1275 * verification at run-time. The information added depends on the
1276 * algorithm being used.
1277 *
1278 * @info: Specifies key and FIT information
1279 * @keydest: Destination FDT blob for public key data
1280 * @return: 0, on success, -ve on error
1281 */
1282 int (*add_verify_data)(struct image_sign_info *info, void *keydest);
1283
1284 /**
1285 * verify() - Verify a signature against some data
1286 *
1287 * @info: Specifies key and FIT information
1288 * @data: Pointer to the input data
1289 * @data_len: Data length
1290 * @sig: Signature
1291 * @sig_len: Number of bytes in signature
1292 * @return 0 if verified, -ve on error
1293 */
1294 int (*verify)(struct image_sign_info *info,
1295 const struct image_region region[], int region_count,
1296 uint8_t *sig, uint sig_len);
Andrew Duda0c1d74f2016-11-08 18:53:41 +00001297};
Heiko Schocher646257d2014-03-03 12:19:26 +01001298
Alexandru Gagniuc09801642021-07-14 17:05:39 -05001299/* Declare a new U-Boot crypto algorithm handler */
1300#define U_BOOT_CRYPTO_ALGO(__name) \
1301ll_entry_declare(struct crypto_algo, __name, cryptos)
1302
Philippe Reynes20031562018-11-14 13:51:00 +01001303struct padding_algo {
1304 const char *name;
1305 int (*verify)(struct image_sign_info *info,
1306 uint8_t *pad, int pad_len,
1307 const uint8_t *hash, int hash_len);
1308};
1309
Alexandru Gagniucde41f0e2021-08-18 17:49:02 -05001310/* Declare a new U-Boot padding algorithm handler */
1311#define U_BOOT_PADDING_ALGO(__name) \
1312ll_entry_declare(struct padding_algo, __name, paddings)
1313
Simon Glass3e569a62013-06-13 15:10:00 -07001314/**
Andrew Duda83dd98e2016-11-08 18:53:41 +00001315 * image_get_checksum_algo() - Look up a checksum algorithm
Simon Glass3e569a62013-06-13 15:10:00 -07001316 *
Andrew Duda83dd98e2016-11-08 18:53:41 +00001317 * @param full_name Name of algorithm in the form "checksum,crypto"
Simon Glass3e569a62013-06-13 15:10:00 -07001318 * @return pointer to algorithm information, or NULL if not found
1319 */
Andrew Duda83dd98e2016-11-08 18:53:41 +00001320struct checksum_algo *image_get_checksum_algo(const char *full_name);
1321
1322/**
1323 * image_get_crypto_algo() - Look up a cryptosystem algorithm
1324 *
1325 * @param full_name Name of algorithm in the form "checksum,crypto"
1326 * @return pointer to algorithm information, or NULL if not found
1327 */
1328struct crypto_algo *image_get_crypto_algo(const char *full_name);
Simon Glass3e569a62013-06-13 15:10:00 -07001329
Simon Glass56518e72013-06-13 15:10:01 -07001330/**
Philippe Reynes20031562018-11-14 13:51:00 +01001331 * image_get_padding_algo() - Look up a padding algorithm
1332 *
1333 * @param name Name of padding algorithm
1334 * @return pointer to algorithm information, or NULL if not found
1335 */
1336struct padding_algo *image_get_padding_algo(const char *name);
1337
AKASHI Takahirob983cc22020-02-21 15:12:55 +09001338#if IMAGE_ENABLE_FIT
1339
Philippe Reynes20031562018-11-14 13:51:00 +01001340/**
Simon Glass56518e72013-06-13 15:10:01 -07001341 * fit_image_verify_required_sigs() - Verify signatures marked as 'required'
1342 *
1343 * @fit: FIT to check
1344 * @image_noffset: Offset of image node to check
1345 * @data: Image data to check
1346 * @size: Size of image data
1347 * @sig_blob: FDT containing public keys
1348 * @no_sigsp: Returns 1 if no signatures were required, and
1349 * therefore nothing was checked. The caller may wish
1350 * to fall back to other mechanisms, or refuse to
1351 * boot.
1352 * @return 0 if all verified ok, <0 on error
1353 */
1354int fit_image_verify_required_sigs(const void *fit, int image_noffset,
1355 const char *data, size_t size, const void *sig_blob,
1356 int *no_sigsp);
1357
1358/**
1359 * fit_image_check_sig() - Check a single image signature node
1360 *
1361 * @fit: FIT to check
1362 * @noffset: Offset of signature node to check
1363 * @data: Image data to check
1364 * @size: Size of image data
1365 * @required_keynode: Offset in the control FDT of the required key node,
1366 * if any. If this is given, then the image wil not
1367 * pass verification unless that key is used. If this is
1368 * -1 then any signature will do.
1369 * @err_msgp: In the event of an error, this will be pointed to a
1370 * help error string to display to the user.
1371 * @return 0 if all verified ok, <0 on error
1372 */
1373int fit_image_check_sig(const void *fit, int noffset, const void *data,
1374 size_t size, int required_keynode, char **err_msgp);
1375
Philippe Reynes4df35782019-12-18 18:25:42 +01001376int fit_image_decrypt_data(const void *fit,
1377 int image_noffset, int cipher_noffset,
1378 const void *data, size_t size,
1379 void **data_unciphered, size_t *size_unciphered);
1380
Simon Glass4d098522013-06-13 15:10:09 -07001381/**
1382 * fit_region_make_list() - Make a list of regions to hash
1383 *
1384 * Given a list of FIT regions (offset, size) provided by libfdt, create
1385 * a list of regions (void *, size) for use by the signature creationg
1386 * and verification code.
1387 *
1388 * @fit: FIT image to process
1389 * @fdt_regions: Regions as returned by libfdt
1390 * @count: Number of regions returned by libfdt
1391 * @region: Place to put list of regions (NULL to allocate it)
1392 * @return pointer to list of regions, or NULL if out of memory
1393 */
1394struct image_region *fit_region_make_list(const void *fit,
1395 struct fdt_region *fdt_regions, int count,
1396 struct image_region *region);
Simon Glass56518e72013-06-13 15:10:01 -07001397
Stephen Warren712fbcf2011-10-18 11:11:49 +00001398static inline int fit_image_check_target_arch(const void *fdt, int node)
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001399{
Heiko Schocher29a23f92014-03-03 12:19:30 +01001400#ifndef USE_HOSTCC
Thierry Reding75668322011-10-27 08:58:25 +00001401 return fit_image_check_arch(fdt, node, IH_ARCH_DEFAULT);
Heiko Schocher29a23f92014-03-03 12:19:30 +01001402#else
1403 return 0;
1404#endif
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001405}
Marian Balakowicz5dfb5212008-02-29 21:24:06 +01001406
Philippe Reynes7298e422019-12-18 18:25:41 +01001407/*
1408 * At present we only support ciphering on the host, and unciphering on the
1409 * device
1410 */
1411#if defined(USE_HOSTCC)
1412# if defined(CONFIG_FIT_CIPHER)
1413# define IMAGE_ENABLE_ENCRYPT 1
1414# define IMAGE_ENABLE_DECRYPT 1
1415# include <openssl/evp.h>
1416# else
1417# define IMAGE_ENABLE_ENCRYPT 0
1418# define IMAGE_ENABLE_DECRYPT 0
1419# endif
1420#else
1421# define IMAGE_ENABLE_ENCRYPT 0
1422# define IMAGE_ENABLE_DECRYPT CONFIG_IS_ENABLED(FIT_CIPHER)
1423#endif
1424
1425/* Information passed to the ciphering routines */
1426struct image_cipher_info {
1427 const char *keydir; /* Directory containing keys */
1428 const char *keyname; /* Name of key to use */
1429 const char *ivname; /* Name of IV to use */
1430 const void *fit; /* Pointer to FIT blob */
1431 int node_noffset; /* Offset of the cipher node */
1432 const char *name; /* Algorithm name */
1433 struct cipher_algo *cipher; /* Cipher algorithm information */
1434 const void *fdt_blob; /* FDT containing key and IV */
1435 const void *key; /* Value of the key */
1436 const void *iv; /* Value of the IV */
1437 size_t size_unciphered; /* Size of the unciphered data */
1438};
1439
1440struct cipher_algo {
1441 const char *name; /* Name of algorithm */
1442 int key_len; /* Length of the key */
1443 int iv_len; /* Length of the IV */
1444
1445#if IMAGE_ENABLE_ENCRYPT
1446 const EVP_CIPHER * (*calculate_type)(void);
1447#endif
1448
1449 int (*encrypt)(struct image_cipher_info *info,
1450 const unsigned char *data, int data_len,
1451 unsigned char **cipher, int *cipher_len);
1452
1453 int (*add_cipher_data)(struct image_cipher_info *info,
Philippe Reynesa6982a62020-09-17 15:01:46 +02001454 void *keydest, void *fit, int node_noffset);
Philippe Reynes4df35782019-12-18 18:25:42 +01001455
1456 int (*decrypt)(struct image_cipher_info *info,
1457 const void *cipher, size_t cipher_len,
1458 void **data, size_t *data_len);
Philippe Reynes7298e422019-12-18 18:25:41 +01001459};
1460
1461int fit_image_cipher_get_algo(const void *fit, int noffset, char **algo);
1462
1463struct cipher_algo *image_get_cipher_algo(const char *full_name);
1464
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001465#ifdef CONFIG_FIT_VERBOSE
Stephen Warren712fbcf2011-10-18 11:11:49 +00001466#define fit_unsupported(msg) printf("! %s:%d " \
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001467 "FIT images not supported for '%s'\n", \
1468 __FILE__, __LINE__, (msg))
1469
Stephen Warren712fbcf2011-10-18 11:11:49 +00001470#define fit_unsupported_reset(msg) printf("! %s:%d " \
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001471 "FIT images not supported for '%s' " \
1472 "- must reset board to recover!\n", \
1473 __FILE__, __LINE__, (msg))
1474#else
1475#define fit_unsupported(msg)
1476#define fit_unsupported_reset(msg)
1477#endif /* CONFIG_FIT_VERBOSE */
Marian Balakowiczf50433d2008-02-21 17:20:20 +01001478#endif /* CONFIG_FIT */
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +01001479
Eugeniu Roscad08b16e2020-03-08 01:11:18 +01001480#if !defined(USE_HOSTCC)
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001481#if defined(CONFIG_ANDROID_BOOT_IMAGE)
1482struct andr_img_hdr;
1483int android_image_check_header(const struct andr_img_hdr *hdr);
1484int android_image_get_kernel(const struct andr_img_hdr *hdr, int verify,
1485 ulong *os_data, ulong *os_len);
1486int android_image_get_ramdisk(const struct andr_img_hdr *hdr,
1487 ulong *rd_data, ulong *rd_len);
Bin Chen10481612018-01-27 16:59:08 +11001488int android_image_get_second(const struct andr_img_hdr *hdr,
1489 ulong *second_data, ulong *second_len);
Sam Protsenko7f253152020-01-24 17:53:41 +02001490bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size);
Sam Protsenkoc3bfad82020-01-24 17:53:40 +02001491bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr,
1492 u32 *size);
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001493ulong android_image_get_end(const struct andr_img_hdr *hdr);
1494ulong android_image_get_kload(const struct andr_img_hdr *hdr);
Eugeniu Rosca829ceb22019-04-08 17:35:27 +02001495ulong android_image_get_kcomp(const struct andr_img_hdr *hdr);
Michael Trimarchi4f1318b2016-06-10 19:54:37 +02001496void android_print_contents(const struct andr_img_hdr *hdr);
Sam Protsenkoc3bfad82020-01-24 17:53:40 +02001497#if !defined(CONFIG_SPL_BUILD)
1498bool android_image_print_dtb_contents(ulong hdr_addr);
1499#endif
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001500
1501#endif /* CONFIG_ANDROID_BOOT_IMAGE */
Eugeniu Roscad08b16e2020-03-08 01:11:18 +01001502#endif /* !USE_HOSTCC */
Sebastian Siewior9ace3fc2014-05-05 15:08:09 -05001503
Simon Glass4b307f22016-02-22 22:55:55 -07001504/**
1505 * board_fit_config_name_match() - Check for a matching board name
1506 *
1507 * This is used when SPL loads a FIT containing multiple device tree files
1508 * and wants to work out which one to use. The description of each one is
1509 * passed to this function. The description comes from the 'description' field
1510 * in each (FDT) image node.
1511 *
1512 * @name: Device tree description
1513 * @return 0 if this device tree should be used, non-zero to try the next
1514 */
1515int board_fit_config_name_match(const char *name);
1516
Daniel Allredda74d1f2016-06-27 09:19:21 -05001517/**
1518 * board_fit_image_post_process() - Do any post-process on FIT binary data
1519 *
1520 * This is used to do any sort of image manipulation, verification, decryption
1521 * etc. in a platform or board specific way. Obviously, anything done here would
1522 * need to be comprehended in how the images were prepared before being injected
1523 * into the FIT creation (i.e. the binary blobs would have been pre-processed
1524 * before being added to the FIT image).
1525 *
Lokesh Vutla481d3942021-06-11 11:45:05 +03001526 * @fit: pointer to fit image
1527 * @node: offset of image node
Daniel Allredda74d1f2016-06-27 09:19:21 -05001528 * @image: pointer to the image start pointer
1529 * @size: pointer to the image size
1530 * @return no return value (failure should be handled internally)
1531 */
Lokesh Vutla481d3942021-06-11 11:45:05 +03001532void board_fit_image_post_process(const void *fit, int node, void **p_image,
1533 size_t *p_size);
Daniel Allredda74d1f2016-06-27 09:19:21 -05001534
Cooper Jr., Franklin3863f842017-06-16 17:25:05 -05001535#define FDT_ERROR ((ulong)(-1))
1536
Cooper Jr., Franklin92926bc2017-06-16 17:25:06 -05001537ulong fdt_getprop_u32(const void *fdt, int node, const char *prop);
Jean-Jacques Hiblot02035d02017-09-15 12:57:27 +02001538
1539/**
1540 * fit_find_config_node() - Find the node for the best DTB in a FIT image
1541 *
1542 * A FIT image contains one or more DTBs. This function parses the
1543 * configurations described in the FIT images and returns the node of
1544 * the first matching DTB. To check if a DTB matches a board, this function
1545 * calls board_fit_config_name_match(). If no matching DTB is found, it returns
1546 * the node described by the default configuration if it exists.
1547 *
1548 * @fdt: pointer to flat device tree
1549 * @return the node if found, -ve otherwise
1550 */
Cooper Jr., Franklin92926bc2017-06-16 17:25:06 -05001551int fit_find_config_node(const void *fdt);
1552
Andrew F. Davisd7be5092016-11-29 16:33:20 -06001553/**
1554 * Mapping of image types to function handlers to be invoked on the associated
1555 * loaded images
1556 *
1557 * @type: Type of image, I.E. IH_TYPE_*
1558 * @handler: Function to call on loaded image
1559 */
1560struct fit_loadable_tbl {
1561 int type;
1562 /**
1563 * handler() - Process a loaded image
1564 *
1565 * @data: Pointer to start of loaded image data
1566 * @size: Size of loaded image data
1567 */
1568 void (*handler)(ulong data, size_t size);
1569};
1570
1571/*
1572 * Define a FIT loadable image type handler
1573 *
1574 * _type is a valid uimage_type ID as defined in the "Image Type" enum above
1575 * _handler is the handler function to call after this image type is loaded
1576 */
1577#define U_BOOT_FIT_LOADABLE_HANDLER(_type, _handler) \
1578 ll_entry_declare(struct fit_loadable_tbl, _function, fit_loadable) = { \
1579 .type = _type, \
1580 .handler = _handler, \
1581 }
1582
AKASHI Takahiro3149e522020-10-29 13:47:43 +09001583/**
1584 * fit_update - update storage with FIT image
1585 * @fit: Pointer to FIT image
1586 *
1587 * Update firmware on storage using FIT image as input.
1588 * The storage area to be update will be identified by the name
1589 * in FIT and matching it to "dfu_alt_info" variable.
1590 *
1591 * Return: 0 on success, non-zero otherwise
1592 */
1593int fit_update(const void *fit);
1594
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001595#endif /* __IMAGE_H__ */