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