blob: bf8edce02b4e7656265e0d18511c904abb7daa32 [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,
63 defaults to 0)
64
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 Glass39dd2152019-07-08 14:25:47 -0600694Since a section is also an entry, it inherits all the properies of entries
695too.
696
Simon Glass7a61c6b2018-07-17 13:25:37 -0600697A section is an entry which can contain other entries, thus allowing
698hierarchical images to be created. See 'Sections and hierarchical images'
699in the binman README for more information.
700
701
702
703Entry: text: An entry which contains text
704-----------------------------------------
705
706The text can be provided either in the node itself or by a command-line
707argument. There is a level of indirection to allow multiple text strings
708and sharing of text.
709
710Properties / Entry arguments:
711 text-label: The value of this string indicates the property / entry-arg
712 that contains the string to place in the entry
713 <xxx> (actual name is the value of text-label): contains the string to
714 place in the entry.
Simon Glass47f6a622019-07-08 13:18:40 -0600715 <text>: The text to place in the entry (overrides the above mechanism).
716 This is useful when the text is constant.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600717
718Example node:
719
720 text {
721 size = <50>;
722 text-label = "message";
723 };
724
725You can then use:
726
727 binman -amessage="this is my message"
728
729and binman will insert that string into the entry.
730
731It is also possible to put the string directly in the node:
732
733 text {
734 size = <8>;
735 text-label = "message";
736 message = "a message directly in the node"
737 };
738
Simon Glass47f6a622019-07-08 13:18:40 -0600739or just:
740
741 text {
742 size = <8>;
743 text = "some text directly in the node"
744 };
745
Simon Glass7a61c6b2018-07-17 13:25:37 -0600746The text is not itself nul-terminated. This can be achieved, if required,
747by setting the size of the entry to something larger than the text.
748
749
750
751Entry: u-boot: U-Boot flat binary
752---------------------------------
753
754Properties / Entry arguments:
755 - filename: Filename of u-boot.bin (default 'u-boot.bin')
756
757This is the U-Boot binary, containing relocation information to allow it
758to relocate itself at runtime. The binary typically includes a device tree
759blob at the end of it. Use u_boot_nodtb if you want to package the device
760tree separately.
761
762U-Boot can access binman symbols at runtime. See:
763
764 'Access to binman entry offsets at run time (fdt)'
765
766in the binman README for more information.
767
768
769
770Entry: u-boot-dtb: U-Boot device tree
771-------------------------------------
772
773Properties / Entry arguments:
774 - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
775
776This is the U-Boot device tree, containing configuration information for
777U-Boot. U-Boot needs this to know what devices are present and which drivers
778to activate.
779
Simon Glasse219aa42018-09-14 04:57:24 -0600780Note: This is mostly an internal entry type, used by others. This allows
781binman to know which entries contain a device tree.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600782
783
Simon Glass7a61c6b2018-07-17 13:25:37 -0600784
785Entry: u-boot-dtb-with-ucode: A U-Boot device tree file, with the microcode removed
786-----------------------------------------------------------------------------------
787
788Properties / Entry arguments:
789 - filename: Filename of u-boot.dtb (default 'u-boot.dtb')
790
791See Entry_u_boot_ucode for full details of the three entries involved in
792this process. This entry provides the U-Boot device-tree file, which
793contains the microcode. If the microcode is not being collated into one
794place then the offset and size of the microcode is recorded by this entry,
795for use by u_boot_with_ucode_ptr. If it is being collated, then this
796entry deletes the microcode from the device tree (to save space) and makes
797it available to u_boot_ucode.
798
799
800
Simon Glassb1714232018-09-14 04:57:35 -0600801Entry: u-boot-elf: U-Boot ELF image
802-----------------------------------
803
804Properties / Entry arguments:
805 - filename: Filename of u-boot (default 'u-boot')
806
807This is the U-Boot ELF image. It does not include a device tree but can be
808relocated to any address for execution.
809
810
811
Simon Glass7a61c6b2018-07-17 13:25:37 -0600812Entry: u-boot-img: U-Boot legacy image
813--------------------------------------
814
815Properties / Entry arguments:
816 - filename: Filename of u-boot.img (default 'u-boot.img')
817
818This is the U-Boot binary as a packaged image, in legacy format. It has a
819header which allows it to be loaded at the correct address for execution.
820
821You should use FIT (Flat Image Tree) instead of the legacy image for new
822applications.
823
824
825
826Entry: u-boot-nodtb: U-Boot flat binary without device tree appended
827--------------------------------------------------------------------
828
829Properties / Entry arguments:
830 - filename: Filename of u-boot.bin (default 'u-boot-nodtb.bin')
831
832This is the U-Boot binary, containing relocation information to allow it
833to relocate itself at runtime. It does not include a device tree blob at
834the end of it so normally cannot work without it. You can add a u_boot_dtb
835entry after this one, or use a u_boot entry instead (which contains both
836U-Boot and the device tree).
837
838
839
840Entry: u-boot-spl: U-Boot SPL binary
841------------------------------------
842
843Properties / Entry arguments:
844 - filename: Filename of u-boot-spl.bin (default 'spl/u-boot-spl.bin')
845
846This is the U-Boot SPL (Secondary Program Loader) binary. This is a small
847binary which loads before U-Boot proper, typically into on-chip SRAM. It is
848responsible for locating, loading and jumping to U-Boot. Note that SPL is
849not relocatable so must be loaded to the correct address in SRAM, or written
Simon Glass8425a1f2018-07-17 13:25:48 -0600850to run from the correct address if direct flash execution is possible (e.g.
Simon Glass7a61c6b2018-07-17 13:25:37 -0600851on x86 devices).
852
853SPL can access binman symbols at runtime. See:
854
855 'Access to binman entry offsets at run time (symbols)'
856
857in the binman README for more information.
858
859The ELF file 'spl/u-boot-spl' must also be available for this to work, since
860binman uses that to look up symbols to write into the SPL binary.
861
862
863
864Entry: u-boot-spl-bss-pad: U-Boot SPL binary padded with a BSS region
865---------------------------------------------------------------------
866
867Properties / Entry arguments:
868 None
869
870This is similar to u_boot_spl except that padding is added after the SPL
871binary to cover the BSS (Block Started by Symbol) region. This region holds
872the various used by SPL. It is set to 0 by SPL when it starts up. If you
873want to append data to the SPL image (such as a device tree file), you must
874pad out the BSS region to avoid the data overlapping with U-Boot variables.
875This entry is useful in that case. It automatically pads out the entry size
876to cover both the code, data and BSS.
877
878The ELF file 'spl/u-boot-spl' must also be available for this to work, since
879binman uses that to look up the BSS address.
880
881
882
883Entry: u-boot-spl-dtb: U-Boot SPL device tree
884---------------------------------------------
885
886Properties / Entry arguments:
887 - filename: Filename of u-boot.dtb (default 'spl/u-boot-spl.dtb')
888
889This is the SPL device tree, containing configuration information for
890SPL. SPL needs this to know what devices are present and which drivers
891to activate.
892
893
894
Simon Glassb1714232018-09-14 04:57:35 -0600895Entry: u-boot-spl-elf: U-Boot SPL ELF image
896-------------------------------------------
897
898Properties / Entry arguments:
Simon Glass5dcc21d2019-07-08 13:18:45 -0600899 - filename: Filename of SPL u-boot (default 'spl/u-boot-spl')
Simon Glassb1714232018-09-14 04:57:35 -0600900
901This is the U-Boot SPL ELF image. It does not include a device tree but can
902be relocated to any address for execution.
903
904
905
Simon Glass7a61c6b2018-07-17 13:25:37 -0600906Entry: u-boot-spl-nodtb: SPL binary without device tree appended
907----------------------------------------------------------------
908
909Properties / Entry arguments:
910 - filename: Filename of spl/u-boot-spl-nodtb.bin (default
911 'spl/u-boot-spl-nodtb.bin')
912
913This is the U-Boot SPL binary, It does not include a device tree blob at
914the end of it so may not be able to work without it, assuming SPL needs
915a device tree to operation on your platform. You can add a u_boot_spl_dtb
916entry after this one, or use a u_boot_spl entry instead (which contains
917both SPL and the device tree).
918
919
920
921Entry: u-boot-spl-with-ucode-ptr: U-Boot SPL with embedded microcode pointer
922----------------------------------------------------------------------------
923
Simon Glass3fb4f422018-09-14 04:57:32 -0600924This is used when SPL must set up the microcode for U-Boot.
925
Simon Glass7a61c6b2018-07-17 13:25:37 -0600926See Entry_u_boot_ucode for full details of the entries involved in this
927process.
928
929
930
Simon Glass8425a1f2018-07-17 13:25:48 -0600931Entry: u-boot-tpl: U-Boot TPL binary
932------------------------------------
933
934Properties / Entry arguments:
935 - filename: Filename of u-boot-tpl.bin (default 'tpl/u-boot-tpl.bin')
936
937This is the U-Boot TPL (Tertiary Program Loader) binary. This is a small
938binary which loads before SPL, typically into on-chip SRAM. It is
939responsible for locating, loading and jumping to SPL, the next-stage
940loader. Note that SPL is not relocatable so must be loaded to the correct
941address in SRAM, or written to run from the correct address if direct
942flash execution is possible (e.g. on x86 devices).
943
944SPL can access binman symbols at runtime. See:
945
946 'Access to binman entry offsets at run time (symbols)'
947
948in the binman README for more information.
949
950The ELF file 'tpl/u-boot-tpl' must also be available for this to work, since
951binman uses that to look up symbols to write into the TPL binary.
952
953
954
955Entry: u-boot-tpl-dtb: U-Boot TPL device tree
956---------------------------------------------
957
958Properties / Entry arguments:
959 - filename: Filename of u-boot.dtb (default 'tpl/u-boot-tpl.dtb')
960
961This is the TPL device tree, containing configuration information for
962TPL. TPL needs this to know what devices are present and which drivers
963to activate.
964
965
966
Simon Glass3fb4f422018-09-14 04:57:32 -0600967Entry: u-boot-tpl-dtb-with-ucode: U-Boot TPL with embedded microcode pointer
968----------------------------------------------------------------------------
969
970This is used when TPL must set up the microcode for U-Boot.
971
972See Entry_u_boot_ucode for full details of the entries involved in this
973process.
974
975
976
Simon Glassa899f712019-07-08 13:18:46 -0600977Entry: u-boot-tpl-elf: U-Boot TPL ELF image
978-------------------------------------------
979
980Properties / Entry arguments:
981 - filename: Filename of TPL u-boot (default 'tpl/u-boot-tpl')
982
983This is the U-Boot TPL ELF image. It does not include a device tree but can
984be relocated to any address for execution.
985
986
987
Simon Glass3fb4f422018-09-14 04:57:32 -0600988Entry: u-boot-tpl-with-ucode-ptr: U-Boot TPL with embedded microcode pointer
989----------------------------------------------------------------------------
990
991See Entry_u_boot_ucode for full details of the entries involved in this
992process.
993
994
995
Simon Glass7a61c6b2018-07-17 13:25:37 -0600996Entry: u-boot-ucode: U-Boot microcode block
997-------------------------------------------
998
999Properties / Entry arguments:
1000 None
1001
1002The contents of this entry are filled in automatically by other entries
1003which must also be in the image.
1004
1005U-Boot on x86 needs a single block of microcode. This is collected from
1006the various microcode update nodes in the device tree. It is also unable
1007to read the microcode from the device tree on platforms that use FSP
1008(Firmware Support Package) binaries, because the API requires that the
1009microcode is supplied before there is any SRAM available to use (i.e.
1010the FSP sets up the SRAM / cache-as-RAM but does so in the call that
1011requires the microcode!). To keep things simple, all x86 platforms handle
1012microcode the same way in U-Boot (even non-FSP platforms). This is that
1013a table is placed at _dt_ucode_base_size containing the base address and
1014size of the microcode. This is either passed to the FSP (for FSP
1015platforms), or used to set up the microcode (for non-FSP platforms).
1016This all happens in the build system since it is the only way to get
1017the microcode into a single blob and accessible without SRAM.
1018
1019There are two cases to handle. If there is only one microcode blob in
1020the device tree, then the ucode pointer it set to point to that. This
1021entry (u-boot-ucode) is empty. If there is more than one update, then
1022this entry holds the concatenation of all updates, and the device tree
1023entry (u-boot-dtb-with-ucode) is updated to remove the microcode. This
1024last step ensures that that the microcode appears in one contiguous
1025block in the image and is not unnecessarily duplicated in the device
1026tree. It is referred to as 'collation' here.
1027
1028Entry types that have a part to play in handling microcode:
1029
1030 Entry_u_boot_with_ucode_ptr:
1031 Contains u-boot-nodtb.bin (i.e. U-Boot without the device tree).
1032 It updates it with the address and size of the microcode so that
1033 U-Boot can find it early on start-up.
1034 Entry_u_boot_dtb_with_ucode:
1035 Contains u-boot.dtb. It stores the microcode in a
1036 'self.ucode_data' property, which is then read by this class to
1037 obtain the microcode if needed. If collation is performed, it
1038 removes the microcode from the device tree.
1039 Entry_u_boot_ucode:
1040 This class. If collation is enabled it reads the microcode from
1041 the Entry_u_boot_dtb_with_ucode entry, and uses it as the
1042 contents of this entry.
1043
1044
1045
1046Entry: u-boot-with-ucode-ptr: U-Boot with embedded microcode pointer
1047--------------------------------------------------------------------
1048
1049Properties / Entry arguments:
Masahiro Yamadaa7a0ca42019-12-14 13:47:26 +09001050 - filename: Filename of u-boot-nodtb.bin (default 'u-boot-nodtb.bin')
Simon Glassee21d3a2018-09-14 04:57:07 -06001051 - optional-ucode: boolean property to make microcode optional. If the
1052 u-boot.bin image does not include microcode, no error will
1053 be generated.
Simon Glass7a61c6b2018-07-17 13:25:37 -06001054
1055See Entry_u_boot_ucode for full details of the three entries involved in
1056this process. This entry updates U-Boot with the offset and size of the
1057microcode, to allow early x86 boot code to find it without doing anything
1058complicated. Otherwise it is the same as the u_boot entry.
1059
1060
1061
Simon Glass5c350162018-07-17 13:25:47 -06001062Entry: vblock: An entry which contains a Chromium OS verified boot block
1063------------------------------------------------------------------------
1064
1065Properties / Entry arguments:
Simon Glass17b84eb2019-05-17 22:00:53 -06001066 - content: List of phandles to entries to sign
Simon Glass5c350162018-07-17 13:25:47 -06001067 - keydir: Directory containing the public keys to use
1068 - keyblock: Name of the key file to use (inside keydir)
1069 - signprivate: Name of provide key file to use (inside keydir)
1070 - version: Version number of the vblock (typically 1)
1071 - kernelkey: Name of the kernel key to use (inside keydir)
1072 - preamble-flags: Value of the vboot preamble flags (typically 0)
1073
Simon Glass639505b2018-09-14 04:57:11 -06001074Output files:
1075 - input.<unique_name> - input file passed to futility
1076 - vblock.<unique_name> - output file generated by futility (which is
1077 used as the entry contents)
1078
Jagdish Gediya311d4842018-09-03 21:35:08 +05301079Chromium OS signs the read-write firmware and kernel, writing the signature
Simon Glass5c350162018-07-17 13:25:47 -06001080in this block. This allows U-Boot to verify that the next firmware stage
1081and kernel are genuine.
1082
1083
1084
Simon Glass0b074d62019-08-24 07:22:48 -06001085Entry: x86-reset16: x86 16-bit reset code for U-Boot
1086----------------------------------------------------
1087
1088Properties / Entry arguments:
1089 - filename: Filename of u-boot-x86-reset16.bin (default
1090 'u-boot-x86-reset16.bin')
1091
1092x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1093must be placed at a particular address. This entry holds that code. It is
1094typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1095for jumping to the x86-start16 code, which continues execution.
1096
1097For 64-bit U-Boot, the 'x86_reset16_spl' entry type is used instead.
1098
1099
1100
1101Entry: x86-reset16-spl: x86 16-bit reset code for U-Boot
1102--------------------------------------------------------
1103
1104Properties / Entry arguments:
1105 - filename: Filename of u-boot-x86-reset16.bin (default
1106 'u-boot-x86-reset16.bin')
1107
1108x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1109must be placed at a particular address. This entry holds that code. It is
1110typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1111for jumping to the x86-start16 code, which continues execution.
1112
1113For 32-bit U-Boot, the 'x86_reset_spl' entry type is used instead.
1114
1115
1116
1117Entry: x86-reset16-tpl: x86 16-bit reset code for U-Boot
1118--------------------------------------------------------
1119
1120Properties / Entry arguments:
1121 - filename: Filename of u-boot-x86-reset16.bin (default
1122 'u-boot-x86-reset16.bin')
1123
1124x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1125must be placed at a particular address. This entry holds that code. It is
1126typically placed at offset CONFIG_RESET_VEC_LOC. The code is responsible
1127for jumping to the x86-start16 code, which continues execution.
1128
1129For 32-bit U-Boot, the 'x86_reset_tpl' entry type is used instead.
1130
1131
1132
Simon Glass7a61c6b2018-07-17 13:25:37 -06001133Entry: x86-start16: x86 16-bit start-up code for U-Boot
1134-------------------------------------------------------
1135
1136Properties / Entry arguments:
Simon Glassabab18c2019-08-24 07:22:49 -06001137 - filename: Filename of u-boot-x86-start16.bin (default
1138 'u-boot-x86-start16.bin')
Simon Glass7a61c6b2018-07-17 13:25:37 -06001139
1140x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
Simon Glassabab18c2019-08-24 07:22:49 -06001141must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1142entry holds that code. It is typically placed at offset
1143CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1144and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1145U-Boot).
Simon Glass7a61c6b2018-07-17 13:25:37 -06001146
1147For 64-bit U-Boot, the 'x86_start16_spl' entry type is used instead.
1148
1149
1150
1151Entry: x86-start16-spl: x86 16-bit start-up code for SPL
1152--------------------------------------------------------
1153
1154Properties / Entry arguments:
Simon Glassabab18c2019-08-24 07:22:49 -06001155 - filename: Filename of spl/u-boot-x86-start16-spl.bin (default
1156 'spl/u-boot-x86-start16-spl.bin')
Simon Glass7a61c6b2018-07-17 13:25:37 -06001157
Simon Glassabab18c2019-08-24 07:22:49 -06001158x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1159must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1160entry holds that code. It is typically placed at offset
1161CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1162and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1163U-Boot).
Simon Glass7a61c6b2018-07-17 13:25:37 -06001164
Simon Glassabab18c2019-08-24 07:22:49 -06001165For 32-bit U-Boot, the 'x86-start16' entry type is used instead.
Simon Glass7a61c6b2018-07-17 13:25:37 -06001166
1167
1168
Simon Glassed40e962018-09-14 04:57:10 -06001169Entry: x86-start16-tpl: x86 16-bit start-up code for TPL
1170--------------------------------------------------------
1171
1172Properties / Entry arguments:
Simon Glassabab18c2019-08-24 07:22:49 -06001173 - filename: Filename of tpl/u-boot-x86-start16-tpl.bin (default
1174 'tpl/u-boot-x86-start16-tpl.bin')
Simon Glassed40e962018-09-14 04:57:10 -06001175
Simon Glassabab18c2019-08-24 07:22:49 -06001176x86 CPUs start up in 16-bit mode, even if they are 32-bit CPUs. This code
1177must be placed in the top 64KB of the ROM. The reset code jumps to it. This
1178entry holds that code. It is typically placed at offset
1179CONFIG_SYS_X86_START16. The code is responsible for changing to 32-bit mode
1180and jumping to U-Boot's entry point, which requires 32-bit mode (for 32-bit
1181U-Boot).
Simon Glassed40e962018-09-14 04:57:10 -06001182
Simon Glassabab18c2019-08-24 07:22:49 -06001183If TPL is not being used, the 'x86-start16-spl or 'x86-start16' entry types
Simon Glassed40e962018-09-14 04:57:10 -06001184may be used instead.
1185
1186
1187