blob: 1086a6a979030a85be24561633adb5ea0a5526fe [file] [log] [blame]
Simon Glass7a61c6b2018-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
14Entry: blob: Entry containing an arbitrary binary blob
15------------------------------------------------------
16
17Note: This should not be used by itself. It is normally used as a parent
18class by other entry types.
19
20Properties / Entry arguments:
21 - filename: Filename of file to read into entry
Simon Glass7ba33592018-09-14 04:57:26 -060022 - compress: Compression algorithm to use:
23 none: No compression
24 lz4: Use lz4 compression (via 'lz4' command-line utility)
Simon Glass7a61c6b2018-07-17 13:25:37 -060025
26This entry reads data from a file and places it in the entry. The
27default filename is often specified specified by the subclass. See for
28example the 'u_boot' entry which provides the filename 'u-boot.bin'.
29
Simon Glass7ba33592018-09-14 04:57:26 -060030If compression is enabled, an extra 'uncomp-size' property is written to
31the node (if enabled with -u) which provides the uncompressed size of the
32data.
Simon Glass7a61c6b2018-07-17 13:25:37 -060033
34
Simon Glass7a61c6b2018-07-17 13:25:37 -060035
Simon Glasse219aa42018-09-14 04:57:24 -060036Entry: blob-dtb: A blob that holds a device tree
37------------------------------------------------
38
39This is a blob containing a device tree. The contents of the blob are
40obtained from the list of available device-tree files, managed by the
41'state' module.
42
43
44
Simon Glass5e560182020-07-09 18:39:36 -060045Entry: blob-ext: Entry containing an externally built binary blob
46-----------------------------------------------------------------
47
48Note: This should not be used by itself. It is normally used as a parent
49class by other entry types.
50
Simon Glass5d94cc62020-07-09 18:39:38 -060051If the file providing this blob is missing, binman can optionally ignore it
52and produce a broken image with a warning.
53
Simon Glass5e560182020-07-09 18:39:36 -060054See 'blob' for Properties / Entry arguments.
55
56
57
Simon Glassdb168d42018-07-17 13:25:39 -060058Entry: blob-named-by-arg: A blob entry which gets its filename property from its subclass
59-----------------------------------------------------------------------------------------
60
61Properties / Entry arguments:
62 - <xxx>-path: Filename containing the contents of this entry (optional,
Simon Glass21db0ff2020-09-01 05:13:54 -060063 defaults to None)
Simon Glassdb168d42018-07-17 13:25:39 -060064
65where <xxx> is the blob_fname argument to the constructor.
66
67This entry cannot be used directly. Instead, it is used as a parent class
68for another entry, which defined blob_fname. This parameter is used to
69set the entry-arg or property containing the filename. The entry-arg or
70property is in turn used to set the actual filename.
71
72See cros_ec_rw for an example of this.
73
74
75
Simon Glass1de34482019-07-08 13:18:53 -060076Entry: cbfs: Entry containing a Coreboot Filesystem (CBFS)
77----------------------------------------------------------
78
79A CBFS provides a way to group files into a group. It has a simple directory
80structure and allows the position of individual files to be set, since it is
81designed to support execute-in-place in an x86 SPI-flash device. Where XIP
82is not used, it supports compression and storing ELF files.
83
84CBFS is used by coreboot as its way of orgnanising SPI-flash contents.
85
86The contents of the CBFS are defined by subnodes of the cbfs entry, e.g.:
87
88 cbfs {
89 size = <0x100000>;
90 u-boot {
91 cbfs-type = "raw";
92 };
93 u-boot-dtb {
94 cbfs-type = "raw";
95 };
96 };
97
98This creates a CBFS 1MB in size two files in it: u-boot.bin and u-boot.dtb.
99Note that the size is required since binman does not support calculating it.
100The contents of each entry is just what binman would normally provide if it
101were not a CBFS node. A blob type can be used to import arbitrary files as
102with the second subnode below:
103
104 cbfs {
105 size = <0x100000>;
106 u-boot {
107 cbfs-name = "BOOT";
108 cbfs-type = "raw";
109 };
110
111 dtb {
112 type = "blob";
113 filename = "u-boot.dtb";
114 cbfs-type = "raw";
115 cbfs-compress = "lz4";
Simon Glassc2f1aed2019-07-08 13:18:56 -0600116 cbfs-offset = <0x100000>;
Simon Glass1de34482019-07-08 13:18:53 -0600117 };
118 };
119
120This creates a CBFS 1MB in size with u-boot.bin (named "BOOT") and
121u-boot.dtb (named "dtb") and compressed with the lz4 algorithm.
122
123
124Properties supported in the top-level CBFS node:
125
126cbfs-arch:
127 Defaults to "x86", but you can specify the architecture if needed.
128
129
130Properties supported in the CBFS entry subnodes:
131
132cbfs-name:
133 This is the name of the file created in CBFS. It defaults to the entry
134 name (which is the node name), but you can override it with this
135 property.
136
137cbfs-type:
138 This is the CBFS file type. The following are supported:
139
140 raw:
141 This is a 'raw' file, although compression is supported. It can be
142 used to store any file in CBFS.
143
144 stage:
145 This is an ELF file that has been loaded (i.e. mapped to memory), so
146 appears in the CBFS as a flat binary. The input file must be an ELF
147 image, for example this puts "u-boot" (the ELF image) into a 'stage'
148 entry:
149
150 cbfs {
151 size = <0x100000>;
152 u-boot-elf {
153 cbfs-name = "BOOT";
154 cbfs-type = "stage";
155 };
156 };
157
158 You can use your own ELF file with something like:
159
160 cbfs {
161 size = <0x100000>;
162 something {
163 type = "blob";
164 filename = "cbfs-stage.elf";
165 cbfs-type = "stage";
166 };
167 };
168
169 As mentioned, the file is converted to a flat binary, so it is
170 equivalent to adding "u-boot.bin", for example, but with the load and
171 start addresses specified by the ELF. At present there is no option
172 to add a flat binary with a load/start address, similar to the
173 'add-flat-binary' option in cbfstool.
174
Simon Glassc2f1aed2019-07-08 13:18:56 -0600175cbfs-offset:
176 This is the offset of the file's data within the CBFS. It is used to
177 specify where the file should be placed in cases where a fixed position
178 is needed. Typical uses are for code which is not relocatable and must
179 execute in-place from a particular address. This works because SPI flash
180 is generally mapped into memory on x86 devices. The file header is
181 placed before this offset so that the data start lines up exactly with
182 the chosen offset. If this property is not provided, then the file is
183 placed in the next available spot.
Simon Glass1de34482019-07-08 13:18:53 -0600184
185The current implementation supports only a subset of CBFS features. It does
186not support other file types (e.g. payload), adding multiple files (like the
187'files' entry with a pattern supported by binman), putting files at a
188particular offset in the CBFS and a few other things.
189
190Of course binman can create images containing multiple CBFSs, simply by
191defining these in the binman config:
192
193
194 binman {
195 size = <0x800000>;
196 cbfs {
197 offset = <0x100000>;
198 size = <0x100000>;
199 u-boot {
200 cbfs-type = "raw";
201 };
202 u-boot-dtb {
203 cbfs-type = "raw";
204 };
205 };
206
207 cbfs2 {
208 offset = <0x700000>;
209 size = <0x100000>;
210 u-boot {
211 cbfs-type = "raw";
212 };
213 u-boot-dtb {
214 cbfs-type = "raw";
215 };
216 image {
217 type = "blob";
218 filename = "image.jpg";
219 };
220 };
221 };
222
223This creates an 8MB image with two CBFSs, one at offset 1MB, one at 7MB,
224both of size 1MB.
225
226
227
Simon Glassdb168d42018-07-17 13:25:39 -0600228Entry: cros-ec-rw: A blob entry which contains a Chromium OS read-write EC image
229--------------------------------------------------------------------------------
230
231Properties / Entry arguments:
232 - cros-ec-rw-path: Filename containing the EC image
233
234This entry holds a Chromium OS EC (embedded controller) image, for use in
235updating the EC on startup via software sync.
236
237
238
Simon Glass0f621332019-07-08 14:25:27 -0600239Entry: fdtmap: An entry which contains an FDT map
240-------------------------------------------------
241
242Properties / Entry arguments:
243 None
244
245An FDT map is just a header followed by an FDT containing a list of all the
Simon Glassfb30e292019-07-20 12:23:51 -0600246entries in the image. The root node corresponds to the image node in the
247original FDT, and an image-name property indicates the image name in that
248original tree.
Simon Glass0f621332019-07-08 14:25:27 -0600249
250The header is the string _FDTMAP_ followed by 8 unused bytes.
251
252When used, this entry will be populated with an FDT map which reflects the
253entries in the current image. Hierarchy is preserved, and all offsets and
254sizes are included.
255
256Note that the -u option must be provided to ensure that binman updates the
257FDT with the position of each entry.
258
259Example output for a simple image with U-Boot and an FDT map:
260
261/ {
Simon Glassfb30e292019-07-20 12:23:51 -0600262 image-name = "binman";
Simon Glass0f621332019-07-08 14:25:27 -0600263 size = <0x00000112>;
264 image-pos = <0x00000000>;
265 offset = <0x00000000>;
266 u-boot {
267 size = <0x00000004>;
268 image-pos = <0x00000000>;
269 offset = <0x00000000>;
270 };
271 fdtmap {
272 size = <0x0000010e>;
273 image-pos = <0x00000004>;
274 offset = <0x00000004>;
275 };
276};
277
Simon Glassfb30e292019-07-20 12:23:51 -0600278If allow-repack is used then 'orig-offset' and 'orig-size' properties are
279added as necessary. See the binman README.
280
Simon Glass0f621332019-07-08 14:25:27 -0600281
282
Simon Glassac6328c2018-09-14 04:57:28 -0600283Entry: files: Entry containing a set of files
284---------------------------------------------
285
286Properties / Entry arguments:
287 - pattern: Filename pattern to match the files to include
288 - compress: Compression algorithm to use:
289 none: No compression
290 lz4: Use lz4 compression (via 'lz4' command-line utility)
291
292This entry reads a number of files and places each in a separate sub-entry
293within this entry. To access these you need to enable device-tree updates
294at run-time so you can obtain the file positions.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600295
296
Simon Glassac6328c2018-09-14 04:57:28 -0600297
Simon Glass53f53992018-07-17 13:25:40 -0600298Entry: fill: An entry which is filled to a particular byte value
299----------------------------------------------------------------
300
301Properties / Entry arguments:
302 - fill-byte: Byte to use to fill the entry
303
304Note that the size property must be set since otherwise this entry does not
305know how large it should be.
306
307You can often achieve the same effect using the pad-byte property of the
308overall image, in that the space between entries will then be padded with
309that byte. But this entry is sometimes useful for explicitly setting the
310byte value of a region.
311
312
Simon Glassc7b010d2020-07-09 18:39:45 -0600313
Simon Glass45d556d2020-07-09 18:39:45 -0600314Entry: fit: Entry containing a FIT
315----------------------------------
316
317This calls mkimage to create a FIT (U-Boot Flat Image Tree) based on the
318input provided.
319
320Nodes for the FIT should be written out in the binman configuration just as
321they would be in a file passed to mkimage.
322
323For example, this creates an image containing a FIT with U-Boot SPL:
324
325 binman {
326 fit {
327 description = "Test FIT";
328
329 images {
330 kernel@1 {
331 description = "SPL";
332 os = "u-boot";
333 type = "rkspi";
334 arch = "arm";
335 compression = "none";
336 load = <0>;
337 entry = <0>;
338
339 u-boot-spl {
340 };
341 };
342 };
343 };
344 };
345
346Properties:
347 fit,external-offset: Indicates that the contents of the FIT are external
348 and provides the external offset. This is passsed to mkimage via
349 the -E and -p flags.
350
351
352
353
Simon Glass7a61c6b2018-07-17 13:25:37 -0600354Entry: fmap: An entry which contains an Fmap section
355----------------------------------------------------
356
357Properties / Entry arguments:
358 None
359
360FMAP is a simple format used by flashrom, an open-source utility for
361reading and writing the SPI flash, typically on x86 CPUs. The format
362provides flashrom with a list of areas, so it knows what it in the flash.
363It can then read or write just a single area, instead of the whole flash.
364
365The format is defined by the flashrom project, in the file lib/fmap.h -
366see www.flashrom.org/Flashrom for more information.
367
368When used, this entry will be populated with an FMAP which reflects the
369entries in the current image. Note that any hierarchy is squashed, since
Simon Glasscf0b21c2019-07-20 12:24:00 -0600370FMAP does not support this. Also, CBFS entries appear as a single entry -
371the sub-entries are ignored.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600372
373
374
Simon Glassc1ae83c2018-07-17 13:25:44 -0600375Entry: gbb: An entry which contains a Chromium OS Google Binary Block
376---------------------------------------------------------------------
377
378Properties / Entry arguments:
379 - hardware-id: Hardware ID to use for this build (a string)
380 - keydir: Directory containing the public keys to use
381 - bmpblk: Filename containing images used by recovery
382
383Chromium OS uses a GBB to store various pieces of information, in particular
384the root and recovery keys that are used to verify the boot process. Some
385more details are here:
386
387 https://www.chromium.org/chromium-os/firmware-porting-guide/2-concepts
388
389but note that the page dates from 2013 so is quite out of date. See
390README.chromium for how to obtain the required keys and tools.
391
392
393
Simon Glasscec34ba2019-07-08 14:25:28 -0600394Entry: image-header: An entry which contains a pointer to the FDT map
395---------------------------------------------------------------------
396
397Properties / Entry arguments:
398 location: Location of header ("start" or "end" of image). This is
399 optional. If omitted then the entry must have an offset property.
400
401This adds an 8-byte entry to the start or end of the image, pointing to the
402location of the FDT map. The format is a magic number followed by an offset
403from the start or end of the image, in twos-compliment format.
404
405This entry must be in the top-level part of the image.
406
407NOTE: If the location is at the start/end, you will probably need to specify
408sort-by-offset for the image, unless you actually put the image header
409first/last in the entry list.
410
411
412
Simon Glass7a61c6b2018-07-17 13:25:37 -0600413Entry: intel-cmc: Entry containing an Intel Chipset Micro Code (CMC) file
414-------------------------------------------------------------------------
415
416Properties / Entry arguments:
417 - filename: Filename of file to read into entry
418
419This file contains microcode for some devices in a special format. An
420example filename is 'Microcode/C0_22211.BIN'.
421
422See README.x86 for information about x86 binary blobs.
423
424
425
426Entry: intel-descriptor: Intel flash descriptor block (4KB)
427-----------------------------------------------------------
428
429Properties / Entry arguments:
430 filename: Filename of file containing the descriptor. This is typically
431 a 4KB binary file, sometimes called 'descriptor.bin'
432
433This entry is placed at the start of flash and provides information about
434the SPI flash regions. In particular it provides the base address and
435size of the ME (Management Engine) region, allowing us to place the ME
436binary in the right place.
437
438With this entry in your image, the position of the 'intel-me' entry will be
439fixed in the image, which avoids you needed to specify an offset for that
440region. This is useful, because it is not possible to change the position
441of the ME region without updating the descriptor.
442
443See README.x86 for information about x86 binary blobs.
444
445
446
Simon Glass232f90c2019-08-24 07:22:50 -0600447Entry: intel-fit: Intel Firmware Image Table (FIT)
448--------------------------------------------------
449
450This entry contains a dummy FIT as required by recent Intel CPUs. The FIT
451contains information about the firmware and microcode available in the
452image.
453
454At present binman only supports a basic FIT with no microcode.
455
456
457
458Entry: intel-fit-ptr: Intel Firmware Image Table (FIT) pointer
459--------------------------------------------------------------
460
461This entry contains a pointer to the FIT. It is required to be at address
4620xffffffc0 in the image.
463
464
465
Simon Glass7a61c6b2018-07-17 13:25:37 -0600466Entry: intel-fsp: Entry containing an Intel Firmware Support Package (FSP) file
467-------------------------------------------------------------------------------
468
469Properties / Entry arguments:
470 - filename: Filename of file to read into entry
471
472This file contains binary blobs which are used on some devices to make the
473platform work. U-Boot executes this code since it is not possible to set up
474the hardware using U-Boot open-source code. Documentation is typically not
475available in sufficient detail to allow this.
476
477An example filename is 'FSP/QUEENSBAY_FSP_GOLD_001_20-DECEMBER-2013.fd'
478
479See README.x86 for information about x86 binary blobs.
480
481
482
Simon Glassba7985d2019-08-24 07:23:07 -0600483Entry: intel-fsp-m: Entry containing Intel Firmware Support Package (FSP) memory init
484-------------------------------------------------------------------------------------
485
486Properties / Entry arguments:
487 - filename: Filename of file to read into entry
488
489This file contains a binary blob which is used on some devices to set up
490SDRAM. U-Boot executes this code in SPL so that it can make full use of
491memory. Documentation is typically not available in sufficient detail to
492allow U-Boot do this this itself..
493
494An example filename is 'fsp_m.bin'
495
496See README.x86 for information about x86 binary blobs.
497
498
499
Simon Glass4d9086d2019-10-20 21:31:35 -0600500Entry: intel-fsp-s: Entry containing Intel Firmware Support Package (FSP) silicon init
501--------------------------------------------------------------------------------------
502
503Properties / Entry arguments:
504 - filename: Filename of file to read into entry
505
506This file contains a binary blob which is used on some devices to set up
507the silicon. U-Boot executes this code in U-Boot proper after SDRAM is
508running, so that it can make full use of memory. Documentation is typically
509not available in sufficient detail to allow U-Boot do this this itself.
510
511An example filename is 'fsp_s.bin'
512
513See README.x86 for information about x86 binary blobs.
514
515
516
Simon Glass9ea87b22019-10-20 21:31:36 -0600517Entry: intel-fsp-t: Entry containing Intel Firmware Support Package (FSP) temp ram init
518---------------------------------------------------------------------------------------
519
520Properties / Entry arguments:
521 - filename: Filename of file to read into entry
522
523This file contains a binary blob which is used on some devices to set up
524temporary memory (Cache-as-RAM or CAR). U-Boot executes this code in TPL so
525that it has access to memory for its stack and initial storage.
526
527An example filename is 'fsp_t.bin'
528
529See README.x86 for information about x86 binary blobs.
530
531
532
Simon Glassc2f1aed2019-07-08 13:18:56 -0600533Entry: intel-ifwi: Entry containing an Intel Integrated Firmware Image (IFWI) file
534----------------------------------------------------------------------------------
535
536Properties / Entry arguments:
537 - filename: Filename of file to read into entry. This is either the
538 IFWI file itself, or a file that can be converted into one using a
539 tool
540 - convert-fit: If present this indicates that the ifwitool should be
541 used to convert the provided file into a IFWI.
542
543This file contains code and data used by the SoC that is required to make
544it work. It includes U-Boot TPL, microcode, things related to the CSE
545(Converged Security Engine, the microcontroller that loads all the firmware)
546and other items beyond the wit of man.
547
548A typical filename is 'ifwi.bin' for an IFWI file, or 'fitimage.bin' for a
549file that will be converted to an IFWI.
550
551The position of this entry is generally set by the intel-descriptor entry.
552
553The contents of the IFWI are specified by the subnodes of the IFWI node.
554Each subnode describes an entry which is placed into the IFWFI with a given
555sub-partition (and optional entry name).
556
Simon Glass8a5e2492019-08-24 07:22:47 -0600557Properties for subnodes:
558 ifwi-subpart - sub-parition to put this entry into, e.g. "IBBP"
559 ifwi-entry - entry name t use, e.g. "IBBL"
560 ifwi-replace - if present, indicates that the item should be replaced
561 in the IFWI. Otherwise it is added.
562
Simon Glassc2f1aed2019-07-08 13:18:56 -0600563See README.x86 for information about x86 binary blobs.
564
565
566
Simon Glass7a61c6b2018-07-17 13:25:37 -0600567Entry: intel-me: Entry containing an Intel Management Engine (ME) file
568----------------------------------------------------------------------
569
570Properties / Entry arguments:
571 - filename: Filename of file to read into entry
572
573This file contains code used by the SoC that is required to make it work.
574The Management Engine is like a background task that runs things that are
Thomas Hebbfd37f242019-11-13 18:18:03 -0800575not clearly documented, but may include keyboard, display and network
Simon Glass7a61c6b2018-07-17 13:25:37 -0600576access. For platform that use ME it is not possible to disable it. U-Boot
577does not directly execute code in the ME binary.
578
579A typical filename is 'me.bin'.
580
Simon Glassc4056b82019-07-08 13:18:38 -0600581The position of this entry is generally set by the intel-descriptor entry.
582
Simon Glass7a61c6b2018-07-17 13:25:37 -0600583See README.x86 for information about x86 binary blobs.
584
585
586
587Entry: intel-mrc: Entry containing an Intel Memory Reference Code (MRC) file
588----------------------------------------------------------------------------
589
590Properties / Entry arguments:
591 - filename: Filename of file to read into entry
592
593This file contains code for setting up the SDRAM on some Intel systems. This
594is executed by U-Boot when needed early during startup. A typical filename
595is 'mrc.bin'.
596
597See README.x86 for information about x86 binary blobs.
598
599
600
Simon Glass17b84eb2019-05-17 22:00:53 -0600601Entry: intel-refcode: Entry containing an Intel Reference Code file
602-------------------------------------------------------------------
603
604Properties / Entry arguments:
605 - filename: Filename of file to read into entry
606
607This file contains code for setting up the platform on some Intel systems.
608This is executed by U-Boot when needed early during startup. A typical
609filename is 'refcode.bin'.
610
611See README.x86 for information about x86 binary blobs.
612
613
614
Simon Glass7a61c6b2018-07-17 13:25:37 -0600615Entry: intel-vbt: Entry containing an Intel Video BIOS Table (VBT) file
616-----------------------------------------------------------------------
617
618Properties / Entry arguments:
619 - filename: Filename of file to read into entry
620
621This file contains code that sets up the integrated graphics subsystem on
622some Intel SoCs. U-Boot executes this when the display is started up.
623
624See README.x86 for information about Intel binary blobs.
625
626
627
628Entry: intel-vga: Entry containing an Intel Video Graphics Adaptor (VGA) file
629-----------------------------------------------------------------------------
630
631Properties / Entry arguments:
632 - filename: Filename of file to read into entry
633
634This file contains code that sets up the integrated graphics subsystem on
635some Intel SoCs. U-Boot executes this when the display is started up.
636
637This is similar to the VBT file but in a different format.
638
639See README.x86 for information about Intel binary blobs.
640
641
642
Simon Glass48f3aad2020-07-09 18:39:31 -0600643Entry: mkimage: Entry containing a binary produced by mkimage
644-------------------------------------------------------------
645
646Properties / Entry arguments:
647 - datafile: Filename for -d argument
648 - args: Other arguments to pass
649
650The data passed to mkimage is collected from subnodes of the mkimage node,
651e.g.:
652
653 mkimage {
654 args = "-n test -T imximage";
655
656 u-boot-spl {
657 };
658 };
659
660This calls mkimage to create an imximage with u-boot-spl.bin as the input
661file. The output from mkimage then becomes part of the image produced by
662binman.
663
664
665
Jagdish Gediya311d4842018-09-03 21:35:08 +0530666Entry: powerpc-mpc85xx-bootpg-resetvec: PowerPC mpc85xx bootpg + resetvec code for U-Boot
667-----------------------------------------------------------------------------------------
668
669Properties / Entry arguments:
670 - filename: Filename of u-boot-br.bin (default 'u-boot-br.bin')
671
Thomas Hebbfd37f242019-11-13 18:18:03 -0800672This entry is valid for PowerPC mpc85xx cpus. This entry holds
Jagdish Gediya311d4842018-09-03 21:35:08 +0530673'bootpg + resetvec' code for PowerPC mpc85xx CPUs which needs to be
674placed at offset 'RESET_VECTOR_ADDRESS - 0xffc'.
675
676
677
Simon Glass7a61c6b2018-07-17 13:25:37 -0600678Entry: section: Entry that contains other entries
679-------------------------------------------------
680
681Properties / Entry arguments: (see binman README for more information)
Simon Glass39dd2152019-07-08 14:25:47 -0600682 pad-byte: Pad byte to use when padding
683 sort-by-offset: True if entries should be sorted by offset, False if
684 they must be in-order in the device tree description
685 end-at-4gb: Used to build an x86 ROM which ends at 4GB (2^32)
686 skip-at-start: Number of bytes before the first entry starts. These
687 effectively adjust the starting offset of entries. For example,
688 if this is 16, then the first entry would start at 16. An entry
689 with offset = 20 would in fact be written at offset 4 in the image
690 file, since the first 16 bytes are skipped when writing.
691 name-prefix: Adds a prefix to the name of every entry in the section
Simon Glass7a61c6b2018-07-17 13:25:37 -0600692 when writing out the map
693
Simon Glass21db0ff2020-09-01 05:13:54 -0600694Properties:
Simon Glassb8f90372020-09-01 05:13:57 -0600695 allow_missing: True if this section permits external blobs to be
Simon Glass21db0ff2020-09-01 05:13:54 -0600696 missing their contents. The second will produce an image but of
697 course it will not work.
698
Simon Glass39dd2152019-07-08 14:25:47 -0600699Since a section is also an entry, it inherits all the properies of entries
700too.
701
Simon Glass7a61c6b2018-07-17 13:25:37 -0600702A section is an entry which can contain other entries, thus allowing
703hierarchical images to be created. See 'Sections and hierarchical images'
704in the binman README for more information.
705
706
707
708Entry: text: An entry which contains text
709-----------------------------------------
710
711The text can be provided either in the node itself or by a command-line
712argument. There is a level of indirection to allow multiple text strings
713and sharing of text.
714
715Properties / Entry arguments:
716 text-label: The value of this string indicates the property / entry-arg
717 that contains the string to place in the entry
718 <xxx> (actual name is the value of text-label): contains the string to
719 place in the entry.
Simon Glass47f6a622019-07-08 13:18:40 -0600720 <text>: The text to place in the entry (overrides the above mechanism).
721 This is useful when the text is constant.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600722
723Example node:
724
725 text {
726 size = <50>;
727 text-label = "message";
728 };
729
730You can then use:
731
732 binman -amessage="this is my message"
733
734and binman will insert that string into the entry.
735
736It is also possible to put the string directly in the node:
737
738 text {
739 size = <8>;
740 text-label = "message";
741 message = "a message directly in the node"
742 };
743
Simon Glass47f6a622019-07-08 13:18:40 -0600744or just:
745
746 text {
747 size = <8>;
748 text = "some text directly in the node"
749 };
750
Simon Glass7a61c6b2018-07-17 13:25:37 -0600751The text is not itself nul-terminated. This can be achieved, if required,
752by setting the size of the entry to something larger than the text.
753
754
755
756Entry: u-boot: U-Boot flat binary
757---------------------------------
758
759Properties / Entry arguments:
760 - filename: Filename of u-boot.bin (default 'u-boot.bin')
761
762This is the U-Boot binary, containing relocation information to allow it
763to relocate itself at runtime. The binary typically includes a device tree
764blob at the end of it. Use u_boot_nodtb if you want to package the device
765tree separately.
766
767U-Boot can access binman symbols at runtime. See:
768
769 'Access to binman entry offsets at run time (fdt)'
770
771in the binman README for more information.
772
773
774
775Entry: u-boot-dtb: U-Boot device tree
776-------------------------------------
777
778Properties / Entry arguments:
779 - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
780
781This is the U-Boot device tree, containing configuration information for
782U-Boot. U-Boot needs this to know what devices are present and which drivers
783to activate.
784
Simon Glasse219aa42018-09-14 04:57:24 -0600785Note: This is mostly an internal entry type, used by others. This allows
786binman to know which entries contain a device tree.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600787
788
Simon Glass7a61c6b2018-07-17 13:25:37 -0600789
790Entry: u-boot-dtb-with-ucode: A U-Boot device tree file, with the microcode removed
791-----------------------------------------------------------------------------------
792
793Properties / Entry arguments:
794 - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
795
796See Entry_u_boot_ucode for full details of the three entries involved in
797this process. This entry provides the U-Boot device-tree file, which
798contains the microcode. If the microcode is not being collated into one
799place then the offset and size of the microcode is recorded by this entry,
800for use by u_boot_with_ucode_ptr. If it is being collated, then this
801entry deletes the microcode from the device tree (to save space) and makes
802it available to u_boot_ucode.
803
804
805
Simon Glassb1714232018-09-14 04:57:35 -0600806Entry: u-boot-elf: U-Boot ELF image
807-----------------------------------
808
809Properties / Entry arguments:
810 - filename: Filename of u-boot (default 'u-boot')
811
812This is the U-Boot ELF image. It does not include a device tree but can be
813relocated to any address for execution.
814
815
816
Simon Glass7a61c6b2018-07-17 13:25:37 -0600817Entry: u-boot-img: U-Boot legacy image
818--------------------------------------
819
820Properties / Entry arguments:
821 - filename: Filename of u-boot.img (default 'u-boot.img')
822
823This is the U-Boot binary as a packaged image, in legacy format. It has a
824header which allows it to be loaded at the correct address for execution.
825
826You should use FIT (Flat Image Tree) instead of the legacy image for new
827applications.
828
829
830
831Entry: u-boot-nodtb: U-Boot flat binary without device tree appended
832--------------------------------------------------------------------
833
834Properties / Entry arguments:
835 - filename: Filename of u-boot.bin (default 'u-boot-nodtb.bin')
836
837This is the U-Boot binary, containing relocation information to allow it
838to relocate itself at runtime. It does not include a device tree blob at
839the end of it so normally cannot work without it. You can add a u_boot_dtb
840entry after this one, or use a u_boot entry instead (which contains both
841U-Boot and the device tree).
842
843
844
845Entry: u-boot-spl: U-Boot SPL binary
846------------------------------------
847
848Properties / Entry arguments:
849 - filename: Filename of u-boot-spl.bin (default 'spl/u-boot-spl.bin')
850
851This is the U-Boot SPL (Secondary Program Loader) binary. This is a small
852binary which loads before U-Boot proper, typically into on-chip SRAM. It is
853responsible for locating, loading and jumping to U-Boot. Note that SPL is
854not relocatable so must be loaded to the correct address in SRAM, or written
Simon Glass8425a1f2018-07-17 13:25:48 -0600855to run from the correct address if direct flash execution is possible (e.g.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600856on x86 devices).
857
858SPL can access binman symbols at runtime. See:
859
860 'Access to binman entry offsets at run time (symbols)'
861
862in the binman README for more information.
863
864The ELF file 'spl/u-boot-spl' must also be available for this to work, since
865binman uses that to look up symbols to write into the SPL binary.
866
867
868
869Entry: u-boot-spl-bss-pad: U-Boot SPL binary padded with a BSS region
870---------------------------------------------------------------------
871
872Properties / Entry arguments:
873 None
874
875This is similar to u_boot_spl except that padding is added after the SPL
876binary to cover the BSS (Block Started by Symbol) region. This region holds
877the various used by SPL. It is set to 0 by SPL when it starts up. If you
878want to append data to the SPL image (such as a device tree file), you must
879pad out the BSS region to avoid the data overlapping with U-Boot variables.
880This entry is useful in that case. It automatically pads out the entry size
881to cover both the code, data and BSS.
882
883The ELF file 'spl/u-boot-spl' must also be available for this to work, since
884binman uses that to look up the BSS address.
885
886
887
888Entry: u-boot-spl-dtb: U-Boot SPL device tree
889---------------------------------------------
890
891Properties / Entry arguments:
892 - filename: Filename of u-boot.dtb (default 'spl/u-boot-spl.dtb')
893
894This is the SPL device tree, containing configuration information for
895SPL. SPL needs this to know what devices are present and which drivers
896to activate.
897
898
899
Simon Glassb1714232018-09-14 04:57:35 -0600900Entry: u-boot-spl-elf: U-Boot SPL ELF image
901-------------------------------------------
902
903Properties / Entry arguments:
Simon Glass5dcc21d2019-07-08 13:18:45 -0600904 - filename: Filename of SPL u-boot (default 'spl/u-boot-spl')
Simon Glassb1714232018-09-14 04:57:35 -0600905
906This is the U-Boot SPL ELF image. It does not include a device tree but can
907be relocated to any address for execution.
908
909
910
Simon Glass7a61c6b2018-07-17 13:25:37 -0600911Entry: u-boot-spl-nodtb: SPL binary without device tree appended
912----------------------------------------------------------------
913
914Properties / Entry arguments:
915 - filename: Filename of spl/u-boot-spl-nodtb.bin (default
916 'spl/u-boot-spl-nodtb.bin')
917
918This is the U-Boot SPL binary, It does not include a device tree blob at
919the end of it so may not be able to work without it, assuming SPL needs
920a device tree to operation on your platform. You can add a u_boot_spl_dtb
921entry after this one, or use a u_boot_spl entry instead (which contains
922both SPL and the device tree).
923
924
925
926Entry: u-boot-spl-with-ucode-ptr: U-Boot SPL with embedded microcode pointer
927----------------------------------------------------------------------------
928
Simon Glass3fb4f422018-09-14 04:57:32 -0600929This is used when SPL must set up the microcode for U-Boot.
930
Simon Glass7a61c6b2018-07-17 13:25:37 -0600931See Entry_u_boot_ucode for full details of the entries involved in this
932process.
933
934
935
Simon Glass8425a1f2018-07-17 13:25:48 -0600936Entry: u-boot-tpl: U-Boot TPL binary
937------------------------------------
938
939Properties / Entry arguments:
940 - filename: Filename of u-boot-tpl.bin (default 'tpl/u-boot-tpl.bin')
941
942This is the U-Boot TPL (Tertiary Program Loader) binary. This is a small
943binary which loads before SPL, typically into on-chip SRAM. It is
944responsible for locating, loading and jumping to SPL, the next-stage
945loader. Note that SPL is not relocatable so must be loaded to the correct
946address in SRAM, or written to run from the correct address if direct
947flash execution is possible (e.g. on x86 devices).
948
949SPL can access binman symbols at runtime. See:
950
951 'Access to binman entry offsets at run time (symbols)'
952
953in the binman README for more information.
954
955The ELF file 'tpl/u-boot-tpl' must also be available for this to work, since
956binman uses that to look up symbols to write into the TPL binary.
957
958
959
960Entry: u-boot-tpl-dtb: U-Boot TPL device tree
961---------------------------------------------
962
963Properties / Entry arguments:
964 - filename: Filename of u-boot.dtb (default 'tpl/u-boot-tpl.dtb')
965
966This is the TPL device tree, containing configuration information for
967TPL. TPL needs this to know what devices are present and which drivers
968to activate.
969
970
971
Simon Glass3fb4f422018-09-14 04:57:32 -0600972Entry: u-boot-tpl-dtb-with-ucode: U-Boot TPL with embedded microcode pointer
973----------------------------------------------------------------------------
974
975This is used when TPL must set up the microcode for U-Boot.
976
977See Entry_u_boot_ucode for full details of the entries involved in this
978process.
979
980
981
Simon Glassa899f712019-07-08 13:18:46 -0600982Entry: u-boot-tpl-elf: U-Boot TPL ELF image
983-------------------------------------------
984
985Properties / Entry arguments:
986 - filename: Filename of TPL u-boot (default 'tpl/u-boot-tpl')
987
988This is the U-Boot TPL ELF image. It does not include a device tree but can
989be relocated to any address for execution.
990
991
992
Simon Glass3fb4f422018-09-14 04:57:32 -0600993Entry: u-boot-tpl-with-ucode-ptr: U-Boot TPL with embedded microcode pointer
994----------------------------------------------------------------------------
995
996See Entry_u_boot_ucode for full details of the entries involved in this
997process.
998
999
1000
Simon Glass7a61c6b2018-07-17 13:25:37 -06001001Entry: u-boot-ucode: U-Boot microcode block
1002-------------------------------------------
1003
1004Properties / Entry arguments:
1005 None
1006
1007The contents of this entry are filled in automatically by other entries
1008which must also be in the image.
1009
1010U-Boot on x86 needs a single block of microcode. This is collected from
1011the various microcode update nodes in the device tree. It is also unable
1012to read the microcode from the device tree on platforms that use FSP
1013(Firmware Support Package) binaries, because the API requires that the
1014microcode is supplied before there is any SRAM available to use (i.e.
1015the FSP sets up the SRAM / cache-as-RAM but does so in the call that
1016requires the microcode!). To keep things simple, all x86 platforms handle
1017microcode the same way in U-Boot (even non-FSP platforms). This is that
1018a table is placed at _dt_ucode_base_size containing the base address and
1019size of the microcode. This is either passed to the FSP (for FSP
1020platforms), or used to set up the microcode (for non-FSP platforms).
1021This all happens in the build system since it is the only way to get
1022the microcode into a single blob and accessible without SRAM.
1023
1024There are two cases to handle. If there is only one microcode blob in
1025the device tree, then the ucode pointer it set to point to that. This
1026entry (u-boot-ucode) is empty. If there is more than one update, then
1027this entry holds the concatenation of all updates, and the device tree
1028entry (u-boot-dtb-with-ucode) is updated to remove the microcode. This
1029last step ensures that that the microcode appears in one contiguous
1030block in the image and is not unnecessarily duplicated in the device
1031tree. It is referred to as 'collation' here.
1032
1033Entry types that have a part to play in handling microcode:
1034
1035 Entry_u_boot_with_ucode_ptr:
1036 Contains u-boot-nodtb.bin (i.e. U-Boot without the device tree).
1037 It updates it with the address and size of the microcode so that
1038 U-Boot can find it early on start-up.
1039 Entry_u_boot_dtb_with_ucode:
1040 Contains u-boot.dtb. It stores the microcode in a
1041 'self.ucode_data' property, which is then read by this class to
1042 obtain the microcode if needed. If collation is performed, it
1043 removes the microcode from the device tree.
1044 Entry_u_boot_ucode:
1045 This class. If collation is enabled it reads the microcode from
1046 the Entry_u_boot_dtb_with_ucode entry, and uses it as the
1047 contents of this entry.
1048
1049
1050
1051Entry: u-boot-with-ucode-ptr: U-Boot with embedded microcode pointer
1052--------------------------------------------------------------------
1053
1054Properties / Entry arguments:
Masahiro Yamadaa7a0ca42019-12-14 13:47:26 +09001055 - filename: Filename of u-boot-nodtb.bin (default 'u-boot-nodtb.bin')
Simon Glassee21d3a2018-09-14 04:57:07 -06001056 - optional-ucode: boolean property to make microcode optional. If the
1057 u-boot.bin image does not include microcode, no error will
1058 be generated.
Simon Glass7a61c6b2018-07-17 13:25:37 -06001059
1060See Entry_u_boot_ucode for full details of the three entries involved in
1061this process. This entry updates U-Boot with the offset and size of the
1062microcode, to allow early x86 boot code to find it without doing anything
1063complicated. Otherwise it is the same as the u_boot entry.
1064
1065
1066
Simon Glass5c350162018-07-17 13:25:47 -06001067Entry: vblock: An entry which contains a Chromium OS verified boot block
1068------------------------------------------------------------------------
1069
1070Properties / Entry arguments:
Simon Glass17b84eb2019-05-17 22:00:53 -06001071 - content: List of phandles to entries to sign
Simon Glass5c350162018-07-17 13:25:47 -06001072 - keydir: Directory containing the public keys to use
1073 - keyblock: Name of the key file to use (inside keydir)
1074 - signprivate: Name of provide key file to use (inside keydir)
1075 - version: Version number of the vblock (typically 1)
1076 - kernelkey: Name of the kernel key to use (inside keydir)
1077 - preamble-flags: Value of the vboot preamble flags (typically 0)
1078
Simon Glass639505b2018-09-14 04:57:11 -06001079Output files:
1080 - input.<unique_name> - input file passed to futility
1081 - vblock.<unique_name> - output file generated by futility (which is
1082 used as the entry contents)
1083
Jagdish Gediya311d4842018-09-03 21:35:08 +05301084Chromium OS signs the read-write firmware and kernel, writing the signature
Simon Glass5c350162018-07-17 13:25:47 -06001085in this block. This allows U-Boot to verify that the next firmware stage
1086and kernel are genuine.
1087
1088
1089
Simon Glass0b074d62019-08-24 07:22:48 -06001090Entry: x86-reset16: x86 16-bit reset code for U-Boot
1091----------------------------------------------------
1092
1093Properties / Entry arguments:
1094 - filename: Filename of u-boot-x86-reset16.bin (default
1095 'u-boot-x86-reset16.bin')
1096
1097x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1098must be placed at a particular address. This entry holds that code. It is
1099typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1100for jumping to the x86-start16 code, which continues execution.
1101
1102For 64-bit U-Boot, the 'x86_reset16_spl' entry type is used instead.
1103
1104
1105
1106Entry: x86-reset16-spl: x86 16-bit reset code for U-Boot
1107--------------------------------------------------------
1108
1109Properties / Entry arguments:
1110 - filename: Filename of u-boot-x86-reset16.bin (default
1111 'u-boot-x86-reset16.bin')
1112
1113x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1114must be placed at a particular address. This entry holds that code. It is
1115typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1116for jumping to the x86-start16 code, which continues execution.
1117
1118For 32-bit U-Boot, the 'x86_reset_spl' entry type is used instead.
1119
1120
1121
1122Entry: x86-reset16-tpl: x86 16-bit reset code for U-Boot
1123--------------------------------------------------------
1124
1125Properties / Entry arguments:
1126 - filename: Filename of u-boot-x86-reset16.bin (default
1127 'u-boot-x86-reset16.bin')
1128
1129x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1130must be placed at a particular address. This entry holds that code. It is
1131typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1132for jumping to the x86-start16 code, which continues execution.
1133
1134For 32-bit U-Boot, the 'x86_reset_tpl' entry type is used instead.
1135
1136
1137
Simon Glass7a61c6b2018-07-17 13:25:37 -06001138Entry: x86-start16: x86 16-bit start-up code for U-Boot
1139-------------------------------------------------------
1140
1141Properties / Entry arguments:
Simon Glassabab18c2019-08-24 07:22:49 -06001142 - filename: Filename of u-boot-x86-start16.bin (default
1143 'u-boot-x86-start16.bin')
Simon Glass7a61c6b2018-07-17 13:25:37 -06001144
1145x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
Simon Glassabab18c2019-08-24 07:22:49 -06001146must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1147entry holds that code. It is typically placed at offset
1148CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1149and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1150U-Boot).
Simon Glass7a61c6b2018-07-17 13:25:37 -06001151
1152For 64-bit U-Boot, the 'x86_start16_spl' entry type is used instead.
1153
1154
1155
1156Entry: x86-start16-spl: x86 16-bit start-up code for SPL
1157--------------------------------------------------------
1158
1159Properties / Entry arguments:
Simon Glassabab18c2019-08-24 07:22:49 -06001160 - filename: Filename of spl/u-boot-x86-start16-spl.bin (default
1161 'spl/u-boot-x86-start16-spl.bin')
Simon Glass7a61c6b2018-07-17 13:25:37 -06001162
Simon Glassabab18c2019-08-24 07:22:49 -06001163x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1164must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1165entry holds that code. It is typically placed at offset
1166CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1167and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1168U-Boot).
Simon Glass7a61c6b2018-07-17 13:25:37 -06001169
Simon Glassabab18c2019-08-24 07:22:49 -06001170For 32-bit U-Boot, the 'x86-start16' entry type is used instead.
Simon Glass7a61c6b2018-07-17 13:25:37 -06001171
1172
1173
Simon Glassed40e962018-09-14 04:57:10 -06001174Entry: x86-start16-tpl: x86 16-bit start-up code for TPL
1175--------------------------------------------------------
1176
1177Properties / Entry arguments:
Simon Glassabab18c2019-08-24 07:22:49 -06001178 - filename: Filename of tpl/u-boot-x86-start16-tpl.bin (default
1179 'tpl/u-boot-x86-start16-tpl.bin')
Simon Glassed40e962018-09-14 04:57:10 -06001180
Simon Glassabab18c2019-08-24 07:22:49 -06001181x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1182must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1183entry holds that code. It is typically placed at offset
1184CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1185and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1186U-Boot).
Simon Glassed40e962018-09-14 04:57:10 -06001187
Simon Glassabab18c2019-08-24 07:22:49 -06001188If TPL is not being used, the 'x86-start16-spl or 'x86-start16' entry types
Simon Glassed40e962018-09-14 04:57:10 -06001189may be used instead.
1190
1191
1192