blob: 381e55686f97f4fa157359dd231c389c5d1b67b4 [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 Glass4b0f4142024-08-26 13:11:40 -0600505For non-x86 cases where the symbol is used as a flash offset, the symbols-base
506property can be set to that offset (e.g. 0), so that the unadjusted image-pos
507is written into the image.
508
Simon Glasse0035c92023-01-11 16:10:17 -0700509While U-Boot's symbol updating is handled automatically by the u-boot-spl
510entry type (and others), it is possible to use this feature with any blob. To
511do this, add a `write-symbols` (boolean) property to the node, set the ELF
512filename using `elf-filename` and set 'elf-base-sym' to the base symbol for the
513start of the binary image (this defaults to `__image_copy_start` which is what
514U-Boot uses). See `testBlobSymbol()` for an example.
515
Simon Glass18ed9962023-01-07 14:07:11 -0700516.. _binman_fdt:
Simon Glassfa888282021-03-18 20:25:14 +1300517
518Access to binman entry offsets at run time (fdt)
519------------------------------------------------
520
521Binman can update the U-Boot FDT to include the final position and size of
522each entry in the images it processes. The option to enable this is -u and it
523causes binman to make sure that the 'offset', 'image-pos' and 'size' properties
524are set correctly for every entry. Since it is not necessary to specify these in
525the image definition, binman calculates the final values and writes these to
526the device tree. These can be used by U-Boot at run-time to find the location
527of each entry.
528
529Alternatively, an FDT map entry can be used to add a special FDT containing
530just the information about the image. This is preceded by a magic string so can
531be located anywhere in the image. An image header (typically at the start or end
532of the image) can be used to point to the FDT map. See fdtmap and image-header
533entries for more information.
534
Simon Glassfa888282021-03-18 20:25:14 +1300535Map files
536---------
537
538The -m option causes binman to output a .map file for each image that it
539generates. This shows the offset and size of each entry. For example::
540
541 Offset Size Name
542 00000000 00000028 main-section
543 00000000 00000010 section@0
544 00000000 00000004 u-boot
545 00000010 00000010 section@1
546 00000000 00000004 u-boot
547
548This shows a hierarchical image with two sections, each with a single entry. The
549offsets of the sections are absolute hex byte offsets within the image. The
550offsets of the entries are relative to their respective sections. The size of
551each entry is also shown, in bytes (hex). The indentation shows the entries
552nested inside their sections.
553
554
555Passing command-line arguments to entries
556-----------------------------------------
557
558Sometimes it is useful to pass binman the value of an entry property from the
559command line. For example some entries need access to files and it is not
560always convenient to put these filenames in the image definition (device tree).
561
Bin Meng1fa2b7c2021-05-10 20:23:30 +0800562The -a option supports this::
Simon Glassfa888282021-03-18 20:25:14 +1300563
Bin Meng1fa2b7c2021-05-10 20:23:30 +0800564 -a <prop>=<value>
Simon Glassfa888282021-03-18 20:25:14 +1300565
566where::
567
568 <prop> is the property to set
569 <value> is the value to set it to
570
571Not all properties can be provided this way. Only some entries support it,
572typically for filenames.
573
574
Simon Glass2574ef62016-11-25 20:15:51 -0700575Image description format
Simon Glassfa888282021-03-18 20:25:14 +1300576========================
Simon Glass2574ef62016-11-25 20:15:51 -0700577
578The binman node is called 'binman'. An example image description is shown
Simon Glass75ead662021-03-18 20:25:13 +1300579below::
Simon Glass2574ef62016-11-25 20:15:51 -0700580
Simon Glass75ead662021-03-18 20:25:13 +1300581 binman {
582 filename = "u-boot-sunxi-with-spl.bin";
583 pad-byte = <0xff>;
584 blob {
585 filename = "spl/sunxi-spl.bin";
586 };
587 u-boot {
588 offset = <CONFIG_SPL_PAD_TO>;
589 };
590 };
Simon Glass2574ef62016-11-25 20:15:51 -0700591
592
593This requests binman to create an image file called u-boot-sunxi-with-spl.bin
594consisting of a specially formatted SPL (spl/sunxi-spl.bin, built by the
595normal U-Boot Makefile), some 0xff padding, and a U-Boot legacy image. The
596padding comes from the fact that the second binary is placed at
597CONFIG_SPL_PAD_TO. If that line were omitted then the U-Boot binary would
598immediately follow the SPL binary.
599
600The binman node describes an image. The sub-nodes describe entries in the
601image. Each entry represents a region within the overall image. The name of
602the entry (blob, u-boot) tells binman what to put there. For 'blob' we must
603provide a filename. For 'u-boot', binman knows that this means 'u-boot.bin'.
604
605Entries are normally placed into the image sequentially, one after the other.
606The image size is the total size of all entries. As you can see, you can
Simon Glasse8561af2018-08-01 15:22:37 -0600607specify the start offset of an entry using the 'offset' property.
Simon Glass2574ef62016-11-25 20:15:51 -0700608
609Note that due to a device tree requirement, all entries must have a unique
610name. If you want to put the same binary in the image multiple times, you can
611use any unique name, with the 'type' property providing the type.
612
613The attributes supported for entries are described below.
614
Simon Glasse8561af2018-08-01 15:22:37 -0600615offset:
Simon Glass75ead662021-03-18 20:25:13 +1300616 This sets the offset of an entry within the image or section containing
617 it. The first byte of the image is normally at offset 0. If 'offset' is
618 not provided, binman sets it to the end of the previous region, or the
619 start of the image's entry area (normally 0) if there is no previous
620 region.
Simon Glass2574ef62016-11-25 20:15:51 -0700621
622align:
Simon Glass75ead662021-03-18 20:25:13 +1300623 This sets the alignment of the entry. The entry offset is adjusted
624 so that the entry starts on an aligned boundary within the containing
625 section or image. For example 'align = <16>' means that the entry will
626 start on a 16-byte boundary. This may mean that padding is added before
627 the entry. The padding is part of the containing section but is not
628 included in the entry, meaning that an empty space may be created before
629 the entry starts. Alignment should be a power of 2. If 'align' is not
630 provided, no alignment is performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700631
632size:
Simon Glass75ead662021-03-18 20:25:13 +1300633 This sets the size of the entry. The contents will be padded out to
634 this size. If this is not provided, it will be set to the size of the
635 contents.
Simon Glass2574ef62016-11-25 20:15:51 -0700636
Samuel Hollande2574022023-01-21 17:25:16 -0600637min-size:
638 Sets the minimum size of the entry. This size includes explicit padding
639 ('pad-before' and 'pad-after'), but not padding added to meet alignment
640 requirements. While this does not affect the contents of the entry within
641 binman itself (the padding is performed only when its parent section is
642 assembled), the end result will be that the entry ends with the padding
643 bytes, so may grow. Defaults to 0.
644
Simon Glass2574ef62016-11-25 20:15:51 -0700645pad-before:
Simon Glass75ead662021-03-18 20:25:13 +1300646 Padding before the contents of the entry. Normally this is 0, meaning
647 that the contents start at the beginning of the entry. This can be used
648 to offset the entry contents a little. While this does not affect the
649 contents of the entry within binman itself (the padding is performed
650 only when its parent section is assembled), the end result will be that
651 the entry starts with the padding bytes, so may grow. Defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700652
653pad-after:
Simon Glass75ead662021-03-18 20:25:13 +1300654 Padding after the contents of the entry. Normally this is 0, meaning
655 that the entry ends at the last byte of content (unless adjusted by
656 other properties). This allows room to be created in the image for
657 this entry to expand later. While this does not affect the contents of
658 the entry within binman itself (the padding is performed only when its
659 parent section is assembled), the end result will be that the entry ends
660 with the padding bytes, so may grow. Defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700661
662align-size:
Simon Glass75ead662021-03-18 20:25:13 +1300663 This sets the alignment of the entry size. For example, to ensure
664 that the size of an entry is a multiple of 64 bytes, set this to 64.
665 While this does not affect the contents of the entry within binman
666 itself (the padding is performed only when its parent section is
667 assembled), the end result is that the entry ends with the padding
668 bytes, so may grow. If 'align-size' is not provided, no alignment is
669 performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700670
671align-end:
Simon Glass75ead662021-03-18 20:25:13 +1300672 This sets the alignment of the end of an entry with respect to the
673 containing section. Some entries require that they end on an alignment
674 boundary, regardless of where they start. This does not move the start
675 of the entry, so the contents of the entry will still start at the
676 beginning. But there may be padding at the end. While this does not
677 affect the contents of the entry within binman itself (the padding is
678 performed only when its parent section is assembled), the end result
679 is that the entry ends with the padding bytes, so may grow.
680 If 'align-end' is not provided, no alignment is performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700681
682filename:
Simon Glass75ead662021-03-18 20:25:13 +1300683 For 'blob' types this provides the filename containing the binary to
684 put into the entry. If binman knows about the entry type (like
685 u-boot-bin), then there is no need to specify this.
Simon Glass2574ef62016-11-25 20:15:51 -0700686
687type:
Simon Glass75ead662021-03-18 20:25:13 +1300688 Sets the type of an entry. This defaults to the entry name, but it is
689 possible to use any name, and then add (for example) 'type = "u-boot"'
690 to specify the type.
Simon Glass2574ef62016-11-25 20:15:51 -0700691
Simon Glasse8561af2018-08-01 15:22:37 -0600692offset-unset:
Simon Glass75ead662021-03-18 20:25:13 +1300693 Indicates that the offset of this entry should not be set by placing
694 it immediately after the entry before. Instead, is set by another
695 entry which knows where this entry should go. When this boolean
696 property is present, binman will give an error if another entry does
697 not set the offset (with the GetOffsets() method).
Simon Glass4ba8d502018-06-01 09:38:17 -0600698
Simon Glass9dcc8612018-08-01 15:22:42 -0600699image-pos:
Simon Glass75ead662021-03-18 20:25:13 +1300700 This cannot be set on entry (or at least it is ignored if it is), but
701 with the -u option, binman will set it to the absolute image position
702 for each entry. This makes it easy to find out exactly where the entry
703 ended up in the image, regardless of parent sections, etc.
Simon Glass9dcc8612018-08-01 15:22:42 -0600704
Simon Glassdd156a42022-03-05 20:18:59 -0700705extend-size:
706 Extend the size of this entry to fit available space. This space is only
Simon Glass75ead662021-03-18 20:25:13 +1300707 limited by the size of the image/section and the position of the next
708 entry.
Simon Glass2574ef62016-11-25 20:15:51 -0700709
Simon Glassaa2fcf92019-07-08 14:25:30 -0600710compress:
Simon Glass75ead662021-03-18 20:25:13 +1300711 Sets the compression algortihm to use (for blobs only). See the entry
712 documentation for details.
Simon Glassaa2fcf92019-07-08 14:25:30 -0600713
Simon Glassa820af72020-09-06 10:39:09 -0600714missing-msg:
Simon Glass75ead662021-03-18 20:25:13 +1300715 Sets the tag of the message to show if this entry is missing. This is
716 used for external blobs. When they are missing it is helpful to show
717 information about what needs to be fixed. See missing-blob-help for the
718 message for each tag.
Simon Glassa820af72020-09-06 10:39:09 -0600719
Simon Glassa360b8f2024-06-23 11:55:06 -0600720assume-size:
721 Sets the assumed size of a blob entry if it is missing. This allows for a
722 check that the rest of the image fits into the available space, even when
723 the contents are not available. If the entry is missing, Binman will use
724 this assumed size for the entry size, including creating a fake file of that
725 size if requested.
726
Simon Glass7098b7f2021-03-21 18:24:30 +1300727no-expanded:
728 By default binman substitutes entries with expanded versions if available,
729 so that a `u-boot` entry type turns into `u-boot-expanded`, for example. The
730 `--no-expanded` command-line option disables this globally. The
731 `no-expanded` property disables this just for a single entry. Put the
732 `no-expanded` boolean property in the node to select this behaviour.
733
Simon Glass63328f12023-01-07 14:07:15 -0700734optional:
735 External blobs are normally required to be present for the image to be
736 built (but see `External blobs`_). This properly allows an entry to be
737 optional, so that when it is cannot be found, this problem is ignored and
738 an empty file is used for this blob. This should be used only when the blob
739 is entirely optional and is not needed for correct operation of the image.
740 Note that missing, optional blobs do not produce a non-zero exit code from
741 binman, although it does show a warning about the missing external blob.
742
Simon Glassfc792842023-07-18 07:24:04 -0600743insert-template:
744 This is not strictly speaking an entry property, since it is processed early
745 in Binman before the entries are read. It is a list of phandles of nodes to
746 include in the current (target) node. For each node, its subnodes and their
747 properties are brought into the target node. See Templates_ below for
748 more information.
749
Simon Glass4b0f4142024-08-26 13:11:40 -0600750symbols-base:
751 When writing symbols into a binary, the value of that symbol is assumed to
752 be relative to the base address of the binary. This allow the binary to be
753 loaded in memory at its base address, so that symbols point into the binary
754 correctly. In some cases the binary is in fact not yet in memory, but must
755 be read from storage. In this case there is no base address for the symbols.
756 This property can be set to 0 to indicate this. Other values for
757 symbols-base are allowed, but care must be taken that the code which uses
758 the symbol is aware of the base being used. If omitted, the binary's base
759 address is used.
760
Simon Glass80045812018-09-14 04:57:30 -0600761The attributes supported for images and sections are described below. Several
762are similar to those for entries.
Simon Glass2574ef62016-11-25 20:15:51 -0700763
764size:
Simon Glass75ead662021-03-18 20:25:13 +1300765 Sets the image size in bytes, for example 'size = <0x100000>' for a
766 1MB image.
Simon Glass2574ef62016-11-25 20:15:51 -0700767
Simon Glasseb023b32019-04-25 21:58:39 -0600768offset:
Simon Glass75ead662021-03-18 20:25:13 +1300769 This is similar to 'offset' in entries, setting the offset of a section
770 within the image or section containing it. The first byte of the section
771 is normally at offset 0. If 'offset' is not provided, binman sets it to
772 the end of the previous region, or the start of the image's entry area
773 (normally 0) if there is no previous region.
Simon Glasseb023b32019-04-25 21:58:39 -0600774
Simon Glass2574ef62016-11-25 20:15:51 -0700775align-size:
Simon Glass75ead662021-03-18 20:25:13 +1300776 This sets the alignment of the image size. For example, to ensure
777 that the image ends on a 512-byte boundary, use 'align-size = <512>'.
778 If 'align-size' is not provided, no alignment is performed.
Simon Glass2574ef62016-11-25 20:15:51 -0700779
780pad-before:
Simon Glass75ead662021-03-18 20:25:13 +1300781 This sets the padding before the image entries. The first entry will
782 be positioned after the padding. This defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700783
784pad-after:
Simon Glass75ead662021-03-18 20:25:13 +1300785 This sets the padding after the image entries. The padding will be
786 placed after the last entry. This defaults to 0.
Simon Glass2574ef62016-11-25 20:15:51 -0700787
788pad-byte:
Simon Glass75ead662021-03-18 20:25:13 +1300789 This specifies the pad byte to use when padding in the image. It
790 defaults to 0. To use 0xff, you would add 'pad-byte = <0xff>'.
Simon Glass2574ef62016-11-25 20:15:51 -0700791
792filename:
Simon Glass75ead662021-03-18 20:25:13 +1300793 This specifies the image filename. It defaults to 'image.bin'.
Simon Glass2574ef62016-11-25 20:15:51 -0700794
Simon Glasse8561af2018-08-01 15:22:37 -0600795sort-by-offset:
Simon Glass75ead662021-03-18 20:25:13 +1300796 This causes binman to reorder the entries as needed to make sure they
797 are in increasing positional order. This can be used when your entry
798 order may not match the positional order. A common situation is where
799 the 'offset' properties are set by CONFIG options, so their ordering is
800 not known a priori.
Simon Glass2574ef62016-11-25 20:15:51 -0700801
Simon Glass75ead662021-03-18 20:25:13 +1300802 This is a boolean property so needs no value. To enable it, add a
803 line 'sort-by-offset;' to your description.
Simon Glass2574ef62016-11-25 20:15:51 -0700804
805multiple-images:
Simon Glass75ead662021-03-18 20:25:13 +1300806 Normally only a single image is generated. To create more than one
807 image, put this property in the binman node. For example, this will
808 create image1.bin containing u-boot.bin, and image2.bin containing
809 both spl/u-boot-spl.bin and u-boot.bin::
Simon Glass2574ef62016-11-25 20:15:51 -0700810
Simon Glass75ead662021-03-18 20:25:13 +1300811 binman {
812 multiple-images;
813 image1 {
814 u-boot {
815 };
816 };
Simon Glass2574ef62016-11-25 20:15:51 -0700817
Simon Glass75ead662021-03-18 20:25:13 +1300818 image2 {
819 spl {
820 };
821 u-boot {
822 };
823 };
824 };
Simon Glass2574ef62016-11-25 20:15:51 -0700825
826end-at-4gb:
Simon Glass75ead662021-03-18 20:25:13 +1300827 For x86 machines the ROM offsets start just before 4GB and extend
828 up so that the image finished at the 4GB boundary. This boolean
829 option can be enabled to support this. The image size must be
830 provided so that binman knows when the image should start. For an
831 8MB ROM, the offset of the first entry would be 0xfff80000 with
832 this option, instead of 0 without this option.
Simon Glass2574ef62016-11-25 20:15:51 -0700833
Jagdish Gediya0fb978c2018-09-03 21:35:07 +0530834skip-at-start:
Simon Glass75ead662021-03-18 20:25:13 +1300835 This property specifies the entry offset of the first entry.
Jagdish Gediya0fb978c2018-09-03 21:35:07 +0530836
Simon Glass72cc5382022-10-20 18:22:39 -0600837 For PowerPC mpc85xx based CPU, CONFIG_TEXT_BASE is the entry
Simon Glass75ead662021-03-18 20:25:13 +1300838 offset of the first entry. It can be 0xeff40000 or 0xfff40000 for
839 nor flash boot, 0x201000 for sd boot etc.
Jagdish Gediya0fb978c2018-09-03 21:35:07 +0530840
Simon Glass72cc5382022-10-20 18:22:39 -0600841 'end-at-4gb' property is not applicable where CONFIG_TEXT_BASE +
Simon Glass75ead662021-03-18 20:25:13 +1300842 Image size != 4gb.
Simon Glass2574ef62016-11-25 20:15:51 -0700843
Simon Glassf427c5f2021-03-21 18:24:33 +1300844align-default:
845 Specifies the default alignment for entries in this section, if they do
846 not specify an alignment. Note that this only applies to top-level entries
847 in the section (direct subentries), not any subentries of those entries.
848 This means that each section must specify its own default alignment, if
849 required.
850
Neha Malcom Francis3eb4be32022-10-17 16:36:25 +0530851symlink:
852 Adds a symlink to the image with string given in the symlink property.
853
Simon Glassf1ee03b2023-01-11 16:10:16 -0700854overlap:
855 Indicates that this entry overlaps with others in the same section. These
856 entries should appear at the end of the section. Overlapping entries are not
857 packed with other entries, but their contents are written over other entries
858 in the section. Overlapping entries must have an explicit offset and size.
859
Simon Glasse0035c92023-01-11 16:10:17 -0700860write-symbols:
861 Indicates that the blob should be updated with symbol values calculated by
862 binman. This is automatic for certain entry types, e.g. `u-boot-spl`. See
863 binman_syms_ for more information.
864
Simon Glass4abf7842023-07-18 07:23:54 -0600865no-write-symbols:
866 Disables symbol writing for this entry. This can be used in entry types
867 where symbol writing is automatic. For example, if `u-boot-spl` refers to
868 the `u_boot_any_image_pos` symbol but U-Boot is not available in the image
869 containing SPL, this can be used to disable the writing. Quite likely this
870 indicates a bug in your setup.
871
Simon Glasse0035c92023-01-11 16:10:17 -0700872elf-filename:
873 Sets the file name of a blob's associated ELF file. For example, if the
874 blob is `zephyr.bin` then the ELF file may be `zephyr.elf`. This allows
875 binman to locate symbols and understand the structure of the blob. See
876 binman_syms_ for more information.
877
878elf-base-sym:
879 Sets the name of the ELF symbol that points to the start of a blob. For
880 U-Boot this is `__image_copy_start` and that is the default used by binman
881 if this property is missing. For other projects, a difference symbol may be
882 needed. Add this symbol to the properties for the blob so that symbols can
883 be read correctly. See binman_syms_ for more information.
884
Simon Glass49e9c002023-01-11 16:10:19 -0700885offset-from-elf:
886 Sets the offset of an entry based on a symbol value in an another entry.
887 The format is <&phandle>, "sym_name", <offset> where phandle is the entry
888 containing the blob (with associated ELF file providing symbols), <sym_name>
889 is the symbol to lookup (relative to elf-base-sym) and <offset> is an offset
890 to add to that value.
891
Simon Glasscda991e2023-02-12 17:11:15 -0700892preserve:
893 Indicates that this entry should be preserved by any firmware updates. This
894 flag should be checked by the updater when it is deciding which entries to
895 update. This flag is normally attached to sections but can be attached to
896 a single entry in a section if the updater supports it. Not that binman
897 itself has no control over the updater's behaviour, so this is just a
898 signal. It is not enforced by binman.
899
Simon Glass2574ef62016-11-25 20:15:51 -0700900Examples of the above options can be found in the tests. See the
901tools/binman/test directory.
902
Simon Glasse76a3e62018-06-01 09:38:11 -0600903It is possible to have the same binary appear multiple times in the image,
904either by using a unit number suffix (u-boot@0, u-boot@1) or by using a
905different name for each and specifying the type with the 'type' attribute.
906
Simon Glass2574ef62016-11-25 20:15:51 -0700907
Michael Heimpold55c822d2018-08-22 22:01:24 +0200908Sections and hierachical images
Simon Glassa91e1152018-06-01 09:38:16 -0600909-------------------------------
910
911Sometimes it is convenient to split an image into several pieces, each of which
912contains its own set of binaries. An example is a flash device where part of
913the image is read-only and part is read-write. We can set up sections for each
914of these, and place binaries in them independently. The image is still produced
915as a single output file.
916
917This feature provides a way of creating hierarchical images. For example here
Simon Glass1e324002018-06-01 09:38:19 -0600918is an example image with two copies of U-Boot. One is read-only (ro), intended
919to be written only in the factory. Another is read-write (rw), so that it can be
Simon Glassa91e1152018-06-01 09:38:16 -0600920upgraded in the field. The sizes are fixed so that the ro/rw boundary is known
Simon Glass75ead662021-03-18 20:25:13 +1300921and can be programmed::
Simon Glassa91e1152018-06-01 09:38:16 -0600922
Simon Glass75ead662021-03-18 20:25:13 +1300923 binman {
924 section@0 {
925 read-only;
926 name-prefix = "ro-";
927 size = <0x100000>;
928 u-boot {
929 };
930 };
931 section@1 {
932 name-prefix = "rw-";
933 size = <0x100000>;
934 u-boot {
935 };
936 };
937 };
Simon Glassa91e1152018-06-01 09:38:16 -0600938
939This image could be placed into a SPI flash chip, with the protection boundary
940set at 1MB.
941
942A few special properties are provided for sections:
943
944read-only:
Simon Glass75ead662021-03-18 20:25:13 +1300945 Indicates that this section is read-only. This has no impact on binman's
946 operation, but his property can be read at run time.
Simon Glassa91e1152018-06-01 09:38:16 -0600947
Simon Glass3b78d532018-06-01 09:38:21 -0600948name-prefix:
Simon Glass75ead662021-03-18 20:25:13 +1300949 This string is prepended to all the names of the binaries in the
950 section. In the example above, the 'u-boot' binaries which actually be
951 renamed to 'ro-u-boot' and 'rw-u-boot'. This can be useful to
952 distinguish binaries with otherwise identical names.
Simon Glass3b78d532018-06-01 09:38:21 -0600953
Simon Glassde244162023-01-07 14:07:08 -0700954filename:
955 This allows the contents of the section to be written to a file in the
956 output directory. This can sometimes be useful to use the data in one
957 section in different image, since there is currently no way to share data
958 beteen images other than through files.
Simon Glassa91e1152018-06-01 09:38:16 -0600959
Simon Glassfb30e292019-07-20 12:23:51 -0600960Image Properties
961----------------
962
963Image nodes act like sections but also have a few extra properties:
964
965filename:
Simon Glass75ead662021-03-18 20:25:13 +1300966 Output filename for the image. This defaults to image.bin (or in the
967 case of multiple images <nodename>.bin where <nodename> is the name of
968 the image node.
Simon Glassfb30e292019-07-20 12:23:51 -0600969
970allow-repack:
Simon Glass75ead662021-03-18 20:25:13 +1300971 Create an image that can be repacked. With this option it is possible
972 to change anything in the image after it is created, including updating
973 the position and size of image components. By default this is not
974 permitted since it is not possibly to know whether this might violate a
975 constraint in the image description. For example, if a section has to
976 increase in size to hold a larger binary, that might cause the section
977 to fall out of its allow region (e.g. read-only portion of flash).
Simon Glassfb30e292019-07-20 12:23:51 -0600978
Simon Glass75ead662021-03-18 20:25:13 +1300979 Adding this property causes the original offset and size values in the
980 image description to be stored in the FDT and fdtmap.
Simon Glassfb30e292019-07-20 12:23:51 -0600981
982
Simon Glassfca38562022-08-18 02:16:46 -0600983Image dependencies
984------------------
985
986Binman does not currently support images that depend on each other. For example,
987if one image creates `fred.bin` and then the next uses this `fred.bin` to
988produce a final `image.bin`, then the behaviour is undefined. It may work, or it
989may produce an error about `fred.bin` being missing, or it may use a version of
990`fred.bin` from a previous run.
991
992Often this can be handled by incorporating the dependency into the second
993image. For example, instead of::
994
995 binman {
996 multiple-images;
997
998 fred {
999 u-boot {
1000 };
1001 fill {
1002 size = <0x100>;
1003 };
1004 };
1005
1006 image {
1007 blob {
1008 filename = "fred.bin";
1009 };
1010 u-boot-spl {
1011 };
1012 };
1013
1014you can do this::
1015
1016 binman {
1017 image {
1018 fred {
1019 type = "section";
1020 u-boot {
1021 };
1022 fill {
1023 size = <0x100>;
1024 };
1025 };
1026 u-boot-spl {
1027 };
1028 };
1029
1030
1031
Simon Glassfa888282021-03-18 20:25:14 +13001032Hashing Entries
1033---------------
1034
1035It is possible to ask binman to hash the contents of an entry and write that
1036value back to the device-tree node. For example::
1037
1038 binman {
1039 u-boot {
1040 hash {
1041 algo = "sha256";
1042 };
1043 };
1044 };
1045
1046Here, a new 'value' property will be written to the 'hash' node containing
1047the hash of the 'u-boot' entry. Only SHA256 is supported at present. Whole
1048sections can be hased if desired, by adding the 'hash' node to the section.
1049
1050The has value can be chcked at runtime by hashing the data actually read and
1051comparing this has to the value in the device tree.
1052
1053
1054Expanded entries
1055----------------
1056
1057Binman automatically replaces 'u-boot' with an expanded version of that, i.e.
1058'u-boot-expanded'. This means that when you write::
1059
1060 u-boot {
1061 };
1062
1063you actually get::
1064
1065 u-boot {
1066 type = "u-boot-expanded';
1067 };
1068
1069which in turn expands to::
1070
1071 u-boot {
1072 type = "section";
1073
1074 u-boot-nodtb {
1075 };
1076
1077 u-boot-dtb {
1078 };
1079 };
1080
1081U-Boot's various phase binaries actually comprise two or three pieces.
1082For example, u-boot.bin has the executable followed by a devicetree.
1083
1084With binman we want to be able to update that devicetree with full image
1085information so that it is accessible to the executable. This is tricky
1086if it is not clear where the devicetree starts.
1087
1088The above feature ensures that the devicetree is clearly separated from the
1089U-Boot executable and can be updated separately by binman as needed. It can be
1090disabled with the --no-expanded flag if required.
1091
Heiko Thieryd5894562022-01-24 08:11:01 +01001092The same applies for u-boot-spl and u-boot-tpl. In those cases, the expansion
Simon Glassfa888282021-03-18 20:25:14 +13001093includes the BSS padding, so for example::
1094
1095 spl {
1096 type = "u-boot-spl"
1097 };
1098
1099you actually get::
1100
1101 spl {
1102 type = "u-boot-expanded';
1103 };
1104
1105which in turn expands to::
1106
1107 spl {
1108 type = "section";
1109
1110 u-boot-spl-nodtb {
1111 };
1112
1113 u-boot-spl-bss-pad {
1114 };
1115
1116 u-boot-spl-dtb {
1117 };
1118 };
1119
1120Of course we should not expand SPL if it has no devicetree. Also if the BSS
1121padding is not needed (because BSS is in RAM as with CONFIG_SPL_SEPARATE_BSS),
1122the 'u-boot-spl-bss-pad' subnode should not be created. The use of the expaned
1123entry type is controlled by the UseExpanded() method. In the SPL case it checks
1124the 'spl-dtb' entry arg, which is 'y' or '1' if SPL has a devicetree.
1125
1126For the BSS case, a 'spl-bss-pad' entry arg controls whether it is present. All
1127entry args are provided by the U-Boot Makefile.
1128
1129
Simon Glass1e9e61c2023-01-07 14:07:12 -07001130Optional entries
1131----------------
1132
1133Some entries need to exist only if certain conditions are met. For example, an
1134entry may want to appear in the image only if a file has a particular format.
1135Obviously the entry must exist in the image description for it to be processed
1136at all, so a way needs to be found to have the entry remove itself.
1137
1138To handle this, when entry.ObtainContents() is called, the entry can call
1139entry.mark_absent() to mark itself as absent, passing a suitable message as the
1140reason.
1141
1142Any absent entries are dropped immediately after ObtainContents() has been
1143called on all entries.
1144
1145It is not possible for an entry to mark itself absent at any other point in the
1146processing. It must happen in the ObtainContents() method.
1147
1148The effect is as if the entry had never been present at all, since the image
1149is packed without it and it disappears from the list of entries.
1150
1151
Simon Glassfa888282021-03-18 20:25:14 +13001152Compression
1153-----------
1154
1155Binman support compression for 'blob' entries (those of type 'blob' and
1156derivatives). To enable this for an entry, add a 'compress' property::
1157
1158 blob {
1159 filename = "datafile";
1160 compress = "lz4";
1161 };
1162
1163The entry will then contain the compressed data, using the 'lz4' compression
1164algorithm. Currently this is the only one that is supported. The uncompressed
1165size is written to the node in an 'uncomp-size' property, if -u is used.
1166
1167Compression is also supported for sections. In that case the entire section is
1168compressed in one block, including all its contents. This means that accessing
1169an entry from the section required decompressing the entire section. Also, the
1170size of a section indicates the space that it consumes in its parent section
1171(and typically the image). With compression, the section may contain more data,
1172and the uncomp-size property indicates that, as above. The contents of the
1173section is compressed first, before any padding is added. This ensures that the
1174padding itself is not compressed, which would be a waste of time.
1175
1176
1177Automatic .dtsi inclusion
1178-------------------------
1179
1180It is sometimes inconvenient to add a 'binman' node to the .dts file for each
1181board. This can be done by using #include to bring in a common file. Another
1182approach supported by the U-Boot build system is to automatically include
1183a common header. You can then put the binman node (and anything else that is
Simon Glassfc1aa352023-02-13 08:56:34 -07001184specific to U-Boot, such as bootph-all properies) in that header file.
Simon Glassfa888282021-03-18 20:25:14 +13001185
1186Binman will search for the following files in arch/<arch>/dts::
1187
1188 <dts>-u-boot.dtsi where <dts> is the base name of the .dts file
1189 <CONFIG_SYS_SOC>-u-boot.dtsi
1190 <CONFIG_SYS_CPU>-u-boot.dtsi
1191 <CONFIG_SYS_VENDOR>-u-boot.dtsi
1192 u-boot.dtsi
1193
1194U-Boot will only use the first one that it finds. If you need to include a
1195more general file you can do that from the more specific file using #include.
Simon Glass0a1b3b62021-12-16 20:59:23 -07001196If you are having trouble figuring out what is going on, you can use
1197`DEVICE_TREE_DEBUG=1` with your build::
Simon Glassfa888282021-03-18 20:25:14 +13001198
Simon Glass0a1b3b62021-12-16 20:59:23 -07001199 make DEVICE_TREE_DEBUG=1
1200 scripts/Makefile.lib:334: Automatic .dtsi inclusion: options:
1201 arch/arm/dts/juno-r2-u-boot.dtsi arch/arm/dts/-u-boot.dtsi
1202 arch/arm/dts/armv8-u-boot.dtsi arch/arm/dts/armltd-u-boot.dtsi
1203 arch/arm/dts/u-boot.dtsi ... found: "arch/arm/dts/juno-r2-u-boot.dtsi"
Simon Glassfa888282021-03-18 20:25:14 +13001204
1205
Simon Glassfc792842023-07-18 07:24:04 -06001206Templates
1207=========
1208
1209Sometimes multiple images need to be created which have all have a common
1210part. For example, a board may generate SPI and eMMC images which both include
1211a FIT. Since the FIT includes many entries, it is tedious to repeat them twice
1212in the image description.
1213
1214Templates provide a simple way to handle this::
1215
1216 binman {
1217 multiple-images;
1218 common_part: template-1 {
1219 some-property;
1220 fit {
1221 ... lots of entries in here
1222 };
1223
1224 text {
1225 text = "base image";
1226 };
1227 };
1228
1229 spi-image {
1230 filename = "image-spi.bin";
Simon Glasse1931ee2024-07-20 11:49:32 +01001231 insert-template = <&common_part>;
Simon Glassfc792842023-07-18 07:24:04 -06001232
1233 /* things specific to SPI follow */
1234 footer {
1235 ];
1236
1237 text {
1238 text = "SPI image";
1239 };
1240 };
1241
1242 mmc-image {
1243 filename = "image-mmc.bin";
Simon Glasse1931ee2024-07-20 11:49:32 +01001244 insert-template = <&common_part>;
Simon Glassfc792842023-07-18 07:24:04 -06001245
1246 /* things specific to MMC follow */
1247 footer {
1248 ];
1249
1250 text {
1251 text = "MMC image";
1252 };
1253 };
1254 };
1255
1256The template node name must start with 'template', so it is not considered to be
1257an image itself.
1258
1259The mechanism is very simple. For each phandle in the 'insert-templates'
1260property, the source node is looked up. Then the subnodes of that source node
1261are copied into the target node, i.e. the one containing the `insert-template`
1262property.
1263
1264If the target node has a node with the same name as a template, its properties
1265override corresponding properties in the template. This allows the template to
1266be uses as a base, with the node providing updates to the properties as needed.
1267The overriding happens recursively.
1268
1269Template nodes appear first in each node that they are inserted into and
1270ordering of template nodes is preserved. Other nodes come afterwards. If a
1271template node also appears in the target node, then the template node sets the
1272order. Thus the template can be used to set the ordering, even if the target
1273node provides all the properties. In the above example, `fit` and `text` appear
1274first in the `spi-image` and `mmc-image` images, followed by `footer`.
1275
1276Where there are multiple template nodes, they are inserted in that order. so
1277the first template node appears first, then the second.
1278
1279Properties in the template node are inserted into the destination node if they
1280do not exist there. In the example above, `some-property` is added to each of
1281`spi-image` and `mmc-image`.
1282
Simon Glass54825e12023-07-22 21:43:56 -06001283Note that template nodes are removed from the binman description after
1284processing and before binman builds the image descriptions.
1285
Simon Glass09490b02023-07-22 21:43:52 -06001286The initial devicetree produced by the templating process is written to the
1287`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 -06001288a failure before the final `u-boot.dtb.out` file is written. A second
1289`u-boot.dtb.tmpl2` file is written when the templates themselves are removed.
Simon Glassfc792842023-07-18 07:24:04 -06001290
Simon Glass86b3e472023-07-22 21:43:57 -06001291Dealing with phandles
1292---------------------
1293
1294Templates can contain phandles and these are copied to the destination node.
1295However this should be used with care, since if a template is instantiated twice
1296then the phandle will be copied twice, resulting in a devicetree with duplicate
1297phandles, i.e. the same phandle used by two different nodes. Binman detects this
1298situation and produces an error, for example::
1299
1300 Duplicate phandle 1 in nodes /binman/image/fit/images/atf/atf-bl31 and
1301 /binman/image-2/fit/images/atf/atf-bl31
1302
1303In this case an atf-bl31 node containing a phandle has been copied into two
1304different target nodes, resulting in the same phandle for each. See
1305testTemplatePhandleDup() for the test case.
1306
1307The solution is typically to put the phandles in the corresponding target nodes
1308(one for each) and remove the phandle from the template.
Simon Glassfc792842023-07-18 07:24:04 -06001309
Simon Glassadfb8492021-11-03 21:09:18 -06001310Updating an ELF file
1311====================
1312
1313For the EFI app, where U-Boot is loaded from UEFI and runs as an app, there is
1314no way to update the devicetree after U-Boot is built. Normally this works by
1315creating a new u-boot.dtb.out with he updated devicetree, which is automatically
1316built into the output image. With ELF this is not possible since the ELF is
1317not part of an image, just a stand-along file. We must create an updated ELF
1318file with the new devicetree.
1319
1320This is handled by the --update-fdt-in-elf option. It takes four arguments,
1321separated by comma:
1322
1323 infile - filename of input ELF file, e.g. 'u-boot's
1324 outfile - filename of output ELF file, e.g. 'u-boot.out'
1325 begin_sym - symbol at the start of the embedded devicetree, e.g.
1326 '__dtb_dt_begin'
1327 end_sym - symbol at the start of the embedded devicetree, e.g.
1328 '__dtb_dt_end'
1329
1330When this flag is used, U-Boot does all the normal packaging, but as an
1331additional step, it creates a new ELF file with the new devicetree embedded in
1332it.
1333
1334If logging is enabled you will see a message like this::
1335
1336 Updating file 'u-boot' with data length 0x400a (16394) between symbols
1337 '__dtb_dt_begin' and '__dtb_dt_end'
1338
1339There must be enough space for the updated devicetree. If not, an error like
1340the following is produced::
1341
1342 ValueError: Not enough space in 'u-boot' for data length 0x400a (16394);
1343 size is 0x1744 (5956)
1344
1345
Simon Glass7a61c6b2018-07-17 13:25:37 -06001346Entry Documentation
Simon Glass774b23f2021-03-18 20:25:17 +13001347===================
Simon Glass7a61c6b2018-07-17 13:25:37 -06001348
1349For details on the various entry types supported by binman and how to use them,
Simon Glass774b23f2021-03-18 20:25:17 +13001350see entries.rst which is generated from the source code using:
1351
1352 binman entry-docs >tools/binman/entries.rst
Simon Glass7a61c6b2018-07-17 13:25:37 -06001353
Simon Glass774b23f2021-03-18 20:25:17 +13001354.. toctree::
1355 :maxdepth: 2
Simon Glass7a61c6b2018-07-17 13:25:37 -06001356
Simon Glass774b23f2021-03-18 20:25:17 +13001357 entries
1358
Simon Glassfa888282021-03-18 20:25:14 +13001359
1360Managing images
1361===============
Simon Glass7a61c6b2018-07-17 13:25:37 -06001362
Simon Glassb2fd11d2019-07-08 14:25:48 -06001363Listing images
1364--------------
1365
1366It is possible to list the entries in an existing firmware image created by
Simon Glass75ead662021-03-18 20:25:13 +13001367binman, provided that there is an 'fdtmap' entry in the image. For example::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001368
1369 $ binman ls -i image.bin
1370 Name Image-pos Size Entry-type Offset Uncomp-size
1371 ----------------------------------------------------------------------
1372 main-section c00 section 0
1373 u-boot 0 4 u-boot 0
1374 section 5fc section 4
1375 cbfs 100 400 cbfs 0
1376 u-boot 138 4 u-boot 38
1377 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1378 u-boot-dtb 500 1ff u-boot-dtb 400 3b5
1379 fdtmap 6fc 381 fdtmap 6fc
1380 image-header bf8 8 image-header bf8
1381
1382This shows the hierarchy of the image, the position, size and type of each
1383entry, the offset of each entry within its parent and the uncompressed size if
1384the entry is compressed.
1385
Simon Glass75ead662021-03-18 20:25:13 +13001386It is also possible to list just some files in an image, e.g.::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001387
1388 $ binman ls -i image.bin section/cbfs
1389 Name Image-pos Size Entry-type Offset Uncomp-size
1390 --------------------------------------------------------------------
1391 cbfs 100 400 cbfs 0
1392 u-boot 138 4 u-boot 38
1393 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1394
Simon Glass75ead662021-03-18 20:25:13 +13001395or with wildcards::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001396
1397 $ binman ls -i image.bin "*cb*" "*head*"
1398 Name Image-pos Size Entry-type Offset Uncomp-size
1399 ----------------------------------------------------------------------
1400 cbfs 100 400 cbfs 0
1401 u-boot 138 4 u-boot 38
1402 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1403 image-header bf8 8 image-header bf8
1404
Simon Glassb9028bc2021-11-23 21:09:49 -07001405If an older version of binman is used to list images created by a newer one, it
1406is possible that it will contain entry types that are not supported. These still
1407show with the correct type, but binman just sees them as blobs (plain binary
1408data). Any special features of that etype are not supported by the old binman.
1409
Simon Glassb2fd11d2019-07-08 14:25:48 -06001410
Simon Glass980a2842019-07-08 14:25:52 -06001411Extracting files from images
1412----------------------------
1413
1414You can extract files from an existing firmware image created by binman,
Simon Glass75ead662021-03-18 20:25:13 +13001415provided that there is an 'fdtmap' entry in the image. For example::
Simon Glass980a2842019-07-08 14:25:52 -06001416
1417 $ binman extract -i image.bin section/cbfs/u-boot
1418
1419which will write the uncompressed contents of that entry to the file 'u-boot' in
1420the current directory. You can also extract to a particular file, in this case
Simon Glass75ead662021-03-18 20:25:13 +13001421u-boot.bin::
Simon Glass980a2842019-07-08 14:25:52 -06001422
1423 $ binman extract -i image.bin section/cbfs/u-boot -f u-boot.bin
1424
1425It is possible to extract all files into a destination directory, which will
Simon Glass75ead662021-03-18 20:25:13 +13001426put files in subdirectories matching the entry hierarchy::
Simon Glass980a2842019-07-08 14:25:52 -06001427
1428 $ binman extract -i image.bin -O outdir
1429
Simon Glass75ead662021-03-18 20:25:13 +13001430or just a selection::
Simon Glass980a2842019-07-08 14:25:52 -06001431
1432 $ binman extract -i image.bin "*u-boot*" -O outdir
1433
Simon Glass637958f2021-11-23 21:09:50 -07001434Some entry types have alternative formats, for example fdtmap which allows
1435extracted just the devicetree binary without the fdtmap header::
1436
1437 $ binman extract -i /tmp/b/odroid-c4/image.bin -f out.dtb -F fdt fdtmap
1438 $ fdtdump out.dtb
1439 /dts-v1/;
1440 // magic: 0xd00dfeed
1441 // totalsize: 0x8ab (2219)
1442 // off_dt_struct: 0x38
1443 // off_dt_strings: 0x82c
1444 // off_mem_rsvmap: 0x28
1445 // version: 17
1446 // last_comp_version: 2
1447 // boot_cpuid_phys: 0x0
1448 // size_dt_strings: 0x7f
1449 // size_dt_struct: 0x7f4
1450
1451 / {
1452 image-node = "binman";
1453 image-pos = <0x00000000>;
1454 size = <0x0011162b>;
1455 ...
1456
1457Use `-F list` to see what alternative formats are available::
1458
1459 $ binman extract -i /tmp/b/odroid-c4/image.bin -F list
1460 Flag (-F) Entry type Description
1461 fdt fdtmap Extract the devicetree blob from the fdtmap
1462
Simon Glass980a2842019-07-08 14:25:52 -06001463
Simon Glass072959a2019-07-20 12:23:50 -06001464Replacing files in an image
1465---------------------------
1466
1467You can replace files in an existing firmware image created by binman, provided
Simon Glass31cce972021-11-23 21:09:48 -07001468that there is an 'fdtmap' entry in the image. For example::
Simon Glass072959a2019-07-20 12:23:50 -06001469
1470 $ binman replace -i image.bin section/cbfs/u-boot
1471
1472which will write the contents of the file 'u-boot' from the current directory
Simon Glass30033c22019-07-20 12:24:15 -06001473to the that entry, compressing if necessary. If the entry size changes, you must
1474add the 'allow-repack' property to the original image before generating it (see
1475above), otherwise you will get an error.
Simon Glass072959a2019-07-20 12:23:50 -06001476
Simon Glass75ead662021-03-18 20:25:13 +13001477You can also use a particular file, in this case u-boot.bin::
Simon Glass30033c22019-07-20 12:24:15 -06001478
1479 $ binman replace -i image.bin section/cbfs/u-boot -f u-boot.bin
1480
1481It is possible to replace all files from a source directory which uses the same
Simon Glass75ead662021-03-18 20:25:13 +13001482hierarchy as the entries::
Simon Glass30033c22019-07-20 12:24:15 -06001483
1484 $ binman replace -i image.bin -I indir
1485
1486Files that are missing will generate a warning.
1487
Simon Glass75ead662021-03-18 20:25:13 +13001488You can also replace just a selection of entries::
Simon Glass30033c22019-07-20 12:24:15 -06001489
1490 $ binman replace -i image.bin "*u-boot*" -I indir
1491
Simon Glass49b77e82023-03-02 17:02:44 -07001492It is possible to replace whole sections as well, but in that case any
1493information about entries within the section may become outdated. This is
1494because Binman cannot know whether things have moved around or resized within
1495the section, once you have updated its data.
1496
1497Technical note: With 'allow-repack', Binman writes information about the
1498original offset and size properties of each entry, if any were specified, in
1499the 'orig-offset' and 'orig-size' properties. This allows Binman to distinguish
1500between an entry which ended up being packed at an offset (or assigned a size)
1501and an entry which had a particular offset / size requested in the Binman
1502configuration. Where are particular offset / size was requested, this is treated
1503as set in stone, so Binman will ensure it doesn't change. Without this feature,
1504repacking an entry might cause it to disobey the original constraints provided
1505when it was created.
1506
Simon Glassa9223472022-11-09 19:14:49 -07001507
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001508Signing FIT container with private key in an image
1509--------------------------------------------------
1510
1511You can sign FIT container with private key in your image.
1512For example::
1513
1514 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 fit
1515
1516binman will extract FIT container, sign and replace it immediately.
1517
1518If you want to sign and replace FIT container in place::
1519
1520 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 -f fit.fit fit
1521
1522which will sign FIT container with private key and replace it immediately
1523inside your image.
1524
Massimo Pegorerb05ac5e2023-09-09 15:52:35 +02001525.. _`BinmanLogging`:
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001526
Simon Glass233a26a92019-07-08 14:25:49 -06001527Logging
1528-------
1529
1530Binman normally operates silently unless there is an error, in which case it
1531just displays the error. The -D/--debug option can be used to create a full
Simon Glasscaa5f182021-02-06 09:57:28 -07001532backtrace when errors occur. You can use BINMAN_DEBUG=1 when building to select
1533this.
Simon Glass233a26a92019-07-08 14:25:49 -06001534
1535Internally binman logs some output while it is running. This can be displayed
1536by increasing the -v/--verbosity from the default of 1:
1537
1538 0: silent
1539 1: warnings only
1540 2: notices (important messages)
1541 3: info about major operations
1542 4: detailed information about each operation
1543 5: debug (all output)
1544
Simon Glasscaa5f182021-02-06 09:57:28 -07001545You can use BINMAN_VERBOSE=5 (for example) when building to select this.
Simon Glass233a26a92019-07-08 14:25:49 -06001546
Simon Glass72232452016-11-25 20:15:53 -07001547
Simon Glass41424862022-01-09 20:14:12 -07001548Bintools
1549========
1550
1551`Bintool` is the name binman gives to a binary tool which it uses to create and
1552manipulate binaries that binman cannot handle itself. Bintools are often
1553necessary since Binman only supports a subset of the available file formats
1554natively.
1555
1556Many SoC vendors invent ways to load code into their SoC using new file formats,
1557sometimes changing the format with successive SoC generations. Sometimes the
1558tool is available as Open Source. Sometimes it is a pre-compiled binary that
1559must be downloaded from the vendor's website. Sometimes it is available in
1560source form but difficult or slow to build.
1561
1562Even for images that use bintools, binman still assembles the image from its
1563image description. It may handle parts of the image natively and part with
1564various bintools.
1565
1566Binman relies on these tools so provides various features to manage them:
1567
1568- Determining whether the tool is currently installed
1569- Downloading or building the tool
1570- Determining the version of the tool that is installed
1571- Deciding which tools are needed to build an image
1572
1573The Bintool class is an interface to the tool, a thin level of abstration, using
1574Python functions to run the tool for each purpose (e.g. creating a new
1575structure, adding a file to an existing structure) rather than just lists of
1576string arguments.
1577
1578As with external blobs, bintools (which are like 'external' tools) can be
1579missing. When building an image requires a bintool and it is not installed,
1580binman detects this and reports the problem, but continues to build an image.
1581This is useful in CI systems which want to check that everything is correct but
1582don't have access to the bintools.
1583
1584To make this work, all calls to bintools (e.g. with Bintool.run_cmd()) must cope
1585with the tool being missing, i.e. when None is returned, by:
1586
1587- Calling self.record_missing_bintool()
1588- Setting up some fake contents so binman can continue
1589
1590Of course the image will not work, but binman reports which bintools are needed
1591and also provide a way to fetch them.
1592
1593To see the available bintools, use::
1594
1595 binman tool --list
1596
1597To fetch tools which are missing, use::
1598
1599 binman tool --fetch missing
1600
1601You can also use `--fetch all` to fetch all tools or `--fetch <tool>` to fetch
1602a particular tool. Some tools are built from source code, in which case you will
1603need to have at least the `build-essential` and `git` packages installed.
1604
Simon Glass9a1c7262023-02-22 12:14:49 -07001605Tools are fetched into the `~/.binman-tools` directory. This directory is
1606automatically added to the toolpath so there is no need to use `--toolpath` to
1607specify it. If you want to use these tools outside binman, you may want to
1608add this directory to your `PATH`. For example, if you use bash, add this to
1609the end of `.bashrc`::
1610
1611 PATH="$HOME/.binman-tools:$PATH"
1612
1613To select a custom directory, use the `--tooldir` option.
Simon Glassc9114962023-02-22 12:14:48 -07001614
Simon Glass41424862022-01-09 20:14:12 -07001615Bintool Documentation
1616=====================
1617
1618To provide details on the various bintools supported by binman, bintools.rst is
1619generated from the source code using:
1620
1621 binman bintool-docs >tools/binman/bintools.rst
1622
1623.. toctree::
1624 :maxdepth: 2
1625
1626 bintools
1627
Simon Glassa20c0412022-11-09 19:14:54 -07001628Binman commands and arguments
1629=============================
1630
1631Usage::
1632
Simon Glass9a1c7262023-02-22 12:14:49 -07001633 binman [-h] [-B BUILD_DIR] [-D] [--tooldir TOOLDIR] [-H]
1634 [--toolpath TOOLPATH] [-T THREADS] [--test-section-timeout]
1635 [-v VERBOSITY] [-V]
Simon Glassa20c0412022-11-09 19:14:54 -07001636 {build,bintool-docs,entry-docs,ls,extract,replace,test,tool} ...
1637
1638Binman provides the following commands:
1639
1640- **build** - build images
1641- **bintools-docs** - generate documentation about bintools
1642- **entry-docs** - generate documentation about entry types
1643- **ls** - list an image
1644- **extract** - extract files from an image
1645- **replace** - replace one or more entries in an image
1646- **test** - run tests
1647- **tool** - manage bintools
1648
1649Options:
1650
1651-h, --help
1652 Show help message and exit
1653
1654-B BUILD_DIR, --build-dir BUILD_DIR
1655 Directory containing the build output
1656
1657-D, --debug
1658 Enabling debugging (provides a full traceback on error)
1659
Simon Glass9a1c7262023-02-22 12:14:49 -07001660--tooldir TOOLDIR Set the directory to store tools
1661
Simon Glassa20c0412022-11-09 19:14:54 -07001662-H, --full-help
1663 Display the README file
1664
1665--toolpath TOOLPATH
Simon Glass9a1c7262023-02-22 12:14:49 -07001666 Add a path to the list of directories containing tools
Simon Glassa20c0412022-11-09 19:14:54 -07001667
1668-T THREADS, --threads THREADS
1669 Number of threads to use (0=single-thread). Note that -T0 is useful for
1670 debugging since everything runs in one thread.
1671
1672-v VERBOSITY, --verbosity VERBOSITY
1673 Control verbosity: 0=silent, 1=warnings, 2=notices, 3=info, 4=detail,
1674 5=debug
1675
1676-V, --version
1677 Show the binman version
1678
1679Test options:
1680
1681--test-section-timeout
1682 Use a zero timeout for section multi-threading (for testing)
1683
1684Commands are described below.
1685
1686binman build
1687------------
1688
1689This builds one or more images using the provided image description.
1690
1691Usage::
1692
1693 binman build [-h] [-a ENTRY_ARG] [-b BOARD] [-d DT] [--fake-dtb]
1694 [--fake-ext-blobs] [--force-missing-bintools FORCE_MISSING_BINTOOLS]
1695 [-i IMAGE] [-I INDIR] [-m] [-M] [-n] [-O OUTDIR] [-p] [-u]
1696 [--update-fdt-in-elf UPDATE_FDT_IN_ELF] [-W]
1697
1698Options:
1699
1700-h, --help
1701 Show help message and exit
1702
1703-a ENTRY_ARG, --entry-arg ENTRY_ARG
1704 Set argument value `arg=value`. See
1705 `Passing command-line arguments to entries`_.
1706
1707-b BOARD, --board BOARD
1708 Board name to build. This can be used instead of `-d`, in which case the
1709 file `u-boot.dtb` is used, within the build directory's board subdirectory.
1710
1711-d DT, --dt DT
1712 Configuration file (.dtb) to use. This must have a top-level node called
1713 `binman`. See `Image description format`_.
1714
1715-i IMAGE, --image IMAGE
1716 Image filename to build (if not specified, build all)
1717
1718-I INDIR, --indir INDIR
1719 Add a path to the list of directories to use for input files. This can be
1720 specified multiple times to add more than one path.
1721
1722-m, --map
1723 Output a map file for each image. See `Map files`_.
1724
1725-M, --allow-missing
1726 Allow external blobs and bintools to be missing. See `External blobs`_.
1727
1728-n, --no-expanded
1729 Don't use 'expanded' versions of entries where available; normally 'u-boot'
1730 becomes 'u-boot-expanded', for example. See `Expanded entries`_.
1731
1732-O OUTDIR, --outdir OUTDIR
1733 Path to directory to use for intermediate and output files
1734
1735-p, --preserve
1736 Preserve temporary output directory even if option -O is not given
1737
1738-u, --update-fdt
1739 Update the binman node with offset/size info. See
1740 `Access to binman entry offsets at run time (fdt)`_.
1741
1742--update-fdt-in-elf UPDATE_FDT_IN_ELF
1743 Update an ELF file with the output dtb. The argument is a string consisting
1744 of four parts, separated by commas. See `Updating an ELF file`_.
1745
1746-W, --ignore-missing
1747 Return success even if there are missing blobs/bintools (requires -M)
1748
1749Options used only for testing:
1750
1751--fake-dtb
1752 Use fake device tree contents
1753
1754--fake-ext-blobs
1755 Create fake ext blobs with dummy content
1756
1757--force-missing-bintools FORCE_MISSING_BINTOOLS
1758 Comma-separated list of bintools to consider missing
1759
1760binman bintool-docs
1761-------------------
1762
1763Usage::
1764
1765 binman bintool-docs [-h]
1766
1767This outputs documentation for the bintools in rST format. See
1768`Bintool Documentation`_.
1769
1770binman entry-docs
1771-----------------
1772
1773Usage::
1774
1775 binman entry-docs [-h]
1776
1777This outputs documentation for the entry types in rST format. See
1778`Entry Documentation`_.
1779
1780binman ls
1781---------
1782
1783Usage::
1784
1785 binman ls [-h] -i IMAGE [paths ...]
1786
1787Positional arguments:
1788
1789paths
1790 Paths within file to list (wildcard)
1791
1792Pptions:
1793
1794-h, --help
1795 show help message and exit
1796
1797-i IMAGE, --image IMAGE
1798 Image filename to list
1799
1800This lists an image, showing its contents. See `Listing images`_.
1801
1802binman extract
1803--------------
1804
1805Usage::
1806
1807 binman extract [-h] [-F FORMAT] -i IMAGE [-f FILENAME] [-O OUTDIR] [-U]
1808 [paths ...]
1809
1810Positional arguments:
1811
1812Paths
1813 Paths within file to extract (wildcard)
1814
1815Options:
1816
1817-h, --help
1818 show help message and exit
1819
1820-F FORMAT, --format FORMAT
1821 Select an alternative format for extracted data
1822
1823-i IMAGE, --image IMAGE
1824 Image filename to extract
1825
1826-f FILENAME, --filename FILENAME
1827 Output filename to write to
1828
1829-O OUTDIR, --outdir OUTDIR
1830 Path to directory to use for output files
1831
1832-U, --uncompressed
1833 Output raw uncompressed data for compressed entries
1834
1835This extracts the contents of entries from an image. See
1836`Extracting files from images`_.
1837
1838binman replace
1839--------------
1840
1841Usage::
1842
1843 binman replace [-h] [-C] -i IMAGE [-f FILENAME] [-F] [-I INDIR] [-m]
1844 [paths ...]
1845
1846Positional arguments:
1847
1848paths
1849 Paths within file to replace (wildcard)
1850
1851Options:
1852
1853-h, --help
1854 show help message and exit
1855
1856-C, --compressed
1857 Input data is already compressed if needed for the entry
1858
1859-i IMAGE, --image IMAGE
1860 Image filename to update
1861
1862-f FILENAME, --filename FILENAME
1863 Input filename to read from
1864
1865-F, --fix-size
1866 Don't allow entries to be resized
1867
1868-I INDIR, --indir INDIR
1869 Path to directory to use for input files
1870
1871-m, --map
1872 Output a map file for the updated image
1873
Simon Glassb9b9b272023-03-02 17:02:42 -07001874-O OUTDIR, --outdir OUTDIR
1875 Path to directory to use for intermediate and output files
1876
1877-p, --preserve
1878 Preserve temporary output directory even if option -O is not given
1879
Simon Glassa20c0412022-11-09 19:14:54 -07001880This replaces one or more entries in an existing image. See
1881`Replacing files in an image`_.
1882
1883binman test
1884-----------
1885
1886Usage::
1887
1888 binman test [-h] [-P PROCESSES] [-T] [-X] [tests ...]
1889
1890Positional arguments:
1891
1892tests
1893 Test names to run (omit for all)
1894
1895Options:
1896
1897-h, --help
1898 show help message and exit
1899
1900-P PROCESSES, --processes PROCESSES
1901 set number of processes to use for running tests. This defaults to the
1902 number of CPUs on the machine
1903
1904-T, --test-coverage
1905 run tests and check for 100% coverage
1906
1907-X, --test-preserve-dirs
1908 Preserve and display test-created input directories; also preserve the
1909 output directory if a single test is run (pass test name at the end of the
1910 command line
1911
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001912binman sign
1913-----------
1914
1915Usage::
1916
1917 binman sign [-h] -a ALGO [-f FILE] -i IMAGE -k KEY [paths ...]
1918
1919positional arguments:
1920
1921paths
1922 Paths within file to sign (wildcard)
1923
1924options:
1925
1926-h, --help
1927 show this help message and exit
1928
1929-a ALGO, --algo ALGO
1930 Hash algorithm e.g. sha256,rsa4096
1931
1932-f FILE, --file FILE
1933 Input filename to sign
1934
1935-i IMAGE, --image IMAGE
1936 Image filename to update
1937
1938-k KEY, --key KEY
1939 Private key file for signing
1940
Simon Glassa20c0412022-11-09 19:14:54 -07001941binman tool
1942-----------
1943
1944Usage::
1945
1946 binman tool [-h] [-l] [-f] [bintools ...]
1947
1948Positional arguments:
1949
1950bintools
1951 Bintools to process
1952
1953Options:
1954
1955-h, --help
1956 show help message and exit
1957
1958-l, --list
1959 List all known bintools
1960
1961-f, --fetch
1962 Fetch a bintool from a known location. Use `all` to fetch all and `missing`
1963 to fetch any missing tools.
1964
Simon Glass41424862022-01-09 20:14:12 -07001965
Simon Glassfa888282021-03-18 20:25:14 +13001966Technical details
1967=================
Simon Glass72232452016-11-25 20:15:53 -07001968
Simon Glass2574ef62016-11-25 20:15:51 -07001969Order of image creation
1970-----------------------
1971
1972Image creation proceeds in the following order, for each entry in the image.
1973
Simon Glasse22f8fa2018-07-06 10:27:41 -060019741. AddMissingProperties() - binman can add calculated values to the device
Simon Glasse8561af2018-08-01 15:22:37 -06001975tree as part of its processing, for example the offset and size of each
Simon Glasse22f8fa2018-07-06 10:27:41 -06001976entry. This method adds any properties associated with this, expanding the
1977device tree as needed. These properties can have placeholder values which are
1978set later by SetCalculatedProperties(). By that stage the size of sections
1979cannot be changed (since it would cause the images to need to be repacked),
1980but the correct values can be inserted.
1981
19822. ProcessFdt() - process the device tree information as required by the
Simon Glass92307732018-07-06 10:27:40 -06001983particular entry. This may involve adding or deleting properties. If the
1984processing is complete, this method should return True. If the processing
1985cannot complete because it needs the ProcessFdt() method of another entry to
1986run first, this method should return False, in which case it will be called
1987again later.
1988
Simon Glasse22f8fa2018-07-06 10:27:41 -060019893. GetEntryContents() - the contents of each entry are obtained, normally by
Simon Glass2574ef62016-11-25 20:15:51 -07001990reading from a file. This calls the Entry.ObtainContents() to read the
1991contents. The default version of Entry.ObtainContents() calls
1992Entry.GetDefaultFilename() and then reads that file. So a common mechanism
1993to select a file to read is to override that function in the subclass. The
1994functions must return True when they have read the contents. Binman will
1995retry calling the functions a few times if False is returned, allowing
1996dependencies between the contents of different entries.
1997
Simon Glasse8561af2018-08-01 15:22:37 -060019984. GetEntryOffsets() - calls Entry.GetOffsets() for each entry. This can
Simon Glass2574ef62016-11-25 20:15:51 -07001999return a dict containing entries that need updating. The key should be the
Simon Glasse8561af2018-08-01 15:22:37 -06002000entry name and the value is a tuple (offset, size). This allows an entry to
2001provide the offset and size for other entries. The default implementation
2002of GetEntryOffsets() returns {}.
Simon Glass2574ef62016-11-25 20:15:51 -07002003
Simon Glasse8561af2018-08-01 15:22:37 -060020045. PackEntries() - calls Entry.Pack() which figures out the offset and
2005size of an entry. The 'current' image offset is passed in, and the function
2006returns the offset immediately after the entry being packed. The default
Simon Glass2574ef62016-11-25 20:15:51 -07002007implementation of Pack() is usually sufficient.
2008
Simon Glass2d9570d2020-10-26 17:40:22 -06002009Note: for sections, this also checks that the entries do not overlap, nor extend
2010outside the section. If the section does not have a defined size, the size is
Simon Glassf1ee03b2023-01-11 16:10:16 -07002011set large enough to hold all the entries. For entries that are explicitly marked
2012as overlapping, this check is skipped.
Simon Glass2574ef62016-11-25 20:15:51 -07002013
Simon Glass2d9570d2020-10-26 17:40:22 -060020146. SetImagePos() - sets the image position of every entry. This is the absolute
Simon Glass4b05b2d2019-07-20 12:23:52 -06002015position 'image-pos', as opposed to 'offset' which is relative to the containing
2016section. This must be done after all offsets are known, which is why it is quite
2017late in the ordering.
2018
Simon Glass2d9570d2020-10-26 17:40:22 -060020197. SetCalculatedProperties() - update any calculated properties in the device
Simon Glasse8561af2018-08-01 15:22:37 -06002020tree. This sets the correct 'offset' and 'size' vaues, for example.
Simon Glasse22f8fa2018-07-06 10:27:41 -06002021
Simon Glass2d9570d2020-10-26 17:40:22 -060020228. ProcessEntryContents() - this calls Entry.ProcessContents() on each entry.
Simon Glass2574ef62016-11-25 20:15:51 -07002023The default implementatoin does nothing. This can be overriden to adjust the
2024contents of an entry in some way. For example, it would be possible to create
2025an entry containing a hash of the contents of some other entries. At this
Simon Glasse61b6f62019-07-08 14:25:37 -06002026stage the offset and size of entries should not be adjusted unless absolutely
2027necessary, since it requires a repack (going back to PackEntries()).
Simon Glass2574ef62016-11-25 20:15:51 -07002028
Simon Glass2d9570d2020-10-26 17:40:22 -060020299. ResetForPack() - if the ProcessEntryContents() step failed, in that an entry
Simon Glass4b05b2d2019-07-20 12:23:52 -06002030has changed its size, then there is no alternative but to go back to step 5 and
2031try again, repacking the entries with the updated size. ResetForPack() removes
2032the fixed offset/size values added by binman, so that the packing can start from
2033scratch.
2034
Simon Glass2d9570d2020-10-26 17:40:22 -0600203510. WriteSymbols() - write the value of symbols into the U-Boot SPL binary.
Simon Glasse8561af2018-08-01 15:22:37 -06002036See 'Access to binman entry offsets at run time' below for a description of
Simon Glass29dae672018-07-06 10:27:39 -06002037what happens in this stage.
Simon Glassbe83bc72017-11-13 18:55:05 -07002038
Simon Glass2d9570d2020-10-26 17:40:22 -0600203911. BuildImage() - builds the image and writes it to a file
Simon Glass4b05b2d2019-07-20 12:23:52 -06002040
Simon Glass2d9570d2020-10-26 17:40:22 -0600204112. WriteMap() - writes a text file containing a map of the image. This is the
Simon Glass4b05b2d2019-07-20 12:23:52 -06002042final step.
Simon Glass2574ef62016-11-25 20:15:51 -07002043
2044
Simon Glassa9223472022-11-09 19:14:49 -07002045.. _`External tools`:
2046
Simon Glass6244fa42019-07-08 13:18:28 -06002047External tools
2048--------------
2049
2050Binman can make use of external command-line tools to handle processing of
2051entry contents or to generate entry contents. These tools are executed using
2052the 'tools' module's Run() method. The tools generally must exist on the PATH,
2053but the --toolpath option can be used to specify additional search paths to
2054use. This option can be specified multiple times to add more than one path.
2055
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002056For some compile tools binman will use the versions specified by commonly-used
2057environment variables like CC and HOSTCC for the C compiler, based on whether
2058the tool's output will be used for the target or for the host machine. If those
2059aren't given, it will also try to derive target-specific versions from the
2060CROSS_COMPILE environment variable during a cross-compilation.
2061
Simon Glass31cce972021-11-23 21:09:48 -07002062If the tool is not available in the path you can use BINMAN_TOOLPATHS to specify
2063a space-separated list of paths to search, e.g.::
2064
2065 BINMAN_TOOLPATHS="/tools/g12a /tools/tegra" binman ...
2066
2067
Simon Glassa9223472022-11-09 19:14:49 -07002068.. _`External blobs`:
2069
Simon Glass31cce972021-11-23 21:09:48 -07002070External blobs
2071--------------
2072
2073Binary blobs, even if the source code is available, complicate building
2074firmware. The instructions can involve multiple steps and the binaries may be
2075hard to build or obtain. Binman at least provides a unified description of how
2076to build the final image, no matter what steps are needed to get there.
2077
2078Binman also provides a `blob-ext` entry type that pulls in a binary blob from an
2079external file. If the file is missing, binman can optionally complete the build
2080and just report a warning. Use the `-M/--allow-missing` option to enble this.
2081This is useful in CI systems which want to check that everything is correct but
2082don't have access to the blobs.
2083
2084If the blobs are in a different directory, you can specify this with the `-I`
2085option.
2086
Dario Binacchi1eec1652023-11-23 14:10:00 +01002087For U-Boot, you can set the BINMAN_INDIRS environment variable to provide a
Simon Glass31cce972021-11-23 21:09:48 -07002088space-separated list of directories to search for binary blobs::
2089
2090 BINMAN_INDIRS="odroid-c4/fip/g12a \
2091 odroid-c4/build/board/hardkernel/odroidc4/firmware \
2092 odroid-c4/build/scp_task" binman ...
Simon Glass6244fa42019-07-08 13:18:28 -06002093
Simon Glass6bce5dc2022-11-09 19:14:42 -07002094Note that binman fails with exit code 103 when there are missing blobs. If you
2095wish binman to continue anyway, you can pass `-W` to binman.
2096
2097
Simon Glass52debad2016-11-25 20:15:59 -07002098Code coverage
2099-------------
2100
2101Binman is a critical tool and is designed to be very testable. Entry
Simon Glass9469d702024-09-30 12:51:37 -06002102implementations target 100% test coverage. Run ``binman test -T`` to check this.
Simon Glass52debad2016-11-25 20:15:59 -07002103
Simon Glass75ead662021-03-18 20:25:13 +13002104To enable Python test coverage on Debian-type distributions (e.g. Ubuntu)::
Simon Glass52debad2016-11-25 20:15:59 -07002105
Simon Glassa16dd6e2019-07-08 13:18:26 -06002106 $ sudo apt-get install python-coverage python3-coverage python-pytest
Simon Glass52debad2016-11-25 20:15:59 -07002107
Simon Glass9469d702024-09-30 12:51:37 -06002108You can also check the coverage provided by a single test, e.g.::
2109
2110 binman test -T testSimple
Simon Glass52debad2016-11-25 20:15:59 -07002111
Simon Glass6bce5dc2022-11-09 19:14:42 -07002112Exit status
2113-----------
2114
2115Binman produces the following exit codes:
2116
21170
2118 Success
2119
21201
2121 Any sort of failure - see output for more details
2122
2123103
2124 There are missing external blobs or bintools. This is only returned if
2125 -M is passed to binman, otherwise missing blobs return an exit status of 1.
2126 Note, if -W is passed as well as -M, then this is converted into a warning
2127 and will return an exit status of 0 instead.
2128
2129
Simon Glassa9223472022-11-09 19:14:49 -07002130U-Boot environment variables for binman
2131---------------------------------------
2132
2133The U-Boot Makefile supports various environment variables to control binman.
2134All of these are set within the Makefile and result in passing various
2135environment variables (or make flags) to binman:
2136
2137BINMAN_DEBUG
2138 Enables backtrace debugging by adding a `-D` argument. See
2139 :ref:`BinmanLogging`.
2140
2141BINMAN_INDIRS
2142 Sets the search path for input files used by binman by adding one or more
2143 `-I` arguments. See :ref:`External blobs`.
2144
2145BINMAN_TOOLPATHS
2146 Sets the search path for external tool used by binman by adding one or more
2147 `--toolpath` arguments. See :ref:`External tools`.
2148
2149BINMAN_VERBOSE
2150 Sets the logging verbosity of binman by adding a `-v` argument. See
2151 :ref:`BinmanLogging`.
2152
2153
Simon Glassddd5e1d2022-01-23 12:55:46 -07002154Error messages
2155--------------
2156
2157This section provides some guidance for some of the less obvious error messages
2158produced by binman.
2159
2160
2161Expected __bss_size symbol
2162~~~~~~~~~~~~~~~~~~~~~~~~~~
2163
2164Example::
2165
2166 binman: Node '/binman/u-boot-spl-ddr/u-boot-spl/u-boot-spl-bss-pad':
2167 Expected __bss_size symbol in spl/u-boot-spl
2168
2169This indicates that binman needs the `__bss_size` symbol to be defined in the
2170SPL binary, where `spl/u-boot-spl` is the ELF file containing the symbols. The
2171symbol tells binman the size of the BSS region, in bytes. It needs this to be
2172able to pad the image so that the following entries do not overlap the BSS,
2173which would cause them to be overwritte by variable access in SPL.
2174
2175This symbols is normally defined in the linker script, immediately after
2176_bss_start and __bss_end are defined, like this::
2177
2178 __bss_size = __bss_end - __bss_start;
2179
2180You may need to add it to your linker script if you get this error.
2181
2182
Simon Glass1aeb7512019-05-17 22:00:52 -06002183Concurrent tests
2184----------------
2185
2186Binman tries to run tests concurrently. This means that the tests make use of
2187all available CPUs to run.
2188
Simon Glass75ead662021-03-18 20:25:13 +13002189 To enable this::
Simon Glass1aeb7512019-05-17 22:00:52 -06002190
2191 $ sudo apt-get install python-subunit python3-subunit
2192
2193Use '-P 1' to disable this. It is automatically disabled when code coverage is
2194being used (-T) since they are incompatible.
2195
2196
Simon Glass6a0f4812024-09-30 12:51:38 -06002197Writing tests
2198-------------
2199
2200See :doc:`../binman_tests`.
2201
Simon Glass1c420c92019-07-08 13:18:49 -06002202Debugging tests
2203---------------
2204
2205Sometimes when debugging tests it is useful to keep the input and output
2206directories so they can be examined later. Use -X or --test-preserve-dirs for
2207this.
2208
2209
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002210Running tests on non-x86 architectures
2211--------------------------------------
2212
2213Binman's tests have been written under the assumption that they'll be run on a
2214x86-like host and there hasn't been an attempt to make them portable yet.
2215However, it's possible to run the tests by cross-compiling to x86.
2216
Simon Glass75ead662021-03-18 20:25:13 +13002217To install an x86 cross-compiler on Debian-type distributions (e.g. Ubuntu)::
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002218
2219 $ sudo apt-get install gcc-x86-64-linux-gnu
2220
Simon Glass75ead662021-03-18 20:25:13 +13002221Then, you can run the tests under cross-compilation::
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002222
2223 $ CROSS_COMPILE=x86_64-linux-gnu- binman test -T
2224
2225You can also use gcc-i686-linux-gnu similar to the above.
2226
2227
Simon Glassfa888282021-03-18 20:25:14 +13002228Writing new entries and debugging
2229---------------------------------
Simon Glass2574ef62016-11-25 20:15:51 -07002230
2231The behaviour of entries is defined by the Entry class. All other entries are
2232a subclass of this. An important subclass is Entry_blob which takes binary
2233data from a file and places it in the entry. In fact most entry types are
2234subclasses of Entry_blob.
2235
2236Each entry type is a separate file in the tools/binman/etype directory. Each
2237file contains a class called Entry_<type> where <type> is the entry type.
2238New entry types can be supported by adding new files in that directory.
2239These will automatically be detected by binman when needed.
2240
2241Entry properties are documented in entry.py. The entry subclasses are free
2242to change the values of properties to support special behaviour. For example,
2243when Entry_blob loads a file, it sets content_size to the size of the file.
2244Entry classes can adjust other entries. For example, an entry that knows
Simon Glasse8561af2018-08-01 15:22:37 -06002245where other entries should be positioned can set up those entries' offsets
Simon Glass2574ef62016-11-25 20:15:51 -07002246so they don't need to be set in the binman decription. It can also adjust
2247entry contents.
2248
2249Most of the time such essoteric behaviour is not needed, but it can be
2250essential for complex images.
2251
Simon Glassade2ef62017-12-24 12:12:07 -07002252If you need to specify a particular device-tree compiler to use, you can define
2253the DTC environment variable. This can be useful when the system dtc is too
2254old.
2255
Simon Glasse64a0922018-11-06 15:21:31 -07002256To enable a full backtrace and other debugging features in binman, pass
Simon Glass75ead662021-03-18 20:25:13 +13002257BINMAN_DEBUG=1 to your build::
Simon Glasse64a0922018-11-06 15:21:31 -07002258
Bin Menga089c412019-10-02 19:07:29 -07002259 make qemu-x86_defconfig
Simon Glasse64a0922018-11-06 15:21:31 -07002260 make BINMAN_DEBUG=1
2261
Simon Glass03b1d8f2019-09-25 08:11:11 -06002262To enable verbose logging from binman, base BINMAN_VERBOSE to your build, which
Simon Glass75ead662021-03-18 20:25:13 +13002263adds a -v<level> option to the call to binman::
Simon Glass03b1d8f2019-09-25 08:11:11 -06002264
Bin Menga089c412019-10-02 19:07:29 -07002265 make qemu-x86_defconfig
Simon Glass03b1d8f2019-09-25 08:11:11 -06002266 make BINMAN_VERBOSE=5
2267
Simon Glass2574ef62016-11-25 20:15:51 -07002268
Simon Glass76f496d2021-07-06 10:36:37 -06002269Building sections in parallel
2270-----------------------------
2271
2272By default binman uses multiprocessing to speed up compilation of large images.
2273This works at a section level, with one thread for each entry in the section.
2274This can speed things up if the entries are large and use compression.
2275
2276This feature can be disabled with the '-T' flag, which defaults to a suitable
2277value for your machine. This depends on the Python version, e.g on v3.8 it uses
227812 threads on an 8-core machine. See ConcurrentFutures_ for more details.
2279
2280The special value -T0 selects single-threaded mode, useful for debugging during
2281development, since dealing with exceptions and problems in threads is more
2282difficult. This avoids any use of ThreadPoolExecutor.
2283
2284
Simon Glass6fba35c2022-02-08 11:50:00 -07002285Collecting data for an entry type
2286---------------------------------
2287
2288Some entry types deal with data obtained from others. For example,
2289`Entry_mkimage` calls the `mkimage` tool with data from its subnodes::
2290
2291 mkimage {
2292 args = "-n test -T script";
2293
2294 u-boot-spl {
2295 };
2296
2297 u-boot {
2298 };
2299 };
2300
2301This shows mkimage being passed a file consisting of SPL and U-Boot proper. It
Simon Glass43a98cc2022-03-05 20:18:58 -07002302is created by calling `Entry.collect_contents_to_file()`. Note that in this
2303case, the data is passed to mkimage for processing but does not appear
2304separately in the image. It may not appear at all, depending on what mkimage
2305does. The contents of the `mkimage` entry are entirely dependent on the
2306processing done by the entry, with the provided subnodes (`u-boot-spl` and
2307`u-boot`) simply providing the input data for that processing.
Simon Glass6fba35c2022-02-08 11:50:00 -07002308
2309Note that `Entry.collect_contents_to_file()` simply concatenates the data from
2310the different entries together, with no control over alignment, etc. Another
2311approach is to subclass `Entry_section` so that those features become available,
2312such as `size` and `pad-byte`. Then the contents of the entry can be obtained by
Simon Glass43a98cc2022-03-05 20:18:58 -07002313calling `super().BuildSectionData()` in the entry's BuildSectionData()
2314implementation to get the input data, then write it to a file and process it
2315however is desired.
Simon Glass6fba35c2022-02-08 11:50:00 -07002316
2317There are other ways to obtain data also, depending on the situation. If the
2318entry type is simply signing data which exists elsewhere in the image, then
2319you can use `Entry_collection` as a base class. It lets you use a property
2320called `content` which lists the entries containing data to be processed. This
2321is used by `Entry_vblock`, for example::
2322
2323 u_boot: u-boot {
2324 };
Simon Glass43a98cc2022-03-05 20:18:58 -07002325
Simon Glass6fba35c2022-02-08 11:50:00 -07002326 vblock {
2327 content = <&u_boot &dtb>;
2328 keyblock = "firmware.keyblock";
2329 signprivate = "firmware_data_key.vbprivk";
2330 version = <1>;
2331 kernelkey = "kernel_subkey.vbpubk";
2332 preamble-flags = <1>;
2333 };
2334
2335 dtb: u-boot-dtb {
2336 };
2337
2338which shows an image containing `u-boot` and `u-boot-dtb`, with the `vblock`
2339image collecting their contents to produce input for its signing process,
2340without affecting those entries, which still appear in the final image
2341untouched.
2342
2343Another example is where an entry type needs several independent pieces of input
2344to function. For example, `Entry_fip` allows a number of different binary blobs
2345to be placed in their own individual places in a custom data structure in the
2346output image. To make that work you can add subnodes for each of them and call
2347`Entry.Create()` on each subnode, as `Entry_fip` does. Then the data for each
2348blob can come from any suitable place, such as an `Entry_u_boot` or an
2349`Entry_blob` or anything else::
2350
2351 atf-fip {
2352 fip-hdr-flags = /bits/ 64 <0x123>;
2353 soc-fw {
2354 fip-flags = /bits/ 64 <0x123456789abcdef>;
2355 filename = "bl31.bin";
2356 };
2357
2358 u-boot {
2359 fip-uuid = [fc 65 13 92 4a 5b 11 ec
2360 94 35 ff 2d 1c fc 79 9c];
2361 };
2362 };
2363
2364The `soc-fw` node is a `blob-ext` (i.e. it reads in a named binary file) whereas
2365`u-boot` is a normal entry type. This works because `Entry_fip` selects the
2366`blob-ext` entry type if the node name (here `soc-fw`) is recognised as being
2367a known blob type.
2368
2369When adding new entry types you are encouraged to use subnodes to provide the
Simon Glass43a98cc2022-03-05 20:18:58 -07002370data for processing, unless the `content` approach is more suitable. Consider
2371whether the input entries are contained within (or consumed by) the entry, vs
2372just being 'referenced' by the entry. In the latter case, the `content` approach
2373makes more sense. Ad-hoc properties and other methods of obtaining data are
2374discouraged, since it adds to confusion for users.
Simon Glass6fba35c2022-02-08 11:50:00 -07002375
Simon Glass2574ef62016-11-25 20:15:51 -07002376History / Credits
2377-----------------
2378
2379Binman takes a lot of inspiration from a Chrome OS tool called
2380'cros_bundle_firmware', which I wrote some years ago. That tool was based on
2381a reasonably simple and sound design but has expanded greatly over the
2382years. In particular its handling of x86 images is convoluted.
2383
Simon Glass1e324002018-06-01 09:38:19 -06002384Quite a few lessons have been learned which are hopefully applied here.
Simon Glass2574ef62016-11-25 20:15:51 -07002385
2386
2387Design notes
2388------------
2389
2390On the face of it, a tool to create firmware images should be fairly simple:
2391just find all the input binaries and place them at the right place in the
2392image. The difficulty comes from the wide variety of input types (simple
2393flat binaries containing code, packaged data with various headers), packing
2394requirments (alignment, spacing, device boundaries) and other required
2395features such as hierarchical images.
2396
2397The design challenge is to make it easy to create simple images, while
2398allowing the more complex cases to be supported. For example, for most
2399images we don't much care exactly where each binary ends up, so we should
2400not have to specify that unnecessarily.
2401
2402New entry types should aim to provide simple usage where possible. If new
2403core features are needed, they can be added in the Entry base class.
2404
2405
2406To do
2407-----
2408
2409Some ideas:
Simon Glass75ead662021-03-18 20:25:13 +13002410
Simon Glass2574ef62016-11-25 20:15:51 -07002411- Use of-platdata to make the information available to code that is unable
Simon Glass774b23f2021-03-18 20:25:17 +13002412 to use device tree (such as a very small SPL image). For now, limited info is
2413 available via linker symbols
Simon Glass2574ef62016-11-25 20:15:51 -07002414- Allow easy building of images by specifying just the board name
Simon Glass2574ef62016-11-25 20:15:51 -07002415- Support building an image for a board (-b) more completely, with a
2416 configurable build directory
Simon Glass8100a8e2019-07-20 12:24:02 -06002417- Detect invalid properties in nodes
2418- Sort the fdtmap by offset
Simon Glass01ab2292021-01-06 21:35:12 -07002419- Output temporary files to a different directory
Simon Glasse87009da2022-02-08 11:49:57 -07002420- Rationalise the fdt, fdt_util and pylibfdt modules which currently have some
2421 overlapping and confusing functionality
2422- Update the fdt library to use a better format for Prop.value (the current one
2423 is useful for dtoc but not much else)
2424- Figure out how to make Fdt support changing the node order, so that
2425 Node.AddSubnode() can support adding a node before another, existing node.
2426 Perhaps it should completely regenerate the flat tree?
Simon Glassfca38562022-08-18 02:16:46 -06002427- Support images which depend on each other
Simon Glass2574ef62016-11-25 20:15:51 -07002428
2429--
2430Simon Glass <sjg@chromium.org>
24317/7/2016
Simon Glass76f496d2021-07-06 10:36:37 -06002432
2433.. _ConcurrentFutures: https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor