blob: 04564f4f66fe1568966c69983519a1dea18de27d [file] [log] [blame]
Simon Glass75ead662021-03-18 20:25:13 +13001.. SPDX-License-Identifier: GPL-2.0+
2.. Copyright (c) 2016 Google, Inc
Simon Glass2574ef62016-11-25 20:15:51 -07003
4Introduction
Simon Glassfa888282021-03-18 20:25:14 +13005============
Simon Glass2574ef62016-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 Glass774b23f2021-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 Glass2574ef62016-11-25 20:15:51 -070017
Simon Glass2574ef62016-11-25 20:15:51 -070018
19What it does
20------------
21
22Binman reads your board's device tree and finds a node which describes the
Simon Glass774b23f2021-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 Glass2574ef62016-11-25 20:15:51 -070029
30
31Features
32--------
33
Simon Glass774b23f2021-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 Glass2574ef62016-11-25 20:15:51 -070037
Simon Glass774b23f2021-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 Glass2574ef62016-11-25 20:15:51 -070041
Simon Glass774b23f2021-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 Glass76d71b02022-08-07 16:33:26 -060045vblocks and the like.
Simon Glass774b23f2021-03-18 20:25:17 +130046
47Binman provides a way to process binaries before they are included, by adding a
48Python plug-in.
Simon Glass2574ef62016-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 Glass774b23f2021-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 Glass2574ef62016-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 Glass2574ef62016-11-25 20:15:51 -070074
Simon Glass75ead662021-03-18 20:25:13 +130075 - 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
87
Simon Glass2574ef62016-11-25 20:15:51 -070088
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 Glassbf3e1c62023-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 Glass2574ef62016-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 Glass76d71b02022-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 Glass2574ef62016-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 Heimpold55c822d2018-08-22 22:01:24 +0200154this purpose. It would be possible in some situations to create a new entry
Simon Glass2574ef62016-11-25 20:15:51 -0700155type for the images in mkimage, but this would not add functionality. It
Michael Heimpold55c822d2018-08-22 22:01:24 +0200156seems better to use the mkimage tool to generate binaries and avoid blurring
Simon Glass2574ef62016-11-25 20:15:51 -0700157the boundaries between building input files (mkimage) and packaging then
158into a final image (binman).
159
Simon Glass76d71b02022-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 Glassfa888282021-03-18 20:25:14 +1300163
164Using binman
165============
Simon Glass2574ef62016-11-25 20:15:51 -0700166
167Example 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 Glass75ead662021-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 Glass2574ef62016-11-25 20:15:51 -0700177
Simon Glass75ead662021-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 Glass2574ef62016-11-25 20:15:51 -0700180
Simon Glass75ead662021-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 Glass2574ef62016-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 Glass243c2c12022-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 Glass2574ef62016-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
Simon Glass76d71b02022-08-07 16:33:26 -0600192
193Invoking 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 Glass7d959c52022-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 Glass76d71b02022-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 Riniaefad5d2022-12-04 10:14:07 -0500314 offset = <CFG_X86_MRC_ADDR>;
Simon Glass76d71b02022-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
Simon Glass2574ef62016-11-25 20:15:51 -0700354
355Example 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 Heimpold55c822d2018-08-22 22:01:24 +0200361firmware image.
Simon Glass2574ef62016-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 Glass7a7874f2022-01-09 20:13:48 -0700370Installing binman
371-----------------
Simon Glass2574ef62016-11-25 20:15:51 -0700372
Simon Glass76d71b02022-08-07 16:33:26 -0600373First install prerequisites, e.g:
374
375.. code-block:: bash
Simon Glass567b6822019-07-08 13:18:35 -0600376
Simon Glass75ead662021-03-18 20:25:13 +1300377 sudo apt-get install python-pyelftools python3-pyelftools lzma-alone \
378 liblz4-tool
Simon Glass567b6822019-07-08 13:18:35 -0600379
Simon Glass7a7874f2022-01-09 20:13:48 -0700380You can run binman directly if you put it on your PATH. But if you want to
Simon Glass76d71b02022-08-07 16:33:26 -0600381install into your `~/.local` Python directory, use:
382
383.. code-block:: bash
Simon Glass7a7874f2022-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 Glass76d71b02022-08-07 16:33:26 -0600389installed like this:
390
391.. code-block:: bash
Simon Glass7a7874f2022-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 Glass76d71b02022-08-07 16:33:26 -0600400system-library directory, replace the last line with:
401
402.. code-block:: bash
Simon Glass7a7874f2022-01-09 20:13:48 -0700403
404 make NO_PYTHON=1 PREFIX=/ install
405
406Running binman
407--------------
408
Ralph Siemsend4f763c2023-02-22 15:56:59 -0500409Type:
Simon Glass2574ef62016-11-25 20:15:51 -0700410
Ralph Siemsend4f763c2023-02-22 15:56:59 -0500411.. code-block:: bash
Simon Glass76d71b02022-08-07 16:33:26 -0600412
413 make NO_PYTHON=1 PREFIX=/ install
Simon Glass75ead662021-03-18 20:25:13 +1300414 binman build -b <board_name>
Simon Glass2574ef62016-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 Glass76d71b02022-08-07 16:33:26 -0600420Or you can specify this explicitly:
421
422.. code-block:: bash
Simon Glass2574ef62016-11-25 20:15:51 -0700423
Simon Glass76d71b02022-08-07 16:33:26 -0600424 make NO_PYTHON=1 PREFIX=/ install
Simon Glass75ead662021-03-18 20:25:13 +1300425 binman build -I <build_path>
Simon Glass2574ef62016-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 Glass4b94ac92017-11-12 21:52:06 -0700438Enabling binman for a board
439---------------------------
440
Simon Glass774b23f2021-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 Glass4b94ac92017-11-12 21:52:06 -0700443
Simon Glass774b23f2021-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 Glass4b94ac92017-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 Glass76d71b02022-08-07 16:33:26 -0600453.. _binman_syms:
Simon Glass4b94ac92017-11-12 21:52:06 -0700454
Simon Glassfa888282021-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 Glass76d71b02022-08-07 16:33:26 -0600464with their correct values during the build. For example:
465
466.. code-block:: c
Simon Glassfa888282021-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 Glass76d71b02022-08-07 16:33:26 -0600472You can access this value with something like:
473
474.. code-block:: c
Simon Glassfa888282021-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
Simon Glass4b4049e2024-08-26 13:11:39 -0600497to 80108000, with SPL at 80108000 and U-Boot at 80110000. In other words, the
498positions are calculated relative to the start address of the image to which
499they are being written.
Simon Glassfa888282021-03-18 20:25:14 +1300500
501For x86 devices (with the end-at-4gb property) this base address is not added
502since it is assumed that images are XIP and the offsets already include the
503address.
504
Simon Glasse0035c92023-01-11 16:10:17 -0700505While U-Boot's symbol updating is handled automatically by the u-boot-spl
506entry type (and others), it is possible to use this feature with any blob. To
507do this, add a `write-symbols` (boolean) property to the node, set the ELF
508filename using `elf-filename` and set 'elf-base-sym' to the base symbol for the
509start of the binary image (this defaults to `__image_copy_start` which is what
510U-Boot uses). See `testBlobSymbol()` for an example.
511
Simon Glass18ed9962023-01-07 14:07:11 -0700512.. _binman_fdt:
Simon Glassfa888282021-03-18 20:25:14 +1300513
514Access to binman entry offsets at run time (fdt)
515------------------------------------------------
516
517Binman can update the U-Boot FDT to include the final position and size of
518each entry in the images it processes. The option to enable this is -u and it
519causes binman to make sure that the 'offset', 'image-pos' and 'size' properties
520are set correctly for every entry. Since it is not necessary to specify these in
521the image definition, binman calculates the final values and writes these to
522the device tree. These can be used by U-Boot at run-time to find the location
523of each entry.
524
525Alternatively, an FDT map entry can be used to add a special FDT containing
526just the information about the image. This is preceded by a magic string so can
527be located anywhere in the image. An image header (typically at the start or end
528of the image) can be used to point to the FDT map. See fdtmap and image-header
529entries for more information.
530
Simon Glassfa888282021-03-18 20:25:14 +1300531Map files
532---------
533
534The -m option causes binman to output a .map file for each image that it
535generates. This shows the offset and size of each entry. For example::
536
537 Offset Size Name
538 00000000 00000028 main-section
539 00000000 00000010 section@0
540 00000000 00000004 u-boot
541 00000010 00000010 section@1
542 00000000 00000004 u-boot
543
544This shows a hierarchical image with two sections, each with a single entry. The
545offsets of the sections are absolute hex byte offsets within the image. The
546offsets of the entries are relative to their respective sections. The size of
547each entry is also shown, in bytes (hex). The indentation shows the entries
548nested inside their sections.
549
550
551Passing command-line arguments to entries
552-----------------------------------------
553
554Sometimes it is useful to pass binman the value of an entry property from the
555command line. For example some entries need access to files and it is not
556always convenient to put these filenames in the image definition (device tree).
557
Bin Meng1fa2b7c2021-05-10 20:23:30 +0800558The -a option supports this::
Simon Glassfa888282021-03-18 20:25:14 +1300559
Bin Meng1fa2b7c2021-05-10 20:23:30 +0800560 -a <prop>=<value>
Simon Glassfa888282021-03-18 20:25:14 +1300561
562where::
563
564 <prop> is the property to set
565 <value> is the value to set it to
566
567Not all properties can be provided this way. Only some entries support it,
568typically for filenames.
569
570
Simon Glass2574ef62016-11-25 20:15:51 -0700571Image description format
Simon Glassfa888282021-03-18 20:25:14 +1300572========================
Simon Glass2574ef62016-11-25 20:15:51 -0700573
574The binman node is called 'binman'. An example image description is shown
Simon Glass75ead662021-03-18 20:25:13 +1300575below::
Simon Glass2574ef62016-11-25 20:15:51 -0700576
Simon Glass75ead662021-03-18 20:25:13 +1300577 binman {
578 filename = "u-boot-sunxi-with-spl.bin";
579 pad-byte = <0xff>;
580 blob {
581 filename = "spl/sunxi-spl.bin";
582 };
583 u-boot {
584 offset = <CONFIG_SPL_PAD_TO>;
585 };
586 };
Simon Glass2574ef62016-11-25 20:15:51 -0700587
588
589This requests binman to create an image file called u-boot-sunxi-with-spl.bin
590consisting of a specially formatted SPL (spl/sunxi-spl.bin, built by the
591normal U-Boot Makefile), some 0xff padding, and a U-Boot legacy image. The
592padding comes from the fact that the second binary is placed at
593CONFIG_SPL_PAD_TO. If that line were omitted then the U-Boot binary would
594immediately follow the SPL binary.
595
596The binman node describes an image. The sub-nodes describe entries in the
597image. Each entry represents a region within the overall image. The name of
598the entry (blob, u-boot) tells binman what to put there. For 'blob' we must
599provide a filename. For 'u-boot', binman knows that this means 'u-boot.bin'.
600
601Entries are normally placed into the image sequentially, one after the other.
602The image size is the total size of all entries. As you can see, you can
Simon Glasse8561af2018-08-01 15:22:37 -0600603specify the start offset of an entry using the 'offset' property.
Simon Glass2574ef62016-11-25 20:15:51 -0700604
605Note that due to a device tree requirement, all entries must have a unique
606name. If you want to put the same binary in the image multiple times, you can
607use any unique name, with the 'type' property providing the type.
608
609The attributes supported for entries are described below.
610
Simon Glasse8561af2018-08-01 15:22:37 -0600611offset:
Simon Glass75ead662021-03-18 20:25:13 +1300612 This sets the offset of an entry within the image or section containing
613 it. The first byte of the image is normally at offset 0. If 'offset' is
614 not provided, binman sets it to the end of the previous region, or the
615 start of the image's entry area (normally 0) if there is no previous
616 region.
Simon Glass2574ef62016-11-25 20:15:51 -0700617
618align:
Simon Glass75ead662021-03-18 20:25:13 +1300619 This sets the alignment of the entry. The entry offset is adjusted
620 so that the entry starts on an aligned boundary within the containing
621 section or image. For example 'align = <16>' means that the entry will
622 start on a 16-byte boundary. This may mean that padding is added before
623 the entry. The padding is part of the containing section but is not
624 included in the entry, meaning that an empty space may be created before
625 the entry starts. Alignment should be a power of 2. If 'align' is not
626 provided, no alignment is performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700627
628size:
Simon Glass75ead662021-03-18 20:25:13 +1300629 This sets the size of the entry. The contents will be padded out to
630 this size. If this is not provided, it will be set to the size of the
631 contents.
Simon Glass2574ef62016-11-25 20:15:51 -0700632
Samuel Hollande2574022023-01-21 17:25:16 -0600633min-size:
634 Sets the minimum size of the entry. This size includes explicit padding
635 ('pad-before' and 'pad-after'), but not padding added to meet alignment
636 requirements. While this does not affect the contents of the entry within
637 binman itself (the padding is performed only when its parent section is
638 assembled), the end result will be that the entry ends with the padding
639 bytes, so may grow. Defaults to 0.
640
Simon Glass2574ef62016-11-25 20:15:51 -0700641pad-before:
Simon Glass75ead662021-03-18 20:25:13 +1300642 Padding before the contents of the entry. Normally this is 0, meaning
643 that the contents start at the beginning of the entry. This can be used
644 to offset the entry contents a little. While this does not affect the
645 contents of the entry within binman itself (the padding is performed
646 only when its parent section is assembled), the end result will be that
647 the entry starts with the padding bytes, so may grow. Defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700648
649pad-after:
Simon Glass75ead662021-03-18 20:25:13 +1300650 Padding after the contents of the entry. Normally this is 0, meaning
651 that the entry ends at the last byte of content (unless adjusted by
652 other properties). This allows room to be created in the image for
653 this entry to expand later. While this does not affect the contents of
654 the entry within binman itself (the padding is performed only when its
655 parent section is assembled), the end result will be that the entry ends
656 with the padding bytes, so may grow. Defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700657
658align-size:
Simon Glass75ead662021-03-18 20:25:13 +1300659 This sets the alignment of the entry size. For example, to ensure
660 that the size of an entry is a multiple of 64 bytes, set this to 64.
661 While this does not affect the contents of the entry within binman
662 itself (the padding is performed only when its parent section is
663 assembled), the end result is that the entry ends with the padding
664 bytes, so may grow. If 'align-size' is not provided, no alignment is
665 performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700666
667align-end:
Simon Glass75ead662021-03-18 20:25:13 +1300668 This sets the alignment of the end of an entry with respect to the
669 containing section. Some entries require that they end on an alignment
670 boundary, regardless of where they start. This does not move the start
671 of the entry, so the contents of the entry will still start at the
672 beginning. But there may be padding at the end. While this does not
673 affect the contents of the entry within binman itself (the padding is
674 performed only when its parent section is assembled), the end result
675 is that the entry ends with the padding bytes, so may grow.
676 If 'align-end' is not provided, no alignment is performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700677
678filename:
Simon Glass75ead662021-03-18 20:25:13 +1300679 For 'blob' types this provides the filename containing the binary to
680 put into the entry. If binman knows about the entry type (like
681 u-boot-bin), then there is no need to specify this.
Simon Glass2574ef62016-11-25 20:15:51 -0700682
683type:
Simon Glass75ead662021-03-18 20:25:13 +1300684 Sets the type of an entry. This defaults to the entry name, but it is
685 possible to use any name, and then add (for example) 'type = "u-boot"'
686 to specify the type.
Simon Glass2574ef62016-11-25 20:15:51 -0700687
Simon Glasse8561af2018-08-01 15:22:37 -0600688offset-unset:
Simon Glass75ead662021-03-18 20:25:13 +1300689 Indicates that the offset of this entry should not be set by placing
690 it immediately after the entry before. Instead, is set by another
691 entry which knows where this entry should go. When this boolean
692 property is present, binman will give an error if another entry does
693 not set the offset (with the GetOffsets() method).
Simon Glass4ba8d502018-06-01 09:38:17 -0600694
Simon Glass9dcc8612018-08-01 15:22:42 -0600695image-pos:
Simon Glass75ead662021-03-18 20:25:13 +1300696 This cannot be set on entry (or at least it is ignored if it is), but
697 with the -u option, binman will set it to the absolute image position
698 for each entry. This makes it easy to find out exactly where the entry
699 ended up in the image, regardless of parent sections, etc.
Simon Glass9dcc8612018-08-01 15:22:42 -0600700
Simon Glassdd156a42022-03-05 20:18:59 -0700701extend-size:
702 Extend the size of this entry to fit available space. This space is only
Simon Glass75ead662021-03-18 20:25:13 +1300703 limited by the size of the image/section and the position of the next
704 entry.
Simon Glass2574ef62016-11-25 20:15:51 -0700705
Simon Glassaa2fcf92019-07-08 14:25:30 -0600706compress:
Simon Glass75ead662021-03-18 20:25:13 +1300707 Sets the compression algortihm to use (for blobs only). See the entry
708 documentation for details.
Simon Glassaa2fcf92019-07-08 14:25:30 -0600709
Simon Glassa820af72020-09-06 10:39:09 -0600710missing-msg:
Simon Glass75ead662021-03-18 20:25:13 +1300711 Sets the tag of the message to show if this entry is missing. This is
712 used for external blobs. When they are missing it is helpful to show
713 information about what needs to be fixed. See missing-blob-help for the
714 message for each tag.
Simon Glassa820af72020-09-06 10:39:09 -0600715
Simon Glassa360b8f2024-06-23 11:55:06 -0600716assume-size:
717 Sets the assumed size of a blob entry if it is missing. This allows for a
718 check that the rest of the image fits into the available space, even when
719 the contents are not available. If the entry is missing, Binman will use
720 this assumed size for the entry size, including creating a fake file of that
721 size if requested.
722
Simon Glass7098b7f2021-03-21 18:24:30 +1300723no-expanded:
724 By default binman substitutes entries with expanded versions if available,
725 so that a `u-boot` entry type turns into `u-boot-expanded`, for example. The
726 `--no-expanded` command-line option disables this globally. The
727 `no-expanded` property disables this just for a single entry. Put the
728 `no-expanded` boolean property in the node to select this behaviour.
729
Simon Glass63328f12023-01-07 14:07:15 -0700730optional:
731 External blobs are normally required to be present for the image to be
732 built (but see `External blobs`_). This properly allows an entry to be
733 optional, so that when it is cannot be found, this problem is ignored and
734 an empty file is used for this blob. This should be used only when the blob
735 is entirely optional and is not needed for correct operation of the image.
736 Note that missing, optional blobs do not produce a non-zero exit code from
737 binman, although it does show a warning about the missing external blob.
738
Simon Glassfc792842023-07-18 07:24:04 -0600739insert-template:
740 This is not strictly speaking an entry property, since it is processed early
741 in Binman before the entries are read. It is a list of phandles of nodes to
742 include in the current (target) node. For each node, its subnodes and their
743 properties are brought into the target node. See Templates_ below for
744 more information.
745
Simon Glass80045812018-09-14 04:57:30 -0600746The attributes supported for images and sections are described below. Several
747are similar to those for entries.
Simon Glass2574ef62016-11-25 20:15:51 -0700748
749size:
Simon Glass75ead662021-03-18 20:25:13 +1300750 Sets the image size in bytes, for example 'size = <0x100000>' for a
751 1MB image.
Simon Glass2574ef62016-11-25 20:15:51 -0700752
Simon Glasseb023b32019-04-25 21:58:39 -0600753offset:
Simon Glass75ead662021-03-18 20:25:13 +1300754 This is similar to 'offset' in entries, setting the offset of a section
755 within the image or section containing it. The first byte of the section
756 is normally at offset 0. If 'offset' is not provided, binman sets it to
757 the end of the previous region, or the start of the image's entry area
758 (normally 0) if there is no previous region.
Simon Glasseb023b32019-04-25 21:58:39 -0600759
Simon Glass2574ef62016-11-25 20:15:51 -0700760align-size:
Simon Glass75ead662021-03-18 20:25:13 +1300761 This sets the alignment of the image size. For example, to ensure
762 that the image ends on a 512-byte boundary, use 'align-size = <512>'.
763 If 'align-size' is not provided, no alignment is performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700764
765pad-before:
Simon Glass75ead662021-03-18 20:25:13 +1300766 This sets the padding before the image entries. The first entry will
767 be positioned after the padding. This defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700768
769pad-after:
Simon Glass75ead662021-03-18 20:25:13 +1300770 This sets the padding after the image entries. The padding will be
771 placed after the last entry. This defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700772
773pad-byte:
Simon Glass75ead662021-03-18 20:25:13 +1300774 This specifies the pad byte to use when padding in the image. It
775 defaults to 0. To use 0xff, you would add 'pad-byte = <0xff>'.
Simon Glass2574ef62016-11-25 20:15:51 -0700776
777filename:
Simon Glass75ead662021-03-18 20:25:13 +1300778 This specifies the image filename. It defaults to 'image.bin'.
Simon Glass2574ef62016-11-25 20:15:51 -0700779
Simon Glasse8561af2018-08-01 15:22:37 -0600780sort-by-offset:
Simon Glass75ead662021-03-18 20:25:13 +1300781 This causes binman to reorder the entries as needed to make sure they
782 are in increasing positional order. This can be used when your entry
783 order may not match the positional order. A common situation is where
784 the 'offset' properties are set by CONFIG options, so their ordering is
785 not known a priori.
Simon Glass2574ef62016-11-25 20:15:51 -0700786
Simon Glass75ead662021-03-18 20:25:13 +1300787 This is a boolean property so needs no value. To enable it, add a
788 line 'sort-by-offset;' to your description.
Simon Glass2574ef62016-11-25 20:15:51 -0700789
790multiple-images:
Simon Glass75ead662021-03-18 20:25:13 +1300791 Normally only a single image is generated. To create more than one
792 image, put this property in the binman node. For example, this will
793 create image1.bin containing u-boot.bin, and image2.bin containing
794 both spl/u-boot-spl.bin and u-boot.bin::
Simon Glass2574ef62016-11-25 20:15:51 -0700795
Simon Glass75ead662021-03-18 20:25:13 +1300796 binman {
797 multiple-images;
798 image1 {
799 u-boot {
800 };
801 };
Simon Glass2574ef62016-11-25 20:15:51 -0700802
Simon Glass75ead662021-03-18 20:25:13 +1300803 image2 {
804 spl {
805 };
806 u-boot {
807 };
808 };
809 };
Simon Glass2574ef62016-11-25 20:15:51 -0700810
811end-at-4gb:
Simon Glass75ead662021-03-18 20:25:13 +1300812 For x86 machines the ROM offsets start just before 4GB and extend
813 up so that the image finished at the 4GB boundary. This boolean
814 option can be enabled to support this. The image size must be
815 provided so that binman knows when the image should start. For an
816 8MB ROM, the offset of the first entry would be 0xfff80000 with
817 this option, instead of 0 without this option.
Simon Glass2574ef62016-11-25 20:15:51 -0700818
Jagdish Gediya0fb978c2018-09-03 21:35:07 +0530819skip-at-start:
Simon Glass75ead662021-03-18 20:25:13 +1300820 This property specifies the entry offset of the first entry.
Jagdish Gediya0fb978c2018-09-03 21:35:07 +0530821
Simon Glass72cc5382022-10-20 18:22:39 -0600822 For PowerPC mpc85xx based CPU, CONFIG_TEXT_BASE is the entry
Simon Glass75ead662021-03-18 20:25:13 +1300823 offset of the first entry. It can be 0xeff40000 or 0xfff40000 for
824 nor flash boot, 0x201000 for sd boot etc.
Jagdish Gediya0fb978c2018-09-03 21:35:07 +0530825
Simon Glass72cc5382022-10-20 18:22:39 -0600826 'end-at-4gb' property is not applicable where CONFIG_TEXT_BASE +
Simon Glass75ead662021-03-18 20:25:13 +1300827 Image size != 4gb.
Simon Glass2574ef62016-11-25 20:15:51 -0700828
Simon Glassf427c5f2021-03-21 18:24:33 +1300829align-default:
830 Specifies the default alignment for entries in this section, if they do
831 not specify an alignment. Note that this only applies to top-level entries
832 in the section (direct subentries), not any subentries of those entries.
833 This means that each section must specify its own default alignment, if
834 required.
835
Neha Malcom Francis3eb4be32022-10-17 16:36:25 +0530836symlink:
837 Adds a symlink to the image with string given in the symlink property.
838
Simon Glassf1ee03b2023-01-11 16:10:16 -0700839overlap:
840 Indicates that this entry overlaps with others in the same section. These
841 entries should appear at the end of the section. Overlapping entries are not
842 packed with other entries, but their contents are written over other entries
843 in the section. Overlapping entries must have an explicit offset and size.
844
Simon Glasse0035c92023-01-11 16:10:17 -0700845write-symbols:
846 Indicates that the blob should be updated with symbol values calculated by
847 binman. This is automatic for certain entry types, e.g. `u-boot-spl`. See
848 binman_syms_ for more information.
849
Simon Glass4abf7842023-07-18 07:23:54 -0600850no-write-symbols:
851 Disables symbol writing for this entry. This can be used in entry types
852 where symbol writing is automatic. For example, if `u-boot-spl` refers to
853 the `u_boot_any_image_pos` symbol but U-Boot is not available in the image
854 containing SPL, this can be used to disable the writing. Quite likely this
855 indicates a bug in your setup.
856
Simon Glasse0035c92023-01-11 16:10:17 -0700857elf-filename:
858 Sets the file name of a blob's associated ELF file. For example, if the
859 blob is `zephyr.bin` then the ELF file may be `zephyr.elf`. This allows
860 binman to locate symbols and understand the structure of the blob. See
861 binman_syms_ for more information.
862
863elf-base-sym:
864 Sets the name of the ELF symbol that points to the start of a blob. For
865 U-Boot this is `__image_copy_start` and that is the default used by binman
866 if this property is missing. For other projects, a difference symbol may be
867 needed. Add this symbol to the properties for the blob so that symbols can
868 be read correctly. See binman_syms_ for more information.
869
Simon Glass49e9c002023-01-11 16:10:19 -0700870offset-from-elf:
871 Sets the offset of an entry based on a symbol value in an another entry.
872 The format is <&phandle>, "sym_name", <offset> where phandle is the entry
873 containing the blob (with associated ELF file providing symbols), <sym_name>
874 is the symbol to lookup (relative to elf-base-sym) and <offset> is an offset
875 to add to that value.
876
Simon Glasscda991e2023-02-12 17:11:15 -0700877preserve:
878 Indicates that this entry should be preserved by any firmware updates. This
879 flag should be checked by the updater when it is deciding which entries to
880 update. This flag is normally attached to sections but can be attached to
881 a single entry in a section if the updater supports it. Not that binman
882 itself has no control over the updater's behaviour, so this is just a
883 signal. It is not enforced by binman.
884
Simon Glass2574ef62016-11-25 20:15:51 -0700885Examples of the above options can be found in the tests. See the
886tools/binman/test directory.
887
Simon Glasse76a3e62018-06-01 09:38:11 -0600888It is possible to have the same binary appear multiple times in the image,
889either by using a unit number suffix (u-boot@0, u-boot@1) or by using a
890different name for each and specifying the type with the 'type' attribute.
891
Simon Glass2574ef62016-11-25 20:15:51 -0700892
Michael Heimpold55c822d2018-08-22 22:01:24 +0200893Sections and hierachical images
Simon Glassa91e1152018-06-01 09:38:16 -0600894-------------------------------
895
896Sometimes it is convenient to split an image into several pieces, each of which
897contains its own set of binaries. An example is a flash device where part of
898the image is read-only and part is read-write. We can set up sections for each
899of these, and place binaries in them independently. The image is still produced
900as a single output file.
901
902This feature provides a way of creating hierarchical images. For example here
Simon Glass1e324002018-06-01 09:38:19 -0600903is an example image with two copies of U-Boot. One is read-only (ro), intended
904to be written only in the factory. Another is read-write (rw), so that it can be
Simon Glassa91e1152018-06-01 09:38:16 -0600905upgraded in the field. The sizes are fixed so that the ro/rw boundary is known
Simon Glass75ead662021-03-18 20:25:13 +1300906and can be programmed::
Simon Glassa91e1152018-06-01 09:38:16 -0600907
Simon Glass75ead662021-03-18 20:25:13 +1300908 binman {
909 section@0 {
910 read-only;
911 name-prefix = "ro-";
912 size = <0x100000>;
913 u-boot {
914 };
915 };
916 section@1 {
917 name-prefix = "rw-";
918 size = <0x100000>;
919 u-boot {
920 };
921 };
922 };
Simon Glassa91e1152018-06-01 09:38:16 -0600923
924This image could be placed into a SPI flash chip, with the protection boundary
925set at 1MB.
926
927A few special properties are provided for sections:
928
929read-only:
Simon Glass75ead662021-03-18 20:25:13 +1300930 Indicates that this section is read-only. This has no impact on binman's
931 operation, but his property can be read at run time.
Simon Glassa91e1152018-06-01 09:38:16 -0600932
Simon Glass3b78d532018-06-01 09:38:21 -0600933name-prefix:
Simon Glass75ead662021-03-18 20:25:13 +1300934 This string is prepended to all the names of the binaries in the
935 section. In the example above, the 'u-boot' binaries which actually be
936 renamed to 'ro-u-boot' and 'rw-u-boot'. This can be useful to
937 distinguish binaries with otherwise identical names.
Simon Glass3b78d532018-06-01 09:38:21 -0600938
Simon Glassde244162023-01-07 14:07:08 -0700939filename:
940 This allows the contents of the section to be written to a file in the
941 output directory. This can sometimes be useful to use the data in one
942 section in different image, since there is currently no way to share data
943 beteen images other than through files.
Simon Glassa91e1152018-06-01 09:38:16 -0600944
Simon Glassfb30e292019-07-20 12:23:51 -0600945Image Properties
946----------------
947
948Image nodes act like sections but also have a few extra properties:
949
950filename:
Simon Glass75ead662021-03-18 20:25:13 +1300951 Output filename for the image. This defaults to image.bin (or in the
952 case of multiple images <nodename>.bin where <nodename> is the name of
953 the image node.
Simon Glassfb30e292019-07-20 12:23:51 -0600954
955allow-repack:
Simon Glass75ead662021-03-18 20:25:13 +1300956 Create an image that can be repacked. With this option it is possible
957 to change anything in the image after it is created, including updating
958 the position and size of image components. By default this is not
959 permitted since it is not possibly to know whether this might violate a
960 constraint in the image description. For example, if a section has to
961 increase in size to hold a larger binary, that might cause the section
962 to fall out of its allow region (e.g. read-only portion of flash).
Simon Glassfb30e292019-07-20 12:23:51 -0600963
Simon Glass75ead662021-03-18 20:25:13 +1300964 Adding this property causes the original offset and size values in the
965 image description to be stored in the FDT and fdtmap.
Simon Glassfb30e292019-07-20 12:23:51 -0600966
967
Simon Glassfca38562022-08-18 02:16:46 -0600968Image dependencies
969------------------
970
971Binman does not currently support images that depend on each other. For example,
972if one image creates `fred.bin` and then the next uses this `fred.bin` to
973produce a final `image.bin`, then the behaviour is undefined. It may work, or it
974may produce an error about `fred.bin` being missing, or it may use a version of
975`fred.bin` from a previous run.
976
977Often this can be handled by incorporating the dependency into the second
978image. For example, instead of::
979
980 binman {
981 multiple-images;
982
983 fred {
984 u-boot {
985 };
986 fill {
987 size = <0x100>;
988 };
989 };
990
991 image {
992 blob {
993 filename = "fred.bin";
994 };
995 u-boot-spl {
996 };
997 };
998
999you can do this::
1000
1001 binman {
1002 image {
1003 fred {
1004 type = "section";
1005 u-boot {
1006 };
1007 fill {
1008 size = <0x100>;
1009 };
1010 };
1011 u-boot-spl {
1012 };
1013 };
1014
1015
1016
Simon Glassfa888282021-03-18 20:25:14 +13001017Hashing Entries
1018---------------
1019
1020It is possible to ask binman to hash the contents of an entry and write that
1021value back to the device-tree node. For example::
1022
1023 binman {
1024 u-boot {
1025 hash {
1026 algo = "sha256";
1027 };
1028 };
1029 };
1030
1031Here, a new 'value' property will be written to the 'hash' node containing
1032the hash of the 'u-boot' entry. Only SHA256 is supported at present. Whole
1033sections can be hased if desired, by adding the 'hash' node to the section.
1034
1035The has value can be chcked at runtime by hashing the data actually read and
1036comparing this has to the value in the device tree.
1037
1038
1039Expanded entries
1040----------------
1041
1042Binman automatically replaces 'u-boot' with an expanded version of that, i.e.
1043'u-boot-expanded'. This means that when you write::
1044
1045 u-boot {
1046 };
1047
1048you actually get::
1049
1050 u-boot {
1051 type = "u-boot-expanded';
1052 };
1053
1054which in turn expands to::
1055
1056 u-boot {
1057 type = "section";
1058
1059 u-boot-nodtb {
1060 };
1061
1062 u-boot-dtb {
1063 };
1064 };
1065
1066U-Boot's various phase binaries actually comprise two or three pieces.
1067For example, u-boot.bin has the executable followed by a devicetree.
1068
1069With binman we want to be able to update that devicetree with full image
1070information so that it is accessible to the executable. This is tricky
1071if it is not clear where the devicetree starts.
1072
1073The above feature ensures that the devicetree is clearly separated from the
1074U-Boot executable and can be updated separately by binman as needed. It can be
1075disabled with the --no-expanded flag if required.
1076
Heiko Thieryd5894562022-01-24 08:11:01 +01001077The same applies for u-boot-spl and u-boot-tpl. In those cases, the expansion
Simon Glassfa888282021-03-18 20:25:14 +13001078includes the BSS padding, so for example::
1079
1080 spl {
1081 type = "u-boot-spl"
1082 };
1083
1084you actually get::
1085
1086 spl {
1087 type = "u-boot-expanded';
1088 };
1089
1090which in turn expands to::
1091
1092 spl {
1093 type = "section";
1094
1095 u-boot-spl-nodtb {
1096 };
1097
1098 u-boot-spl-bss-pad {
1099 };
1100
1101 u-boot-spl-dtb {
1102 };
1103 };
1104
1105Of course we should not expand SPL if it has no devicetree. Also if the BSS
1106padding is not needed (because BSS is in RAM as with CONFIG_SPL_SEPARATE_BSS),
1107the 'u-boot-spl-bss-pad' subnode should not be created. The use of the expaned
1108entry type is controlled by the UseExpanded() method. In the SPL case it checks
1109the 'spl-dtb' entry arg, which is 'y' or '1' if SPL has a devicetree.
1110
1111For the BSS case, a 'spl-bss-pad' entry arg controls whether it is present. All
1112entry args are provided by the U-Boot Makefile.
1113
1114
Simon Glass1e9e61c2023-01-07 14:07:12 -07001115Optional entries
1116----------------
1117
1118Some entries need to exist only if certain conditions are met. For example, an
1119entry may want to appear in the image only if a file has a particular format.
1120Obviously the entry must exist in the image description for it to be processed
1121at all, so a way needs to be found to have the entry remove itself.
1122
1123To handle this, when entry.ObtainContents() is called, the entry can call
1124entry.mark_absent() to mark itself as absent, passing a suitable message as the
1125reason.
1126
1127Any absent entries are dropped immediately after ObtainContents() has been
1128called on all entries.
1129
1130It is not possible for an entry to mark itself absent at any other point in the
1131processing. It must happen in the ObtainContents() method.
1132
1133The effect is as if the entry had never been present at all, since the image
1134is packed without it and it disappears from the list of entries.
1135
1136
Simon Glassfa888282021-03-18 20:25:14 +13001137Compression
1138-----------
1139
1140Binman support compression for 'blob' entries (those of type 'blob' and
1141derivatives). To enable this for an entry, add a 'compress' property::
1142
1143 blob {
1144 filename = "datafile";
1145 compress = "lz4";
1146 };
1147
1148The entry will then contain the compressed data, using the 'lz4' compression
1149algorithm. Currently this is the only one that is supported. The uncompressed
1150size is written to the node in an 'uncomp-size' property, if -u is used.
1151
1152Compression is also supported for sections. In that case the entire section is
1153compressed in one block, including all its contents. This means that accessing
1154an entry from the section required decompressing the entire section. Also, the
1155size of a section indicates the space that it consumes in its parent section
1156(and typically the image). With compression, the section may contain more data,
1157and the uncomp-size property indicates that, as above. The contents of the
1158section is compressed first, before any padding is added. This ensures that the
1159padding itself is not compressed, which would be a waste of time.
1160
1161
1162Automatic .dtsi inclusion
1163-------------------------
1164
1165It is sometimes inconvenient to add a 'binman' node to the .dts file for each
1166board. This can be done by using #include to bring in a common file. Another
1167approach supported by the U-Boot build system is to automatically include
1168a common header. You can then put the binman node (and anything else that is
Simon Glassfc1aa352023-02-13 08:56:34 -07001169specific to U-Boot, such as bootph-all properies) in that header file.
Simon Glassfa888282021-03-18 20:25:14 +13001170
1171Binman will search for the following files in arch/<arch>/dts::
1172
1173 <dts>-u-boot.dtsi where <dts> is the base name of the .dts file
1174 <CONFIG_SYS_SOC>-u-boot.dtsi
1175 <CONFIG_SYS_CPU>-u-boot.dtsi
1176 <CONFIG_SYS_VENDOR>-u-boot.dtsi
1177 u-boot.dtsi
1178
1179U-Boot will only use the first one that it finds. If you need to include a
1180more general file you can do that from the more specific file using #include.
Simon Glass0a1b3b62021-12-16 20:59:23 -07001181If you are having trouble figuring out what is going on, you can use
1182`DEVICE_TREE_DEBUG=1` with your build::
Simon Glassfa888282021-03-18 20:25:14 +13001183
Simon Glass0a1b3b62021-12-16 20:59:23 -07001184 make DEVICE_TREE_DEBUG=1
1185 scripts/Makefile.lib:334: Automatic .dtsi inclusion: options:
1186 arch/arm/dts/juno-r2-u-boot.dtsi arch/arm/dts/-u-boot.dtsi
1187 arch/arm/dts/armv8-u-boot.dtsi arch/arm/dts/armltd-u-boot.dtsi
1188 arch/arm/dts/u-boot.dtsi ... found: "arch/arm/dts/juno-r2-u-boot.dtsi"
Simon Glassfa888282021-03-18 20:25:14 +13001189
1190
Simon Glassfc792842023-07-18 07:24:04 -06001191Templates
1192=========
1193
1194Sometimes multiple images need to be created which have all have a common
1195part. For example, a board may generate SPI and eMMC images which both include
1196a FIT. Since the FIT includes many entries, it is tedious to repeat them twice
1197in the image description.
1198
1199Templates provide a simple way to handle this::
1200
1201 binman {
1202 multiple-images;
1203 common_part: template-1 {
1204 some-property;
1205 fit {
1206 ... lots of entries in here
1207 };
1208
1209 text {
1210 text = "base image";
1211 };
1212 };
1213
1214 spi-image {
1215 filename = "image-spi.bin";
Simon Glasse1931ee2024-07-20 11:49:32 +01001216 insert-template = <&common_part>;
Simon Glassfc792842023-07-18 07:24:04 -06001217
1218 /* things specific to SPI follow */
1219 footer {
1220 ];
1221
1222 text {
1223 text = "SPI image";
1224 };
1225 };
1226
1227 mmc-image {
1228 filename = "image-mmc.bin";
Simon Glasse1931ee2024-07-20 11:49:32 +01001229 insert-template = <&common_part>;
Simon Glassfc792842023-07-18 07:24:04 -06001230
1231 /* things specific to MMC follow */
1232 footer {
1233 ];
1234
1235 text {
1236 text = "MMC image";
1237 };
1238 };
1239 };
1240
1241The template node name must start with 'template', so it is not considered to be
1242an image itself.
1243
1244The mechanism is very simple. For each phandle in the 'insert-templates'
1245property, the source node is looked up. Then the subnodes of that source node
1246are copied into the target node, i.e. the one containing the `insert-template`
1247property.
1248
1249If the target node has a node with the same name as a template, its properties
1250override corresponding properties in the template. This allows the template to
1251be uses as a base, with the node providing updates to the properties as needed.
1252The overriding happens recursively.
1253
1254Template nodes appear first in each node that they are inserted into and
1255ordering of template nodes is preserved. Other nodes come afterwards. If a
1256template node also appears in the target node, then the template node sets the
1257order. Thus the template can be used to set the ordering, even if the target
1258node provides all the properties. In the above example, `fit` and `text` appear
1259first in the `spi-image` and `mmc-image` images, followed by `footer`.
1260
1261Where there are multiple template nodes, they are inserted in that order. so
1262the first template node appears first, then the second.
1263
1264Properties in the template node are inserted into the destination node if they
1265do not exist there. In the example above, `some-property` is added to each of
1266`spi-image` and `mmc-image`.
1267
Simon Glass54825e12023-07-22 21:43:56 -06001268Note that template nodes are removed from the binman description after
1269processing and before binman builds the image descriptions.
1270
Simon Glass09490b02023-07-22 21:43:52 -06001271The initial devicetree produced by the templating process is written to the
1272`u-boot.dtb.tmpl1` file. This can be useful to see what is going on if there is
Simon Glass54825e12023-07-22 21:43:56 -06001273a failure before the final `u-boot.dtb.out` file is written. A second
1274`u-boot.dtb.tmpl2` file is written when the templates themselves are removed.
Simon Glassfc792842023-07-18 07:24:04 -06001275
Simon Glass86b3e472023-07-22 21:43:57 -06001276Dealing with phandles
1277---------------------
1278
1279Templates can contain phandles and these are copied to the destination node.
1280However this should be used with care, since if a template is instantiated twice
1281then the phandle will be copied twice, resulting in a devicetree with duplicate
1282phandles, i.e. the same phandle used by two different nodes. Binman detects this
1283situation and produces an error, for example::
1284
1285 Duplicate phandle 1 in nodes /binman/image/fit/images/atf/atf-bl31 and
1286 /binman/image-2/fit/images/atf/atf-bl31
1287
1288In this case an atf-bl31 node containing a phandle has been copied into two
1289different target nodes, resulting in the same phandle for each. See
1290testTemplatePhandleDup() for the test case.
1291
1292The solution is typically to put the phandles in the corresponding target nodes
1293(one for each) and remove the phandle from the template.
Simon Glassfc792842023-07-18 07:24:04 -06001294
Simon Glassadfb8492021-11-03 21:09:18 -06001295Updating an ELF file
1296====================
1297
1298For the EFI app, where U-Boot is loaded from UEFI and runs as an app, there is
1299no way to update the devicetree after U-Boot is built. Normally this works by
1300creating a new u-boot.dtb.out with he updated devicetree, which is automatically
1301built into the output image. With ELF this is not possible since the ELF is
1302not part of an image, just a stand-along file. We must create an updated ELF
1303file with the new devicetree.
1304
1305This is handled by the --update-fdt-in-elf option. It takes four arguments,
1306separated by comma:
1307
1308 infile - filename of input ELF file, e.g. 'u-boot's
1309 outfile - filename of output ELF file, e.g. 'u-boot.out'
1310 begin_sym - symbol at the start of the embedded devicetree, e.g.
1311 '__dtb_dt_begin'
1312 end_sym - symbol at the start of the embedded devicetree, e.g.
1313 '__dtb_dt_end'
1314
1315When this flag is used, U-Boot does all the normal packaging, but as an
1316additional step, it creates a new ELF file with the new devicetree embedded in
1317it.
1318
1319If logging is enabled you will see a message like this::
1320
1321 Updating file 'u-boot' with data length 0x400a (16394) between symbols
1322 '__dtb_dt_begin' and '__dtb_dt_end'
1323
1324There must be enough space for the updated devicetree. If not, an error like
1325the following is produced::
1326
1327 ValueError: Not enough space in 'u-boot' for data length 0x400a (16394);
1328 size is 0x1744 (5956)
1329
1330
Simon Glass7a61c6b2018-07-17 13:25:37 -06001331Entry Documentation
Simon Glass774b23f2021-03-18 20:25:17 +13001332===================
Simon Glass7a61c6b2018-07-17 13:25:37 -06001333
1334For details on the various entry types supported by binman and how to use them,
Simon Glass774b23f2021-03-18 20:25:17 +13001335see entries.rst which is generated from the source code using:
1336
1337 binman entry-docs >tools/binman/entries.rst
Simon Glass7a61c6b2018-07-17 13:25:37 -06001338
Simon Glass774b23f2021-03-18 20:25:17 +13001339.. toctree::
1340 :maxdepth: 2
Simon Glass7a61c6b2018-07-17 13:25:37 -06001341
Simon Glass774b23f2021-03-18 20:25:17 +13001342 entries
1343
Simon Glassfa888282021-03-18 20:25:14 +13001344
1345Managing images
1346===============
Simon Glass7a61c6b2018-07-17 13:25:37 -06001347
Simon Glassb2fd11d2019-07-08 14:25:48 -06001348Listing images
1349--------------
1350
1351It is possible to list the entries in an existing firmware image created by
Simon Glass75ead662021-03-18 20:25:13 +13001352binman, provided that there is an 'fdtmap' entry in the image. For example::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001353
1354 $ binman ls -i image.bin
1355 Name Image-pos Size Entry-type Offset Uncomp-size
1356 ----------------------------------------------------------------------
1357 main-section c00 section 0
1358 u-boot 0 4 u-boot 0
1359 section 5fc section 4
1360 cbfs 100 400 cbfs 0
1361 u-boot 138 4 u-boot 38
1362 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1363 u-boot-dtb 500 1ff u-boot-dtb 400 3b5
1364 fdtmap 6fc 381 fdtmap 6fc
1365 image-header bf8 8 image-header bf8
1366
1367This shows the hierarchy of the image, the position, size and type of each
1368entry, the offset of each entry within its parent and the uncompressed size if
1369the entry is compressed.
1370
Simon Glass75ead662021-03-18 20:25:13 +13001371It is also possible to list just some files in an image, e.g.::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001372
1373 $ binman ls -i image.bin section/cbfs
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
Simon Glass75ead662021-03-18 20:25:13 +13001380or with wildcards::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001381
1382 $ binman ls -i image.bin "*cb*" "*head*"
1383 Name Image-pos Size Entry-type Offset Uncomp-size
1384 ----------------------------------------------------------------------
1385 cbfs 100 400 cbfs 0
1386 u-boot 138 4 u-boot 38
1387 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1388 image-header bf8 8 image-header bf8
1389
Simon Glassb9028bc2021-11-23 21:09:49 -07001390If an older version of binman is used to list images created by a newer one, it
1391is possible that it will contain entry types that are not supported. These still
1392show with the correct type, but binman just sees them as blobs (plain binary
1393data). Any special features of that etype are not supported by the old binman.
1394
Simon Glassb2fd11d2019-07-08 14:25:48 -06001395
Simon Glass980a2842019-07-08 14:25:52 -06001396Extracting files from images
1397----------------------------
1398
1399You can extract files from an existing firmware image created by binman,
Simon Glass75ead662021-03-18 20:25:13 +13001400provided that there is an 'fdtmap' entry in the image. For example::
Simon Glass980a2842019-07-08 14:25:52 -06001401
1402 $ binman extract -i image.bin section/cbfs/u-boot
1403
1404which will write the uncompressed contents of that entry to the file 'u-boot' in
1405the current directory. You can also extract to a particular file, in this case
Simon Glass75ead662021-03-18 20:25:13 +13001406u-boot.bin::
Simon Glass980a2842019-07-08 14:25:52 -06001407
1408 $ binman extract -i image.bin section/cbfs/u-boot -f u-boot.bin
1409
1410It is possible to extract all files into a destination directory, which will
Simon Glass75ead662021-03-18 20:25:13 +13001411put files in subdirectories matching the entry hierarchy::
Simon Glass980a2842019-07-08 14:25:52 -06001412
1413 $ binman extract -i image.bin -O outdir
1414
Simon Glass75ead662021-03-18 20:25:13 +13001415or just a selection::
Simon Glass980a2842019-07-08 14:25:52 -06001416
1417 $ binman extract -i image.bin "*u-boot*" -O outdir
1418
Simon Glass637958f2021-11-23 21:09:50 -07001419Some entry types have alternative formats, for example fdtmap which allows
1420extracted just the devicetree binary without the fdtmap header::
1421
1422 $ binman extract -i /tmp/b/odroid-c4/image.bin -f out.dtb -F fdt fdtmap
1423 $ fdtdump out.dtb
1424 /dts-v1/;
1425 // magic: 0xd00dfeed
1426 // totalsize: 0x8ab (2219)
1427 // off_dt_struct: 0x38
1428 // off_dt_strings: 0x82c
1429 // off_mem_rsvmap: 0x28
1430 // version: 17
1431 // last_comp_version: 2
1432 // boot_cpuid_phys: 0x0
1433 // size_dt_strings: 0x7f
1434 // size_dt_struct: 0x7f4
1435
1436 / {
1437 image-node = "binman";
1438 image-pos = <0x00000000>;
1439 size = <0x0011162b>;
1440 ...
1441
1442Use `-F list` to see what alternative formats are available::
1443
1444 $ binman extract -i /tmp/b/odroid-c4/image.bin -F list
1445 Flag (-F) Entry type Description
1446 fdt fdtmap Extract the devicetree blob from the fdtmap
1447
Simon Glass980a2842019-07-08 14:25:52 -06001448
Simon Glass072959a2019-07-20 12:23:50 -06001449Replacing files in an image
1450---------------------------
1451
1452You can replace files in an existing firmware image created by binman, provided
Simon Glass31cce972021-11-23 21:09:48 -07001453that there is an 'fdtmap' entry in the image. For example::
Simon Glass072959a2019-07-20 12:23:50 -06001454
1455 $ binman replace -i image.bin section/cbfs/u-boot
1456
1457which will write the contents of the file 'u-boot' from the current directory
Simon Glass30033c22019-07-20 12:24:15 -06001458to the that entry, compressing if necessary. If the entry size changes, you must
1459add the 'allow-repack' property to the original image before generating it (see
1460above), otherwise you will get an error.
Simon Glass072959a2019-07-20 12:23:50 -06001461
Simon Glass75ead662021-03-18 20:25:13 +13001462You can also use a particular file, in this case u-boot.bin::
Simon Glass30033c22019-07-20 12:24:15 -06001463
1464 $ binman replace -i image.bin section/cbfs/u-boot -f u-boot.bin
1465
1466It is possible to replace all files from a source directory which uses the same
Simon Glass75ead662021-03-18 20:25:13 +13001467hierarchy as the entries::
Simon Glass30033c22019-07-20 12:24:15 -06001468
1469 $ binman replace -i image.bin -I indir
1470
1471Files that are missing will generate a warning.
1472
Simon Glass75ead662021-03-18 20:25:13 +13001473You can also replace just a selection of entries::
Simon Glass30033c22019-07-20 12:24:15 -06001474
1475 $ binman replace -i image.bin "*u-boot*" -I indir
1476
Simon Glass49b77e82023-03-02 17:02:44 -07001477It is possible to replace whole sections as well, but in that case any
1478information about entries within the section may become outdated. This is
1479because Binman cannot know whether things have moved around or resized within
1480the section, once you have updated its data.
1481
1482Technical note: With 'allow-repack', Binman writes information about the
1483original offset and size properties of each entry, if any were specified, in
1484the 'orig-offset' and 'orig-size' properties. This allows Binman to distinguish
1485between an entry which ended up being packed at an offset (or assigned a size)
1486and an entry which had a particular offset / size requested in the Binman
1487configuration. Where are particular offset / size was requested, this is treated
1488as set in stone, so Binman will ensure it doesn't change. Without this feature,
1489repacking an entry might cause it to disobey the original constraints provided
1490when it was created.
1491
Simon Glassa9223472022-11-09 19:14:49 -07001492
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001493Signing FIT container with private key in an image
1494--------------------------------------------------
1495
1496You can sign FIT container with private key in your image.
1497For example::
1498
1499 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 fit
1500
1501binman will extract FIT container, sign and replace it immediately.
1502
1503If you want to sign and replace FIT container in place::
1504
1505 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 -f fit.fit fit
1506
1507which will sign FIT container with private key and replace it immediately
1508inside your image.
1509
Massimo Pegorerb05ac5e2023-09-09 15:52:35 +02001510.. _`BinmanLogging`:
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001511
Simon Glass233a26a92019-07-08 14:25:49 -06001512Logging
1513-------
1514
1515Binman normally operates silently unless there is an error, in which case it
1516just displays the error. The -D/--debug option can be used to create a full
Simon Glasscaa5f182021-02-06 09:57:28 -07001517backtrace when errors occur. You can use BINMAN_DEBUG=1 when building to select
1518this.
Simon Glass233a26a92019-07-08 14:25:49 -06001519
1520Internally binman logs some output while it is running. This can be displayed
1521by increasing the -v/--verbosity from the default of 1:
1522
1523 0: silent
1524 1: warnings only
1525 2: notices (important messages)
1526 3: info about major operations
1527 4: detailed information about each operation
1528 5: debug (all output)
1529
Simon Glasscaa5f182021-02-06 09:57:28 -07001530You can use BINMAN_VERBOSE=5 (for example) when building to select this.
Simon Glass233a26a92019-07-08 14:25:49 -06001531
Simon Glass72232452016-11-25 20:15:53 -07001532
Simon Glass41424862022-01-09 20:14:12 -07001533Bintools
1534========
1535
1536`Bintool` is the name binman gives to a binary tool which it uses to create and
1537manipulate binaries that binman cannot handle itself. Bintools are often
1538necessary since Binman only supports a subset of the available file formats
1539natively.
1540
1541Many SoC vendors invent ways to load code into their SoC using new file formats,
1542sometimes changing the format with successive SoC generations. Sometimes the
1543tool is available as Open Source. Sometimes it is a pre-compiled binary that
1544must be downloaded from the vendor's website. Sometimes it is available in
1545source form but difficult or slow to build.
1546
1547Even for images that use bintools, binman still assembles the image from its
1548image description. It may handle parts of the image natively and part with
1549various bintools.
1550
1551Binman relies on these tools so provides various features to manage them:
1552
1553- Determining whether the tool is currently installed
1554- Downloading or building the tool
1555- Determining the version of the tool that is installed
1556- Deciding which tools are needed to build an image
1557
1558The Bintool class is an interface to the tool, a thin level of abstration, using
1559Python functions to run the tool for each purpose (e.g. creating a new
1560structure, adding a file to an existing structure) rather than just lists of
1561string arguments.
1562
1563As with external blobs, bintools (which are like 'external' tools) can be
1564missing. When building an image requires a bintool and it is not installed,
1565binman detects this and reports the problem, but continues to build an image.
1566This is useful in CI systems which want to check that everything is correct but
1567don't have access to the bintools.
1568
1569To make this work, all calls to bintools (e.g. with Bintool.run_cmd()) must cope
1570with the tool being missing, i.e. when None is returned, by:
1571
1572- Calling self.record_missing_bintool()
1573- Setting up some fake contents so binman can continue
1574
1575Of course the image will not work, but binman reports which bintools are needed
1576and also provide a way to fetch them.
1577
1578To see the available bintools, use::
1579
1580 binman tool --list
1581
1582To fetch tools which are missing, use::
1583
1584 binman tool --fetch missing
1585
1586You can also use `--fetch all` to fetch all tools or `--fetch <tool>` to fetch
1587a particular tool. Some tools are built from source code, in which case you will
1588need to have at least the `build-essential` and `git` packages installed.
1589
Simon Glass9a1c7262023-02-22 12:14:49 -07001590Tools are fetched into the `~/.binman-tools` directory. This directory is
1591automatically added to the toolpath so there is no need to use `--toolpath` to
1592specify it. If you want to use these tools outside binman, you may want to
1593add this directory to your `PATH`. For example, if you use bash, add this to
1594the end of `.bashrc`::
1595
1596 PATH="$HOME/.binman-tools:$PATH"
1597
1598To select a custom directory, use the `--tooldir` option.
Simon Glassc9114962023-02-22 12:14:48 -07001599
Simon Glass41424862022-01-09 20:14:12 -07001600Bintool Documentation
1601=====================
1602
1603To provide details on the various bintools supported by binman, bintools.rst is
1604generated from the source code using:
1605
1606 binman bintool-docs >tools/binman/bintools.rst
1607
1608.. toctree::
1609 :maxdepth: 2
1610
1611 bintools
1612
Simon Glassa20c0412022-11-09 19:14:54 -07001613Binman commands and arguments
1614=============================
1615
1616Usage::
1617
Simon Glass9a1c7262023-02-22 12:14:49 -07001618 binman [-h] [-B BUILD_DIR] [-D] [--tooldir TOOLDIR] [-H]
1619 [--toolpath TOOLPATH] [-T THREADS] [--test-section-timeout]
1620 [-v VERBOSITY] [-V]
Simon Glassa20c0412022-11-09 19:14:54 -07001621 {build,bintool-docs,entry-docs,ls,extract,replace,test,tool} ...
1622
1623Binman provides the following commands:
1624
1625- **build** - build images
1626- **bintools-docs** - generate documentation about bintools
1627- **entry-docs** - generate documentation about entry types
1628- **ls** - list an image
1629- **extract** - extract files from an image
1630- **replace** - replace one or more entries in an image
1631- **test** - run tests
1632- **tool** - manage bintools
1633
1634Options:
1635
1636-h, --help
1637 Show help message and exit
1638
1639-B BUILD_DIR, --build-dir BUILD_DIR
1640 Directory containing the build output
1641
1642-D, --debug
1643 Enabling debugging (provides a full traceback on error)
1644
Simon Glass9a1c7262023-02-22 12:14:49 -07001645--tooldir TOOLDIR Set the directory to store tools
1646
Simon Glassa20c0412022-11-09 19:14:54 -07001647-H, --full-help
1648 Display the README file
1649
1650--toolpath TOOLPATH
Simon Glass9a1c7262023-02-22 12:14:49 -07001651 Add a path to the list of directories containing tools
Simon Glassa20c0412022-11-09 19:14:54 -07001652
1653-T THREADS, --threads THREADS
1654 Number of threads to use (0=single-thread). Note that -T0 is useful for
1655 debugging since everything runs in one thread.
1656
1657-v VERBOSITY, --verbosity VERBOSITY
1658 Control verbosity: 0=silent, 1=warnings, 2=notices, 3=info, 4=detail,
1659 5=debug
1660
1661-V, --version
1662 Show the binman version
1663
1664Test options:
1665
1666--test-section-timeout
1667 Use a zero timeout for section multi-threading (for testing)
1668
1669Commands are described below.
1670
1671binman build
1672------------
1673
1674This builds one or more images using the provided image description.
1675
1676Usage::
1677
1678 binman build [-h] [-a ENTRY_ARG] [-b BOARD] [-d DT] [--fake-dtb]
1679 [--fake-ext-blobs] [--force-missing-bintools FORCE_MISSING_BINTOOLS]
1680 [-i IMAGE] [-I INDIR] [-m] [-M] [-n] [-O OUTDIR] [-p] [-u]
1681 [--update-fdt-in-elf UPDATE_FDT_IN_ELF] [-W]
1682
1683Options:
1684
1685-h, --help
1686 Show help message and exit
1687
1688-a ENTRY_ARG, --entry-arg ENTRY_ARG
1689 Set argument value `arg=value`. See
1690 `Passing command-line arguments to entries`_.
1691
1692-b BOARD, --board BOARD
1693 Board name to build. This can be used instead of `-d`, in which case the
1694 file `u-boot.dtb` is used, within the build directory's board subdirectory.
1695
1696-d DT, --dt DT
1697 Configuration file (.dtb) to use. This must have a top-level node called
1698 `binman`. See `Image description format`_.
1699
1700-i IMAGE, --image IMAGE
1701 Image filename to build (if not specified, build all)
1702
1703-I INDIR, --indir INDIR
1704 Add a path to the list of directories to use for input files. This can be
1705 specified multiple times to add more than one path.
1706
1707-m, --map
1708 Output a map file for each image. See `Map files`_.
1709
1710-M, --allow-missing
1711 Allow external blobs and bintools to be missing. See `External blobs`_.
1712
1713-n, --no-expanded
1714 Don't use 'expanded' versions of entries where available; normally 'u-boot'
1715 becomes 'u-boot-expanded', for example. See `Expanded entries`_.
1716
1717-O OUTDIR, --outdir OUTDIR
1718 Path to directory to use for intermediate and output files
1719
1720-p, --preserve
1721 Preserve temporary output directory even if option -O is not given
1722
1723-u, --update-fdt
1724 Update the binman node with offset/size info. See
1725 `Access to binman entry offsets at run time (fdt)`_.
1726
1727--update-fdt-in-elf UPDATE_FDT_IN_ELF
1728 Update an ELF file with the output dtb. The argument is a string consisting
1729 of four parts, separated by commas. See `Updating an ELF file`_.
1730
1731-W, --ignore-missing
1732 Return success even if there are missing blobs/bintools (requires -M)
1733
1734Options used only for testing:
1735
1736--fake-dtb
1737 Use fake device tree contents
1738
1739--fake-ext-blobs
1740 Create fake ext blobs with dummy content
1741
1742--force-missing-bintools FORCE_MISSING_BINTOOLS
1743 Comma-separated list of bintools to consider missing
1744
1745binman bintool-docs
1746-------------------
1747
1748Usage::
1749
1750 binman bintool-docs [-h]
1751
1752This outputs documentation for the bintools in rST format. See
1753`Bintool Documentation`_.
1754
1755binman entry-docs
1756-----------------
1757
1758Usage::
1759
1760 binman entry-docs [-h]
1761
1762This outputs documentation for the entry types in rST format. See
1763`Entry Documentation`_.
1764
1765binman ls
1766---------
1767
1768Usage::
1769
1770 binman ls [-h] -i IMAGE [paths ...]
1771
1772Positional arguments:
1773
1774paths
1775 Paths within file to list (wildcard)
1776
1777Pptions:
1778
1779-h, --help
1780 show help message and exit
1781
1782-i IMAGE, --image IMAGE
1783 Image filename to list
1784
1785This lists an image, showing its contents. See `Listing images`_.
1786
1787binman extract
1788--------------
1789
1790Usage::
1791
1792 binman extract [-h] [-F FORMAT] -i IMAGE [-f FILENAME] [-O OUTDIR] [-U]
1793 [paths ...]
1794
1795Positional arguments:
1796
1797Paths
1798 Paths within file to extract (wildcard)
1799
1800Options:
1801
1802-h, --help
1803 show help message and exit
1804
1805-F FORMAT, --format FORMAT
1806 Select an alternative format for extracted data
1807
1808-i IMAGE, --image IMAGE
1809 Image filename to extract
1810
1811-f FILENAME, --filename FILENAME
1812 Output filename to write to
1813
1814-O OUTDIR, --outdir OUTDIR
1815 Path to directory to use for output files
1816
1817-U, --uncompressed
1818 Output raw uncompressed data for compressed entries
1819
1820This extracts the contents of entries from an image. See
1821`Extracting files from images`_.
1822
1823binman replace
1824--------------
1825
1826Usage::
1827
1828 binman replace [-h] [-C] -i IMAGE [-f FILENAME] [-F] [-I INDIR] [-m]
1829 [paths ...]
1830
1831Positional arguments:
1832
1833paths
1834 Paths within file to replace (wildcard)
1835
1836Options:
1837
1838-h, --help
1839 show help message and exit
1840
1841-C, --compressed
1842 Input data is already compressed if needed for the entry
1843
1844-i IMAGE, --image IMAGE
1845 Image filename to update
1846
1847-f FILENAME, --filename FILENAME
1848 Input filename to read from
1849
1850-F, --fix-size
1851 Don't allow entries to be resized
1852
1853-I INDIR, --indir INDIR
1854 Path to directory to use for input files
1855
1856-m, --map
1857 Output a map file for the updated image
1858
Simon Glassb9b9b272023-03-02 17:02:42 -07001859-O OUTDIR, --outdir OUTDIR
1860 Path to directory to use for intermediate and output files
1861
1862-p, --preserve
1863 Preserve temporary output directory even if option -O is not given
1864
Simon Glassa20c0412022-11-09 19:14:54 -07001865This replaces one or more entries in an existing image. See
1866`Replacing files in an image`_.
1867
1868binman test
1869-----------
1870
1871Usage::
1872
1873 binman test [-h] [-P PROCESSES] [-T] [-X] [tests ...]
1874
1875Positional arguments:
1876
1877tests
1878 Test names to run (omit for all)
1879
1880Options:
1881
1882-h, --help
1883 show help message and exit
1884
1885-P PROCESSES, --processes PROCESSES
1886 set number of processes to use for running tests. This defaults to the
1887 number of CPUs on the machine
1888
1889-T, --test-coverage
1890 run tests and check for 100% coverage
1891
1892-X, --test-preserve-dirs
1893 Preserve and display test-created input directories; also preserve the
1894 output directory if a single test is run (pass test name at the end of the
1895 command line
1896
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001897binman sign
1898-----------
1899
1900Usage::
1901
1902 binman sign [-h] -a ALGO [-f FILE] -i IMAGE -k KEY [paths ...]
1903
1904positional arguments:
1905
1906paths
1907 Paths within file to sign (wildcard)
1908
1909options:
1910
1911-h, --help
1912 show this help message and exit
1913
1914-a ALGO, --algo ALGO
1915 Hash algorithm e.g. sha256,rsa4096
1916
1917-f FILE, --file FILE
1918 Input filename to sign
1919
1920-i IMAGE, --image IMAGE
1921 Image filename to update
1922
1923-k KEY, --key KEY
1924 Private key file for signing
1925
Simon Glassa20c0412022-11-09 19:14:54 -07001926binman tool
1927-----------
1928
1929Usage::
1930
1931 binman tool [-h] [-l] [-f] [bintools ...]
1932
1933Positional arguments:
1934
1935bintools
1936 Bintools to process
1937
1938Options:
1939
1940-h, --help
1941 show help message and exit
1942
1943-l, --list
1944 List all known bintools
1945
1946-f, --fetch
1947 Fetch a bintool from a known location. Use `all` to fetch all and `missing`
1948 to fetch any missing tools.
1949
Simon Glass41424862022-01-09 20:14:12 -07001950
Simon Glassfa888282021-03-18 20:25:14 +13001951Technical details
1952=================
Simon Glass72232452016-11-25 20:15:53 -07001953
Simon Glass2574ef62016-11-25 20:15:51 -07001954Order of image creation
1955-----------------------
1956
1957Image creation proceeds in the following order, for each entry in the image.
1958
Simon Glasse22f8fa2018-07-06 10:27:41 -060019591. AddMissingProperties() - binman can add calculated values to the device
Simon Glasse8561af2018-08-01 15:22:37 -06001960tree as part of its processing, for example the offset and size of each
Simon Glasse22f8fa2018-07-06 10:27:41 -06001961entry. This method adds any properties associated with this, expanding the
1962device tree as needed. These properties can have placeholder values which are
1963set later by SetCalculatedProperties(). By that stage the size of sections
1964cannot be changed (since it would cause the images to need to be repacked),
1965but the correct values can be inserted.
1966
19672. ProcessFdt() - process the device tree information as required by the
Simon Glass92307732018-07-06 10:27:40 -06001968particular entry. This may involve adding or deleting properties. If the
1969processing is complete, this method should return True. If the processing
1970cannot complete because it needs the ProcessFdt() method of another entry to
1971run first, this method should return False, in which case it will be called
1972again later.
1973
Simon Glasse22f8fa2018-07-06 10:27:41 -060019743. GetEntryContents() - the contents of each entry are obtained, normally by
Simon Glass2574ef62016-11-25 20:15:51 -07001975reading from a file. This calls the Entry.ObtainContents() to read the
1976contents. The default version of Entry.ObtainContents() calls
1977Entry.GetDefaultFilename() and then reads that file. So a common mechanism
1978to select a file to read is to override that function in the subclass. The
1979functions must return True when they have read the contents. Binman will
1980retry calling the functions a few times if False is returned, allowing
1981dependencies between the contents of different entries.
1982
Simon Glasse8561af2018-08-01 15:22:37 -060019834. GetEntryOffsets() - calls Entry.GetOffsets() for each entry. This can
Simon Glass2574ef62016-11-25 20:15:51 -07001984return a dict containing entries that need updating. The key should be the
Simon Glasse8561af2018-08-01 15:22:37 -06001985entry name and the value is a tuple (offset, size). This allows an entry to
1986provide the offset and size for other entries. The default implementation
1987of GetEntryOffsets() returns {}.
Simon Glass2574ef62016-11-25 20:15:51 -07001988
Simon Glasse8561af2018-08-01 15:22:37 -060019895. PackEntries() - calls Entry.Pack() which figures out the offset and
1990size of an entry. The 'current' image offset is passed in, and the function
1991returns the offset immediately after the entry being packed. The default
Simon Glass2574ef62016-11-25 20:15:51 -07001992implementation of Pack() is usually sufficient.
1993
Simon Glass2d9570d2020-10-26 17:40:22 -06001994Note: for sections, this also checks that the entries do not overlap, nor extend
1995outside the section. If the section does not have a defined size, the size is
Simon Glassf1ee03b2023-01-11 16:10:16 -07001996set large enough to hold all the entries. For entries that are explicitly marked
1997as overlapping, this check is skipped.
Simon Glass2574ef62016-11-25 20:15:51 -07001998
Simon Glass2d9570d2020-10-26 17:40:22 -060019996. SetImagePos() - sets the image position of every entry. This is the absolute
Simon Glass4b05b2d2019-07-20 12:23:52 -06002000position 'image-pos', as opposed to 'offset' which is relative to the containing
2001section. This must be done after all offsets are known, which is why it is quite
2002late in the ordering.
2003
Simon Glass2d9570d2020-10-26 17:40:22 -060020047. SetCalculatedProperties() - update any calculated properties in the device
Simon Glasse8561af2018-08-01 15:22:37 -06002005tree. This sets the correct 'offset' and 'size' vaues, for example.
Simon Glasse22f8fa2018-07-06 10:27:41 -06002006
Simon Glass2d9570d2020-10-26 17:40:22 -060020078. ProcessEntryContents() - this calls Entry.ProcessContents() on each entry.
Simon Glass2574ef62016-11-25 20:15:51 -07002008The default implementatoin does nothing. This can be overriden to adjust the
2009contents of an entry in some way. For example, it would be possible to create
2010an entry containing a hash of the contents of some other entries. At this
Simon Glasse61b6f62019-07-08 14:25:37 -06002011stage the offset and size of entries should not be adjusted unless absolutely
2012necessary, since it requires a repack (going back to PackEntries()).
Simon Glass2574ef62016-11-25 20:15:51 -07002013
Simon Glass2d9570d2020-10-26 17:40:22 -060020149. ResetForPack() - if the ProcessEntryContents() step failed, in that an entry
Simon Glass4b05b2d2019-07-20 12:23:52 -06002015has changed its size, then there is no alternative but to go back to step 5 and
2016try again, repacking the entries with the updated size. ResetForPack() removes
2017the fixed offset/size values added by binman, so that the packing can start from
2018scratch.
2019
Simon Glass2d9570d2020-10-26 17:40:22 -0600202010. WriteSymbols() - write the value of symbols into the U-Boot SPL binary.
Simon Glasse8561af2018-08-01 15:22:37 -06002021See 'Access to binman entry offsets at run time' below for a description of
Simon Glass29dae672018-07-06 10:27:39 -06002022what happens in this stage.
Simon Glassbe83bc72017-11-13 18:55:05 -07002023
Simon Glass2d9570d2020-10-26 17:40:22 -0600202411. BuildImage() - builds the image and writes it to a file
Simon Glass4b05b2d2019-07-20 12:23:52 -06002025
Simon Glass2d9570d2020-10-26 17:40:22 -0600202612. WriteMap() - writes a text file containing a map of the image. This is the
Simon Glass4b05b2d2019-07-20 12:23:52 -06002027final step.
Simon Glass2574ef62016-11-25 20:15:51 -07002028
2029
Simon Glassa9223472022-11-09 19:14:49 -07002030.. _`External tools`:
2031
Simon Glass6244fa42019-07-08 13:18:28 -06002032External tools
2033--------------
2034
2035Binman can make use of external command-line tools to handle processing of
2036entry contents or to generate entry contents. These tools are executed using
2037the 'tools' module's Run() method. The tools generally must exist on the PATH,
2038but the --toolpath option can be used to specify additional search paths to
2039use. This option can be specified multiple times to add more than one path.
2040
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002041For some compile tools binman will use the versions specified by commonly-used
2042environment variables like CC and HOSTCC for the C compiler, based on whether
2043the tool's output will be used for the target or for the host machine. If those
2044aren't given, it will also try to derive target-specific versions from the
2045CROSS_COMPILE environment variable during a cross-compilation.
2046
Simon Glass31cce972021-11-23 21:09:48 -07002047If the tool is not available in the path you can use BINMAN_TOOLPATHS to specify
2048a space-separated list of paths to search, e.g.::
2049
2050 BINMAN_TOOLPATHS="/tools/g12a /tools/tegra" binman ...
2051
2052
Simon Glassa9223472022-11-09 19:14:49 -07002053.. _`External blobs`:
2054
Simon Glass31cce972021-11-23 21:09:48 -07002055External blobs
2056--------------
2057
2058Binary blobs, even if the source code is available, complicate building
2059firmware. The instructions can involve multiple steps and the binaries may be
2060hard to build or obtain. Binman at least provides a unified description of how
2061to build the final image, no matter what steps are needed to get there.
2062
2063Binman also provides a `blob-ext` entry type that pulls in a binary blob from an
2064external file. If the file is missing, binman can optionally complete the build
2065and just report a warning. Use the `-M/--allow-missing` option to enble this.
2066This is useful in CI systems which want to check that everything is correct but
2067don't have access to the blobs.
2068
2069If the blobs are in a different directory, you can specify this with the `-I`
2070option.
2071
Dario Binacchi1eec1652023-11-23 14:10:00 +01002072For U-Boot, you can set the BINMAN_INDIRS environment variable to provide a
Simon Glass31cce972021-11-23 21:09:48 -07002073space-separated list of directories to search for binary blobs::
2074
2075 BINMAN_INDIRS="odroid-c4/fip/g12a \
2076 odroid-c4/build/board/hardkernel/odroidc4/firmware \
2077 odroid-c4/build/scp_task" binman ...
Simon Glass6244fa42019-07-08 13:18:28 -06002078
Simon Glass6bce5dc2022-11-09 19:14:42 -07002079Note that binman fails with exit code 103 when there are missing blobs. If you
2080wish binman to continue anyway, you can pass `-W` to binman.
2081
2082
Simon Glass52debad2016-11-25 20:15:59 -07002083Code coverage
2084-------------
2085
2086Binman is a critical tool and is designed to be very testable. Entry
Simon Glassf46732a2019-07-08 14:25:29 -06002087implementations target 100% test coverage. Run 'binman test -T' to check this.
Simon Glass52debad2016-11-25 20:15:59 -07002088
Simon Glass75ead662021-03-18 20:25:13 +13002089To enable Python test coverage on Debian-type distributions (e.g. Ubuntu)::
Simon Glass52debad2016-11-25 20:15:59 -07002090
Simon Glassa16dd6e2019-07-08 13:18:26 -06002091 $ sudo apt-get install python-coverage python3-coverage python-pytest
Simon Glass52debad2016-11-25 20:15:59 -07002092
2093
Simon Glass6bce5dc2022-11-09 19:14:42 -07002094Exit status
2095-----------
2096
2097Binman produces the following exit codes:
2098
20990
2100 Success
2101
21021
2103 Any sort of failure - see output for more details
2104
2105103
2106 There are missing external blobs or bintools. This is only returned if
2107 -M is passed to binman, otherwise missing blobs return an exit status of 1.
2108 Note, if -W is passed as well as -M, then this is converted into a warning
2109 and will return an exit status of 0 instead.
2110
2111
Simon Glassa9223472022-11-09 19:14:49 -07002112U-Boot environment variables for binman
2113---------------------------------------
2114
2115The U-Boot Makefile supports various environment variables to control binman.
2116All of these are set within the Makefile and result in passing various
2117environment variables (or make flags) to binman:
2118
2119BINMAN_DEBUG
2120 Enables backtrace debugging by adding a `-D` argument. See
2121 :ref:`BinmanLogging`.
2122
2123BINMAN_INDIRS
2124 Sets the search path for input files used by binman by adding one or more
2125 `-I` arguments. See :ref:`External blobs`.
2126
2127BINMAN_TOOLPATHS
2128 Sets the search path for external tool used by binman by adding one or more
2129 `--toolpath` arguments. See :ref:`External tools`.
2130
2131BINMAN_VERBOSE
2132 Sets the logging verbosity of binman by adding a `-v` argument. See
2133 :ref:`BinmanLogging`.
2134
2135
Simon Glassddd5e1d2022-01-23 12:55:46 -07002136Error messages
2137--------------
2138
2139This section provides some guidance for some of the less obvious error messages
2140produced by binman.
2141
2142
2143Expected __bss_size symbol
2144~~~~~~~~~~~~~~~~~~~~~~~~~~
2145
2146Example::
2147
2148 binman: Node '/binman/u-boot-spl-ddr/u-boot-spl/u-boot-spl-bss-pad':
2149 Expected __bss_size symbol in spl/u-boot-spl
2150
2151This indicates that binman needs the `__bss_size` symbol to be defined in the
2152SPL binary, where `spl/u-boot-spl` is the ELF file containing the symbols. The
2153symbol tells binman the size of the BSS region, in bytes. It needs this to be
2154able to pad the image so that the following entries do not overlap the BSS,
2155which would cause them to be overwritte by variable access in SPL.
2156
2157This symbols is normally defined in the linker script, immediately after
2158_bss_start and __bss_end are defined, like this::
2159
2160 __bss_size = __bss_end - __bss_start;
2161
2162You may need to add it to your linker script if you get this error.
2163
2164
Simon Glass1aeb7512019-05-17 22:00:52 -06002165Concurrent tests
2166----------------
2167
2168Binman tries to run tests concurrently. This means that the tests make use of
2169all available CPUs to run.
2170
Simon Glass75ead662021-03-18 20:25:13 +13002171 To enable this::
Simon Glass1aeb7512019-05-17 22:00:52 -06002172
2173 $ sudo apt-get install python-subunit python3-subunit
2174
2175Use '-P 1' to disable this. It is automatically disabled when code coverage is
2176being used (-T) since they are incompatible.
2177
2178
Simon Glass1c420c92019-07-08 13:18:49 -06002179Debugging tests
2180---------------
2181
2182Sometimes when debugging tests it is useful to keep the input and output
2183directories so they can be examined later. Use -X or --test-preserve-dirs for
2184this.
2185
2186
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002187Running tests on non-x86 architectures
2188--------------------------------------
2189
2190Binman's tests have been written under the assumption that they'll be run on a
2191x86-like host and there hasn't been an attempt to make them portable yet.
2192However, it's possible to run the tests by cross-compiling to x86.
2193
Simon Glass75ead662021-03-18 20:25:13 +13002194To install an x86 cross-compiler on Debian-type distributions (e.g. Ubuntu)::
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002195
2196 $ sudo apt-get install gcc-x86-64-linux-gnu
2197
Simon Glass75ead662021-03-18 20:25:13 +13002198Then, you can run the tests under cross-compilation::
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002199
2200 $ CROSS_COMPILE=x86_64-linux-gnu- binman test -T
2201
2202You can also use gcc-i686-linux-gnu similar to the above.
2203
2204
Simon Glassfa888282021-03-18 20:25:14 +13002205Writing new entries and debugging
2206---------------------------------
Simon Glass2574ef62016-11-25 20:15:51 -07002207
2208The behaviour of entries is defined by the Entry class. All other entries are
2209a subclass of this. An important subclass is Entry_blob which takes binary
2210data from a file and places it in the entry. In fact most entry types are
2211subclasses of Entry_blob.
2212
2213Each entry type is a separate file in the tools/binman/etype directory. Each
2214file contains a class called Entry_<type> where <type> is the entry type.
2215New entry types can be supported by adding new files in that directory.
2216These will automatically be detected by binman when needed.
2217
2218Entry properties are documented in entry.py. The entry subclasses are free
2219to change the values of properties to support special behaviour. For example,
2220when Entry_blob loads a file, it sets content_size to the size of the file.
2221Entry classes can adjust other entries. For example, an entry that knows
Simon Glasse8561af2018-08-01 15:22:37 -06002222where other entries should be positioned can set up those entries' offsets
Simon Glass2574ef62016-11-25 20:15:51 -07002223so they don't need to be set in the binman decription. It can also adjust
2224entry contents.
2225
2226Most of the time such essoteric behaviour is not needed, but it can be
2227essential for complex images.
2228
Simon Glassade2ef62017-12-24 12:12:07 -07002229If you need to specify a particular device-tree compiler to use, you can define
2230the DTC environment variable. This can be useful when the system dtc is too
2231old.
2232
Simon Glasse64a0922018-11-06 15:21:31 -07002233To enable a full backtrace and other debugging features in binman, pass
Simon Glass75ead662021-03-18 20:25:13 +13002234BINMAN_DEBUG=1 to your build::
Simon Glasse64a0922018-11-06 15:21:31 -07002235
Bin Menga089c412019-10-02 19:07:29 -07002236 make qemu-x86_defconfig
Simon Glasse64a0922018-11-06 15:21:31 -07002237 make BINMAN_DEBUG=1
2238
Simon Glass03b1d8f2019-09-25 08:11:11 -06002239To enable verbose logging from binman, base BINMAN_VERBOSE to your build, which
Simon Glass75ead662021-03-18 20:25:13 +13002240adds a -v<level> option to the call to binman::
Simon Glass03b1d8f2019-09-25 08:11:11 -06002241
Bin Menga089c412019-10-02 19:07:29 -07002242 make qemu-x86_defconfig
Simon Glass03b1d8f2019-09-25 08:11:11 -06002243 make BINMAN_VERBOSE=5
2244
Simon Glass2574ef62016-11-25 20:15:51 -07002245
Simon Glass76f496d2021-07-06 10:36:37 -06002246Building sections in parallel
2247-----------------------------
2248
2249By default binman uses multiprocessing to speed up compilation of large images.
2250This works at a section level, with one thread for each entry in the section.
2251This can speed things up if the entries are large and use compression.
2252
2253This feature can be disabled with the '-T' flag, which defaults to a suitable
2254value for your machine. This depends on the Python version, e.g on v3.8 it uses
225512 threads on an 8-core machine. See ConcurrentFutures_ for more details.
2256
2257The special value -T0 selects single-threaded mode, useful for debugging during
2258development, since dealing with exceptions and problems in threads is more
2259difficult. This avoids any use of ThreadPoolExecutor.
2260
2261
Simon Glass6fba35c2022-02-08 11:50:00 -07002262Collecting data for an entry type
2263---------------------------------
2264
2265Some entry types deal with data obtained from others. For example,
2266`Entry_mkimage` calls the `mkimage` tool with data from its subnodes::
2267
2268 mkimage {
2269 args = "-n test -T script";
2270
2271 u-boot-spl {
2272 };
2273
2274 u-boot {
2275 };
2276 };
2277
2278This shows mkimage being passed a file consisting of SPL and U-Boot proper. It
Simon Glass43a98cc2022-03-05 20:18:58 -07002279is created by calling `Entry.collect_contents_to_file()`. Note that in this
2280case, the data is passed to mkimage for processing but does not appear
2281separately in the image. It may not appear at all, depending on what mkimage
2282does. The contents of the `mkimage` entry are entirely dependent on the
2283processing done by the entry, with the provided subnodes (`u-boot-spl` and
2284`u-boot`) simply providing the input data for that processing.
Simon Glass6fba35c2022-02-08 11:50:00 -07002285
2286Note that `Entry.collect_contents_to_file()` simply concatenates the data from
2287the different entries together, with no control over alignment, etc. Another
2288approach is to subclass `Entry_section` so that those features become available,
2289such as `size` and `pad-byte`. Then the contents of the entry can be obtained by
Simon Glass43a98cc2022-03-05 20:18:58 -07002290calling `super().BuildSectionData()` in the entry's BuildSectionData()
2291implementation to get the input data, then write it to a file and process it
2292however is desired.
Simon Glass6fba35c2022-02-08 11:50:00 -07002293
2294There are other ways to obtain data also, depending on the situation. If the
2295entry type is simply signing data which exists elsewhere in the image, then
2296you can use `Entry_collection` as a base class. It lets you use a property
2297called `content` which lists the entries containing data to be processed. This
2298is used by `Entry_vblock`, for example::
2299
2300 u_boot: u-boot {
2301 };
Simon Glass43a98cc2022-03-05 20:18:58 -07002302
Simon Glass6fba35c2022-02-08 11:50:00 -07002303 vblock {
2304 content = <&u_boot &dtb>;
2305 keyblock = "firmware.keyblock";
2306 signprivate = "firmware_data_key.vbprivk";
2307 version = <1>;
2308 kernelkey = "kernel_subkey.vbpubk";
2309 preamble-flags = <1>;
2310 };
2311
2312 dtb: u-boot-dtb {
2313 };
2314
2315which shows an image containing `u-boot` and `u-boot-dtb`, with the `vblock`
2316image collecting their contents to produce input for its signing process,
2317without affecting those entries, which still appear in the final image
2318untouched.
2319
2320Another example is where an entry type needs several independent pieces of input
2321to function. For example, `Entry_fip` allows a number of different binary blobs
2322to be placed in their own individual places in a custom data structure in the
2323output image. To make that work you can add subnodes for each of them and call
2324`Entry.Create()` on each subnode, as `Entry_fip` does. Then the data for each
2325blob can come from any suitable place, such as an `Entry_u_boot` or an
2326`Entry_blob` or anything else::
2327
2328 atf-fip {
2329 fip-hdr-flags = /bits/ 64 <0x123>;
2330 soc-fw {
2331 fip-flags = /bits/ 64 <0x123456789abcdef>;
2332 filename = "bl31.bin";
2333 };
2334
2335 u-boot {
2336 fip-uuid = [fc 65 13 92 4a 5b 11 ec
2337 94 35 ff 2d 1c fc 79 9c];
2338 };
2339 };
2340
2341The `soc-fw` node is a `blob-ext` (i.e. it reads in a named binary file) whereas
2342`u-boot` is a normal entry type. This works because `Entry_fip` selects the
2343`blob-ext` entry type if the node name (here `soc-fw`) is recognised as being
2344a known blob type.
2345
2346When adding new entry types you are encouraged to use subnodes to provide the
Simon Glass43a98cc2022-03-05 20:18:58 -07002347data for processing, unless the `content` approach is more suitable. Consider
2348whether the input entries are contained within (or consumed by) the entry, vs
2349just being 'referenced' by the entry. In the latter case, the `content` approach
2350makes more sense. Ad-hoc properties and other methods of obtaining data are
2351discouraged, since it adds to confusion for users.
Simon Glass6fba35c2022-02-08 11:50:00 -07002352
Simon Glass2574ef62016-11-25 20:15:51 -07002353History / Credits
2354-----------------
2355
2356Binman takes a lot of inspiration from a Chrome OS tool called
2357'cros_bundle_firmware', which I wrote some years ago. That tool was based on
2358a reasonably simple and sound design but has expanded greatly over the
2359years. In particular its handling of x86 images is convoluted.
2360
Simon Glass1e324002018-06-01 09:38:19 -06002361Quite a few lessons have been learned which are hopefully applied here.
Simon Glass2574ef62016-11-25 20:15:51 -07002362
2363
2364Design notes
2365------------
2366
2367On the face of it, a tool to create firmware images should be fairly simple:
2368just find all the input binaries and place them at the right place in the
2369image. The difficulty comes from the wide variety of input types (simple
2370flat binaries containing code, packaged data with various headers), packing
2371requirments (alignment, spacing, device boundaries) and other required
2372features such as hierarchical images.
2373
2374The design challenge is to make it easy to create simple images, while
2375allowing the more complex cases to be supported. For example, for most
2376images we don't much care exactly where each binary ends up, so we should
2377not have to specify that unnecessarily.
2378
2379New entry types should aim to provide simple usage where possible. If new
2380core features are needed, they can be added in the Entry base class.
2381
2382
2383To do
2384-----
2385
2386Some ideas:
Simon Glass75ead662021-03-18 20:25:13 +13002387
Simon Glass2574ef62016-11-25 20:15:51 -07002388- Use of-platdata to make the information available to code that is unable
Simon Glass774b23f2021-03-18 20:25:17 +13002389 to use device tree (such as a very small SPL image). For now, limited info is
2390 available via linker symbols
Simon Glass2574ef62016-11-25 20:15:51 -07002391- Allow easy building of images by specifying just the board name
Simon Glass2574ef62016-11-25 20:15:51 -07002392- Support building an image for a board (-b) more completely, with a
2393 configurable build directory
Simon Glass8100a8e2019-07-20 12:24:02 -06002394- Detect invalid properties in nodes
2395- Sort the fdtmap by offset
Simon Glass01ab2292021-01-06 21:35:12 -07002396- Output temporary files to a different directory
Simon Glasse87009da2022-02-08 11:49:57 -07002397- Rationalise the fdt, fdt_util and pylibfdt modules which currently have some
2398 overlapping and confusing functionality
2399- Update the fdt library to use a better format for Prop.value (the current one
2400 is useful for dtoc but not much else)
2401- Figure out how to make Fdt support changing the node order, so that
2402 Node.AddSubnode() can support adding a node before another, existing node.
2403 Perhaps it should completely regenerate the flat tree?
Simon Glassfca38562022-08-18 02:16:46 -06002404- Support images which depend on each other
Simon Glass2574ef62016-11-25 20:15:51 -07002405
2406--
2407Simon Glass <sjg@chromium.org>
24087/7/2016
Simon Glass76f496d2021-07-06 10:36:37 -06002409
2410.. _ConcurrentFutures: https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor