blob: 230e055667f38063eb8670df438ce9c7b072f78f [file] [log] [blame]
Simon Glass61adb2d2021-03-18 20:25:13 +13001.. SPDX-License-Identifier: GPL-2.0+
2.. Copyright (c) 2016 Google, Inc
Simon Glassbf7fd502016-11-25 20:15:51 -07003
4Introduction
Simon Glass072026e2021-03-18 20:25:14 +13005============
Simon Glassbf7fd502016-11-25 20:15:51 -07006
7Firmware often consists of several components which must be packaged together.
8For example, we may have SPL, U-Boot, a device tree and an environment area
9grouped together and placed in MMC flash. When the system starts, it must be
10able to find these pieces.
11
Simon Glassfcae6682021-03-18 20:25:17 +130012Building firmware should be separate from packaging it. Many of the complexities
13of modern firmware build systems come from trying to do both at once. With
14binman, you build all the pieces that are needed, using whatever assortment of
15projects and build systems are needed, then use binman to stitch everything
16together.
Simon Glassbf7fd502016-11-25 20:15:51 -070017
18
19What it does
20------------
21
22Binman reads your board's device tree and finds a node which describes the
Simon Glassfcae6682021-03-18 20:25:17 +130023required image layout. It uses this to work out what to place where.
24
25Binman provides a mechanism for building images, from simple SPL + U-Boot
26combinations, to more complex arrangements with many parts. It also allows
27users to inspect images, extract and replace binaries within them, repacking if
28needed.
Simon Glassbf7fd502016-11-25 20:15:51 -070029
30
31Features
32--------
33
Simon Glassfcae6682021-03-18 20:25:17 +130034Apart from basic padding, alignment and positioning features, Binman supports
35hierarchical images, compression, hashing and dealing with the binary blobs
36which are a sad trend in open-source firmware at present.
Simon Glassbf7fd502016-11-25 20:15:51 -070037
Simon Glassfcae6682021-03-18 20:25:17 +130038Executable binaries can access the location of other binaries in an image by
39using special linker symbols (zero-overhead but somewhat limited) or by reading
40the devicetree description of the image.
Simon Glassbf7fd502016-11-25 20:15:51 -070041
Simon Glassfcae6682021-03-18 20:25:17 +130042Binman is designed primarily for use with U-Boot and associated binaries such
43as ARM Trusted Firmware, but it is suitable for use with other projects, such
44as Zephyr. Binman also provides facilities useful in Chromium OS, such as CBFS,
Simon Glass7d6fade2022-08-07 16:33:26 -060045vblocks and the like.
Simon Glassfcae6682021-03-18 20:25:17 +130046
47Binman provides a way to process binaries before they are included, by adding a
48Python plug-in.
Simon Glassbf7fd502016-11-25 20:15:51 -070049
50Binman is intended for use with U-Boot but is designed to be general enough
51to be useful in other image-packaging situations.
52
53
54Motivation
55----------
56
Simon Glassfcae6682021-03-18 20:25:17 +130057As mentioned above, packaging of firmware is quite a different task from
58building the various parts. In many cases the various binaries which go into
59the image come from separate build systems. For example, ARM Trusted Firmware
60is used on ARMv8 devices but is not built in the U-Boot tree. If a Linux kernel
61is included in the firmware image, it is built elsewhere.
Simon Glassbf7fd502016-11-25 20:15:51 -070062
63It is of course possible to add more and more build rules to the U-Boot
64build system to cover these cases. It can shell out to other Makefiles and
65build scripts. But it seems better to create a clear divide between building
66software and packaging it.
67
68At present this is handled by manual instructions, different for each board,
69on how to create images that will boot. By turning these instructions into a
70standard format, we can support making valid images for any board without
71manual effort, lots of READMEs, etc.
72
73Benefits:
Simon Glass61adb2d2021-03-18 20:25:13 +130074
75 - Each binary can have its own build system and tool chain without creating
76 any dependencies between them
77 - Avoids the need for a single-shot build: individual parts can be updated
78 and brought in as needed
79 - Provides for a standard image description available in the build and at
80 run-time
81 - SoC-specific image-signing tools can be accommodated
82 - Avoids cluttering the U-Boot build system with image-building code
83 - The image description is automatically available at run-time in U-Boot,
84 SPL. It can be made available to other software also
85 - The image description is easily readable (it's a text file in device-tree
86 format) and permits flexible packing of binaries
Simon Glassbf7fd502016-11-25 20:15:51 -070087
88
89Terminology
90-----------
91
92Binman uses the following terms:
93
94- image - an output file containing a firmware image
95- binary - an input binary that goes into the image
96
97
Simon Glass6608acb2023-02-23 18:18:23 -070098Installation
99------------
100
101You can install binman using::
102
103 pip install binary-manager
104
105The name is chosen since binman conflicts with an existing package.
106
107If you are using binman within the U-Boot tree, it may be easiest to add a
108symlink from your local `~/.bin` directory to `/path/to/tools/binman/binman`.
109
110
Simon Glassbf7fd502016-11-25 20:15:51 -0700111Relationship to FIT
112-------------------
113
114FIT is U-Boot's official image format. It supports multiple binaries with
115load / execution addresses, compression. It also supports verification
116through hashing and RSA signatures.
117
118FIT was originally designed to support booting a Linux kernel (with an
119optional ramdisk) and device tree chosen from various options in the FIT.
120Now that U-Boot supports configuration via device tree, it is possible to
121load U-Boot from a FIT, with the device tree chosen by SPL.
122
123Binman considers FIT to be one of the binaries it can place in the image.
124
125Where possible it is best to put as much as possible in the FIT, with binman
126used to deal with cases not covered by FIT. Examples include initial
127execution (since FIT itself does not have an executable header) and dealing
128with device boundaries, such as the read-only/read-write separation in SPI
129flash.
130
131For U-Boot, binman should not be used to create ad-hoc images in place of
132FIT.
133
Simon Glass7d6fade2022-08-07 16:33:26 -0600134Note that binman can itself create a FIT. This helps to move mkimage
135invocations out of the Makefile and into binman image descriptions. It also
136helps by removing the need for ad-hoc tools like `make_fit_atf.py`.
137
Simon Glassbf7fd502016-11-25 20:15:51 -0700138
139Relationship to mkimage
140-----------------------
141
142The mkimage tool provides a means to create a FIT. Traditionally it has
143needed an image description file: a device tree, like binman, but in a
144different format. More recently it has started to support a '-f auto' mode
145which can generate that automatically.
146
147More relevant to binman, mkimage also permits creation of many SoC-specific
148image types. These can be listed by running 'mkimage -T list'. Examples
149include 'rksd', the Rockchip SD/MMC boot format. The mkimage tool is often
150called from the U-Boot build system for this reason.
151
152Binman considers the output files created by mkimage to be binary blobs
153which it can place in an image. Binman does not replace the mkimage tool or
Michael Heimpold383d2562018-08-22 22:01:24 +0200154this purpose. It would be possible in some situations to create a new entry
Simon Glassbf7fd502016-11-25 20:15:51 -0700155type for the images in mkimage, but this would not add functionality. It
Michael Heimpold383d2562018-08-22 22:01:24 +0200156seems better to use the mkimage tool to generate binaries and avoid blurring
Simon Glassbf7fd502016-11-25 20:15:51 -0700157the boundaries between building input files (mkimage) and packaging then
158into a final image (binman).
159
Simon Glass7d6fade2022-08-07 16:33:26 -0600160Note that binman can itself invoke mkimage. This helps to move mkimage
161invocations out of the Makefile and into binman image descriptions.
162
Simon Glassbf7fd502016-11-25 20:15:51 -0700163
Simon Glass072026e2021-03-18 20:25:14 +1300164Using binman
165============
166
Simon Glassbf7fd502016-11-25 20:15:51 -0700167Example use of binman in U-Boot
168-------------------------------
169
170Binman aims to replace some of the ad-hoc image creation in the U-Boot
171build system.
172
173Consider sunxi. It has the following steps:
174
Simon Glass61adb2d2021-03-18 20:25:13 +1300175 #. It uses a custom mksunxiboot tool to build an SPL image called
176 sunxi-spl.bin. This should probably move into mkimage.
Simon Glassbf7fd502016-11-25 20:15:51 -0700177
Simon Glass61adb2d2021-03-18 20:25:13 +1300178 #. It uses mkimage to package U-Boot into a legacy image file (so that it can
179 hold the load and execution address) called u-boot.img.
Simon Glassbf7fd502016-11-25 20:15:51 -0700180
Simon Glass61adb2d2021-03-18 20:25:13 +1300181 #. It builds a final output image called u-boot-sunxi-with-spl.bin which
182 consists of sunxi-spl.bin, some padding and u-boot.img.
Simon Glassbf7fd502016-11-25 20:15:51 -0700183
184Binman is intended to replace the last step. The U-Boot build system builds
185u-boot.bin and sunxi-spl.bin. Binman can then take over creation of
Simon Glass206985e2022-02-08 11:49:54 -0700186sunxi-spl.bin by calling mksunxiboot or mkimage. In any case, it would then
187create the image from the component parts.
Simon Glassbf7fd502016-11-25 20:15:51 -0700188
189This simplifies the U-Boot Makefile somewhat, since various pieces of logic
190can be replaced by a call to binman.
191
192
Simon Glass7d6fade2022-08-07 16:33:26 -0600193Invoking binman within U-Boot
194-----------------------------
195
196Within U-Boot, binman is invoked by the build system, i.e. when you type 'make'
197or use buildman to build U-Boot. There is no need to run binman independently
198during development. Everything happens automatically and is set up for your
199SoC or board so that binman produced the right things.
200
201The general policy is that the Makefile builds all the binaries in INPUTS-y
202(the 'inputs' rule), then binman is run to produce the final images (the 'all'
203rule).
204
205There should be only one invocation of binman in Makefile, the very last step
206that pulls everything together. At present there are some arch-specific
207invocations as well, but these should be dropped when those architectures are
208converted to use binman properly.
209
210As above, the term 'binary' is used for something in INPUTS-y and 'image' is
211used for the things that binman creates. So the binaries are inputs to the
212image(s) and it is the image that is actually loaded on the board.
213
214Again, at present, there are a number of things created in Makefile which should
215be done by binman (when we get around to it), like `u-boot-ivt.img`,
216`lpc32xx-spl.img`, `u-boot-with-nand-spl.imx`, `u-boot-spl-padx4.sfp` and
217`u-boot-mtk.bin`, just to pick on a few. When completed this will remove about
218400 lines from `Makefile`.
219
220Since binman is invoked only once, it must of course create all the images that
221are needed, in that one invocation. It does this by working through the image
222descriptions one by one, collecting the input binaries, processing them as
223needed and producing the final images.
224
225The same binaries may be used by multiple images. For example binman may be used
226to produce an SD-card image and a SPI-flash image. In this case the binaries
227going into the process are the same, but binman produces slightly different
228images in each case.
229
230For some SoCs, U-Boot is not the only project that produces the necessary
231binaries. For example, ARM Trusted Firmware (ATF) is a project that produces
232binaries which must be incorporate, such as `bl31.elf` or `bl31.bin`. For this
233to work you must have built ATF before you build U-Boot and you must tell U-Boot
234where to find the bl31 image, using the BL31 environment variable.
235
236How do you know how to incorporate ATF? It is handled by the atf-bl31 entry type
237(etype). An etype is an implementation of reading a binary into binman, in this
238case the `bl31.bin` file. When you build U-Boot but do not set the BL31
239environment variable, binman provides a help message, which comes from
240`missing-blob-help`::
241
242 See the documentation for your board. You may need to build ARM Trusted
243 Firmware and build with BL31=/path/to/bl31.bin
244
245The mechanism by which binman is advised of this is also in the Makefile. See
246the `-a atf-bl31-path=${BL31}` piece in `cmd_binman`. This tells binman to
247set the EntryArg `atf-bl31-path` to the value of the `BL31` environment
248variable. Within binman, this EntryArg is picked up by the `Entry_atf_bl31`
249etype. An EntryArg is simply an argument to the entry. The `atf-bl31-path`
250name is documented in :ref:`etype_atf_bl31`.
251
Simon Glass07128602022-08-18 02:16:45 -0600252Taking this a little further, when binman is used to create a FIT, it supports
253using an ELF file, e.g. `bl31.elf` and splitting it into separate pieces (with
254`fit,operation = "split-elf"`), each with its own load address.
255
Simon Glass7d6fade2022-08-07 16:33:26 -0600256
257Invoking binman outside U-Boot
258------------------------------
259
260While binman is invoked from within the U-Boot build system, it is also possible
261to invoke it separately. This is typically used in a production build system,
262where signing is completed (with real keys) and any missing binaries are
263provided.
264
265For example, for build testing there is no need to provide a real signature,
266nor is there any need to provide a real ATF BL31 binary (for example). These can
267be added later by invoking binman again, providing all the required inputs
268from the first time, plus any that were missing or placeholders.
269
270So in practice binman is often used twice:
271
272- once within the U-Boot build system, for development and testing
273- again outside U-Boot to assembly and final production images
274
275While the same input binaries are used in each case, you will of course you will
276need to create your own binman command line, similar to that in `cmd_binman` in
277the Makefile. You may find the -I and --toolpath options useful. The
278device tree file is provided to binman in binary form, so there is no need to
279have access to the original `.dts` sources.
280
281
282Assembling the image description
283--------------------------------
284
285Since binman uses the device tree for its image description, you can use the
286same files that describe your board's hardware to describe how the image is
287assembled. Typically the images description is in a common file used by all
288boards with a particular SoC (e.g. `imx8mp-u-boot.dtsi`).
289
290Where a particular boards needs to make changes, it can override properties in
291the SoC file, just as it would for any other device tree property. It can also
292add a image that is specific to the board.
293
294Another way to control the image description to make use of CONFIG options in
295the description. For example, if the start offset of a particular entry varies
296by board, you can add a Kconfig for that and reference it in the description::
297
298 u-boot-spl {
299 };
300
301 fit {
302 offset = <CONFIG_SPL_PAD_TO>;
303 ...
304 };
305
306The SoC can provide a default value but boards can override that as needed and
307binman will take care of it.
308
309It is even possible to control which entries appear in the image, by using the
310C preprocessor::
311
312 #ifdef CONFIG_HAVE_MRC
313 intel-mrc {
Tom Rinifa2fd532022-12-04 10:14:07 -0500314 offset = <CFG_X86_MRC_ADDR>;
Simon Glass7d6fade2022-08-07 16:33:26 -0600315 };
316 #endif
317
318Only boards which enable `HAVE_MRC` will include this entry.
319
320Obviously a similar approach can be used to control which images are produced,
321with a Kconfig option to enable a SPI image, for example. However there is
322generally no harm in producing an image that is not used. If a board uses MMC
323but not SPI, but the SoC supports booting from both, then both images can be
324produced, with only on or other being used by particular boards. This can help
325reduce the need for having multiple defconfig targets for a board where the
326only difference is the boot media, enabling / disabling secure boot, etc.
327
328Of course you can use the device tree itself to pass any board-specific
329information that is needed by U-Boot at runtime (see binman_syms_ for how to
330make binman insert these values directly into executables like SPL).
331
332There is one more way this can be done: with individual .dtsi files for each
333image supported by the SoC. Then the board `.dts` file can include the ones it
334wants. This is not recommended, since it is likely to be difficult to maintain
335and harder to understand the relationship between the different boards.
336
337
338Producing images for multiple boards
339------------------------------------
340
341When invoked within U-Boot, binman only builds a single set of images, for
342the chosen board. This is set by the `CONFIG_DEFAULT_DEVICE_TREE` option.
343
344However, U-Boot generally builds all the device tree files associated with an
345SoC. These are written to the (e.g. for ARM) `arch/arm/dts` directory. Each of
346these contains the full binman description for that board. Often the best
347approach is to build a single image that includes all these device tree binaries
348and allow SPL to select the correct one on boot.
349
350However, it is also possible to build separate images for each board, simply by
351invoking binman multiple times, once for each device tree file, using a
352different output directory. This will produce one set of images for each board.
353
354
Simon Glassbf7fd502016-11-25 20:15:51 -0700355Example use of binman for x86
356-----------------------------
357
358In most cases x86 images have a lot of binary blobs, 'black-box' code
359provided by Intel which must be run for the platform to work. Typically
360these blobs are not relocatable and must be placed at fixed areas in the
Michael Heimpold383d2562018-08-22 22:01:24 +0200361firmware image.
Simon Glassbf7fd502016-11-25 20:15:51 -0700362
363Currently this is handled by ifdtool, which places microcode, FSP, MRC, VGA
364BIOS, reference code and Intel ME binaries into a u-boot.rom file.
365
366Binman is intended to replace all of this, with ifdtool left to handle only
367the configuration of the Intel-format descriptor.
368
369
Simon Glass81d6e3f2022-01-09 20:13:48 -0700370Installing binman
371-----------------
Simon Glassbf7fd502016-11-25 20:15:51 -0700372
Simon Glass7d6fade2022-08-07 16:33:26 -0600373First install prerequisites, e.g:
374
375.. code-block:: bash
Simon Glassd8d40742019-07-08 13:18:35 -0600376
Simon Glass61adb2d2021-03-18 20:25:13 +1300377 sudo apt-get install python-pyelftools python3-pyelftools lzma-alone \
378 liblz4-tool
Simon Glassd8d40742019-07-08 13:18:35 -0600379
Simon Glass81d6e3f2022-01-09 20:13:48 -0700380You can run binman directly if you put it on your PATH. But if you want to
Simon Glass7d6fade2022-08-07 16:33:26 -0600381install into your `~/.local` Python directory, use:
382
383.. code-block:: bash
Simon Glass81d6e3f2022-01-09 20:13:48 -0700384
385 pip install tools/patman tools/dtoc tools/binman
386
387Note that binman makes use of libraries from patman and dtoc, which is why these
388need to be installed. Also you need `libfdt` and `pylibfdt` which can be
Simon Glass7d6fade2022-08-07 16:33:26 -0600389installed like this:
390
391.. code-block:: bash
Simon Glass81d6e3f2022-01-09 20:13:48 -0700392
393 git clone git://git.kernel.org/pub/scm/utils/dtc/dtc.git
394 cd dtc
395 pip install .
396 make NO_PYTHON=1 install
397
398This installs the `libfdt.so` library into `~/lib` so you can use
399`LD_LIBRARY_PATH=~/lib` when running binman. If you want to install it in the
Simon Glass7d6fade2022-08-07 16:33:26 -0600400system-library directory, replace the last line with:
401
402.. code-block:: bash
Simon Glass81d6e3f2022-01-09 20:13:48 -0700403
404 make NO_PYTHON=1 PREFIX=/ install
405
406Running binman
407--------------
408
Ralph Siemsenabe2a162023-02-22 15:56:59 -0500409Type:
Simon Glassbf7fd502016-11-25 20:15:51 -0700410
Ralph Siemsenabe2a162023-02-22 15:56:59 -0500411.. code-block:: bash
Simon Glass7d6fade2022-08-07 16:33:26 -0600412
413 make NO_PYTHON=1 PREFIX=/ install
Simon Glass61adb2d2021-03-18 20:25:13 +1300414 binman build -b <board_name>
Simon Glassbf7fd502016-11-25 20:15:51 -0700415
416to build an image for a board. The board name is the same name used when
417configuring U-Boot (e.g. for sandbox_defconfig the board name is 'sandbox').
418Binman assumes that the input files for the build are in ../b/<board_name>.
419
Simon Glass7d6fade2022-08-07 16:33:26 -0600420Or you can specify this explicitly:
Simon Glassbf7fd502016-11-25 20:15:51 -0700421
Simon Glass7d6fade2022-08-07 16:33:26 -0600422.. code-block:: bash
423
424 make NO_PYTHON=1 PREFIX=/ install
Simon Glass61adb2d2021-03-18 20:25:13 +1300425 binman build -I <build_path>
Simon Glassbf7fd502016-11-25 20:15:51 -0700426
427where <build_path> is the build directory containing the output of the U-Boot
428build.
429
430(Future work will make this more configurable)
431
432In either case, binman picks up the device tree file (u-boot.dtb) and looks
433for its instructions in the 'binman' node.
434
435Binman has a few other options which you can see by running 'binman -h'.
436
437
Simon Glass9c0a8b12017-11-12 21:52:06 -0700438Enabling binman for a board
439---------------------------
440
Simon Glassfcae6682021-03-18 20:25:17 +1300441At present binman is invoked from a rule in the main Makefile. You should be
442able to enable CONFIG_BINMAN to enable this rule.
Simon Glass9c0a8b12017-11-12 21:52:06 -0700443
Simon Glassfcae6682021-03-18 20:25:17 +1300444The output file is typically named image.bin and is located in the output
445directory. If input files are needed to you add these to INPUTS-y either in the
446main Makefile or in a config.mk file in your arch subdirectory.
Simon Glass9c0a8b12017-11-12 21:52:06 -0700447
448Once binman is executed it will pick up its instructions from a device-tree
449file, typically <soc>-u-boot.dtsi, where <soc> is your CONFIG_SYS_SOC value.
450You can use other, more specific CONFIG options - see 'Automatic .dtsi
451inclusion' below.
452
Simon Glass7d6fade2022-08-07 16:33:26 -0600453.. _binman_syms:
Simon Glass9c0a8b12017-11-12 21:52:06 -0700454
Simon Glass072026e2021-03-18 20:25:14 +1300455Access to binman entry offsets at run time (symbols)
456----------------------------------------------------
457
458Binman assembles images and determines where each entry is placed in the image.
459This information may be useful to U-Boot at run time. For example, in SPL it
460is useful to be able to find the location of U-Boot so that it can be executed
461when SPL is finished.
462
463Binman allows you to declare symbols in the SPL image which are filled in
Simon Glass7d6fade2022-08-07 16:33:26 -0600464with their correct values during the build. For example:
465
466.. code-block:: c
Simon Glass072026e2021-03-18 20:25:14 +1300467
468 binman_sym_declare(ulong, u_boot_any, image_pos);
469
470declares a ulong value which will be assigned to the image-pos of any U-Boot
471image (u-boot.bin, u-boot.img, u-boot-nodtb.bin) that is present in the image.
Simon Glass7d6fade2022-08-07 16:33:26 -0600472You can access this value with something like:
473
474.. code-block:: c
Simon Glass072026e2021-03-18 20:25:14 +1300475
476 ulong u_boot_offset = binman_sym(ulong, u_boot_any, image_pos);
477
478Thus u_boot_offset will be set to the image-pos of U-Boot in memory, assuming
479that the whole image has been loaded, or is available in flash. You can then
480jump to that address to start U-Boot.
481
482At present this feature is only supported in SPL and TPL. In principle it is
483possible to fill in such symbols in U-Boot proper, as well, but a future C
484library is planned for this instead, to read from the device tree.
485
486As well as image-pos, it is possible to read the size of an entry and its
487offset (which is the start position of the entry within its parent).
488
489A small technical note: Binman automatically adds the base address of the image
490(i.e. __image_copy_start) to the value of the image-pos symbol, so that when the
491image is loaded to its linked address, the value will be correct and actually
492point into the image.
493
494For example, say SPL is at the start of the image and linked to start at address
49580108000. If U-Boot's image-pos is 0x8000 then binman will write an image-pos
496for U-Boot of 80110000 into the SPL binary, since it assumes the image is loaded
497to 80108000, with SPL at 80108000 and U-Boot at 80110000.
498
499For x86 devices (with the end-at-4gb property) this base address is not added
500since it is assumed that images are XIP and the offsets already include the
501address.
502
Simon Glassc1157862023-01-11 16:10:17 -0700503While U-Boot's symbol updating is handled automatically by the u-boot-spl
504entry type (and others), it is possible to use this feature with any blob. To
505do this, add a `write-symbols` (boolean) property to the node, set the ELF
506filename using `elf-filename` and set 'elf-base-sym' to the base symbol for the
507start of the binary image (this defaults to `__image_copy_start` which is what
508U-Boot uses). See `testBlobSymbol()` for an example.
509
Simon Glass23ab4e02023-01-07 14:07:11 -0700510.. _binman_fdt:
Simon Glass072026e2021-03-18 20:25:14 +1300511
512Access to binman entry offsets at run time (fdt)
513------------------------------------------------
514
515Binman can update the U-Boot FDT to include the final position and size of
516each entry in the images it processes. The option to enable this is -u and it
517causes binman to make sure that the 'offset', 'image-pos' and 'size' properties
518are set correctly for every entry. Since it is not necessary to specify these in
519the image definition, binman calculates the final values and writes these to
520the device tree. These can be used by U-Boot at run-time to find the location
521of each entry.
522
523Alternatively, an FDT map entry can be used to add a special FDT containing
524just the information about the image. This is preceded by a magic string so can
525be located anywhere in the image. An image header (typically at the start or end
526of the image) can be used to point to the FDT map. See fdtmap and image-header
527entries for more information.
528
Simon Glass072026e2021-03-18 20:25:14 +1300529Map files
530---------
531
532The -m option causes binman to output a .map file for each image that it
533generates. This shows the offset and size of each entry. For example::
534
535 Offset Size Name
536 00000000 00000028 main-section
537 00000000 00000010 section@0
538 00000000 00000004 u-boot
539 00000010 00000010 section@1
540 00000000 00000004 u-boot
541
542This shows a hierarchical image with two sections, each with a single entry. The
543offsets of the sections are absolute hex byte offsets within the image. The
544offsets of the entries are relative to their respective sections. The size of
545each entry is also shown, in bytes (hex). The indentation shows the entries
546nested inside their sections.
547
548
549Passing command-line arguments to entries
550-----------------------------------------
551
552Sometimes it is useful to pass binman the value of an entry property from the
553command line. For example some entries need access to files and it is not
554always convenient to put these filenames in the image definition (device tree).
555
Bin Meng2817c9d2021-05-10 20:23:30 +0800556The -a option supports this::
Simon Glass072026e2021-03-18 20:25:14 +1300557
Bin Meng2817c9d2021-05-10 20:23:30 +0800558 -a <prop>=<value>
Simon Glass072026e2021-03-18 20:25:14 +1300559
560where::
561
562 <prop> is the property to set
563 <value> is the value to set it to
564
565Not all properties can be provided this way. Only some entries support it,
566typically for filenames.
567
568
Simon Glassbf7fd502016-11-25 20:15:51 -0700569Image description format
Simon Glass072026e2021-03-18 20:25:14 +1300570========================
Simon Glassbf7fd502016-11-25 20:15:51 -0700571
572The binman node is called 'binman'. An example image description is shown
Simon Glass61adb2d2021-03-18 20:25:13 +1300573below::
Simon Glassbf7fd502016-11-25 20:15:51 -0700574
Simon Glass61adb2d2021-03-18 20:25:13 +1300575 binman {
576 filename = "u-boot-sunxi-with-spl.bin";
577 pad-byte = <0xff>;
578 blob {
579 filename = "spl/sunxi-spl.bin";
580 };
581 u-boot {
582 offset = <CONFIG_SPL_PAD_TO>;
583 };
584 };
Simon Glassbf7fd502016-11-25 20:15:51 -0700585
586
587This requests binman to create an image file called u-boot-sunxi-with-spl.bin
588consisting of a specially formatted SPL (spl/sunxi-spl.bin, built by the
589normal U-Boot Makefile), some 0xff padding, and a U-Boot legacy image. The
590padding comes from the fact that the second binary is placed at
591CONFIG_SPL_PAD_TO. If that line were omitted then the U-Boot binary would
592immediately follow the SPL binary.
593
594The binman node describes an image. The sub-nodes describe entries in the
595image. Each entry represents a region within the overall image. The name of
596the entry (blob, u-boot) tells binman what to put there. For 'blob' we must
597provide a filename. For 'u-boot', binman knows that this means 'u-boot.bin'.
598
599Entries are normally placed into the image sequentially, one after the other.
600The image size is the total size of all entries. As you can see, you can
Simon Glass3ab95982018-08-01 15:22:37 -0600601specify the start offset of an entry using the 'offset' property.
Simon Glassbf7fd502016-11-25 20:15:51 -0700602
603Note that due to a device tree requirement, all entries must have a unique
604name. If you want to put the same binary in the image multiple times, you can
605use any unique name, with the 'type' property providing the type.
606
607The attributes supported for entries are described below.
608
Simon Glass3ab95982018-08-01 15:22:37 -0600609offset:
Simon Glass61adb2d2021-03-18 20:25:13 +1300610 This sets the offset of an entry within the image or section containing
611 it. The first byte of the image is normally at offset 0. If 'offset' is
612 not provided, binman sets it to the end of the previous region, or the
613 start of the image's entry area (normally 0) if there is no previous
614 region.
Simon Glassbf7fd502016-11-25 20:15:51 -0700615
616align:
Simon Glass61adb2d2021-03-18 20:25:13 +1300617 This sets the alignment of the entry. The entry offset is adjusted
618 so that the entry starts on an aligned boundary within the containing
619 section or image. For example 'align = <16>' means that the entry will
620 start on a 16-byte boundary. This may mean that padding is added before
621 the entry. The padding is part of the containing section but is not
622 included in the entry, meaning that an empty space may be created before
623 the entry starts. Alignment should be a power of 2. If 'align' is not
624 provided, no alignment is performed.
Simon Glassbf7fd502016-11-25 20:15:51 -0700625
626size:
Simon Glass61adb2d2021-03-18 20:25:13 +1300627 This sets the size of the entry. The contents will be padded out to
628 this size. If this is not provided, it will be set to the size of the
629 contents.
Simon Glassbf7fd502016-11-25 20:15:51 -0700630
Samuel Hollandb01ae032023-01-21 17:25:16 -0600631min-size:
632 Sets the minimum size of the entry. This size includes explicit padding
633 ('pad-before' and 'pad-after'), but not padding added to meet alignment
634 requirements. While this does not affect the contents of the entry within
635 binman itself (the padding is performed only when its parent section is
636 assembled), the end result will be that the entry ends with the padding
637 bytes, so may grow. Defaults to 0.
638
Simon Glassbf7fd502016-11-25 20:15:51 -0700639pad-before:
Simon Glass61adb2d2021-03-18 20:25:13 +1300640 Padding before the contents of the entry. Normally this is 0, meaning
641 that the contents start at the beginning of the entry. This can be used
642 to offset the entry contents a little. While this does not affect the
643 contents of the entry within binman itself (the padding is performed
644 only when its parent section is assembled), the end result will be that
645 the entry starts with the padding bytes, so may grow. Defaults to 0.
Simon Glassbf7fd502016-11-25 20:15:51 -0700646
647pad-after:
Simon Glass61adb2d2021-03-18 20:25:13 +1300648 Padding after the contents of the entry. Normally this is 0, meaning
649 that the entry ends at the last byte of content (unless adjusted by
650 other properties). This allows room to be created in the image for
651 this entry to expand later. While this does not affect the contents of
652 the entry within binman itself (the padding is performed only when its
653 parent section is assembled), the end result will be that the entry ends
654 with the padding bytes, so may grow. Defaults to 0.
Simon Glassbf7fd502016-11-25 20:15:51 -0700655
656align-size:
Simon Glass61adb2d2021-03-18 20:25:13 +1300657 This sets the alignment of the entry size. For example, to ensure
658 that the size of an entry is a multiple of 64 bytes, set this to 64.
659 While this does not affect the contents of the entry within binman
660 itself (the padding is performed only when its parent section is
661 assembled), the end result is that the entry ends with the padding
662 bytes, so may grow. If 'align-size' is not provided, no alignment is
663 performed.
Simon Glassbf7fd502016-11-25 20:15:51 -0700664
665align-end:
Simon Glass61adb2d2021-03-18 20:25:13 +1300666 This sets the alignment of the end of an entry with respect to the
667 containing section. Some entries require that they end on an alignment
668 boundary, regardless of where they start. This does not move the start
669 of the entry, so the contents of the entry will still start at the
670 beginning. But there may be padding at the end. While this does not
671 affect the contents of the entry within binman itself (the padding is
672 performed only when its parent section is assembled), the end result
673 is that the entry ends with the padding bytes, so may grow.
674 If 'align-end' is not provided, no alignment is performed.
Simon Glassbf7fd502016-11-25 20:15:51 -0700675
676filename:
Simon Glass61adb2d2021-03-18 20:25:13 +1300677 For 'blob' types this provides the filename containing the binary to
678 put into the entry. If binman knows about the entry type (like
679 u-boot-bin), then there is no need to specify this.
Simon Glassbf7fd502016-11-25 20:15:51 -0700680
681type:
Simon Glass61adb2d2021-03-18 20:25:13 +1300682 Sets the type of an entry. This defaults to the entry name, but it is
683 possible to use any name, and then add (for example) 'type = "u-boot"'
684 to specify the type.
Simon Glassbf7fd502016-11-25 20:15:51 -0700685
Simon Glass3ab95982018-08-01 15:22:37 -0600686offset-unset:
Simon Glass61adb2d2021-03-18 20:25:13 +1300687 Indicates that the offset of this entry should not be set by placing
688 it immediately after the entry before. Instead, is set by another
689 entry which knows where this entry should go. When this boolean
690 property is present, binman will give an error if another entry does
691 not set the offset (with the GetOffsets() method).
Simon Glass258fb0e2018-06-01 09:38:17 -0600692
Simon Glassdbf6be92018-08-01 15:22:42 -0600693image-pos:
Simon Glass61adb2d2021-03-18 20:25:13 +1300694 This cannot be set on entry (or at least it is ignored if it is), but
695 with the -u option, binman will set it to the absolute image position
696 for each entry. This makes it easy to find out exactly where the entry
697 ended up in the image, regardless of parent sections, etc.
Simon Glassdbf6be92018-08-01 15:22:42 -0600698
Simon Glass80a66ae2022-03-05 20:18:59 -0700699extend-size:
700 Extend the size of this entry to fit available space. This space is only
Simon Glass61adb2d2021-03-18 20:25:13 +1300701 limited by the size of the image/section and the position of the next
702 entry.
Simon Glassbf7fd502016-11-25 20:15:51 -0700703
Simon Glass8287ee82019-07-08 14:25:30 -0600704compress:
Simon Glass61adb2d2021-03-18 20:25:13 +1300705 Sets the compression algortihm to use (for blobs only). See the entry
706 documentation for details.
Simon Glass8287ee82019-07-08 14:25:30 -0600707
Simon Glassb2381432020-09-06 10:39:09 -0600708missing-msg:
Simon Glass61adb2d2021-03-18 20:25:13 +1300709 Sets the tag of the message to show if this entry is missing. This is
710 used for external blobs. When they are missing it is helpful to show
711 information about what needs to be fixed. See missing-blob-help for the
712 message for each tag.
Simon Glassb2381432020-09-06 10:39:09 -0600713
Simon Glass3d433382021-03-21 18:24:30 +1300714no-expanded:
715 By default binman substitutes entries with expanded versions if available,
716 so that a `u-boot` entry type turns into `u-boot-expanded`, for example. The
717 `--no-expanded` command-line option disables this globally. The
718 `no-expanded` property disables this just for a single entry. Put the
719 `no-expanded` boolean property in the node to select this behaviour.
720
Simon Glass67a05012023-01-07 14:07:15 -0700721optional:
722 External blobs are normally required to be present for the image to be
723 built (but see `External blobs`_). This properly allows an entry to be
724 optional, so that when it is cannot be found, this problem is ignored and
725 an empty file is used for this blob. This should be used only when the blob
726 is entirely optional and is not needed for correct operation of the image.
727 Note that missing, optional blobs do not produce a non-zero exit code from
728 binman, although it does show a warning about the missing external blob.
729
Simon Glassf6abd522023-07-18 07:24:04 -0600730insert-template:
731 This is not strictly speaking an entry property, since it is processed early
732 in Binman before the entries are read. It is a list of phandles of nodes to
733 include in the current (target) node. For each node, its subnodes and their
734 properties are brought into the target node. See Templates_ below for
735 more information.
736
Simon Glass9c888cc2018-09-14 04:57:30 -0600737The attributes supported for images and sections are described below. Several
738are similar to those for entries.
Simon Glassbf7fd502016-11-25 20:15:51 -0700739
740size:
Simon Glass61adb2d2021-03-18 20:25:13 +1300741 Sets the image size in bytes, for example 'size = <0x100000>' for a
742 1MB image.
Simon Glassbf7fd502016-11-25 20:15:51 -0700743
Simon Glass9481c802019-04-25 21:58:39 -0600744offset:
Simon Glass61adb2d2021-03-18 20:25:13 +1300745 This is similar to 'offset' in entries, setting the offset of a section
746 within the image or section containing it. The first byte of the section
747 is normally at offset 0. If 'offset' is not provided, binman sets it to
748 the end of the previous region, or the start of the image's entry area
749 (normally 0) if there is no previous region.
Simon Glass9481c802019-04-25 21:58:39 -0600750
Simon Glassbf7fd502016-11-25 20:15:51 -0700751align-size:
Simon Glass61adb2d2021-03-18 20:25:13 +1300752 This sets the alignment of the image size. For example, to ensure
753 that the image ends on a 512-byte boundary, use 'align-size = <512>'.
754 If 'align-size' is not provided, no alignment is performed.
Simon Glassbf7fd502016-11-25 20:15:51 -0700755
756pad-before:
Simon Glass61adb2d2021-03-18 20:25:13 +1300757 This sets the padding before the image entries. The first entry will
758 be positioned after the padding. This defaults to 0.
Simon Glassbf7fd502016-11-25 20:15:51 -0700759
760pad-after:
Simon Glass61adb2d2021-03-18 20:25:13 +1300761 This sets the padding after the image entries. The padding will be
762 placed after the last entry. This defaults to 0.
Simon Glassbf7fd502016-11-25 20:15:51 -0700763
764pad-byte:
Simon Glass61adb2d2021-03-18 20:25:13 +1300765 This specifies the pad byte to use when padding in the image. It
766 defaults to 0. To use 0xff, you would add 'pad-byte = <0xff>'.
Simon Glassbf7fd502016-11-25 20:15:51 -0700767
768filename:
Simon Glass61adb2d2021-03-18 20:25:13 +1300769 This specifies the image filename. It defaults to 'image.bin'.
Simon Glassbf7fd502016-11-25 20:15:51 -0700770
Simon Glass3ab95982018-08-01 15:22:37 -0600771sort-by-offset:
Simon Glass61adb2d2021-03-18 20:25:13 +1300772 This causes binman to reorder the entries as needed to make sure they
773 are in increasing positional order. This can be used when your entry
774 order may not match the positional order. A common situation is where
775 the 'offset' properties are set by CONFIG options, so their ordering is
776 not known a priori.
Simon Glassbf7fd502016-11-25 20:15:51 -0700777
Simon Glass61adb2d2021-03-18 20:25:13 +1300778 This is a boolean property so needs no value. To enable it, add a
779 line 'sort-by-offset;' to your description.
Simon Glassbf7fd502016-11-25 20:15:51 -0700780
781multiple-images:
Simon Glass61adb2d2021-03-18 20:25:13 +1300782 Normally only a single image is generated. To create more than one
783 image, put this property in the binman node. For example, this will
784 create image1.bin containing u-boot.bin, and image2.bin containing
785 both spl/u-boot-spl.bin and u-boot.bin::
Simon Glassbf7fd502016-11-25 20:15:51 -0700786
Simon Glass61adb2d2021-03-18 20:25:13 +1300787 binman {
788 multiple-images;
789 image1 {
790 u-boot {
791 };
792 };
Simon Glassbf7fd502016-11-25 20:15:51 -0700793
Simon Glass61adb2d2021-03-18 20:25:13 +1300794 image2 {
795 spl {
796 };
797 u-boot {
798 };
799 };
800 };
Simon Glassbf7fd502016-11-25 20:15:51 -0700801
802end-at-4gb:
Simon Glass61adb2d2021-03-18 20:25:13 +1300803 For x86 machines the ROM offsets start just before 4GB and extend
804 up so that the image finished at the 4GB boundary. This boolean
805 option can be enabled to support this. The image size must be
806 provided so that binman knows when the image should start. For an
807 8MB ROM, the offset of the first entry would be 0xfff80000 with
808 this option, instead of 0 without this option.
Simon Glassbf7fd502016-11-25 20:15:51 -0700809
Jagdish Gediya94b57db2018-09-03 21:35:07 +0530810skip-at-start:
Simon Glass61adb2d2021-03-18 20:25:13 +1300811 This property specifies the entry offset of the first entry.
Jagdish Gediya94b57db2018-09-03 21:35:07 +0530812
Simon Glass98463902022-10-20 18:22:39 -0600813 For PowerPC mpc85xx based CPU, CONFIG_TEXT_BASE is the entry
Simon Glass61adb2d2021-03-18 20:25:13 +1300814 offset of the first entry. It can be 0xeff40000 or 0xfff40000 for
815 nor flash boot, 0x201000 for sd boot etc.
Jagdish Gediya94b57db2018-09-03 21:35:07 +0530816
Simon Glass98463902022-10-20 18:22:39 -0600817 'end-at-4gb' property is not applicable where CONFIG_TEXT_BASE +
Simon Glass61adb2d2021-03-18 20:25:13 +1300818 Image size != 4gb.
Simon Glassbf7fd502016-11-25 20:15:51 -0700819
Simon Glass5ff9fed2021-03-21 18:24:33 +1300820align-default:
821 Specifies the default alignment for entries in this section, if they do
822 not specify an alignment. Note that this only applies to top-level entries
823 in the section (direct subentries), not any subentries of those entries.
824 This means that each section must specify its own default alignment, if
825 required.
826
Neha Malcom Francis3545e852022-10-17 16:36:25 +0530827symlink:
828 Adds a symlink to the image with string given in the symlink property.
829
Simon Glass9766f692023-01-11 16:10:16 -0700830overlap:
831 Indicates that this entry overlaps with others in the same section. These
832 entries should appear at the end of the section. Overlapping entries are not
833 packed with other entries, but their contents are written over other entries
834 in the section. Overlapping entries must have an explicit offset and size.
835
Simon Glassc1157862023-01-11 16:10:17 -0700836write-symbols:
837 Indicates that the blob should be updated with symbol values calculated by
838 binman. This is automatic for certain entry types, e.g. `u-boot-spl`. See
839 binman_syms_ for more information.
840
Simon Glass4649bea2023-07-18 07:23:54 -0600841no-write-symbols:
842 Disables symbol writing for this entry. This can be used in entry types
843 where symbol writing is automatic. For example, if `u-boot-spl` refers to
844 the `u_boot_any_image_pos` symbol but U-Boot is not available in the image
845 containing SPL, this can be used to disable the writing. Quite likely this
846 indicates a bug in your setup.
847
Simon Glassc1157862023-01-11 16:10:17 -0700848elf-filename:
849 Sets the file name of a blob's associated ELF file. For example, if the
850 blob is `zephyr.bin` then the ELF file may be `zephyr.elf`. This allows
851 binman to locate symbols and understand the structure of the blob. See
852 binman_syms_ for more information.
853
854elf-base-sym:
855 Sets the name of the ELF symbol that points to the start of a blob. For
856 U-Boot this is `__image_copy_start` and that is the default used by binman
857 if this property is missing. For other projects, a difference symbol may be
858 needed. Add this symbol to the properties for the blob so that symbols can
859 be read correctly. See binman_syms_ for more information.
860
Simon Glass571bc4e2023-01-11 16:10:19 -0700861offset-from-elf:
862 Sets the offset of an entry based on a symbol value in an another entry.
863 The format is <&phandle>, "sym_name", <offset> where phandle is the entry
864 containing the blob (with associated ELF file providing symbols), <sym_name>
865 is the symbol to lookup (relative to elf-base-sym) and <offset> is an offset
866 to add to that value.
867
Simon Glass9dbb02b2023-02-12 17:11:15 -0700868preserve:
869 Indicates that this entry should be preserved by any firmware updates. This
870 flag should be checked by the updater when it is deciding which entries to
871 update. This flag is normally attached to sections but can be attached to
872 a single entry in a section if the updater supports it. Not that binman
873 itself has no control over the updater's behaviour, so this is just a
874 signal. It is not enforced by binman.
875
Simon Glassbf7fd502016-11-25 20:15:51 -0700876Examples of the above options can be found in the tests. See the
877tools/binman/test directory.
878
Simon Glassdd57c132018-06-01 09:38:11 -0600879It is possible to have the same binary appear multiple times in the image,
880either by using a unit number suffix (u-boot@0, u-boot@1) or by using a
881different name for each and specifying the type with the 'type' attribute.
882
Simon Glassbf7fd502016-11-25 20:15:51 -0700883
Michael Heimpold383d2562018-08-22 22:01:24 +0200884Sections and hierachical images
Simon Glass18546952018-06-01 09:38:16 -0600885-------------------------------
886
887Sometimes it is convenient to split an image into several pieces, each of which
888contains its own set of binaries. An example is a flash device where part of
889the image is read-only and part is read-write. We can set up sections for each
890of these, and place binaries in them independently. The image is still produced
891as a single output file.
892
893This feature provides a way of creating hierarchical images. For example here
Simon Glass7ae5f312018-06-01 09:38:19 -0600894is an example image with two copies of U-Boot. One is read-only (ro), intended
895to be written only in the factory. Another is read-write (rw), so that it can be
Simon Glass18546952018-06-01 09:38:16 -0600896upgraded in the field. The sizes are fixed so that the ro/rw boundary is known
Simon Glass61adb2d2021-03-18 20:25:13 +1300897and can be programmed::
Simon Glass18546952018-06-01 09:38:16 -0600898
Simon Glass61adb2d2021-03-18 20:25:13 +1300899 binman {
900 section@0 {
901 read-only;
902 name-prefix = "ro-";
903 size = <0x100000>;
904 u-boot {
905 };
906 };
907 section@1 {
908 name-prefix = "rw-";
909 size = <0x100000>;
910 u-boot {
911 };
912 };
913 };
Simon Glass18546952018-06-01 09:38:16 -0600914
915This image could be placed into a SPI flash chip, with the protection boundary
916set at 1MB.
917
918A few special properties are provided for sections:
919
920read-only:
Simon Glass61adb2d2021-03-18 20:25:13 +1300921 Indicates that this section is read-only. This has no impact on binman's
922 operation, but his property can be read at run time.
Simon Glass18546952018-06-01 09:38:16 -0600923
Simon Glassc8d48ef2018-06-01 09:38:21 -0600924name-prefix:
Simon Glass61adb2d2021-03-18 20:25:13 +1300925 This string is prepended to all the names of the binaries in the
926 section. In the example above, the 'u-boot' binaries which actually be
927 renamed to 'ro-u-boot' and 'rw-u-boot'. This can be useful to
928 distinguish binaries with otherwise identical names.
Simon Glassc8d48ef2018-06-01 09:38:21 -0600929
Simon Glassefddab62023-01-07 14:07:08 -0700930filename:
931 This allows the contents of the section to be written to a file in the
932 output directory. This can sometimes be useful to use the data in one
933 section in different image, since there is currently no way to share data
934 beteen images other than through files.
Simon Glass18546952018-06-01 09:38:16 -0600935
Simon Glass12bb1a92019-07-20 12:23:51 -0600936Image Properties
937----------------
938
939Image nodes act like sections but also have a few extra properties:
940
941filename:
Simon Glass61adb2d2021-03-18 20:25:13 +1300942 Output filename for the image. This defaults to image.bin (or in the
943 case of multiple images <nodename>.bin where <nodename> is the name of
944 the image node.
Simon Glass12bb1a92019-07-20 12:23:51 -0600945
946allow-repack:
Simon Glass61adb2d2021-03-18 20:25:13 +1300947 Create an image that can be repacked. With this option it is possible
948 to change anything in the image after it is created, including updating
949 the position and size of image components. By default this is not
950 permitted since it is not possibly to know whether this might violate a
951 constraint in the image description. For example, if a section has to
952 increase in size to hold a larger binary, that might cause the section
953 to fall out of its allow region (e.g. read-only portion of flash).
Simon Glass12bb1a92019-07-20 12:23:51 -0600954
Simon Glass61adb2d2021-03-18 20:25:13 +1300955 Adding this property causes the original offset and size values in the
956 image description to be stored in the FDT and fdtmap.
Simon Glass12bb1a92019-07-20 12:23:51 -0600957
958
Simon Glass86e54462022-08-18 02:16:46 -0600959Image dependencies
960------------------
961
962Binman does not currently support images that depend on each other. For example,
963if one image creates `fred.bin` and then the next uses this `fred.bin` to
964produce a final `image.bin`, then the behaviour is undefined. It may work, or it
965may produce an error about `fred.bin` being missing, or it may use a version of
966`fred.bin` from a previous run.
967
968Often this can be handled by incorporating the dependency into the second
969image. For example, instead of::
970
971 binman {
972 multiple-images;
973
974 fred {
975 u-boot {
976 };
977 fill {
978 size = <0x100>;
979 };
980 };
981
982 image {
983 blob {
984 filename = "fred.bin";
985 };
986 u-boot-spl {
987 };
988 };
989
990you can do this::
991
992 binman {
993 image {
994 fred {
995 type = "section";
996 u-boot {
997 };
998 fill {
999 size = <0x100>;
1000 };
1001 };
1002 u-boot-spl {
1003 };
1004 };
1005
1006
1007
Simon Glass072026e2021-03-18 20:25:14 +13001008Hashing Entries
1009---------------
1010
1011It is possible to ask binman to hash the contents of an entry and write that
1012value back to the device-tree node. For example::
1013
1014 binman {
1015 u-boot {
1016 hash {
1017 algo = "sha256";
1018 };
1019 };
1020 };
1021
1022Here, a new 'value' property will be written to the 'hash' node containing
1023the hash of the 'u-boot' entry. Only SHA256 is supported at present. Whole
1024sections can be hased if desired, by adding the 'hash' node to the section.
1025
1026The has value can be chcked at runtime by hashing the data actually read and
1027comparing this has to the value in the device tree.
1028
1029
1030Expanded entries
1031----------------
1032
1033Binman automatically replaces 'u-boot' with an expanded version of that, i.e.
1034'u-boot-expanded'. This means that when you write::
1035
1036 u-boot {
1037 };
1038
1039you actually get::
1040
1041 u-boot {
1042 type = "u-boot-expanded';
1043 };
1044
1045which in turn expands to::
1046
1047 u-boot {
1048 type = "section";
1049
1050 u-boot-nodtb {
1051 };
1052
1053 u-boot-dtb {
1054 };
1055 };
1056
1057U-Boot's various phase binaries actually comprise two or three pieces.
1058For example, u-boot.bin has the executable followed by a devicetree.
1059
1060With binman we want to be able to update that devicetree with full image
1061information so that it is accessible to the executable. This is tricky
1062if it is not clear where the devicetree starts.
1063
1064The above feature ensures that the devicetree is clearly separated from the
1065U-Boot executable and can be updated separately by binman as needed. It can be
1066disabled with the --no-expanded flag if required.
1067
Heiko Thiery2ce07382022-01-24 08:11:01 +01001068The same applies for u-boot-spl and u-boot-tpl. In those cases, the expansion
Simon Glass072026e2021-03-18 20:25:14 +13001069includes the BSS padding, so for example::
1070
1071 spl {
1072 type = "u-boot-spl"
1073 };
1074
1075you actually get::
1076
1077 spl {
1078 type = "u-boot-expanded';
1079 };
1080
1081which in turn expands to::
1082
1083 spl {
1084 type = "section";
1085
1086 u-boot-spl-nodtb {
1087 };
1088
1089 u-boot-spl-bss-pad {
1090 };
1091
1092 u-boot-spl-dtb {
1093 };
1094 };
1095
1096Of course we should not expand SPL if it has no devicetree. Also if the BSS
1097padding is not needed (because BSS is in RAM as with CONFIG_SPL_SEPARATE_BSS),
1098the 'u-boot-spl-bss-pad' subnode should not be created. The use of the expaned
1099entry type is controlled by the UseExpanded() method. In the SPL case it checks
1100the 'spl-dtb' entry arg, which is 'y' or '1' if SPL has a devicetree.
1101
1102For the BSS case, a 'spl-bss-pad' entry arg controls whether it is present. All
1103entry args are provided by the U-Boot Makefile.
1104
1105
Simon Glassc8c9f312023-01-07 14:07:12 -07001106Optional entries
1107----------------
1108
1109Some entries need to exist only if certain conditions are met. For example, an
1110entry may want to appear in the image only if a file has a particular format.
1111Obviously the entry must exist in the image description for it to be processed
1112at all, so a way needs to be found to have the entry remove itself.
1113
1114To handle this, when entry.ObtainContents() is called, the entry can call
1115entry.mark_absent() to mark itself as absent, passing a suitable message as the
1116reason.
1117
1118Any absent entries are dropped immediately after ObtainContents() has been
1119called on all entries.
1120
1121It is not possible for an entry to mark itself absent at any other point in the
1122processing. It must happen in the ObtainContents() method.
1123
1124The effect is as if the entry had never been present at all, since the image
1125is packed without it and it disappears from the list of entries.
1126
1127
Simon Glass072026e2021-03-18 20:25:14 +13001128Compression
1129-----------
1130
1131Binman support compression for 'blob' entries (those of type 'blob' and
1132derivatives). To enable this for an entry, add a 'compress' property::
1133
1134 blob {
1135 filename = "datafile";
1136 compress = "lz4";
1137 };
1138
1139The entry will then contain the compressed data, using the 'lz4' compression
1140algorithm. Currently this is the only one that is supported. The uncompressed
1141size is written to the node in an 'uncomp-size' property, if -u is used.
1142
1143Compression is also supported for sections. In that case the entire section is
1144compressed in one block, including all its contents. This means that accessing
1145an entry from the section required decompressing the entire section. Also, the
1146size of a section indicates the space that it consumes in its parent section
1147(and typically the image). With compression, the section may contain more data,
1148and the uncomp-size property indicates that, as above. The contents of the
1149section is compressed first, before any padding is added. This ensures that the
1150padding itself is not compressed, which would be a waste of time.
1151
1152
1153Automatic .dtsi inclusion
1154-------------------------
1155
1156It is sometimes inconvenient to add a 'binman' node to the .dts file for each
1157board. This can be done by using #include to bring in a common file. Another
1158approach supported by the U-Boot build system is to automatically include
1159a common header. You can then put the binman node (and anything else that is
Simon Glasse316fba2023-02-13 08:56:34 -07001160specific to U-Boot, such as bootph-all properies) in that header file.
Simon Glass072026e2021-03-18 20:25:14 +13001161
1162Binman will search for the following files in arch/<arch>/dts::
1163
1164 <dts>-u-boot.dtsi where <dts> is the base name of the .dts file
1165 <CONFIG_SYS_SOC>-u-boot.dtsi
1166 <CONFIG_SYS_CPU>-u-boot.dtsi
1167 <CONFIG_SYS_VENDOR>-u-boot.dtsi
1168 u-boot.dtsi
1169
1170U-Boot will only use the first one that it finds. If you need to include a
1171more general file you can do that from the more specific file using #include.
Simon Glassed966832021-12-16 20:59:23 -07001172If you are having trouble figuring out what is going on, you can use
1173`DEVICE_TREE_DEBUG=1` with your build::
Simon Glass072026e2021-03-18 20:25:14 +13001174
Simon Glassed966832021-12-16 20:59:23 -07001175 make DEVICE_TREE_DEBUG=1
1176 scripts/Makefile.lib:334: Automatic .dtsi inclusion: options:
1177 arch/arm/dts/juno-r2-u-boot.dtsi arch/arm/dts/-u-boot.dtsi
1178 arch/arm/dts/armv8-u-boot.dtsi arch/arm/dts/armltd-u-boot.dtsi
1179 arch/arm/dts/u-boot.dtsi ... found: "arch/arm/dts/juno-r2-u-boot.dtsi"
Simon Glass072026e2021-03-18 20:25:14 +13001180
1181
Simon Glassf6abd522023-07-18 07:24:04 -06001182Templates
1183=========
1184
1185Sometimes multiple images need to be created which have all have a common
1186part. For example, a board may generate SPI and eMMC images which both include
1187a FIT. Since the FIT includes many entries, it is tedious to repeat them twice
1188in the image description.
1189
1190Templates provide a simple way to handle this::
1191
1192 binman {
1193 multiple-images;
1194 common_part: template-1 {
1195 some-property;
1196 fit {
1197 ... lots of entries in here
1198 };
1199
1200 text {
1201 text = "base image";
1202 };
1203 };
1204
1205 spi-image {
1206 filename = "image-spi.bin";
1207 insert-template = <&fit>;
1208
1209 /* things specific to SPI follow */
1210 footer {
1211 ];
1212
1213 text {
1214 text = "SPI image";
1215 };
1216 };
1217
1218 mmc-image {
1219 filename = "image-mmc.bin";
1220 insert-template = <&fit>;
1221
1222 /* things specific to MMC follow */
1223 footer {
1224 ];
1225
1226 text {
1227 text = "MMC image";
1228 };
1229 };
1230 };
1231
1232The template node name must start with 'template', so it is not considered to be
1233an image itself.
1234
1235The mechanism is very simple. For each phandle in the 'insert-templates'
1236property, the source node is looked up. Then the subnodes of that source node
1237are copied into the target node, i.e. the one containing the `insert-template`
1238property.
1239
1240If the target node has a node with the same name as a template, its properties
1241override corresponding properties in the template. This allows the template to
1242be uses as a base, with the node providing updates to the properties as needed.
1243The overriding happens recursively.
1244
1245Template nodes appear first in each node that they are inserted into and
1246ordering of template nodes is preserved. Other nodes come afterwards. If a
1247template node also appears in the target node, then the template node sets the
1248order. Thus the template can be used to set the ordering, even if the target
1249node provides all the properties. In the above example, `fit` and `text` appear
1250first in the `spi-image` and `mmc-image` images, followed by `footer`.
1251
1252Where there are multiple template nodes, they are inserted in that order. so
1253the first template node appears first, then the second.
1254
1255Properties in the template node are inserted into the destination node if they
1256do not exist there. In the example above, `some-property` is added to each of
1257`spi-image` and `mmc-image`.
1258
Simon Glassaf41b242023-07-22 21:43:56 -06001259Note that template nodes are removed from the binman description after
1260processing and before binman builds the image descriptions.
1261
Simon Glassb2f47a52023-07-22 21:43:52 -06001262The initial devicetree produced by the templating process is written to the
1263`u-boot.dtb.tmpl1` file. This can be useful to see what is going on if there is
Simon Glassaf41b242023-07-22 21:43:56 -06001264a failure before the final `u-boot.dtb.out` file is written. A second
1265`u-boot.dtb.tmpl2` file is written when the templates themselves are removed.
Simon Glassf6abd522023-07-18 07:24:04 -06001266
Simon Glassd4d97662023-07-22 21:43:57 -06001267Dealing with phandles
1268---------------------
1269
1270Templates can contain phandles and these are copied to the destination node.
1271However this should be used with care, since if a template is instantiated twice
1272then the phandle will be copied twice, resulting in a devicetree with duplicate
1273phandles, i.e. the same phandle used by two different nodes. Binman detects this
1274situation and produces an error, for example::
1275
1276 Duplicate phandle 1 in nodes /binman/image/fit/images/atf/atf-bl31 and
1277 /binman/image-2/fit/images/atf/atf-bl31
1278
1279In this case an atf-bl31 node containing a phandle has been copied into two
1280different target nodes, resulting in the same phandle for each. See
1281testTemplatePhandleDup() for the test case.
1282
1283The solution is typically to put the phandles in the corresponding target nodes
1284(one for each) and remove the phandle from the template.
Simon Glassf6abd522023-07-18 07:24:04 -06001285
Simon Glass0427bed2021-11-03 21:09:18 -06001286Updating an ELF file
1287====================
1288
1289For the EFI app, where U-Boot is loaded from UEFI and runs as an app, there is
1290no way to update the devicetree after U-Boot is built. Normally this works by
1291creating a new u-boot.dtb.out with he updated devicetree, which is automatically
1292built into the output image. With ELF this is not possible since the ELF is
1293not part of an image, just a stand-along file. We must create an updated ELF
1294file with the new devicetree.
1295
1296This is handled by the --update-fdt-in-elf option. It takes four arguments,
1297separated by comma:
1298
1299 infile - filename of input ELF file, e.g. 'u-boot's
1300 outfile - filename of output ELF file, e.g. 'u-boot.out'
1301 begin_sym - symbol at the start of the embedded devicetree, e.g.
1302 '__dtb_dt_begin'
1303 end_sym - symbol at the start of the embedded devicetree, e.g.
1304 '__dtb_dt_end'
1305
1306When this flag is used, U-Boot does all the normal packaging, but as an
1307additional step, it creates a new ELF file with the new devicetree embedded in
1308it.
1309
1310If logging is enabled you will see a message like this::
1311
1312 Updating file 'u-boot' with data length 0x400a (16394) between symbols
1313 '__dtb_dt_begin' and '__dtb_dt_end'
1314
1315There must be enough space for the updated devicetree. If not, an error like
1316the following is produced::
1317
1318 ValueError: Not enough space in 'u-boot' for data length 0x400a (16394);
1319 size is 0x1744 (5956)
1320
1321
Simon Glass5a5da7c2018-07-17 13:25:37 -06001322Entry Documentation
Simon Glassfcae6682021-03-18 20:25:17 +13001323===================
Simon Glass5a5da7c2018-07-17 13:25:37 -06001324
1325For details on the various entry types supported by binman and how to use them,
Simon Glassfcae6682021-03-18 20:25:17 +13001326see entries.rst which is generated from the source code using:
Simon Glass5a5da7c2018-07-17 13:25:37 -06001327
Simon Glassfcae6682021-03-18 20:25:17 +13001328 binman entry-docs >tools/binman/entries.rst
1329
1330.. toctree::
1331 :maxdepth: 2
1332
1333 entries
Simon Glass5a5da7c2018-07-17 13:25:37 -06001334
1335
Simon Glass072026e2021-03-18 20:25:14 +13001336Managing images
1337===============
1338
Simon Glass61f564d2019-07-08 14:25:48 -06001339Listing images
1340--------------
1341
1342It is possible to list the entries in an existing firmware image created by
Simon Glass61adb2d2021-03-18 20:25:13 +13001343binman, provided that there is an 'fdtmap' entry in the image. For example::
Simon Glass61f564d2019-07-08 14:25:48 -06001344
1345 $ binman ls -i image.bin
1346 Name Image-pos Size Entry-type Offset Uncomp-size
1347 ----------------------------------------------------------------------
1348 main-section c00 section 0
1349 u-boot 0 4 u-boot 0
1350 section 5fc section 4
1351 cbfs 100 400 cbfs 0
1352 u-boot 138 4 u-boot 38
1353 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1354 u-boot-dtb 500 1ff u-boot-dtb 400 3b5
1355 fdtmap 6fc 381 fdtmap 6fc
1356 image-header bf8 8 image-header bf8
1357
1358This shows the hierarchy of the image, the position, size and type of each
1359entry, the offset of each entry within its parent and the uncompressed size if
1360the entry is compressed.
1361
Simon Glass61adb2d2021-03-18 20:25:13 +13001362It is also possible to list just some files in an image, e.g.::
Simon Glass61f564d2019-07-08 14:25:48 -06001363
1364 $ binman ls -i image.bin section/cbfs
1365 Name Image-pos Size Entry-type Offset Uncomp-size
1366 --------------------------------------------------------------------
1367 cbfs 100 400 cbfs 0
1368 u-boot 138 4 u-boot 38
1369 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1370
Simon Glass61adb2d2021-03-18 20:25:13 +13001371or with wildcards::
Simon Glass61f564d2019-07-08 14:25:48 -06001372
1373 $ binman ls -i image.bin "*cb*" "*head*"
1374 Name Image-pos Size Entry-type Offset Uncomp-size
1375 ----------------------------------------------------------------------
1376 cbfs 100 400 cbfs 0
1377 u-boot 138 4 u-boot 38
1378 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1379 image-header bf8 8 image-header bf8
1380
Simon Glass858436d2021-11-23 21:09:49 -07001381If an older version of binman is used to list images created by a newer one, it
1382is possible that it will contain entry types that are not supported. These still
1383show with the correct type, but binman just sees them as blobs (plain binary
1384data). Any special features of that etype are not supported by the old binman.
1385
Simon Glass61f564d2019-07-08 14:25:48 -06001386
Simon Glass71ce0ba2019-07-08 14:25:52 -06001387Extracting files from images
1388----------------------------
1389
1390You can extract files from an existing firmware image created by binman,
Simon Glass61adb2d2021-03-18 20:25:13 +13001391provided that there is an 'fdtmap' entry in the image. For example::
Simon Glass71ce0ba2019-07-08 14:25:52 -06001392
1393 $ binman extract -i image.bin section/cbfs/u-boot
1394
1395which will write the uncompressed contents of that entry to the file 'u-boot' in
1396the current directory. You can also extract to a particular file, in this case
Simon Glass61adb2d2021-03-18 20:25:13 +13001397u-boot.bin::
Simon Glass71ce0ba2019-07-08 14:25:52 -06001398
1399 $ binman extract -i image.bin section/cbfs/u-boot -f u-boot.bin
1400
1401It is possible to extract all files into a destination directory, which will
Simon Glass61adb2d2021-03-18 20:25:13 +13001402put files in subdirectories matching the entry hierarchy::
Simon Glass71ce0ba2019-07-08 14:25:52 -06001403
1404 $ binman extract -i image.bin -O outdir
1405
Simon Glass61adb2d2021-03-18 20:25:13 +13001406or just a selection::
Simon Glass71ce0ba2019-07-08 14:25:52 -06001407
1408 $ binman extract -i image.bin "*u-boot*" -O outdir
1409
Simon Glass943bf782021-11-23 21:09:50 -07001410Some entry types have alternative formats, for example fdtmap which allows
1411extracted just the devicetree binary without the fdtmap header::
1412
1413 $ binman extract -i /tmp/b/odroid-c4/image.bin -f out.dtb -F fdt fdtmap
1414 $ fdtdump out.dtb
1415 /dts-v1/;
1416 // magic: 0xd00dfeed
1417 // totalsize: 0x8ab (2219)
1418 // off_dt_struct: 0x38
1419 // off_dt_strings: 0x82c
1420 // off_mem_rsvmap: 0x28
1421 // version: 17
1422 // last_comp_version: 2
1423 // boot_cpuid_phys: 0x0
1424 // size_dt_strings: 0x7f
1425 // size_dt_struct: 0x7f4
1426
1427 / {
1428 image-node = "binman";
1429 image-pos = <0x00000000>;
1430 size = <0x0011162b>;
1431 ...
1432
1433Use `-F list` to see what alternative formats are available::
1434
1435 $ binman extract -i /tmp/b/odroid-c4/image.bin -F list
1436 Flag (-F) Entry type Description
1437 fdt fdtmap Extract the devicetree blob from the fdtmap
1438
Simon Glass71ce0ba2019-07-08 14:25:52 -06001439
Simon Glass10f9d002019-07-20 12:23:50 -06001440Replacing files in an image
1441---------------------------
1442
1443You can replace files in an existing firmware image created by binman, provided
Simon Glass79450772021-11-23 21:09:48 -07001444that there is an 'fdtmap' entry in the image. For example::
Simon Glass10f9d002019-07-20 12:23:50 -06001445
1446 $ binman replace -i image.bin section/cbfs/u-boot
1447
1448which will write the contents of the file 'u-boot' from the current directory
Simon Glassa6cb9952019-07-20 12:24:15 -06001449to the that entry, compressing if necessary. If the entry size changes, you must
1450add the 'allow-repack' property to the original image before generating it (see
1451above), otherwise you will get an error.
1452
Simon Glass61adb2d2021-03-18 20:25:13 +13001453You can also use a particular file, in this case u-boot.bin::
Simon Glassa6cb9952019-07-20 12:24:15 -06001454
1455 $ binman replace -i image.bin section/cbfs/u-boot -f u-boot.bin
1456
1457It is possible to replace all files from a source directory which uses the same
Simon Glass61adb2d2021-03-18 20:25:13 +13001458hierarchy as the entries::
Simon Glassa6cb9952019-07-20 12:24:15 -06001459
1460 $ binman replace -i image.bin -I indir
1461
1462Files that are missing will generate a warning.
1463
Simon Glass61adb2d2021-03-18 20:25:13 +13001464You can also replace just a selection of entries::
Simon Glassa6cb9952019-07-20 12:24:15 -06001465
1466 $ binman replace -i image.bin "*u-boot*" -I indir
Simon Glass10f9d002019-07-20 12:23:50 -06001467
Simon Glass7caa3722023-03-02 17:02:44 -07001468It is possible to replace whole sections as well, but in that case any
1469information about entries within the section may become outdated. This is
1470because Binman cannot know whether things have moved around or resized within
1471the section, once you have updated its data.
1472
1473Technical note: With 'allow-repack', Binman writes information about the
1474original offset and size properties of each entry, if any were specified, in
1475the 'orig-offset' and 'orig-size' properties. This allows Binman to distinguish
1476between an entry which ended up being packed at an offset (or assigned a size)
1477and an entry which had a particular offset / size requested in the Binman
1478configuration. Where are particular offset / size was requested, this is treated
1479as set in stone, so Binman will ensure it doesn't change. Without this feature,
1480repacking an entry might cause it to disobey the original constraints provided
1481when it was created.
1482
Simon Glass85760a62022-11-09 19:14:49 -07001483
Ivan Mikhaylov0f40e232023-03-08 01:13:38 +00001484Signing FIT container with private key in an image
1485--------------------------------------------------
1486
1487You can sign FIT container with private key in your image.
1488For example::
1489
1490 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 fit
1491
1492binman will extract FIT container, sign and replace it immediately.
1493
1494If you want to sign and replace FIT container in place::
1495
1496 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 -f fit.fit fit
1497
1498which will sign FIT container with private key and replace it immediately
1499inside your image.
1500
Massimo Pegorer8bd7d082023-09-09 15:52:35 +02001501.. _`BinmanLogging`:
Ivan Mikhaylov0f40e232023-03-08 01:13:38 +00001502
Simon Glasseea264e2019-07-08 14:25:49 -06001503Logging
1504-------
1505
1506Binman normally operates silently unless there is an error, in which case it
1507just displays the error. The -D/--debug option can be used to create a full
Simon Glassef108042021-02-06 09:57:28 -07001508backtrace when errors occur. You can use BINMAN_DEBUG=1 when building to select
1509this.
Simon Glasseea264e2019-07-08 14:25:49 -06001510
1511Internally binman logs some output while it is running. This can be displayed
1512by increasing the -v/--verbosity from the default of 1:
1513
1514 0: silent
1515 1: warnings only
1516 2: notices (important messages)
1517 3: info about major operations
1518 4: detailed information about each operation
1519 5: debug (all output)
1520
Simon Glassef108042021-02-06 09:57:28 -07001521You can use BINMAN_VERBOSE=5 (for example) when building to select this.
Simon Glasseea264e2019-07-08 14:25:49 -06001522
Simon Glasse0ff8552016-11-25 20:15:53 -07001523
Simon Glass3e7749e2022-01-09 20:14:12 -07001524Bintools
1525========
1526
1527`Bintool` is the name binman gives to a binary tool which it uses to create and
1528manipulate binaries that binman cannot handle itself. Bintools are often
1529necessary since Binman only supports a subset of the available file formats
1530natively.
1531
1532Many SoC vendors invent ways to load code into their SoC using new file formats,
1533sometimes changing the format with successive SoC generations. Sometimes the
1534tool is available as Open Source. Sometimes it is a pre-compiled binary that
1535must be downloaded from the vendor's website. Sometimes it is available in
1536source form but difficult or slow to build.
1537
1538Even for images that use bintools, binman still assembles the image from its
1539image description. It may handle parts of the image natively and part with
1540various bintools.
1541
1542Binman relies on these tools so provides various features to manage them:
1543
1544- Determining whether the tool is currently installed
1545- Downloading or building the tool
1546- Determining the version of the tool that is installed
1547- Deciding which tools are needed to build an image
1548
1549The Bintool class is an interface to the tool, a thin level of abstration, using
1550Python functions to run the tool for each purpose (e.g. creating a new
1551structure, adding a file to an existing structure) rather than just lists of
1552string arguments.
1553
1554As with external blobs, bintools (which are like 'external' tools) can be
1555missing. When building an image requires a bintool and it is not installed,
1556binman detects this and reports the problem, but continues to build an image.
1557This is useful in CI systems which want to check that everything is correct but
1558don't have access to the bintools.
1559
1560To make this work, all calls to bintools (e.g. with Bintool.run_cmd()) must cope
1561with the tool being missing, i.e. when None is returned, by:
1562
1563- Calling self.record_missing_bintool()
1564- Setting up some fake contents so binman can continue
1565
1566Of course the image will not work, but binman reports which bintools are needed
1567and also provide a way to fetch them.
1568
1569To see the available bintools, use::
1570
1571 binman tool --list
1572
1573To fetch tools which are missing, use::
1574
1575 binman tool --fetch missing
1576
1577You can also use `--fetch all` to fetch all tools or `--fetch <tool>` to fetch
1578a particular tool. Some tools are built from source code, in which case you will
1579need to have at least the `build-essential` and `git` packages installed.
1580
Simon Glassfe7e9242023-02-22 12:14:49 -07001581Tools are fetched into the `~/.binman-tools` directory. This directory is
1582automatically added to the toolpath so there is no need to use `--toolpath` to
1583specify it. If you want to use these tools outside binman, you may want to
1584add this directory to your `PATH`. For example, if you use bash, add this to
1585the end of `.bashrc`::
1586
1587 PATH="$HOME/.binman-tools:$PATH"
1588
1589To select a custom directory, use the `--tooldir` option.
Simon Glass932e40d2023-02-22 12:14:48 -07001590
Simon Glass3e7749e2022-01-09 20:14:12 -07001591Bintool Documentation
1592=====================
1593
1594To provide details on the various bintools supported by binman, bintools.rst is
1595generated from the source code using:
1596
1597 binman bintool-docs >tools/binman/bintools.rst
1598
1599.. toctree::
1600 :maxdepth: 2
1601
1602 bintools
1603
Simon Glass8dd00592022-11-09 19:14:54 -07001604Binman commands and arguments
1605=============================
1606
1607Usage::
1608
Simon Glassfe7e9242023-02-22 12:14:49 -07001609 binman [-h] [-B BUILD_DIR] [-D] [--tooldir TOOLDIR] [-H]
1610 [--toolpath TOOLPATH] [-T THREADS] [--test-section-timeout]
1611 [-v VERBOSITY] [-V]
Simon Glass8dd00592022-11-09 19:14:54 -07001612 {build,bintool-docs,entry-docs,ls,extract,replace,test,tool} ...
1613
1614Binman provides the following commands:
1615
1616- **build** - build images
1617- **bintools-docs** - generate documentation about bintools
1618- **entry-docs** - generate documentation about entry types
1619- **ls** - list an image
1620- **extract** - extract files from an image
1621- **replace** - replace one or more entries in an image
1622- **test** - run tests
1623- **tool** - manage bintools
1624
1625Options:
1626
1627-h, --help
1628 Show help message and exit
1629
1630-B BUILD_DIR, --build-dir BUILD_DIR
1631 Directory containing the build output
1632
1633-D, --debug
1634 Enabling debugging (provides a full traceback on error)
1635
Simon Glassfe7e9242023-02-22 12:14:49 -07001636--tooldir TOOLDIR Set the directory to store tools
1637
Simon Glass8dd00592022-11-09 19:14:54 -07001638-H, --full-help
1639 Display the README file
1640
1641--toolpath TOOLPATH
Simon Glassfe7e9242023-02-22 12:14:49 -07001642 Add a path to the list of directories containing tools
Simon Glass8dd00592022-11-09 19:14:54 -07001643
1644-T THREADS, --threads THREADS
1645 Number of threads to use (0=single-thread). Note that -T0 is useful for
1646 debugging since everything runs in one thread.
1647
1648-v VERBOSITY, --verbosity VERBOSITY
1649 Control verbosity: 0=silent, 1=warnings, 2=notices, 3=info, 4=detail,
1650 5=debug
1651
1652-V, --version
1653 Show the binman version
1654
1655Test options:
1656
1657--test-section-timeout
1658 Use a zero timeout for section multi-threading (for testing)
1659
1660Commands are described below.
1661
1662binman build
1663------------
1664
1665This builds one or more images using the provided image description.
1666
1667Usage::
1668
1669 binman build [-h] [-a ENTRY_ARG] [-b BOARD] [-d DT] [--fake-dtb]
1670 [--fake-ext-blobs] [--force-missing-bintools FORCE_MISSING_BINTOOLS]
1671 [-i IMAGE] [-I INDIR] [-m] [-M] [-n] [-O OUTDIR] [-p] [-u]
1672 [--update-fdt-in-elf UPDATE_FDT_IN_ELF] [-W]
1673
1674Options:
1675
1676-h, --help
1677 Show help message and exit
1678
1679-a ENTRY_ARG, --entry-arg ENTRY_ARG
1680 Set argument value `arg=value`. See
1681 `Passing command-line arguments to entries`_.
1682
1683-b BOARD, --board BOARD
1684 Board name to build. This can be used instead of `-d`, in which case the
1685 file `u-boot.dtb` is used, within the build directory's board subdirectory.
1686
1687-d DT, --dt DT
1688 Configuration file (.dtb) to use. This must have a top-level node called
1689 `binman`. See `Image description format`_.
1690
1691-i IMAGE, --image IMAGE
1692 Image filename to build (if not specified, build all)
1693
1694-I INDIR, --indir INDIR
1695 Add a path to the list of directories to use for input files. This can be
1696 specified multiple times to add more than one path.
1697
1698-m, --map
1699 Output a map file for each image. See `Map files`_.
1700
1701-M, --allow-missing
1702 Allow external blobs and bintools to be missing. See `External blobs`_.
1703
1704-n, --no-expanded
1705 Don't use 'expanded' versions of entries where available; normally 'u-boot'
1706 becomes 'u-boot-expanded', for example. See `Expanded entries`_.
1707
1708-O OUTDIR, --outdir OUTDIR
1709 Path to directory to use for intermediate and output files
1710
1711-p, --preserve
1712 Preserve temporary output directory even if option -O is not given
1713
1714-u, --update-fdt
1715 Update the binman node with offset/size info. See
1716 `Access to binman entry offsets at run time (fdt)`_.
1717
1718--update-fdt-in-elf UPDATE_FDT_IN_ELF
1719 Update an ELF file with the output dtb. The argument is a string consisting
1720 of four parts, separated by commas. See `Updating an ELF file`_.
1721
1722-W, --ignore-missing
1723 Return success even if there are missing blobs/bintools (requires -M)
1724
1725Options used only for testing:
1726
1727--fake-dtb
1728 Use fake device tree contents
1729
1730--fake-ext-blobs
1731 Create fake ext blobs with dummy content
1732
1733--force-missing-bintools FORCE_MISSING_BINTOOLS
1734 Comma-separated list of bintools to consider missing
1735
1736binman bintool-docs
1737-------------------
1738
1739Usage::
1740
1741 binman bintool-docs [-h]
1742
1743This outputs documentation for the bintools in rST format. See
1744`Bintool Documentation`_.
1745
1746binman entry-docs
1747-----------------
1748
1749Usage::
1750
1751 binman entry-docs [-h]
1752
1753This outputs documentation for the entry types in rST format. See
1754`Entry Documentation`_.
1755
1756binman ls
1757---------
1758
1759Usage::
1760
1761 binman ls [-h] -i IMAGE [paths ...]
1762
1763Positional arguments:
1764
1765paths
1766 Paths within file to list (wildcard)
1767
1768Pptions:
1769
1770-h, --help
1771 show help message and exit
1772
1773-i IMAGE, --image IMAGE
1774 Image filename to list
1775
1776This lists an image, showing its contents. See `Listing images`_.
1777
1778binman extract
1779--------------
1780
1781Usage::
1782
1783 binman extract [-h] [-F FORMAT] -i IMAGE [-f FILENAME] [-O OUTDIR] [-U]
1784 [paths ...]
1785
1786Positional arguments:
1787
1788Paths
1789 Paths within file to extract (wildcard)
1790
1791Options:
1792
1793-h, --help
1794 show help message and exit
1795
1796-F FORMAT, --format FORMAT
1797 Select an alternative format for extracted data
1798
1799-i IMAGE, --image IMAGE
1800 Image filename to extract
1801
1802-f FILENAME, --filename FILENAME
1803 Output filename to write to
1804
1805-O OUTDIR, --outdir OUTDIR
1806 Path to directory to use for output files
1807
1808-U, --uncompressed
1809 Output raw uncompressed data for compressed entries
1810
1811This extracts the contents of entries from an image. See
1812`Extracting files from images`_.
1813
1814binman replace
1815--------------
1816
1817Usage::
1818
1819 binman replace [-h] [-C] -i IMAGE [-f FILENAME] [-F] [-I INDIR] [-m]
1820 [paths ...]
1821
1822Positional arguments:
1823
1824paths
1825 Paths within file to replace (wildcard)
1826
1827Options:
1828
1829-h, --help
1830 show help message and exit
1831
1832-C, --compressed
1833 Input data is already compressed if needed for the entry
1834
1835-i IMAGE, --image IMAGE
1836 Image filename to update
1837
1838-f FILENAME, --filename FILENAME
1839 Input filename to read from
1840
1841-F, --fix-size
1842 Don't allow entries to be resized
1843
1844-I INDIR, --indir INDIR
1845 Path to directory to use for input files
1846
1847-m, --map
1848 Output a map file for the updated image
1849
Simon Glasse00197f2023-03-02 17:02:42 -07001850-O OUTDIR, --outdir OUTDIR
1851 Path to directory to use for intermediate and output files
1852
1853-p, --preserve
1854 Preserve temporary output directory even if option -O is not given
1855
Simon Glass8dd00592022-11-09 19:14:54 -07001856This replaces one or more entries in an existing image. See
1857`Replacing files in an image`_.
1858
1859binman test
1860-----------
1861
1862Usage::
1863
1864 binman test [-h] [-P PROCESSES] [-T] [-X] [tests ...]
1865
1866Positional arguments:
1867
1868tests
1869 Test names to run (omit for all)
1870
1871Options:
1872
1873-h, --help
1874 show help message and exit
1875
1876-P PROCESSES, --processes PROCESSES
1877 set number of processes to use for running tests. This defaults to the
1878 number of CPUs on the machine
1879
1880-T, --test-coverage
1881 run tests and check for 100% coverage
1882
1883-X, --test-preserve-dirs
1884 Preserve and display test-created input directories; also preserve the
1885 output directory if a single test is run (pass test name at the end of the
1886 command line
1887
Ivan Mikhaylov0f40e232023-03-08 01:13:38 +00001888binman sign
1889-----------
1890
1891Usage::
1892
1893 binman sign [-h] -a ALGO [-f FILE] -i IMAGE -k KEY [paths ...]
1894
1895positional arguments:
1896
1897paths
1898 Paths within file to sign (wildcard)
1899
1900options:
1901
1902-h, --help
1903 show this help message and exit
1904
1905-a ALGO, --algo ALGO
1906 Hash algorithm e.g. sha256,rsa4096
1907
1908-f FILE, --file FILE
1909 Input filename to sign
1910
1911-i IMAGE, --image IMAGE
1912 Image filename to update
1913
1914-k KEY, --key KEY
1915 Private key file for signing
1916
Simon Glass8dd00592022-11-09 19:14:54 -07001917binman tool
1918-----------
1919
1920Usage::
1921
1922 binman tool [-h] [-l] [-f] [bintools ...]
1923
1924Positional arguments:
1925
1926bintools
1927 Bintools to process
1928
1929Options:
1930
1931-h, --help
1932 show help message and exit
1933
1934-l, --list
1935 List all known bintools
1936
1937-f, --fetch
1938 Fetch a bintool from a known location. Use `all` to fetch all and `missing`
1939 to fetch any missing tools.
1940
Simon Glass3e7749e2022-01-09 20:14:12 -07001941
Simon Glass072026e2021-03-18 20:25:14 +13001942Technical details
1943=================
Simon Glasse0ff8552016-11-25 20:15:53 -07001944
Simon Glassbf7fd502016-11-25 20:15:51 -07001945Order of image creation
1946-----------------------
1947
1948Image creation proceeds in the following order, for each entry in the image.
1949
Simon Glass078ab1a2018-07-06 10:27:41 -060019501. AddMissingProperties() - binman can add calculated values to the device
Simon Glass3ab95982018-08-01 15:22:37 -06001951tree as part of its processing, for example the offset and size of each
Simon Glass078ab1a2018-07-06 10:27:41 -06001952entry. This method adds any properties associated with this, expanding the
1953device tree as needed. These properties can have placeholder values which are
1954set later by SetCalculatedProperties(). By that stage the size of sections
1955cannot be changed (since it would cause the images to need to be repacked),
1956but the correct values can be inserted.
1957
19582. ProcessFdt() - process the device tree information as required by the
Simon Glassecab8972018-07-06 10:27:40 -06001959particular entry. This may involve adding or deleting properties. If the
1960processing is complete, this method should return True. If the processing
1961cannot complete because it needs the ProcessFdt() method of another entry to
1962run first, this method should return False, in which case it will be called
1963again later.
1964
Simon Glass078ab1a2018-07-06 10:27:41 -060019653. GetEntryContents() - the contents of each entry are obtained, normally by
Simon Glassbf7fd502016-11-25 20:15:51 -07001966reading from a file. This calls the Entry.ObtainContents() to read the
1967contents. The default version of Entry.ObtainContents() calls
1968Entry.GetDefaultFilename() and then reads that file. So a common mechanism
1969to select a file to read is to override that function in the subclass. The
1970functions must return True when they have read the contents. Binman will
1971retry calling the functions a few times if False is returned, allowing
1972dependencies between the contents of different entries.
1973
Simon Glass3ab95982018-08-01 15:22:37 -060019744. GetEntryOffsets() - calls Entry.GetOffsets() for each entry. This can
Simon Glassbf7fd502016-11-25 20:15:51 -07001975return a dict containing entries that need updating. The key should be the
Simon Glass3ab95982018-08-01 15:22:37 -06001976entry name and the value is a tuple (offset, size). This allows an entry to
1977provide the offset and size for other entries. The default implementation
1978of GetEntryOffsets() returns {}.
Simon Glassbf7fd502016-11-25 20:15:51 -07001979
Simon Glass3ab95982018-08-01 15:22:37 -060019805. PackEntries() - calls Entry.Pack() which figures out the offset and
1981size of an entry. The 'current' image offset is passed in, and the function
1982returns the offset immediately after the entry being packed. The default
Simon Glassbf7fd502016-11-25 20:15:51 -07001983implementation of Pack() is usually sufficient.
1984
Simon Glass0b657692020-10-26 17:40:22 -06001985Note: for sections, this also checks that the entries do not overlap, nor extend
1986outside the section. If the section does not have a defined size, the size is
Simon Glass9766f692023-01-11 16:10:16 -07001987set large enough to hold all the entries. For entries that are explicitly marked
1988as overlapping, this check is skipped.
Simon Glassbf7fd502016-11-25 20:15:51 -07001989
Simon Glass0b657692020-10-26 17:40:22 -060019906. SetImagePos() - sets the image position of every entry. This is the absolute
Simon Glass4ab88b62019-07-20 12:23:52 -06001991position 'image-pos', as opposed to 'offset' which is relative to the containing
1992section. This must be done after all offsets are known, which is why it is quite
1993late in the ordering.
1994
Simon Glass0b657692020-10-26 17:40:22 -060019957. SetCalculatedProperties() - update any calculated properties in the device
Simon Glass3ab95982018-08-01 15:22:37 -06001996tree. This sets the correct 'offset' and 'size' vaues, for example.
Simon Glass078ab1a2018-07-06 10:27:41 -06001997
Simon Glass0b657692020-10-26 17:40:22 -060019988. ProcessEntryContents() - this calls Entry.ProcessContents() on each entry.
Simon Glassbf7fd502016-11-25 20:15:51 -07001999The default implementatoin does nothing. This can be overriden to adjust the
2000contents of an entry in some way. For example, it would be possible to create
2001an entry containing a hash of the contents of some other entries. At this
Simon Glassc52c9e72019-07-08 14:25:37 -06002002stage the offset and size of entries should not be adjusted unless absolutely
2003necessary, since it requires a repack (going back to PackEntries()).
Simon Glassbf7fd502016-11-25 20:15:51 -07002004
Simon Glass0b657692020-10-26 17:40:22 -060020059. ResetForPack() - if the ProcessEntryContents() step failed, in that an entry
Simon Glass4ab88b62019-07-20 12:23:52 -06002006has changed its size, then there is no alternative but to go back to step 5 and
2007try again, repacking the entries with the updated size. ResetForPack() removes
2008the fixed offset/size values added by binman, so that the packing can start from
2009scratch.
2010
Simon Glass0b657692020-10-26 17:40:22 -0600201110. WriteSymbols() - write the value of symbols into the U-Boot SPL binary.
Simon Glass3ab95982018-08-01 15:22:37 -06002012See 'Access to binman entry offsets at run time' below for a description of
Simon Glass0a4357c2018-07-06 10:27:39 -06002013what happens in this stage.
Simon Glass39c15022017-11-13 18:55:05 -07002014
Simon Glass0b657692020-10-26 17:40:22 -0600201511. BuildImage() - builds the image and writes it to a file
Simon Glass4ab88b62019-07-20 12:23:52 -06002016
Simon Glass0b657692020-10-26 17:40:22 -0600201712. WriteMap() - writes a text file containing a map of the image. This is the
Simon Glass4ab88b62019-07-20 12:23:52 -06002018final step.
Simon Glassbf7fd502016-11-25 20:15:51 -07002019
2020
Simon Glass85760a62022-11-09 19:14:49 -07002021.. _`External tools`:
2022
Simon Glassc7d80352019-07-08 13:18:28 -06002023External tools
2024--------------
2025
2026Binman can make use of external command-line tools to handle processing of
2027entry contents or to generate entry contents. These tools are executed using
2028the 'tools' module's Run() method. The tools generally must exist on the PATH,
2029but the --toolpath option can be used to specify additional search paths to
2030use. This option can be specified multiple times to add more than one path.
2031
Alper Nebi Yasak4ec40a72020-09-06 14:46:07 +03002032For some compile tools binman will use the versions specified by commonly-used
2033environment variables like CC and HOSTCC for the C compiler, based on whether
2034the tool's output will be used for the target or for the host machine. If those
2035aren't given, it will also try to derive target-specific versions from the
2036CROSS_COMPILE environment variable during a cross-compilation.
2037
Simon Glass79450772021-11-23 21:09:48 -07002038If the tool is not available in the path you can use BINMAN_TOOLPATHS to specify
2039a space-separated list of paths to search, e.g.::
2040
2041 BINMAN_TOOLPATHS="/tools/g12a /tools/tegra" binman ...
2042
2043
Simon Glass85760a62022-11-09 19:14:49 -07002044.. _`External blobs`:
2045
Simon Glass79450772021-11-23 21:09:48 -07002046External blobs
2047--------------
2048
2049Binary blobs, even if the source code is available, complicate building
2050firmware. The instructions can involve multiple steps and the binaries may be
2051hard to build or obtain. Binman at least provides a unified description of how
2052to build the final image, no matter what steps are needed to get there.
2053
2054Binman also provides a `blob-ext` entry type that pulls in a binary blob from an
2055external file. If the file is missing, binman can optionally complete the build
2056and just report a warning. Use the `-M/--allow-missing` option to enble this.
2057This is useful in CI systems which want to check that everything is correct but
2058don't have access to the blobs.
2059
2060If the blobs are in a different directory, you can specify this with the `-I`
2061option.
2062
Dario Binacchi838447a2023-11-23 14:10:00 +01002063For U-Boot, you can set the BINMAN_INDIRS environment variable to provide a
Simon Glass79450772021-11-23 21:09:48 -07002064space-separated list of directories to search for binary blobs::
2065
2066 BINMAN_INDIRS="odroid-c4/fip/g12a \
2067 odroid-c4/build/board/hardkernel/odroidc4/firmware \
2068 odroid-c4/build/scp_task" binman ...
Simon Glassc7d80352019-07-08 13:18:28 -06002069
Simon Glassb38da152022-11-09 19:14:42 -07002070Note that binman fails with exit code 103 when there are missing blobs. If you
2071wish binman to continue anyway, you can pass `-W` to binman.
2072
2073
Simon Glass6d427c62016-11-25 20:15:59 -07002074Code coverage
2075-------------
2076
2077Binman is a critical tool and is designed to be very testable. Entry
Simon Glass53cd5d92019-07-08 14:25:29 -06002078implementations target 100% test coverage. Run 'binman test -T' to check this.
Simon Glass6d427c62016-11-25 20:15:59 -07002079
Simon Glass61adb2d2021-03-18 20:25:13 +13002080To enable Python test coverage on Debian-type distributions (e.g. Ubuntu)::
Simon Glass6d427c62016-11-25 20:15:59 -07002081
Simon Glass45f449b2019-07-08 13:18:26 -06002082 $ sudo apt-get install python-coverage python3-coverage python-pytest
Simon Glass6d427c62016-11-25 20:15:59 -07002083
2084
Simon Glassb38da152022-11-09 19:14:42 -07002085Exit status
2086-----------
2087
2088Binman produces the following exit codes:
2089
20900
2091 Success
2092
20931
2094 Any sort of failure - see output for more details
2095
2096103
2097 There are missing external blobs or bintools. This is only returned if
2098 -M is passed to binman, otherwise missing blobs return an exit status of 1.
2099 Note, if -W is passed as well as -M, then this is converted into a warning
2100 and will return an exit status of 0 instead.
2101
2102
Simon Glass85760a62022-11-09 19:14:49 -07002103U-Boot environment variables for binman
2104---------------------------------------
2105
2106The U-Boot Makefile supports various environment variables to control binman.
2107All of these are set within the Makefile and result in passing various
2108environment variables (or make flags) to binman:
2109
2110BINMAN_DEBUG
2111 Enables backtrace debugging by adding a `-D` argument. See
2112 :ref:`BinmanLogging`.
2113
2114BINMAN_INDIRS
2115 Sets the search path for input files used by binman by adding one or more
2116 `-I` arguments. See :ref:`External blobs`.
2117
2118BINMAN_TOOLPATHS
2119 Sets the search path for external tool used by binman by adding one or more
2120 `--toolpath` arguments. See :ref:`External tools`.
2121
2122BINMAN_VERBOSE
2123 Sets the logging verbosity of binman by adding a `-v` argument. See
2124 :ref:`BinmanLogging`.
2125
2126
Simon Glass61a631e2022-01-23 12:55:46 -07002127Error messages
2128--------------
2129
2130This section provides some guidance for some of the less obvious error messages
2131produced by binman.
2132
2133
2134Expected __bss_size symbol
2135~~~~~~~~~~~~~~~~~~~~~~~~~~
2136
2137Example::
2138
2139 binman: Node '/binman/u-boot-spl-ddr/u-boot-spl/u-boot-spl-bss-pad':
2140 Expected __bss_size symbol in spl/u-boot-spl
2141
2142This indicates that binman needs the `__bss_size` symbol to be defined in the
2143SPL binary, where `spl/u-boot-spl` is the ELF file containing the symbols. The
2144symbol tells binman the size of the BSS region, in bytes. It needs this to be
2145able to pad the image so that the following entries do not overlap the BSS,
2146which would cause them to be overwritte by variable access in SPL.
2147
2148This symbols is normally defined in the linker script, immediately after
2149_bss_start and __bss_end are defined, like this::
2150
2151 __bss_size = __bss_end - __bss_start;
2152
2153You may need to add it to your linker script if you get this error.
2154
2155
Simon Glass55660d02019-05-17 22:00:52 -06002156Concurrent tests
2157----------------
2158
2159Binman tries to run tests concurrently. This means that the tests make use of
2160all available CPUs to run.
2161
Simon Glass61adb2d2021-03-18 20:25:13 +13002162 To enable this::
Simon Glass55660d02019-05-17 22:00:52 -06002163
2164 $ sudo apt-get install python-subunit python3-subunit
2165
2166Use '-P 1' to disable this. It is automatically disabled when code coverage is
2167being used (-T) since they are incompatible.
2168
2169
Simon Glassd5164a72019-07-08 13:18:49 -06002170Debugging tests
2171---------------
2172
2173Sometimes when debugging tests it is useful to keep the input and output
2174directories so they can be examined later. Use -X or --test-preserve-dirs for
2175this.
2176
2177
Alper Nebi Yasak4ec40a72020-09-06 14:46:07 +03002178Running tests on non-x86 architectures
2179--------------------------------------
2180
2181Binman's tests have been written under the assumption that they'll be run on a
2182x86-like host and there hasn't been an attempt to make them portable yet.
2183However, it's possible to run the tests by cross-compiling to x86.
2184
Simon Glass61adb2d2021-03-18 20:25:13 +13002185To install an x86 cross-compiler on Debian-type distributions (e.g. Ubuntu)::
Alper Nebi Yasak4ec40a72020-09-06 14:46:07 +03002186
2187 $ sudo apt-get install gcc-x86-64-linux-gnu
2188
Simon Glass61adb2d2021-03-18 20:25:13 +13002189Then, you can run the tests under cross-compilation::
Alper Nebi Yasak4ec40a72020-09-06 14:46:07 +03002190
2191 $ CROSS_COMPILE=x86_64-linux-gnu- binman test -T
2192
2193You can also use gcc-i686-linux-gnu similar to the above.
2194
2195
Simon Glass072026e2021-03-18 20:25:14 +13002196Writing new entries and debugging
2197---------------------------------
Simon Glassbf7fd502016-11-25 20:15:51 -07002198
2199The behaviour of entries is defined by the Entry class. All other entries are
2200a subclass of this. An important subclass is Entry_blob which takes binary
2201data from a file and places it in the entry. In fact most entry types are
2202subclasses of Entry_blob.
2203
2204Each entry type is a separate file in the tools/binman/etype directory. Each
2205file contains a class called Entry_<type> where <type> is the entry type.
2206New entry types can be supported by adding new files in that directory.
2207These will automatically be detected by binman when needed.
2208
2209Entry properties are documented in entry.py. The entry subclasses are free
2210to change the values of properties to support special behaviour. For example,
2211when Entry_blob loads a file, it sets content_size to the size of the file.
2212Entry classes can adjust other entries. For example, an entry that knows
Simon Glass3ab95982018-08-01 15:22:37 -06002213where other entries should be positioned can set up those entries' offsets
Simon Glassbf7fd502016-11-25 20:15:51 -07002214so they don't need to be set in the binman decription. It can also adjust
2215entry contents.
2216
2217Most of the time such essoteric behaviour is not needed, but it can be
2218essential for complex images.
2219
Simon Glass3ed0de32017-12-24 12:12:07 -07002220If you need to specify a particular device-tree compiler to use, you can define
2221the DTC environment variable. This can be useful when the system dtc is too
2222old.
2223
Simon Glassa3c00552018-11-06 15:21:31 -07002224To enable a full backtrace and other debugging features in binman, pass
Simon Glass61adb2d2021-03-18 20:25:13 +13002225BINMAN_DEBUG=1 to your build::
Simon Glassa3c00552018-11-06 15:21:31 -07002226
Bin Mengc443f562019-10-02 19:07:29 -07002227 make qemu-x86_defconfig
Simon Glassa3c00552018-11-06 15:21:31 -07002228 make BINMAN_DEBUG=1
2229
Simon Glass1f338e02019-09-25 08:11:11 -06002230To enable verbose logging from binman, base BINMAN_VERBOSE to your build, which
Simon Glass61adb2d2021-03-18 20:25:13 +13002231adds a -v<level> option to the call to binman::
Simon Glass1f338e02019-09-25 08:11:11 -06002232
Bin Mengc443f562019-10-02 19:07:29 -07002233 make qemu-x86_defconfig
Simon Glass1f338e02019-09-25 08:11:11 -06002234 make BINMAN_VERBOSE=5
2235
Simon Glassbf7fd502016-11-25 20:15:51 -07002236
Simon Glassc69d19c2021-07-06 10:36:37 -06002237Building sections in parallel
2238-----------------------------
2239
2240By default binman uses multiprocessing to speed up compilation of large images.
2241This works at a section level, with one thread for each entry in the section.
2242This can speed things up if the entries are large and use compression.
2243
2244This feature can be disabled with the '-T' flag, which defaults to a suitable
2245value for your machine. This depends on the Python version, e.g on v3.8 it uses
224612 threads on an 8-core machine. See ConcurrentFutures_ for more details.
2247
2248The special value -T0 selects single-threaded mode, useful for debugging during
2249development, since dealing with exceptions and problems in threads is more
2250difficult. This avoids any use of ThreadPoolExecutor.
2251
2252
Simon Glass81b71c32022-02-08 11:50:00 -07002253Collecting data for an entry type
2254---------------------------------
2255
2256Some entry types deal with data obtained from others. For example,
2257`Entry_mkimage` calls the `mkimage` tool with data from its subnodes::
2258
2259 mkimage {
2260 args = "-n test -T script";
2261
2262 u-boot-spl {
2263 };
2264
2265 u-boot {
2266 };
2267 };
2268
2269This shows mkimage being passed a file consisting of SPL and U-Boot proper. It
Simon Glass6d427c42022-03-05 20:18:58 -07002270is created by calling `Entry.collect_contents_to_file()`. Note that in this
2271case, the data is passed to mkimage for processing but does not appear
2272separately in the image. It may not appear at all, depending on what mkimage
2273does. The contents of the `mkimage` entry are entirely dependent on the
2274processing done by the entry, with the provided subnodes (`u-boot-spl` and
2275`u-boot`) simply providing the input data for that processing.
Simon Glass81b71c32022-02-08 11:50:00 -07002276
2277Note that `Entry.collect_contents_to_file()` simply concatenates the data from
2278the different entries together, with no control over alignment, etc. Another
2279approach is to subclass `Entry_section` so that those features become available,
2280such as `size` and `pad-byte`. Then the contents of the entry can be obtained by
Simon Glass6d427c42022-03-05 20:18:58 -07002281calling `super().BuildSectionData()` in the entry's BuildSectionData()
2282implementation to get the input data, then write it to a file and process it
2283however is desired.
Simon Glass81b71c32022-02-08 11:50:00 -07002284
2285There are other ways to obtain data also, depending on the situation. If the
2286entry type is simply signing data which exists elsewhere in the image, then
2287you can use `Entry_collection` as a base class. It lets you use a property
2288called `content` which lists the entries containing data to be processed. This
2289is used by `Entry_vblock`, for example::
2290
2291 u_boot: u-boot {
2292 };
Simon Glass6d427c42022-03-05 20:18:58 -07002293
Simon Glass81b71c32022-02-08 11:50:00 -07002294 vblock {
2295 content = <&u_boot &dtb>;
2296 keyblock = "firmware.keyblock";
2297 signprivate = "firmware_data_key.vbprivk";
2298 version = <1>;
2299 kernelkey = "kernel_subkey.vbpubk";
2300 preamble-flags = <1>;
2301 };
2302
2303 dtb: u-boot-dtb {
2304 };
2305
2306which shows an image containing `u-boot` and `u-boot-dtb`, with the `vblock`
2307image collecting their contents to produce input for its signing process,
2308without affecting those entries, which still appear in the final image
2309untouched.
2310
2311Another example is where an entry type needs several independent pieces of input
2312to function. For example, `Entry_fip` allows a number of different binary blobs
2313to be placed in their own individual places in a custom data structure in the
2314output image. To make that work you can add subnodes for each of them and call
2315`Entry.Create()` on each subnode, as `Entry_fip` does. Then the data for each
2316blob can come from any suitable place, such as an `Entry_u_boot` or an
2317`Entry_blob` or anything else::
2318
2319 atf-fip {
2320 fip-hdr-flags = /bits/ 64 <0x123>;
2321 soc-fw {
2322 fip-flags = /bits/ 64 <0x123456789abcdef>;
2323 filename = "bl31.bin";
2324 };
2325
2326 u-boot {
2327 fip-uuid = [fc 65 13 92 4a 5b 11 ec
2328 94 35 ff 2d 1c fc 79 9c];
2329 };
2330 };
2331
2332The `soc-fw` node is a `blob-ext` (i.e. it reads in a named binary file) whereas
2333`u-boot` is a normal entry type. This works because `Entry_fip` selects the
2334`blob-ext` entry type if the node name (here `soc-fw`) is recognised as being
2335a known blob type.
2336
2337When adding new entry types you are encouraged to use subnodes to provide the
Simon Glass6d427c42022-03-05 20:18:58 -07002338data for processing, unless the `content` approach is more suitable. Consider
2339whether the input entries are contained within (or consumed by) the entry, vs
2340just being 'referenced' by the entry. In the latter case, the `content` approach
2341makes more sense. Ad-hoc properties and other methods of obtaining data are
2342discouraged, since it adds to confusion for users.
Simon Glass81b71c32022-02-08 11:50:00 -07002343
Simon Glassbf7fd502016-11-25 20:15:51 -07002344History / Credits
2345-----------------
2346
2347Binman takes a lot of inspiration from a Chrome OS tool called
2348'cros_bundle_firmware', which I wrote some years ago. That tool was based on
2349a reasonably simple and sound design but has expanded greatly over the
2350years. In particular its handling of x86 images is convoluted.
2351
Simon Glass7ae5f312018-06-01 09:38:19 -06002352Quite a few lessons have been learned which are hopefully applied here.
Simon Glassbf7fd502016-11-25 20:15:51 -07002353
2354
2355Design notes
2356------------
2357
2358On the face of it, a tool to create firmware images should be fairly simple:
2359just find all the input binaries and place them at the right place in the
2360image. The difficulty comes from the wide variety of input types (simple
2361flat binaries containing code, packaged data with various headers), packing
2362requirments (alignment, spacing, device boundaries) and other required
2363features such as hierarchical images.
2364
2365The design challenge is to make it easy to create simple images, while
2366allowing the more complex cases to be supported. For example, for most
2367images we don't much care exactly where each binary ends up, so we should
2368not have to specify that unnecessarily.
2369
2370New entry types should aim to provide simple usage where possible. If new
2371core features are needed, they can be added in the Entry base class.
2372
2373
2374To do
2375-----
2376
2377Some ideas:
Simon Glass61adb2d2021-03-18 20:25:13 +13002378
Simon Glassbf7fd502016-11-25 20:15:51 -07002379- Use of-platdata to make the information available to code that is unable
Simon Glassfcae6682021-03-18 20:25:17 +13002380 to use device tree (such as a very small SPL image). For now, limited info is
2381 available via linker symbols
Simon Glassbf7fd502016-11-25 20:15:51 -07002382- Allow easy building of images by specifying just the board name
Simon Glassbf7fd502016-11-25 20:15:51 -07002383- Support building an image for a board (-b) more completely, with a
2384 configurable build directory
Simon Glass513c53e2019-07-20 12:24:02 -06002385- Detect invalid properties in nodes
2386- Sort the fdtmap by offset
Simon Glass397a7702021-01-06 21:35:12 -07002387- Output temporary files to a different directory
Simon Glass523cde02022-02-08 11:49:57 -07002388- Rationalise the fdt, fdt_util and pylibfdt modules which currently have some
2389 overlapping and confusing functionality
2390- Update the fdt library to use a better format for Prop.value (the current one
2391 is useful for dtoc but not much else)
2392- Figure out how to make Fdt support changing the node order, so that
2393 Node.AddSubnode() can support adding a node before another, existing node.
2394 Perhaps it should completely regenerate the flat tree?
Simon Glass86e54462022-08-18 02:16:46 -06002395- Support images which depend on each other
Simon Glassbf7fd502016-11-25 20:15:51 -07002396
2397--
2398Simon Glass <sjg@chromium.org>
23997/7/2016
Simon Glassc69d19c2021-07-06 10:36:37 -06002400
2401.. _ConcurrentFutures: https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor