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