blob: 4640e38e3cc0eee9171df7aecd8e30fdd11cd004 [file] [log] [blame]
Bin Meng75574052016-02-05 19:30:11 -08001U-Boot new uImage source file format (bindings definition)
Marian Balakowicz18710b82008-03-12 12:13:13 +01002==========================================================
3
4Author: Marian Balakowicz <m8@semihalf.com>
Simon Glassafd728c2016-02-22 22:55:53 -07005External data additions, 25/1/16 Simon Glass <sjg@chromium.org>
Marian Balakowicz18710b82008-03-12 12:13:13 +01006
71) Introduction
8---------------
9
10Evolution of the 2.6 Linux kernel for embedded PowerPC systems introduced new
11booting method which requires that hardware description is available to the
12kernel in the form of Flattened Device Tree.
13
14Booting with a Flattened Device Tree is much more flexible and is intended to
15replace direct passing of 'struct bd_info' which was used to boot pre-FDT
16kernels.
17
Bin Meng75574052016-02-05 19:30:11 -080018However, U-Boot needs to support both techniques to provide backward
Marian Balakowicz18710b82008-03-12 12:13:13 +010019compatibility for platforms which are not FDT ready. Number of elements
20playing role in the booting process has increased and now includes the FDT
21blob. Kernel image, FDT blob and possibly ramdisk image - all must be placed
22in the system memory and passed to bootm as a arguments. Some of them may be
23missing: FDT is not present for legacy platforms, ramdisk is always optional.
24Additionally, old uImage format has been extended to support multi sub-images
25but the support is limited by simple format of the legacy uImage structure.
Simon Glassbb7d3bb2022-09-06 20:26:52 -060026Single binary header 'struct legacy_img_hdr' is not flexible enough to cover all
Marian Balakowicz18710b82008-03-12 12:13:13 +010027possible scenarios.
28
29All those factors combined clearly show that there is a need for new, more
30flexible, multi component uImage format.
31
32
332) New uImage format assumptions
34--------------------------------
35
36a) Implementation
37
38Libfdt has been selected for the new uImage format implementation as (1) it
39provides needed functionality, (2) is actively maintained and developed and
Bin Meng75574052016-02-05 19:30:11 -080040(3) increases code reuse as it is already part of the U-Boot source tree.
Marian Balakowicz18710b82008-03-12 12:13:13 +010041
42b) Terminology
43
44This document defines new uImage structure by providing FDT bindings for new
Bin Meng75574052016-02-05 19:30:11 -080045uImage internals. Bindings are defined from U-Boot perspective, i.e. describe
46final form of the uImage at the moment when it reaches U-Boot. User
Marian Balakowicz18710b82008-03-12 12:13:13 +010047perspective may be simpler, as some of the properties (like timestamps and
Bin Meng75574052016-02-05 19:30:11 -080048hashes) will need to be filled in automatically by the U-Boot mkimage tool.
Marian Balakowicz18710b82008-03-12 12:13:13 +010049
50To avoid confusion with the kernel FDT the following naming convention is
51proposed for the new uImage format related terms:
52
53FIT - Flattened uImage Tree
54
55FIT is formally a flattened device tree (in the libfdt meaning), which
56conforms to bindings defined in this document.
57
58.its - image tree source
Andreas Dannenberg3c94da42016-03-23 17:44:17 -050059.itb - flattened image tree blob
Marian Balakowicz18710b82008-03-12 12:13:13 +010060
61c) Image building procedure
62
63The following picture shows how the new uImage is prepared. Input consists of
64image source file (.its) and a set of data files. Image is created with the
Bin Meng75574052016-02-05 19:30:11 -080065help of standard U-Boot mkimage tool which in turn uses dtc (device tree
Masahiro Yamada89af9302013-09-13 20:28:21 +090066compiler) to produce image tree blob (.itb). Resulting .itb file is the
Marian Balakowicz18710b82008-03-12 12:13:13 +010067actual binary of a new uImage.
68
69
70tqm5200.its
71+
Wolfgang Denk8f702ad2008-03-26 11:48:46 +010072vmlinux.bin.gz mkimage + dtc xfer to target
Marian Balakowicz18710b82008-03-12 12:13:13 +010073eldk-4.2-ramdisk --------------> tqm5200.itb --------------> bootm
Wolfgang Denk8f702ad2008-03-26 11:48:46 +010074tqm5200.dtb /|\
75... |
76 'new uImage'
Marian Balakowicz18710b82008-03-12 12:13:13 +010077
78 - create .its file, automatically filled-in properties are omitted
79 - call mkimage tool on a .its file
80 - mkimage calls dtc to create .itb image and assures that
81 missing properties are added
82 - .itb (new uImage) is uploaded onto the target and used therein
83
84
85d) Unique identifiers
86
87To identify FIT sub-nodes representing images, hashes, configurations (which
88are defined in the following sections), the "unit name" of the given sub-node
89is used as it's identifier as it assures uniqueness without additional
90checking required.
91
92
933) Root node properties
94-----------------------
95
96Root node of the uImage Tree should have the following layout:
97
98/ o image-tree
99 |- description = "image description"
100 |- timestamp = <12399321>
101 |- #address-cells = <1>
102 |
103 o images
104 | |
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000105 | o image-1 {...}
106 | o image-2 {...}
Marian Balakowicz18710b82008-03-12 12:13:13 +0100107 | ...
108 |
109 o configurations
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000110 |- default = "conf-1"
Marian Balakowicz18710b82008-03-12 12:13:13 +0100111 |
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000112 o conf-1 {...}
113 o conf-2 {...}
Marian Balakowicz18710b82008-03-12 12:13:13 +0100114 ...
115
116
117 Optional property:
118 - description : Textual description of the uImage
119
120 Mandatory property:
121 - timestamp : Last image modification time being counted in seconds since
122 1970-01-01 00:00:00 - to be automatically calculated by mkimage tool.
123
124 Conditionally mandatory property:
125 - #address-cells : Number of 32bit cells required to represent entry and
126 load addresses supplied within sub-image nodes. May be omitted when no
127 entry or load addresses are used.
128
Alexandru Gagniuc5638c5f2020-12-15 13:15:43 -0600129 Mandatory nodes:
Marian Balakowicz18710b82008-03-12 12:13:13 +0100130 - images : This node contains a set of sub-nodes, each of them representing
131 single component sub-image (like kernel, ramdisk, etc.). At least one
132 sub-image is required.
Marian Balakowicz18710b82008-03-12 12:13:13 +0100133 - configurations : Contains a set of available configuration nodes and
134 defines a default configuration.
135
136
1374) '/images' node
138-----------------
139
140This node is a container node for component sub-image nodes. Each sub-node of
141the '/images' node should have the following layout:
142
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000143 o image-1
Marian Balakowicz18710b82008-03-12 12:13:13 +0100144 |- description = "component sub-image description"
145 |- data = /incbin/("path/to/data/file.bin")
146 |- type = "sub-image type name"
147 |- arch = "ARCH name"
148 |- os = "OS name"
149 |- compression = "compression name"
150 |- load = <00000000>
151 |- entry = <00000000>
152 |
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000153 o hash-1 {...}
154 o hash-2 {...}
Marian Balakowicz18710b82008-03-12 12:13:13 +0100155 ...
156
157 Mandatory properties:
158 - description : Textual description of the component sub-image
159 - type : Name of component sub-image type, supported types are:
Tom Rini96496f82017-07-18 14:14:19 -0400160 "standalone", "kernel", "kernel_noload", "ramdisk", "firmware", "script",
161 "filesystem", "flat_dt" and others (see uimage_type in common/image.c).
Marian Balakowicz18710b82008-03-12 12:13:13 +0100162 - data : Path to the external file which contains this node's binary data.
163 - compression : Compression used by included data. Supported compressions
164 are "gzip" and "bzip2". If no compression is used compression property
Simon Goldschmidt9fded7b2018-07-30 12:53:18 +0200165 should be set to "none". If the data is compressed but it should not be
166 uncompressed by U-Boot (e.g. compressed ramdisk), this should also be set
167 to "none".
Marian Balakowicz18710b82008-03-12 12:13:13 +0100168
169 Conditionally mandatory property:
Alexandru Gagniuc5638c5f2020-12-15 13:15:43 -0600170 - os : OS name, mandatory for types "kernel". Valid OS names are:
171 "openbsd", "netbsd", "freebsd", "4_4bsd", "linux", "svr4", "esix",
Guilherme Maciel Ferreira5e398312015-01-15 02:37:33 -0200172 "solaris", "irix", "sco", "dell", "ncr", "lynxos", "vxworks", "psos", "qnx",
Sean Anderson075757d2020-08-07 13:13:31 -0400173 "u-boot", "rtems", "unity", "integrity".
Marian Balakowicz18710b82008-03-12 12:13:13 +0100174 - arch : Architecture name, mandatory for types: "standalone", "kernel",
175 "firmware", "ramdisk" and "fdt". Valid architecture names are: "alpha",
176 "arm", "i386", "ia64", "mips", "mips64", "ppc", "s390", "sh", "sparc",
Simon Glass750d66c2014-10-19 21:11:23 -0600177 "sparc64", "m68k", "microblaze", "nios2", "blackfin", "avr32", "st200",
178 "sandbox".
Marian Balakowicz18710b82008-03-12 12:13:13 +0100179 - entry : entry point address, address size is determined by
Alexandru Gagniuc5638c5f2020-12-15 13:15:43 -0600180 '#address-cells' property of the root node.
181 Mandatory for types: "firmware", and "kernel".
Marian Balakowicz18710b82008-03-12 12:13:13 +0100182 - load : load address, address size is determined by '#address-cells'
Alexandru Gagniuc5638c5f2020-12-15 13:15:43 -0600183 property of the root node.
184 Mandatory for types: "firmware", and "kernel".
185 - compatible : compatible method for loading image.
186 Mandatory for types: "fpga", and images that do not specify a load address.
Oleksandr Suvorov17773572022-07-22 17:16:13 +0300187 Supported compatible methods:
188 "u-boot,fpga-legacy" - the generic fpga loading routine.
189 "u-boot,zynqmp-fpga-ddrauth" - signed non-encrypted FPGA bitstream for
190 Xilinx Zynq UltraScale+ (ZymqMP) device.
Adrian Fiergolski0d6bb432022-07-22 17:16:14 +0300191 "u-boot,zynqmp-fpga-enc" - encrypted FPGA bitstream for Xilinx Zynq
192 UltraScale+ (ZynqMP) device.
Simon Glasse3f81ae2022-10-20 18:23:03 -0600193 - phase : U-Boot phase for which the image is intended.
194 "spl" - image is an SPL image
195 "u-boot" - image is a U-Boot image
Marian Balakowicz18710b82008-03-12 12:13:13 +0100196
197 Optional nodes:
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000198 - hash-1 : Each hash sub-node represents separate hash or checksum
Marian Balakowicz18710b82008-03-12 12:13:13 +0100199 calculated for node's data according to specified algorithm.
200
201
2025) Hash nodes
203-------------
204
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000205o hash-1
Marian Balakowicz18710b82008-03-12 12:13:13 +0100206 |- algo = "hash or checksum algorithm name"
207 |- value = [hash or checksum value]
208
209 Mandatory properties:
210 - algo : Algorithm name, supported are "crc32", "md5" and "sha1".
211 - value : Actual checksum or hash value, correspondingly 4, 16 or 20 bytes
212 long.
213
214
2156) '/configurations' node
216-------------------------
217
Alexandru Gagniuc5638c5f2020-12-15 13:15:43 -0600218The 'configurations' node creates convenient, labeled boot configurations,
219which combine together kernel images with their ramdisks and fdt blobs.
Marian Balakowicz18710b82008-03-12 12:13:13 +0100220
221The 'configurations' node has has the following structure:
222
223o configurations
224 |- default = "default configuration sub-node unit name"
225 |
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000226 o config-1 {...}
227 o config-2 {...}
Marian Balakowicz18710b82008-03-12 12:13:13 +0100228 ...
229
230
231 Optional property:
232 - default : Selects one of the configuration sub-nodes as a default
233 configuration.
234
235 Mandatory nodes:
236 - configuration-sub-node-unit-name : At least one of the configuration
237 sub-nodes is required.
238
239
2407) Configuration nodes
241----------------------
242
243Each configuration has the following structure:
244
Andre Przywara9fdfb1f2017-12-04 02:05:07 +0000245o config-1
Marian Balakowicz18710b82008-03-12 12:13:13 +0100246 |- description = "configuration description"
247 |- kernel = "kernel sub-node unit name"
Pantelis Antonioub2256522017-09-04 23:12:17 +0300248 |- fdt = "fdt sub-node unit-name" [, "fdt overlay sub-node unit-name", ...]
Karl Apsite8f0537d2015-05-21 09:52:47 -0400249 |- loadables = "loadables sub-node unit-name"
Julius Werner4e823522019-07-24 19:37:56 -0700250 |- compatible = "vendor,board-style device tree compatible string"
Marian Balakowicz18710b82008-03-12 12:13:13 +0100251
252
253 Mandatory properties:
254 - description : Textual configuration description.
Alexandru Gagniuc5638c5f2020-12-15 13:15:43 -0600255 - kernel or firmware: Unit name of the corresponding kernel or firmware
256 (u-boot, op-tee, etc) image. If both "kernel" and "firmware" are specified,
257 control is passed to the firmware image.
Marian Balakowicz18710b82008-03-12 12:13:13 +0100258
259 Optional properties:
Marian Balakowicz18710b82008-03-12 12:13:13 +0100260 - fdt : Unit name of the corresponding fdt blob (component image node of a
Pantelis Antonioub2256522017-09-04 23:12:17 +0300261 "fdt type"). Additional fdt overlay nodes can be supplied which signify
262 that the resulting device tree blob is generated by the first base fdt
263 blob with all subsequent overlays applied.
Michal Simek0a130b12016-05-17 13:58:44 +0200264 - fpga : Unit name of the corresponding fpga bitstream blob
265 (component image node of a "fpga type").
Karl Apsite8f0537d2015-05-21 09:52:47 -0400266 - loadables : Unit name containing a list of additional binaries to be
267 loaded at their given locations. "loadables" is a comma-separated list
Andrew F. Davis28b28f72016-11-29 16:33:20 -0600268 of strings. U-Boot will load each binary at its given start-address and
Thomas Hebbfd37f242019-11-13 18:18:03 -0800269 may optionally invoke additional post-processing steps on this binary based
Andrew F. Davis28b28f72016-11-29 16:33:20 -0600270 on its component image node type.
Julius Werner4e823522019-07-24 19:37:56 -0700271 - compatible : The root compatible string of the U-Boot device tree that
272 this configuration shall automatically match when CONFIG_FIT_BEST_MATCH is
273 enabled. If this property is not provided, the compatible string will be
274 extracted from the fdt blob instead. This is only possible if the fdt is
275 not compressed, so images with compressed fdts that want to use compatible
276 string matching must always provide this property.
Marian Balakowicz18710b82008-03-12 12:13:13 +0100277
278The FDT blob is required to properly boot FDT based kernel, so the minimal
279configuration for 2.6 FDT kernel is (kernel, fdt) pair.
280
281Older, 2.4 kernel and 2.6 non-FDT kernel do not use FDT blob, in such cases
282'struct bd_info' must be passed instead of FDT blob, thus fdt property *must
283not* be specified in a configuration node.
284
285
Simon Glassafd728c2016-02-22 22:55:53 -07002868) External data
287----------------
288
289The above format shows a 'data' property which holds the data for each image.
290It is also possible for this data to reside outside the FIT itself. This
291allows the FIT to be quite small, so that it can be loaded and scanned
292without loading a large amount of data. Then when an image is needed it can
293be loaded from an external source.
294
295In this case the 'data' property is omitted. Instead you can use:
296
297 - data-offset : offset of the data in a separate image store. The image
298 store is placed immediately after the last byte of the device tree binary,
299 aligned to a 4-byte boundary.
300 - data-size : size of the data in bytes
301
Teddy Reeda8457622016-06-09 19:38:02 -0700302The 'data-offset' property can be substituted with 'data-position', which
303defines an absolute position or address as the offset. This is helpful when
Peng Fan8876c7e2017-12-05 13:20:59 +0800304booting U-Boot proper before performing relocation. Pass '-p [offset]' to
305mkimage to enable 'data-position'.
Simon Glassafd728c2016-02-22 22:55:53 -0700306
York Sunadf99fa2017-08-15 11:14:44 -0700307Normal kernel FIT image has data embedded within FIT structure. U-Boot image
308for SPL boot has external data. Existence of 'data-offset' can be used to
309identify which format is used.
310
Kever Yang8e238b52020-03-30 11:56:24 +0800311For FIT image with external data, it would be better to align each blob of data
312to block(512 byte) for block device, so that we don't need to do the copy when
313read the image data in SPL. Pass '-B 0x200' to mkimage to align the FIT
314structure and data to 512 byte, other values available for other align size.
315
Simon Glassafd728c2016-02-22 22:55:53 -07003169) Examples
Marian Balakowicz18710b82008-03-12 12:13:13 +0100317-----------
318
Bartlomiej Sieka739d2d72008-03-20 23:10:19 +0100319Please see doc/uImage.FIT/*.its for actual image source files.