blob: 2ebac517ce6b81f96f45e265c40ded2eea748d84 [file] [log] [blame]
Simon Glass5a5da7c2018-07-17 13:25:37 -06001Binman Entry Documentation
2===========================
3
4This file describes the entry types supported by binman. These entry types can
5be placed in an image one by one to build up a final firmware image. It is
6fairly easy to create new entry types. Just add a new file to the 'etype'
7directory. You can use the existing entries as examples.
8
9Note that some entries are subclasses of others, using and extending their
10features to produce new behaviours.
11
12
13
Simon Glass96d340e2021-03-18 20:25:16 +130014Entry: atf-bl31: ARM Trusted Firmware (ATF) BL31 blob
15-----------------------------------------------------
Simon Glassdc2f81a2020-09-01 05:13:58 -060016
17Properties / Entry arguments:
18 - atf-bl31-path: Filename of file to read into entry. This is typically
19 called bl31.bin or bl31.elf
20
21This entry holds the run-time firmware, typically started by U-Boot SPL.
22See the U-Boot README for your architecture or board for how to use it. See
23https://github.com/ARM-software/arm-trusted-firmware for more information
24about ATF.
25
26
27
Simon Glass96d340e2021-03-18 20:25:16 +130028Entry: blob: Arbitrary binary blob
29----------------------------------
Simon Glass5a5da7c2018-07-17 13:25:37 -060030
31Note: This should not be used by itself. It is normally used as a parent
32class by other entry types.
33
34Properties / Entry arguments:
35 - filename: Filename of file to read into entry
Simon Glass83d73c22018-09-14 04:57:26 -060036 - compress: Compression algorithm to use:
37 none: No compression
38 lz4: Use lz4 compression (via 'lz4' command-line utility)
Simon Glass5a5da7c2018-07-17 13:25:37 -060039
40This entry reads data from a file and places it in the entry. The
41default filename is often specified specified by the subclass. See for
Simon Glassadc59ea2021-03-18 20:24:54 +130042example the 'u-boot' entry which provides the filename 'u-boot.bin'.
Simon Glass5a5da7c2018-07-17 13:25:37 -060043
Simon Glass83d73c22018-09-14 04:57:26 -060044If compression is enabled, an extra 'uncomp-size' property is written to
45the node (if enabled with -u) which provides the uncompressed size of the
46data.
47
Simon Glass5a5da7c2018-07-17 13:25:37 -060048
49
Simon Glass6ed45ba2018-09-14 04:57:24 -060050Entry: blob-dtb: A blob that holds a device tree
51------------------------------------------------
52
53This is a blob containing a device tree. The contents of the blob are
54obtained from the list of available device-tree files, managed by the
55'state' module.
56
Simon Glass5a5da7c2018-07-17 13:25:37 -060057
58
Simon Glass96d340e2021-03-18 20:25:16 +130059Entry: blob-ext: Externally built binary blob
60---------------------------------------------
Simon Glassce867ad2020-07-09 18:39:36 -060061
62Note: This should not be used by itself. It is normally used as a parent
63class by other entry types.
64
Simon Glass4f9f1052020-07-09 18:39:38 -060065If the file providing this blob is missing, binman can optionally ignore it
66and produce a broken image with a warning.
67
Simon Glassce867ad2020-07-09 18:39:36 -060068See 'blob' for Properties / Entry arguments.
69
70
71
Simon Glassec127af2018-07-17 13:25:39 -060072Entry: blob-named-by-arg: A blob entry which gets its filename property from its subclass
73-----------------------------------------------------------------------------------------
74
75Properties / Entry arguments:
76 - <xxx>-path: Filename containing the contents of this entry (optional,
Simon Glass3decfa32020-09-01 05:13:54 -060077 defaults to None)
Simon Glassec127af2018-07-17 13:25:39 -060078
79where <xxx> is the blob_fname argument to the constructor.
80
81This entry cannot be used directly. Instead, it is used as a parent class
82for another entry, which defined blob_fname. This parameter is used to
83set the entry-arg or property containing the filename. The entry-arg or
84property is in turn used to set the actual filename.
85
86See cros_ec_rw for an example of this.
87
88
89
Simon Glass06684922021-03-18 20:25:07 +130090Entry: blob-phase: Section that holds a phase binary
91----------------------------------------------------
92
93This is a base class that should not normally be used directly. It is used
94when converting a 'u-boot' entry automatically into a 'u-boot-expanded'
95entry; similarly for SPL.
96
97
98
Simon Glass96d340e2021-03-18 20:25:16 +130099Entry: cbfs: Coreboot Filesystem (CBFS)
100---------------------------------------
Simon Glassac62fba2019-07-08 13:18:53 -0600101
102A CBFS provides a way to group files into a group. It has a simple directory
103structure and allows the position of individual files to be set, since it is
104designed to support execute-in-place in an x86 SPI-flash device. Where XIP
105is not used, it supports compression and storing ELF files.
106
107CBFS is used by coreboot as its way of orgnanising SPI-flash contents.
108
Simon Glass6bc43092021-03-18 20:25:15 +1300109The contents of the CBFS are defined by subnodes of the cbfs entry, e.g.::
Simon Glassac62fba2019-07-08 13:18:53 -0600110
111 cbfs {
112 size = <0x100000>;
113 u-boot {
114 cbfs-type = "raw";
115 };
116 u-boot-dtb {
117 cbfs-type = "raw";
118 };
119 };
120
121This creates a CBFS 1MB in size two files in it: u-boot.bin and u-boot.dtb.
122Note that the size is required since binman does not support calculating it.
123The contents of each entry is just what binman would normally provide if it
124were not a CBFS node. A blob type can be used to import arbitrary files as
Simon Glass6bc43092021-03-18 20:25:15 +1300125with the second subnode below::
Simon Glassac62fba2019-07-08 13:18:53 -0600126
127 cbfs {
128 size = <0x100000>;
129 u-boot {
130 cbfs-name = "BOOT";
131 cbfs-type = "raw";
132 };
133
134 dtb {
135 type = "blob";
136 filename = "u-boot.dtb";
137 cbfs-type = "raw";
138 cbfs-compress = "lz4";
Simon Glasse073d4e2019-07-08 13:18:56 -0600139 cbfs-offset = <0x100000>;
Simon Glassac62fba2019-07-08 13:18:53 -0600140 };
141 };
142
143This creates a CBFS 1MB in size with u-boot.bin (named "BOOT") and
144u-boot.dtb (named "dtb") and compressed with the lz4 algorithm.
145
146
147Properties supported in the top-level CBFS node:
148
149cbfs-arch:
150 Defaults to "x86", but you can specify the architecture if needed.
151
152
153Properties supported in the CBFS entry subnodes:
154
155cbfs-name:
156 This is the name of the file created in CBFS. It defaults to the entry
157 name (which is the node name), but you can override it with this
158 property.
159
160cbfs-type:
161 This is the CBFS file type. The following are supported:
162
163 raw:
164 This is a 'raw' file, although compression is supported. It can be
165 used to store any file in CBFS.
166
167 stage:
168 This is an ELF file that has been loaded (i.e. mapped to memory), so
169 appears in the CBFS as a flat binary. The input file must be an ELF
170 image, for example this puts "u-boot" (the ELF image) into a 'stage'
Simon Glass6bc43092021-03-18 20:25:15 +1300171 entry::
Simon Glassac62fba2019-07-08 13:18:53 -0600172
173 cbfs {
174 size = <0x100000>;
175 u-boot-elf {
176 cbfs-name = "BOOT";
177 cbfs-type = "stage";
178 };
179 };
180
Simon Glass6bc43092021-03-18 20:25:15 +1300181 You can use your own ELF file with something like::
Simon Glassac62fba2019-07-08 13:18:53 -0600182
183 cbfs {
184 size = <0x100000>;
185 something {
186 type = "blob";
187 filename = "cbfs-stage.elf";
188 cbfs-type = "stage";
189 };
190 };
191
192 As mentioned, the file is converted to a flat binary, so it is
193 equivalent to adding "u-boot.bin", for example, but with the load and
194 start addresses specified by the ELF. At present there is no option
195 to add a flat binary with a load/start address, similar to the
196 'add-flat-binary' option in cbfstool.
197
Simon Glasse073d4e2019-07-08 13:18:56 -0600198cbfs-offset:
199 This is the offset of the file's data within the CBFS. It is used to
200 specify where the file should be placed in cases where a fixed position
201 is needed. Typical uses are for code which is not relocatable and must
202 execute in-place from a particular address. This works because SPI flash
203 is generally mapped into memory on x86 devices. The file header is
204 placed before this offset so that the data start lines up exactly with
205 the chosen offset. If this property is not provided, then the file is
206 placed in the next available spot.
Simon Glassac62fba2019-07-08 13:18:53 -0600207
208The current implementation supports only a subset of CBFS features. It does
209not support other file types (e.g. payload), adding multiple files (like the
210'files' entry with a pattern supported by binman), putting files at a
211particular offset in the CBFS and a few other things.
212
213Of course binman can create images containing multiple CBFSs, simply by
Simon Glass6bc43092021-03-18 20:25:15 +1300214defining these in the binman config::
Simon Glassac62fba2019-07-08 13:18:53 -0600215
216
217 binman {
218 size = <0x800000>;
219 cbfs {
220 offset = <0x100000>;
221 size = <0x100000>;
222 u-boot {
223 cbfs-type = "raw";
224 };
225 u-boot-dtb {
226 cbfs-type = "raw";
227 };
228 };
229
230 cbfs2 {
231 offset = <0x700000>;
232 size = <0x100000>;
233 u-boot {
234 cbfs-type = "raw";
235 };
236 u-boot-dtb {
237 cbfs-type = "raw";
238 };
239 image {
240 type = "blob";
241 filename = "image.jpg";
242 };
243 };
244 };
245
246This creates an 8MB image with two CBFSs, one at offset 1MB, one at 7MB,
247both of size 1MB.
248
249
250
Simon Glass189f2912021-03-21 18:24:31 +1300251Entry: collection: An entry which contains a collection of other entries
252------------------------------------------------------------------------
253
254Properties / Entry arguments:
255 - content: List of phandles to entries to include
256
257This allows reusing the contents of other entries. The contents of the
258listed entries are combined to form this entry. This serves as a useful
259base class for entry types which need to process data from elsewhere in
260the image, not necessarily child entries.
261
262
263
Simon Glassec127af2018-07-17 13:25:39 -0600264Entry: cros-ec-rw: A blob entry which contains a Chromium OS read-write EC image
265--------------------------------------------------------------------------------
266
267Properties / Entry arguments:
268 - cros-ec-rw-path: Filename containing the EC image
269
270This entry holds a Chromium OS EC (embedded controller) image, for use in
271updating the EC on startup via software sync.
272
273
274
Simon Glass086cec92019-07-08 14:25:27 -0600275Entry: fdtmap: An entry which contains an FDT map
276-------------------------------------------------
277
278Properties / Entry arguments:
279 None
280
281An FDT map is just a header followed by an FDT containing a list of all the
Simon Glass12bb1a92019-07-20 12:23:51 -0600282entries in the image. The root node corresponds to the image node in the
283original FDT, and an image-name property indicates the image name in that
284original tree.
Simon Glass086cec92019-07-08 14:25:27 -0600285
286The header is the string _FDTMAP_ followed by 8 unused bytes.
287
288When used, this entry will be populated with an FDT map which reflects the
289entries in the current image. Hierarchy is preserved, and all offsets and
290sizes are included.
291
292Note that the -u option must be provided to ensure that binman updates the
293FDT with the position of each entry.
294
Simon Glass6bc43092021-03-18 20:25:15 +1300295Example output for a simple image with U-Boot and an FDT map::
Simon Glass086cec92019-07-08 14:25:27 -0600296
Simon Glass6bc43092021-03-18 20:25:15 +1300297 / {
298 image-name = "binman";
299 size = <0x00000112>;
Simon Glass086cec92019-07-08 14:25:27 -0600300 image-pos = <0x00000000>;
301 offset = <0x00000000>;
Simon Glass6bc43092021-03-18 20:25:15 +1300302 u-boot {
303 size = <0x00000004>;
304 image-pos = <0x00000000>;
305 offset = <0x00000000>;
306 };
307 fdtmap {
308 size = <0x0000010e>;
309 image-pos = <0x00000004>;
310 offset = <0x00000004>;
311 };
Simon Glass086cec92019-07-08 14:25:27 -0600312 };
Simon Glass086cec92019-07-08 14:25:27 -0600313
Simon Glass12bb1a92019-07-20 12:23:51 -0600314If allow-repack is used then 'orig-offset' and 'orig-size' properties are
315added as necessary. See the binman README.
316
Simon Glass943bf782021-11-23 21:09:50 -0700317When extracting files, an alternative 'fdt' format is available for fdtmaps.
318Use `binman extract -F fdt ...` to use this. It will export a devicetree,
319without the fdtmap header, so it can be viewed with `fdtdump`.
320
Simon Glass086cec92019-07-08 14:25:27 -0600321
322
Simon Glass96d340e2021-03-18 20:25:16 +1300323Entry: files: A set of files arranged in a section
324--------------------------------------------------
Simon Glass0a98b282018-09-14 04:57:28 -0600325
326Properties / Entry arguments:
327 - pattern: Filename pattern to match the files to include
Simon Glass9248c8d2020-10-26 17:40:07 -0600328 - files-compress: Compression algorithm to use:
Simon Glass0a98b282018-09-14 04:57:28 -0600329 none: No compression
330 lz4: Use lz4 compression (via 'lz4' command-line utility)
Simon Glass4ce40772021-03-18 20:24:53 +1300331 - files-align: Align each file to the given alignment
Simon Glass0a98b282018-09-14 04:57:28 -0600332
333This entry reads a number of files and places each in a separate sub-entry
334within this entry. To access these you need to enable device-tree updates
335at run-time so you can obtain the file positions.
336
337
338
Simon Glass3af8e492018-07-17 13:25:40 -0600339Entry: fill: An entry which is filled to a particular byte value
340----------------------------------------------------------------
341
342Properties / Entry arguments:
343 - fill-byte: Byte to use to fill the entry
344
345Note that the size property must be set since otherwise this entry does not
346know how large it should be.
347
348You can often achieve the same effect using the pad-byte property of the
349overall image, in that the space between entries will then be padded with
350that byte. But this entry is sometimes useful for explicitly setting the
351byte value of a region.
352
353
354
Simon Glass96d340e2021-03-18 20:25:16 +1300355Entry: fit: Flat Image Tree (FIT)
356---------------------------------
Simon Glassfdc34362020-07-09 18:39:45 -0600357
358This calls mkimage to create a FIT (U-Boot Flat Image Tree) based on the
359input provided.
360
361Nodes for the FIT should be written out in the binman configuration just as
362they would be in a file passed to mkimage.
363
Simon Glass6bc43092021-03-18 20:25:15 +1300364For example, this creates an image containing a FIT with U-Boot SPL::
Simon Glassfdc34362020-07-09 18:39:45 -0600365
366 binman {
367 fit {
368 description = "Test FIT";
Simon Glass6cf99532020-09-01 05:13:59 -0600369 fit,fdt-list = "of-list";
Simon Glassfdc34362020-07-09 18:39:45 -0600370
371 images {
372 kernel@1 {
373 description = "SPL";
374 os = "u-boot";
375 type = "rkspi";
376 arch = "arm";
377 compression = "none";
378 load = <0>;
379 entry = <0>;
380
381 u-boot-spl {
382 };
383 };
384 };
385 };
386 };
387
Simon Glass6cf99532020-09-01 05:13:59 -0600388U-Boot supports creating fdt and config nodes automatically. To do this,
389pass an of-list property (e.g. -a of-list=file1 file2). This tells binman
390that you want to generates nodes for two files: file1.dtb and file2.dtb
391The fit,fdt-list property (see above) indicates that of-list should be used.
392If the property is missing you will get an error.
393
Simon Glass6bc43092021-03-18 20:25:15 +1300394Then add a 'generator node', a node with a name starting with '@'::
Simon Glass6cf99532020-09-01 05:13:59 -0600395
396 images {
397 @fdt-SEQ {
398 description = "fdt-NAME";
399 type = "flat_dt";
400 compression = "none";
401 };
402 };
403
404This tells binman to create nodes fdt-1 and fdt-2 for each of your two
405files. All the properties you specify will be included in the node. This
406node acts like a template to generate the nodes. The generator node itself
407does not appear in the output - it is replaced with what binman generates.
408
Simon Glass6bc43092021-03-18 20:25:15 +1300409You can create config nodes in a similar way::
Simon Glass6cf99532020-09-01 05:13:59 -0600410
411 configurations {
412 default = "@config-DEFAULT-SEQ";
413 @config-SEQ {
414 description = "NAME";
Samuel Holland68158d52020-10-21 21:12:14 -0500415 firmware = "atf";
416 loadables = "uboot";
Simon Glass6cf99532020-09-01 05:13:59 -0600417 fdt = "fdt-SEQ";
418 };
419 };
420
421This tells binman to create nodes config-1 and config-2, i.e. a config for
422each of your two files.
423
424Available substitutions for '@' nodes are:
425
Simon Glass6bc43092021-03-18 20:25:15 +1300426SEQ:
427 Sequence number of the generated fdt (1, 2, ...)
428NAME
429 Name of the dtb as provided (i.e. without adding '.dtb')
Simon Glass6cf99532020-09-01 05:13:59 -0600430
431Note that if no devicetree files are provided (with '-a of-list' as above)
432then no nodes will be generated.
433
Simon Glassc0f1ebe2020-09-06 10:39:08 -0600434The 'default' property, if present, will be automatically set to the name
435if of configuration whose devicetree matches the 'default-dt' entry
436argument, e.g. with '-a default-dt=sun50i-a64-pine64-lts'.
437
Simon Glass6bc43092021-03-18 20:25:15 +1300438Available substitutions for '@' property values are
Simon Glassf3243302020-10-26 17:39:59 -0600439
Simon Glass6bc43092021-03-18 20:25:15 +1300440DEFAULT-SEQ:
441 Sequence number of the default fdt,as provided by the 'default-dt' entry
442 argument
Simon Glass6cf99532020-09-01 05:13:59 -0600443
444Properties (in the 'fit' node itself):
Simon Glassfdc34362020-07-09 18:39:45 -0600445 fit,external-offset: Indicates that the contents of the FIT are external
446 and provides the external offset. This is passsed to mkimage via
447 the -E and -p flags.
448
449
450
451
Simon Glass11e36cc2018-07-17 13:25:38 -0600452Entry: fmap: An entry which contains an Fmap section
453----------------------------------------------------
454
455Properties / Entry arguments:
456 None
457
458FMAP is a simple format used by flashrom, an open-source utility for
459reading and writing the SPI flash, typically on x86 CPUs. The format
460provides flashrom with a list of areas, so it knows what it in the flash.
461It can then read or write just a single area, instead of the whole flash.
462
463The format is defined by the flashrom project, in the file lib/fmap.h -
464see www.flashrom.org/Flashrom for more information.
465
466When used, this entry will be populated with an FMAP which reflects the
467entries in the current image. Note that any hierarchy is squashed, since
Simon Glass17365752021-04-03 11:05:10 +1300468FMAP does not support this. Sections are represented as an area appearing
469before its contents, so that it is possible to reconstruct the hierarchy
470from the FMAP by using the offset information. This convention does not
471seem to be documented, but is used in Chromium OS.
472
473CBFS entries appear as a single entry, i.e. the sub-entries are ignored.
Simon Glass11e36cc2018-07-17 13:25:38 -0600474
475
476
Simon Glass0ef87aa2018-07-17 13:25:44 -0600477Entry: gbb: An entry which contains a Chromium OS Google Binary Block
478---------------------------------------------------------------------
479
480Properties / Entry arguments:
481 - hardware-id: Hardware ID to use for this build (a string)
482 - keydir: Directory containing the public keys to use
483 - bmpblk: Filename containing images used by recovery
484
485Chromium OS uses a GBB to store various pieces of information, in particular
486the root and recovery keys that are used to verify the boot process. Some
487more details are here:
488
489 https://www.chromium.org/chromium-os/firmware-porting-guide/2-concepts
490
491but note that the page dates from 2013 so is quite out of date. See
492README.chromium for how to obtain the required keys and tools.
493
494
495
Simon Glasscf228942019-07-08 14:25:28 -0600496Entry: image-header: An entry which contains a pointer to the FDT map
497---------------------------------------------------------------------
498
499Properties / Entry arguments:
500 location: Location of header ("start" or "end" of image). This is
501 optional. If omitted then the entry must have an offset property.
502
503This adds an 8-byte entry to the start or end of the image, pointing to the
504location of the FDT map. The format is a magic number followed by an offset
505from the start or end of the image, in twos-compliment format.
506
507This entry must be in the top-level part of the image.
508
509NOTE: If the location is at the start/end, you will probably need to specify
510sort-by-offset for the image, unless you actually put the image header
511first/last in the entry list.
512
513
514
Simon Glass96d340e2021-03-18 20:25:16 +1300515Entry: intel-cmc: Intel Chipset Micro Code (CMC) file
516-----------------------------------------------------
Simon Glass5a5da7c2018-07-17 13:25:37 -0600517
518Properties / Entry arguments:
519 - filename: Filename of file to read into entry
520
521This file contains microcode for some devices in a special format. An
522example filename is 'Microcode/C0_22211.BIN'.
523
524See README.x86 for information about x86 binary blobs.
525
526
527
528Entry: intel-descriptor: Intel flash descriptor block (4KB)
529-----------------------------------------------------------
530
531Properties / Entry arguments:
532 filename: Filename of file containing the descriptor. This is typically
533 a 4KB binary file, sometimes called 'descriptor.bin'
534
535This entry is placed at the start of flash and provides information about
536the SPI flash regions. In particular it provides the base address and
537size of the ME (Management Engine) region, allowing us to place the ME
538binary in the right place.
539
540With this entry in your image, the position of the 'intel-me' entry will be
541fixed in the image, which avoids you needed to specify an offset for that
542region. This is useful, because it is not possible to change the position
543of the ME region without updating the descriptor.
544
545See README.x86 for information about x86 binary blobs.
546
547
548
Simon Glass5af12072019-08-24 07:22:50 -0600549Entry: intel-fit: Intel Firmware Image Table (FIT)
550--------------------------------------------------
551
552This entry contains a dummy FIT as required by recent Intel CPUs. The FIT
553contains information about the firmware and microcode available in the
554image.
555
556At present binman only supports a basic FIT with no microcode.
557
558
559
560Entry: intel-fit-ptr: Intel Firmware Image Table (FIT) pointer
561--------------------------------------------------------------
562
563This entry contains a pointer to the FIT. It is required to be at address
5640xffffffc0 in the image.
565
566
567
Simon Glass96d340e2021-03-18 20:25:16 +1300568Entry: intel-fsp: Intel Firmware Support Package (FSP) file
569-----------------------------------------------------------
Simon Glass5a5da7c2018-07-17 13:25:37 -0600570
571Properties / Entry arguments:
572 - filename: Filename of file to read into entry
573
574This file contains binary blobs which are used on some devices to make the
575platform work. U-Boot executes this code since it is not possible to set up
576the hardware using U-Boot open-source code. Documentation is typically not
577available in sufficient detail to allow this.
578
579An example filename is 'FSP/QUEENSBAY_FSP_GOLD_001_20-DECEMBER-2013.fd'
580
581See README.x86 for information about x86 binary blobs.
582
583
584
Simon Glass96d340e2021-03-18 20:25:16 +1300585Entry: intel-fsp-m: Intel Firmware Support Package (FSP) memory init
586--------------------------------------------------------------------
Simon Glassea0fff92019-08-24 07:23:07 -0600587
588Properties / Entry arguments:
589 - filename: Filename of file to read into entry
590
591This file contains a binary blob which is used on some devices to set up
592SDRAM. U-Boot executes this code in SPL so that it can make full use of
593memory. Documentation is typically not available in sufficient detail to
594allow U-Boot do this this itself..
595
596An example filename is 'fsp_m.bin'
597
598See README.x86 for information about x86 binary blobs.
599
600
601
Simon Glass96d340e2021-03-18 20:25:16 +1300602Entry: intel-fsp-s: Intel Firmware Support Package (FSP) silicon init
603---------------------------------------------------------------------
Simon Glassbc6a88f2019-10-20 21:31:35 -0600604
605Properties / Entry arguments:
606 - filename: Filename of file to read into entry
607
608This file contains a binary blob which is used on some devices to set up
609the silicon. U-Boot executes this code in U-Boot proper after SDRAM is
610running, so that it can make full use of memory. Documentation is typically
611not available in sufficient detail to allow U-Boot do this this itself.
612
613An example filename is 'fsp_s.bin'
614
615See README.x86 for information about x86 binary blobs.
616
617
618
Simon Glass96d340e2021-03-18 20:25:16 +1300619Entry: intel-fsp-t: Intel Firmware Support Package (FSP) temp ram init
620----------------------------------------------------------------------
Simon Glass998d1482019-10-20 21:31:36 -0600621
622Properties / Entry arguments:
623 - filename: Filename of file to read into entry
624
625This file contains a binary blob which is used on some devices to set up
626temporary memory (Cache-as-RAM or CAR). U-Boot executes this code in TPL so
627that it has access to memory for its stack and initial storage.
628
629An example filename is 'fsp_t.bin'
630
631See README.x86 for information about x86 binary blobs.
632
633
634
Simon Glass96d340e2021-03-18 20:25:16 +1300635Entry: intel-ifwi: Intel Integrated Firmware Image (IFWI) file
636--------------------------------------------------------------
Simon Glasse073d4e2019-07-08 13:18:56 -0600637
638Properties / Entry arguments:
639 - filename: Filename of file to read into entry. This is either the
640 IFWI file itself, or a file that can be converted into one using a
641 tool
642 - convert-fit: If present this indicates that the ifwitool should be
643 used to convert the provided file into a IFWI.
644
645This file contains code and data used by the SoC that is required to make
646it work. It includes U-Boot TPL, microcode, things related to the CSE
647(Converged Security Engine, the microcontroller that loads all the firmware)
648and other items beyond the wit of man.
649
650A typical filename is 'ifwi.bin' for an IFWI file, or 'fitimage.bin' for a
651file that will be converted to an IFWI.
652
653The position of this entry is generally set by the intel-descriptor entry.
654
655The contents of the IFWI are specified by the subnodes of the IFWI node.
656Each subnode describes an entry which is placed into the IFWFI with a given
657sub-partition (and optional entry name).
658
Simon Glass3da9ce82019-08-24 07:22:47 -0600659Properties for subnodes:
Simon Glass6bc43092021-03-18 20:25:15 +1300660 - ifwi-subpart: sub-parition to put this entry into, e.g. "IBBP"
661 - ifwi-entry: entry name t use, e.g. "IBBL"
662 - ifwi-replace: if present, indicates that the item should be replaced
663 in the IFWI. Otherwise it is added.
Simon Glass3da9ce82019-08-24 07:22:47 -0600664
Simon Glasse073d4e2019-07-08 13:18:56 -0600665See README.x86 for information about x86 binary blobs.
666
667
668
Simon Glass96d340e2021-03-18 20:25:16 +1300669Entry: intel-me: Intel Management Engine (ME) file
670--------------------------------------------------
Simon Glass5a5da7c2018-07-17 13:25:37 -0600671
672Properties / Entry arguments:
673 - filename: Filename of file to read into entry
674
675This file contains code used by the SoC that is required to make it work.
676The Management Engine is like a background task that runs things that are
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800677not clearly documented, but may include keyboard, display and network
Simon Glass5a5da7c2018-07-17 13:25:37 -0600678access. For platform that use ME it is not possible to disable it. U-Boot
679does not directly execute code in the ME binary.
680
681A typical filename is 'me.bin'.
682
Simon Glassfa1c9372019-07-08 13:18:38 -0600683The position of this entry is generally set by the intel-descriptor entry.
684
Simon Glass5a5da7c2018-07-17 13:25:37 -0600685See README.x86 for information about x86 binary blobs.
686
687
688
Simon Glass96d340e2021-03-18 20:25:16 +1300689Entry: intel-mrc: Intel Memory Reference Code (MRC) file
690--------------------------------------------------------
Simon Glass5a5da7c2018-07-17 13:25:37 -0600691
692Properties / Entry arguments:
693 - filename: Filename of file to read into entry
694
695This file contains code for setting up the SDRAM on some Intel systems. This
696is executed by U-Boot when needed early during startup. A typical filename
697is 'mrc.bin'.
698
699See README.x86 for information about x86 binary blobs.
700
701
702
Simon Glass96d340e2021-03-18 20:25:16 +1300703Entry: intel-refcode: Intel Reference Code file
704-----------------------------------------------
Simon Glass5385f5a2019-05-17 22:00:53 -0600705
706Properties / Entry arguments:
707 - filename: Filename of file to read into entry
708
709This file contains code for setting up the platform on some Intel systems.
710This is executed by U-Boot when needed early during startup. A typical
711filename is 'refcode.bin'.
712
713See README.x86 for information about x86 binary blobs.
714
715
716
Simon Glass96d340e2021-03-18 20:25:16 +1300717Entry: intel-vbt: Intel Video BIOS Table (VBT) file
718---------------------------------------------------
Simon Glass5a5da7c2018-07-17 13:25:37 -0600719
720Properties / Entry arguments:
721 - filename: Filename of file to read into entry
722
723This file contains code that sets up the integrated graphics subsystem on
724some Intel SoCs. U-Boot executes this when the display is started up.
725
726See README.x86 for information about Intel binary blobs.
727
728
729
Simon Glass96d340e2021-03-18 20:25:16 +1300730Entry: intel-vga: Intel Video Graphics Adaptor (VGA) file
731---------------------------------------------------------
Simon Glass5a5da7c2018-07-17 13:25:37 -0600732
733Properties / Entry arguments:
734 - filename: Filename of file to read into entry
735
736This file contains code that sets up the integrated graphics subsystem on
737some Intel SoCs. U-Boot executes this when the display is started up.
738
739This is similar to the VBT file but in a different format.
740
741See README.x86 for information about Intel binary blobs.
742
743
744
Simon Glass96d340e2021-03-18 20:25:16 +1300745Entry: mkimage: Binary produced by mkimage
746------------------------------------------
Simon Glass0dc706f2020-07-09 18:39:31 -0600747
748Properties / Entry arguments:
749 - datafile: Filename for -d argument
750 - args: Other arguments to pass
751
752The data passed to mkimage is collected from subnodes of the mkimage node,
Simon Glass6bc43092021-03-18 20:25:15 +1300753e.g.::
Simon Glass0dc706f2020-07-09 18:39:31 -0600754
755 mkimage {
756 args = "-n test -T imximage";
757
758 u-boot-spl {
759 };
760 };
761
762This calls mkimage to create an imximage with u-boot-spl.bin as the input
763file. The output from mkimage then becomes part of the image produced by
764binman.
765
766
767
Bin Meng4c4d6072021-05-10 20:23:33 +0800768Entry: opensbi: RISC-V OpenSBI fw_dynamic blob
769----------------------------------------------
770
771Properties / Entry arguments:
772 - opensbi-path: Filename of file to read into entry. This is typically
773 called fw_dynamic.bin
774
775This entry holds the run-time firmware, typically started by U-Boot SPL.
776See the U-Boot README for your architecture or board for how to use it. See
777https://github.com/riscv/opensbi for more information about OpenSBI.
778
779
780
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530781Entry: powerpc-mpc85xx-bootpg-resetvec: PowerPC mpc85xx bootpg + resetvec code for U-Boot
782-----------------------------------------------------------------------------------------
783
784Properties / Entry arguments:
785 - filename: Filename of u-boot-br.bin (default 'u-boot-br.bin')
786
Thomas Hebb32f2ca22019-11-13 18:18:03 -0800787This entry is valid for PowerPC mpc85xx cpus. This entry holds
Jagdish Gediya9d368f32018-09-03 21:35:08 +0530788'bootpg + resetvec' code for PowerPC mpc85xx CPUs which needs to be
789placed at offset 'RESET_VECTOR_ADDRESS - 0xffc'.
790
791
792
Simon Glass96d340e2021-03-18 20:25:16 +1300793Entry: scp: System Control Processor (SCP) firmware blob
794--------------------------------------------------------
Simon Glassf3243302020-10-26 17:39:59 -0600795
796Properties / Entry arguments:
797 - scp-path: Filename of file to read into the entry, typically scp.bin
798
799This entry holds firmware for an external platform-specific coprocessor.
800
801
802
Simon Glass5a5da7c2018-07-17 13:25:37 -0600803Entry: section: Entry that contains other entries
804-------------------------------------------------
805
Simon Glass3f495f12021-11-23 11:03:49 -0700806A section is an entry which can contain other entries, thus allowing
807hierarchical images to be created. See 'Sections and hierarchical images'
808in the binman README for more information.
Simon Glass6bc43092021-03-18 20:25:15 +1300809
Simon Glass3f495f12021-11-23 11:03:49 -0700810The base implementation simply joins the various entries together, using
811various rules about alignment, etc.
Simon Glass6bc43092021-03-18 20:25:15 +1300812
Simon Glass3f495f12021-11-23 11:03:49 -0700813Subclassing
814~~~~~~~~~~~
Simon Glass5a5da7c2018-07-17 13:25:37 -0600815
Simon Glass3f495f12021-11-23 11:03:49 -0700816This class can be subclassed to support other file formats which hold
817multiple entries, such as CBFS. To do this, override the following
818functions. The documentation here describes what your function should do.
819For example code, see etypes which subclass `Entry_section`, or `cbfs.py`
820for a more involved example::
Simon Glass3decfa32020-09-01 05:13:54 -0600821
Simon Glass3f495f12021-11-23 11:03:49 -0700822 $ grep -l \(Entry_section tools/binman/etype/*.py
823
824ReadNode()
825 Call `super().ReadNode()`, then read any special properties for the
826 section. Then call `self.ReadEntries()` to read the entries.
827
828 Binman calls this at the start when reading the image description.
829
830ReadEntries()
831 Read in the subnodes of the section. This may involve creating entries
832 of a particular etype automatically, as well as reading any special
833 properties in the entries. For each entry, entry.ReadNode() should be
834 called, to read the basic entry properties. The properties should be
835 added to `self._entries[]`, in the correct order, with a suitable name.
836
837 Binman calls this at the start when reading the image description.
838
839BuildSectionData(required)
840 Create the custom file format that you want and return it as bytes.
841 This likely sets up a file header, then loops through the entries,
842 adding them to the file. For each entry, call `entry.GetData()` to
843 obtain the data. If that returns None, and `required` is False, then
844 this method must give up and return None. But if `required` is True then
845 it should assume that all data is valid.
846
847 Binman calls this when packing the image, to find out the size of
848 everything. It is called again at the end when building the final image.
849
850SetImagePos(image_pos):
851 Call `super().SetImagePos(image_pos)`, then set the `image_pos` values
852 for each of the entries. This should use the custom file format to find
853 the `start offset` (and `image_pos`) of each entry. If the file format
854 uses compression in such a way that there is no offset available (other
855 than reading the whole file and decompressing it), then the offsets for
856 affected entries can remain unset (`None`). The size should also be set
857 if possible.
858
859 Binman calls this after the image has been packed, to update the
860 location that all the entries ended up at.
861
Simon Glass943bf782021-11-23 21:09:50 -0700862ReadChildData(child, decomp, alt_format):
Simon Glass3f495f12021-11-23 11:03:49 -0700863 The default version of this may be good enough, if you are able to
864 implement SetImagePos() correctly. But that is a bit of a bypass, so
865 you can override this method to read from your custom file format. It
866 should read the entire entry containing the custom file using
867 `super().ReadData(True)`, then parse the file to get the data for the
868 given child, then return that data.
869
870 If your file format supports compression, the `decomp` argument tells
871 you whether to return the compressed data (`decomp` is False) or to
872 uncompress it first, then return the uncompressed data (`decomp` is
873 True). This is used by the `binman extract -U` option.
874
Simon Glass943bf782021-11-23 21:09:50 -0700875 If your entry supports alternative formats, the alt_format provides the
876 alternative format that the user has selected. Your function should
877 return data in that format. This is used by the 'binman extract -l'
878 option.
879
Simon Glass3f495f12021-11-23 11:03:49 -0700880 Binman calls this when reading in an image, in order to populate all the
881 entries with the data from that image (`binman ls`).
882
883WriteChildData(child):
884 Binman calls this after `child.data` is updated, to inform the custom
885 file format about this, in case it needs to do updates.
886
887 The default version of this does nothing and probably needs to be
888 overridden for the 'binman replace' command to work. Your version should
889 use `child.data` to update the data for that child in the custom file
890 format.
891
892 Binman calls this when updating an image that has been read in and in
893 particular to update the data for a particular entry (`binman replace`)
894
895Properties / Entry arguments
896~~~~~~~~~~~~~~~~~~~~~~~~~~~~
897
898See :ref:`develop/package/binman:Image description format` for more
899information.
900
901align-default
902 Default alignment for this section, if no alignment is given in the
903 entry
904
905pad-byte
906 Pad byte to use when padding
907
908sort-by-offset
909 True if entries should be sorted by offset, False if they must be
910 in-order in the device tree description
911
912end-at-4gb
913 Used to build an x86 ROM which ends at 4GB (2^32)
914
915name-prefix
916 Adds a prefix to the name of every entry in the section when writing out
917 the map
918
919skip-at-start
920 Number of bytes before the first entry starts. These effectively adjust
921 the starting offset of entries. For example, if this is 16, then the
922 first entry would start at 16. An entry with offset = 20 would in fact
923 be written at offset 4 in the image file, since the first 16 bytes are
924 skipped when writing.
Simon Glass17365752021-04-03 11:05:10 +1300925
Simon Glass8beb11e2019-07-08 14:25:47 -0600926Since a section is also an entry, it inherits all the properies of entries
927too.
928
Simon Glass3f495f12021-11-23 11:03:49 -0700929Note that the `allow_missing` member controls whether this section permits
930external blobs to be missing their contents. The option will produce an
931image but of course it will not work. It is useful to make sure that
932Continuous Integration systems can build without the binaries being
933available. This is set by the `SetAllowMissing()` method, if
934`--allow-missing` is passed to binman.
Simon Glass5a5da7c2018-07-17 13:25:37 -0600935
936
937
938Entry: text: An entry which contains text
939-----------------------------------------
940
941The text can be provided either in the node itself or by a command-line
942argument. There is a level of indirection to allow multiple text strings
943and sharing of text.
944
945Properties / Entry arguments:
946 text-label: The value of this string indicates the property / entry-arg
947 that contains the string to place in the entry
948 <xxx> (actual name is the value of text-label): contains the string to
949 place in the entry.
Simon Glassaa88b502019-07-08 13:18:40 -0600950 <text>: The text to place in the entry (overrides the above mechanism).
951 This is useful when the text is constant.
Simon Glass5a5da7c2018-07-17 13:25:37 -0600952
Simon Glass6bc43092021-03-18 20:25:15 +1300953Example node::
Simon Glass5a5da7c2018-07-17 13:25:37 -0600954
955 text {
956 size = <50>;
957 text-label = "message";
958 };
959
960You can then use:
961
962 binman -amessage="this is my message"
963
964and binman will insert that string into the entry.
965
Simon Glass6bc43092021-03-18 20:25:15 +1300966It is also possible to put the string directly in the node::
Simon Glass5a5da7c2018-07-17 13:25:37 -0600967
968 text {
969 size = <8>;
970 text-label = "message";
971 message = "a message directly in the node"
972 };
973
Simon Glass6bc43092021-03-18 20:25:15 +1300974or just::
Simon Glassaa88b502019-07-08 13:18:40 -0600975
976 text {
977 size = <8>;
978 text = "some text directly in the node"
979 };
980
Simon Glass5a5da7c2018-07-17 13:25:37 -0600981The text is not itself nul-terminated. This can be achieved, if required,
982by setting the size of the entry to something larger than the text.
983
984
985
986Entry: u-boot: U-Boot flat binary
987---------------------------------
988
989Properties / Entry arguments:
990 - filename: Filename of u-boot.bin (default 'u-boot.bin')
991
992This is the U-Boot binary, containing relocation information to allow it
993to relocate itself at runtime. The binary typically includes a device tree
Simon Glass06684922021-03-18 20:25:07 +1300994blob at the end of it.
Simon Glass5a5da7c2018-07-17 13:25:37 -0600995
996U-Boot can access binman symbols at runtime. See:
997
998 'Access to binman entry offsets at run time (fdt)'
999
1000in the binman README for more information.
1001
Simon Glass06684922021-03-18 20:25:07 +13001002Note that this entry is automatically replaced with u-boot-expanded unless
Simon Glass3d433382021-03-21 18:24:30 +13001003--no-expanded is used or the node has a 'no-expanded' property.
Simon Glass06684922021-03-18 20:25:07 +13001004
Simon Glass5a5da7c2018-07-17 13:25:37 -06001005
1006
1007Entry: u-boot-dtb: U-Boot device tree
1008-------------------------------------
1009
1010Properties / Entry arguments:
1011 - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
1012
1013This is the U-Boot device tree, containing configuration information for
1014U-Boot. U-Boot needs this to know what devices are present and which drivers
1015to activate.
1016
Simon Glass6ed45ba2018-09-14 04:57:24 -06001017Note: This is mostly an internal entry type, used by others. This allows
1018binman to know which entries contain a device tree.
1019
Simon Glass5a5da7c2018-07-17 13:25:37 -06001020
1021
1022Entry: u-boot-dtb-with-ucode: A U-Boot device tree file, with the microcode removed
1023-----------------------------------------------------------------------------------
1024
1025Properties / Entry arguments:
1026 - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
1027
1028See Entry_u_boot_ucode for full details of the three entries involved in
1029this process. This entry provides the U-Boot device-tree file, which
1030contains the microcode. If the microcode is not being collated into one
1031place then the offset and size of the microcode is recorded by this entry,
Simon Glassadc59ea2021-03-18 20:24:54 +13001032for use by u-boot-with-ucode_ptr. If it is being collated, then this
Simon Glass5a5da7c2018-07-17 13:25:37 -06001033entry deletes the microcode from the device tree (to save space) and makes
Simon Glassadc59ea2021-03-18 20:24:54 +13001034it available to u-boot-ucode.
Simon Glass5a5da7c2018-07-17 13:25:37 -06001035
1036
1037
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001038Entry: u-boot-elf: U-Boot ELF image
1039-----------------------------------
1040
1041Properties / Entry arguments:
1042 - filename: Filename of u-boot (default 'u-boot')
1043
1044This is the U-Boot ELF image. It does not include a device tree but can be
1045relocated to any address for execution.
1046
1047
1048
Simon Glassf3243302020-10-26 17:39:59 -06001049Entry: u-boot-env: An entry which contains a U-Boot environment
1050---------------------------------------------------------------
1051
1052Properties / Entry arguments:
1053 - filename: File containing the environment text, with each line in the
1054 form var=value
1055
1056
1057
Simon Glass06684922021-03-18 20:25:07 +13001058Entry: u-boot-expanded: U-Boot flat binary broken out into its component parts
1059------------------------------------------------------------------------------
1060
1061This is a section containing the U-Boot binary and a devicetree. Using this
1062entry type automatically creates this section, with the following entries
1063in it:
1064
1065 u-boot-nodtb
1066 u-boot-dtb
1067
1068Having the devicetree separate allows binman to update it in the final
1069image, so that the entries positions are provided to the running U-Boot.
1070
1071
1072
Simon Glass5a5da7c2018-07-17 13:25:37 -06001073Entry: u-boot-img: U-Boot legacy image
1074--------------------------------------
1075
1076Properties / Entry arguments:
1077 - filename: Filename of u-boot.img (default 'u-boot.img')
1078
1079This is the U-Boot binary as a packaged image, in legacy format. It has a
1080header which allows it to be loaded at the correct address for execution.
1081
1082You should use FIT (Flat Image Tree) instead of the legacy image for new
1083applications.
1084
1085
1086
1087Entry: u-boot-nodtb: U-Boot flat binary without device tree appended
1088--------------------------------------------------------------------
1089
1090Properties / Entry arguments:
Simon Glassadc59ea2021-03-18 20:24:54 +13001091 - filename: Filename to include (default 'u-boot-nodtb.bin')
Simon Glass5a5da7c2018-07-17 13:25:37 -06001092
1093This is the U-Boot binary, containing relocation information to allow it
1094to relocate itself at runtime. It does not include a device tree blob at
Simon Glassadc59ea2021-03-18 20:24:54 +13001095the end of it so normally cannot work without it. You can add a u-boot-dtb
Simon Glass06684922021-03-18 20:25:07 +13001096entry after this one, or use a u-boot entry instead, normally expands to a
1097section containing u-boot and u-boot-dtb
Simon Glass5a5da7c2018-07-17 13:25:37 -06001098
1099
1100
1101Entry: u-boot-spl: U-Boot SPL binary
1102------------------------------------
1103
1104Properties / Entry arguments:
1105 - filename: Filename of u-boot-spl.bin (default 'spl/u-boot-spl.bin')
1106
1107This is the U-Boot SPL (Secondary Program Loader) binary. This is a small
1108binary which loads before U-Boot proper, typically into on-chip SRAM. It is
1109responsible for locating, loading and jumping to U-Boot. Note that SPL is
1110not relocatable so must be loaded to the correct address in SRAM, or written
Simon Glassb8ef5b62018-07-17 13:25:48 -06001111to run from the correct address if direct flash execution is possible (e.g.
Simon Glass5a5da7c2018-07-17 13:25:37 -06001112on x86 devices).
1113
1114SPL can access binman symbols at runtime. See:
1115
1116 'Access to binman entry offsets at run time (symbols)'
1117
1118in the binman README for more information.
1119
1120The ELF file 'spl/u-boot-spl' must also be available for this to work, since
1121binman uses that to look up symbols to write into the SPL binary.
1122
Simon Glass06684922021-03-18 20:25:07 +13001123Note that this entry is automatically replaced with u-boot-spl-expanded
Simon Glass3d433382021-03-21 18:24:30 +13001124unless --no-expanded is used or the node has a 'no-expanded' property.
Simon Glass06684922021-03-18 20:25:07 +13001125
Simon Glass5a5da7c2018-07-17 13:25:37 -06001126
1127
1128Entry: u-boot-spl-bss-pad: U-Boot SPL binary padded with a BSS region
1129---------------------------------------------------------------------
1130
1131Properties / Entry arguments:
1132 None
1133
Simon Glassdccdc382021-03-18 20:24:55 +13001134This holds the padding added after the SPL binary to cover the BSS (Block
1135Started by Symbol) region. This region holds the various variables used by
1136SPL. It is set to 0 by SPL when it starts up. If you want to append data to
1137the SPL image (such as a device tree file), you must pad out the BSS region
1138to avoid the data overlapping with U-Boot variables. This entry is useful in
1139that case. It automatically pads out the entry size to cover both the code,
1140data and BSS.
1141
1142The contents of this entry will a certain number of zero bytes, determined
1143by __bss_size
Simon Glass5a5da7c2018-07-17 13:25:37 -06001144
1145The ELF file 'spl/u-boot-spl' must also be available for this to work, since
1146binman uses that to look up the BSS address.
1147
1148
1149
1150Entry: u-boot-spl-dtb: U-Boot SPL device tree
1151---------------------------------------------
1152
1153Properties / Entry arguments:
1154 - filename: Filename of u-boot.dtb (default 'spl/u-boot-spl.dtb')
1155
1156This is the SPL device tree, containing configuration information for
1157SPL. SPL needs this to know what devices are present and which drivers
1158to activate.
1159
1160
1161
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001162Entry: u-boot-spl-elf: U-Boot SPL ELF image
1163-------------------------------------------
1164
1165Properties / Entry arguments:
Simon Glassa6a520e2019-07-08 13:18:45 -06001166 - filename: Filename of SPL u-boot (default 'spl/u-boot-spl')
Simon Glassfe1ae3e2018-09-14 04:57:35 -06001167
1168This is the U-Boot SPL ELF image. It does not include a device tree but can
1169be relocated to any address for execution.
1170
1171
1172
Simon Glass06684922021-03-18 20:25:07 +13001173Entry: u-boot-spl-expanded: U-Boot SPL flat binary broken out into its component parts
1174--------------------------------------------------------------------------------------
1175
1176Properties / Entry arguments:
1177 - spl-dtb: Controls whether this entry is selected (set to 'y' or '1' to
1178 select)
1179
1180This is a section containing the U-Boot binary, BSS padding if needed and a
1181devicetree. Using this entry type automatically creates this section, with
1182the following entries in it:
1183
1184 u-boot-spl-nodtb
1185 u-boot-spl-bss-pad
1186 u-boot-dtb
1187
1188Having the devicetree separate allows binman to update it in the final
1189image, so that the entries positions are provided to the running U-Boot.
1190
1191This entry is selected based on the value of the 'spl-dtb' entryarg. If
1192this is non-empty (and not 'n' or '0') then this expanded entry is selected.
1193
1194
1195
Simon Glass5a5da7c2018-07-17 13:25:37 -06001196Entry: u-boot-spl-nodtb: SPL binary without device tree appended
1197----------------------------------------------------------------
1198
1199Properties / Entry arguments:
Simon Glassadc59ea2021-03-18 20:24:54 +13001200 - filename: Filename to include (default 'spl/u-boot-spl-nodtb.bin')
Simon Glass5a5da7c2018-07-17 13:25:37 -06001201
1202This is the U-Boot SPL binary, It does not include a device tree blob at
1203the end of it so may not be able to work without it, assuming SPL needs
Simon Glassadc59ea2021-03-18 20:24:54 +13001204a device tree to operate on your platform. You can add a u-boot-spl-dtb
Simon Glass06684922021-03-18 20:25:07 +13001205entry after this one, or use a u-boot-spl entry instead' which normally
1206expands to a section containing u-boot-spl-dtb, u-boot-spl-bss-pad and
1207u-boot-spl-dtb
Simon Glass5a5da7c2018-07-17 13:25:37 -06001208
Simon Glassf5898822021-03-18 20:24:56 +13001209SPL can access binman symbols at runtime. See:
1210
1211 'Access to binman entry offsets at run time (symbols)'
1212
1213in the binman README for more information.
1214
1215The ELF file 'spl/u-boot-spl' must also be available for this to work, since
1216binman uses that to look up symbols to write into the SPL binary.
1217
Simon Glass5a5da7c2018-07-17 13:25:37 -06001218
1219
1220Entry: u-boot-spl-with-ucode-ptr: U-Boot SPL with embedded microcode pointer
1221----------------------------------------------------------------------------
1222
Simon Glassf0253632018-09-14 04:57:32 -06001223This is used when SPL must set up the microcode for U-Boot.
1224
Simon Glass5a5da7c2018-07-17 13:25:37 -06001225See Entry_u_boot_ucode for full details of the entries involved in this
1226process.
1227
1228
1229
Simon Glassb8ef5b62018-07-17 13:25:48 -06001230Entry: u-boot-tpl: U-Boot TPL binary
1231------------------------------------
1232
1233Properties / Entry arguments:
1234 - filename: Filename of u-boot-tpl.bin (default 'tpl/u-boot-tpl.bin')
1235
1236This is the U-Boot TPL (Tertiary Program Loader) binary. This is a small
1237binary which loads before SPL, typically into on-chip SRAM. It is
1238responsible for locating, loading and jumping to SPL, the next-stage
1239loader. Note that SPL is not relocatable so must be loaded to the correct
1240address in SRAM, or written to run from the correct address if direct
1241flash execution is possible (e.g. on x86 devices).
1242
1243SPL can access binman symbols at runtime. See:
1244
1245 'Access to binman entry offsets at run time (symbols)'
1246
1247in the binman README for more information.
1248
1249The ELF file 'tpl/u-boot-tpl' must also be available for this to work, since
1250binman uses that to look up symbols to write into the TPL binary.
1251
Simon Glass06684922021-03-18 20:25:07 +13001252Note that this entry is automatically replaced with u-boot-tpl-expanded
Simon Glass3d433382021-03-21 18:24:30 +13001253unless --no-expanded is used or the node has a 'no-expanded' property.
Simon Glass06684922021-03-18 20:25:07 +13001254
Simon Glassb8ef5b62018-07-17 13:25:48 -06001255
1256
Simon Glassd26efc82021-03-18 20:24:58 +13001257Entry: u-boot-tpl-bss-pad: U-Boot TPL binary padded with a BSS region
1258---------------------------------------------------------------------
1259
1260Properties / Entry arguments:
1261 None
1262
1263This holds the padding added after the TPL binary to cover the BSS (Block
1264Started by Symbol) region. This region holds the various variables used by
1265TPL. It is set to 0 by TPL when it starts up. If you want to append data to
1266the TPL image (such as a device tree file), you must pad out the BSS region
1267to avoid the data overlapping with U-Boot variables. This entry is useful in
1268that case. It automatically pads out the entry size to cover both the code,
1269data and BSS.
1270
1271The contents of this entry will a certain number of zero bytes, determined
1272by __bss_size
1273
1274The ELF file 'tpl/u-boot-tpl' must also be available for this to work, since
1275binman uses that to look up the BSS address.
1276
1277
1278
Simon Glassb8ef5b62018-07-17 13:25:48 -06001279Entry: u-boot-tpl-dtb: U-Boot TPL device tree
1280---------------------------------------------
1281
1282Properties / Entry arguments:
1283 - filename: Filename of u-boot.dtb (default 'tpl/u-boot-tpl.dtb')
1284
1285This is the TPL device tree, containing configuration information for
1286TPL. TPL needs this to know what devices are present and which drivers
1287to activate.
1288
1289
1290
Simon Glassf0253632018-09-14 04:57:32 -06001291Entry: u-boot-tpl-dtb-with-ucode: U-Boot TPL with embedded microcode pointer
1292----------------------------------------------------------------------------
1293
1294This is used when TPL must set up the microcode for U-Boot.
1295
1296See Entry_u_boot_ucode for full details of the entries involved in this
1297process.
1298
1299
1300
Simon Glass4c650252019-07-08 13:18:46 -06001301Entry: u-boot-tpl-elf: U-Boot TPL ELF image
1302-------------------------------------------
1303
1304Properties / Entry arguments:
1305 - filename: Filename of TPL u-boot (default 'tpl/u-boot-tpl')
1306
1307This is the U-Boot TPL ELF image. It does not include a device tree but can
1308be relocated to any address for execution.
1309
1310
1311
Simon Glass06684922021-03-18 20:25:07 +13001312Entry: u-boot-tpl-expanded: U-Boot TPL flat binary broken out into its component parts
1313--------------------------------------------------------------------------------------
1314
1315Properties / Entry arguments:
1316 - tpl-dtb: Controls whether this entry is selected (set to 'y' or '1' to
1317 select)
1318
1319This is a section containing the U-Boot binary, BSS padding if needed and a
1320devicetree. Using this entry type automatically creates this section, with
1321the following entries in it:
1322
1323 u-boot-tpl-nodtb
1324 u-boot-tpl-bss-pad
1325 u-boot-dtb
1326
1327Having the devicetree separate allows binman to update it in the final
1328image, so that the entries positions are provided to the running U-Boot.
1329
1330This entry is selected based on the value of the 'tpl-dtb' entryarg. If
1331this is non-empty (and not 'n' or '0') then this expanded entry is selected.
1332
1333
1334
Simon Glass77a64e02021-03-18 20:24:57 +13001335Entry: u-boot-tpl-nodtb: TPL binary without device tree appended
1336----------------------------------------------------------------
1337
1338Properties / Entry arguments:
1339 - filename: Filename to include (default 'tpl/u-boot-tpl-nodtb.bin')
1340
1341This is the U-Boot TPL binary, It does not include a device tree blob at
1342the end of it so may not be able to work without it, assuming TPL needs
1343a device tree to operate on your platform. You can add a u-boot-tpl-dtb
Simon Glass06684922021-03-18 20:25:07 +13001344entry after this one, or use a u-boot-tpl entry instead, which normally
1345expands to a section containing u-boot-tpl-dtb, u-boot-tpl-bss-pad and
1346u-boot-tpl-dtb
Simon Glass77a64e02021-03-18 20:24:57 +13001347
1348TPL can access binman symbols at runtime. See:
1349
1350 'Access to binman entry offsets at run time (symbols)'
1351
1352in the binman README for more information.
1353
1354The ELF file 'tpl/u-boot-tpl' must also be available for this to work, since
1355binman uses that to look up symbols to write into the TPL binary.
1356
1357
1358
Simon Glassf0253632018-09-14 04:57:32 -06001359Entry: u-boot-tpl-with-ucode-ptr: U-Boot TPL with embedded microcode pointer
1360----------------------------------------------------------------------------
1361
1362See Entry_u_boot_ucode for full details of the entries involved in this
1363process.
1364
1365
1366
Simon Glass5a5da7c2018-07-17 13:25:37 -06001367Entry: u-boot-ucode: U-Boot microcode block
1368-------------------------------------------
1369
1370Properties / Entry arguments:
1371 None
1372
1373The contents of this entry are filled in automatically by other entries
1374which must also be in the image.
1375
1376U-Boot on x86 needs a single block of microcode. This is collected from
1377the various microcode update nodes in the device tree. It is also unable
1378to read the microcode from the device tree on platforms that use FSP
1379(Firmware Support Package) binaries, because the API requires that the
1380microcode is supplied before there is any SRAM available to use (i.e.
1381the FSP sets up the SRAM / cache-as-RAM but does so in the call that
1382requires the microcode!). To keep things simple, all x86 platforms handle
1383microcode the same way in U-Boot (even non-FSP platforms). This is that
1384a table is placed at _dt_ucode_base_size containing the base address and
1385size of the microcode. This is either passed to the FSP (for FSP
1386platforms), or used to set up the microcode (for non-FSP platforms).
1387This all happens in the build system since it is the only way to get
1388the microcode into a single blob and accessible without SRAM.
1389
1390There are two cases to handle. If there is only one microcode blob in
1391the device tree, then the ucode pointer it set to point to that. This
1392entry (u-boot-ucode) is empty. If there is more than one update, then
1393this entry holds the concatenation of all updates, and the device tree
1394entry (u-boot-dtb-with-ucode) is updated to remove the microcode. This
1395last step ensures that that the microcode appears in one contiguous
1396block in the image and is not unnecessarily duplicated in the device
1397tree. It is referred to as 'collation' here.
1398
1399Entry types that have a part to play in handling microcode:
1400
1401 Entry_u_boot_with_ucode_ptr:
1402 Contains u-boot-nodtb.bin (i.e. U-Boot without the device tree).
1403 It updates it with the address and size of the microcode so that
1404 U-Boot can find it early on start-up.
1405 Entry_u_boot_dtb_with_ucode:
1406 Contains u-boot.dtb. It stores the microcode in a
1407 'self.ucode_data' property, which is then read by this class to
1408 obtain the microcode if needed. If collation is performed, it
1409 removes the microcode from the device tree.
1410 Entry_u_boot_ucode:
1411 This class. If collation is enabled it reads the microcode from
1412 the Entry_u_boot_dtb_with_ucode entry, and uses it as the
1413 contents of this entry.
1414
1415
1416
1417Entry: u-boot-with-ucode-ptr: U-Boot with embedded microcode pointer
1418--------------------------------------------------------------------
1419
1420Properties / Entry arguments:
Masahiro Yamadaf6a8c0f2019-12-14 13:47:26 +09001421 - filename: Filename of u-boot-nodtb.bin (default 'u-boot-nodtb.bin')
Simon Glassf0693032018-09-14 04:57:07 -06001422 - optional-ucode: boolean property to make microcode optional. If the
1423 u-boot.bin image does not include microcode, no error will
1424 be generated.
Simon Glass5a5da7c2018-07-17 13:25:37 -06001425
1426See Entry_u_boot_ucode for full details of the three entries involved in
1427this process. This entry updates U-Boot with the offset and size of the
1428microcode, to allow early x86 boot code to find it without doing anything
Simon Glassadc59ea2021-03-18 20:24:54 +13001429complicated. Otherwise it is the same as the u-boot entry.
Simon Glass5a5da7c2018-07-17 13:25:37 -06001430
1431
1432
Simon Glass24d0d3c2018-07-17 13:25:47 -06001433Entry: vblock: An entry which contains a Chromium OS verified boot block
1434------------------------------------------------------------------------
1435
1436Properties / Entry arguments:
Simon Glass5385f5a2019-05-17 22:00:53 -06001437 - content: List of phandles to entries to sign
Simon Glass24d0d3c2018-07-17 13:25:47 -06001438 - keydir: Directory containing the public keys to use
1439 - keyblock: Name of the key file to use (inside keydir)
1440 - signprivate: Name of provide key file to use (inside keydir)
1441 - version: Version number of the vblock (typically 1)
1442 - kernelkey: Name of the kernel key to use (inside keydir)
1443 - preamble-flags: Value of the vboot preamble flags (typically 0)
1444
Simon Glassa326b492018-09-14 04:57:11 -06001445Output files:
1446 - input.<unique_name> - input file passed to futility
1447 - vblock.<unique_name> - output file generated by futility (which is
1448 used as the entry contents)
1449
Jagdish Gediya9d368f32018-09-03 21:35:08 +05301450Chromium OS signs the read-write firmware and kernel, writing the signature
Simon Glass24d0d3c2018-07-17 13:25:47 -06001451in this block. This allows U-Boot to verify that the next firmware stage
1452and kernel are genuine.
1453
1454
1455
Simon Glass2250ee62019-08-24 07:22:48 -06001456Entry: x86-reset16: x86 16-bit reset code for U-Boot
1457----------------------------------------------------
1458
1459Properties / Entry arguments:
1460 - filename: Filename of u-boot-x86-reset16.bin (default
1461 'u-boot-x86-reset16.bin')
1462
1463x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1464must be placed at a particular address. This entry holds that code. It is
1465typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1466for jumping to the x86-start16 code, which continues execution.
1467
1468For 64-bit U-Boot, the 'x86_reset16_spl' entry type is used instead.
1469
1470
1471
1472Entry: x86-reset16-spl: x86 16-bit reset code for U-Boot
1473--------------------------------------------------------
1474
1475Properties / Entry arguments:
1476 - filename: Filename of u-boot-x86-reset16.bin (default
1477 'u-boot-x86-reset16.bin')
1478
1479x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1480must be placed at a particular address. This entry holds that code. It is
1481typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1482for jumping to the x86-start16 code, which continues execution.
1483
1484For 32-bit U-Boot, the 'x86_reset_spl' entry type is used instead.
1485
1486
1487
1488Entry: x86-reset16-tpl: x86 16-bit reset code for U-Boot
1489--------------------------------------------------------
1490
1491Properties / Entry arguments:
1492 - filename: Filename of u-boot-x86-reset16.bin (default
1493 'u-boot-x86-reset16.bin')
1494
1495x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1496must be placed at a particular address. This entry holds that code. It is
1497typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1498for jumping to the x86-start16 code, which continues execution.
1499
1500For 32-bit U-Boot, the 'x86_reset_tpl' entry type is used instead.
1501
1502
1503
Simon Glass5a5da7c2018-07-17 13:25:37 -06001504Entry: x86-start16: x86 16-bit start-up code for U-Boot
1505-------------------------------------------------------
1506
1507Properties / Entry arguments:
Simon Glass5e239182019-08-24 07:22:49 -06001508 - filename: Filename of u-boot-x86-start16.bin (default
1509 'u-boot-x86-start16.bin')
Simon Glass5a5da7c2018-07-17 13:25:37 -06001510
1511x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
Simon Glass5e239182019-08-24 07:22:49 -06001512must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1513entry holds that code. It is typically placed at offset
1514CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1515and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1516U-Boot).
Simon Glass5a5da7c2018-07-17 13:25:37 -06001517
1518For 64-bit U-Boot, the 'x86_start16_spl' entry type is used instead.
1519
1520
1521
1522Entry: x86-start16-spl: x86 16-bit start-up code for SPL
1523--------------------------------------------------------
1524
1525Properties / Entry arguments:
Simon Glass5e239182019-08-24 07:22:49 -06001526 - filename: Filename of spl/u-boot-x86-start16-spl.bin (default
1527 'spl/u-boot-x86-start16-spl.bin')
Simon Glass5a5da7c2018-07-17 13:25:37 -06001528
Simon Glass5e239182019-08-24 07:22:49 -06001529x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1530must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1531entry holds that code. It is typically placed at offset
1532CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1533and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1534U-Boot).
Simon Glass5a5da7c2018-07-17 13:25:37 -06001535
Simon Glass5e239182019-08-24 07:22:49 -06001536For 32-bit U-Boot, the 'x86-start16' entry type is used instead.
Simon Glass5a5da7c2018-07-17 13:25:37 -06001537
1538
1539
Simon Glass35b384c2018-09-14 04:57:10 -06001540Entry: x86-start16-tpl: x86 16-bit start-up code for TPL
1541--------------------------------------------------------
1542
1543Properties / Entry arguments:
Simon Glass5e239182019-08-24 07:22:49 -06001544 - filename: Filename of tpl/u-boot-x86-start16-tpl.bin (default
1545 'tpl/u-boot-x86-start16-tpl.bin')
Simon Glass35b384c2018-09-14 04:57:10 -06001546
Simon Glass5e239182019-08-24 07:22:49 -06001547x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1548must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1549entry holds that code. It is typically placed at offset
1550CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1551and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1552U-Boot).
Simon Glass35b384c2018-09-14 04:57:10 -06001553
Simon Glass5e239182019-08-24 07:22:49 -06001554If TPL is not being used, the 'x86-start16-spl or 'x86-start16' entry types
Simon Glass35b384c2018-09-14 04:57:10 -06001555may be used instead.
1556
1557
1558