blob: 84b1331df5c006f72167016b7f33de73f4a269fa [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.
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00008For example, we may have SPL, U-Boot, a devicetree and an environment area
Simon Glass2574ef62016-11-25 20:15:51 -07009grouped 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000022Binman reads your board's devicetree 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000034Apart from basic padding, alignment, and positioning features, Binman supports
35hierarchical images, compression, hashing and dealing with the binary blobs,
Simon Glass774b23f2021-03-18 20:25:17 +130036which 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000039using special linker symbols (zero-overhead but limited) or by reading
Simon Glass774b23f2021-03-18 20:25:17 +130040the 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000058building the various parts. In many cases the various binaries which go into image
59come from separate build systems. For example, ARM Trusted Firmware
Simon Glass774b23f2021-03-18 20:25:17 +130060is 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000063It is of course possible to add further build rules to the U-Boot
Simon Glass2574ef62016-11-25 20:15:51 -070064build system to cover these cases. It can shell out to other Makefiles and
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000065build scripts. But it seems preferable to create a clear divide between building
Simon Glass2574ef62016-11-25 20:15:51 -070066software 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000085 - The image description is easily readable (a text file in devicetree
Simon Glass75ead662021-03-18 20:25:13 +130086 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000105The name was chosen since binman conflicts with an existing package.
Simon Glassbf3e1c62023-02-23 18:18:23 -0700106
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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000119optional ramdisk) and devicetree chosen from assorted options in the FIT.
120Now that U-Boot supports configuration via devicetree, it is possible to
121load U-Boot from a FIT, with the devicetree chosen by SPL.
Simon Glass2574ef62016-11-25 20:15:51 -0700122
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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000143needed an image description file: a devicetree, like binman, but in a
Simon Glass2574ef62016-11-25 20:15:51 -0700144different 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000176 sunxi-spl.bin. This should better go 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000196Within U-Boot, binman is invoked by the build system, i.e., when you type 'make'
Simon Glass76d71b02022-08-07 16:33:26 -0600197or 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000211used for the things that binman creates. Hence, the binaries are inputs to the
212image(s), and it is the image that is actually loaded on the board.
Simon Glass76d71b02022-08-07 16:33:26 -0600213
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000214Again, at present, there are a few things created in Makefile which should
Simon Glass76d71b02022-08-07 16:33:26 -0600215be 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000225The same binaries may be used for multiple images. For example, binman may be used
Simon Glass76d71b02022-08-07 16:33:26 -0600226to 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000232binaries which must be incorporated, 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
Simon Glass76d71b02022-08-07 16:33:26 -0600234where 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000270Then, in practice binman is often used twice:
Simon Glass76d71b02022-08-07 16:33:26 -0600271
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000272- Once within the U-Boot build system, for development and testing
273- Again, outside U-Boot to assembly and final production images
Simon Glass76d71b02022-08-07 16:33:26 -0600274
275While the same input binaries are used in each case, you will of course you will
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000276need to create your own binman command line, like that in `cmd_binman` in
Simon Glass76d71b02022-08-07 16:33:26 -0600277the Makefile. You may find the -I and --toolpath options useful. The
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000278devicetree file is provided to binman in binary form, so there is no need to
Simon Glass76d71b02022-08-07 16:33:26 -0600279have access to the original `.dts` sources.
280
281
282Assembling the image description
283--------------------------------
284
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000285Since binman uses the devicetree for its image description, you can use the
Simon Glass76d71b02022-08-07 16:33:26 -0600286same files that describe your board's hardware to describe how the image is
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000287assembled. Typically, the images description is in a common file used by all
Simon Glass76d71b02022-08-07 16:33:26 -0600288boards with a particular SoC (e.g. `imx8mp-u-boot.dtsi`).
289
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000290Where a particular board needs to make changes, it can override properties in
291the SoC file, just as it would for any other devicetree property. It can also
292add an image that is specific to the board.
Simon Glass76d71b02022-08-07 16:33:26 -0600293
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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000306The SoC can provide a default value, but boards can override that as needed and
Simon Glass76d71b02022-08-07 16:33:26 -0600307binman 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000320Obviously, 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
322no general harm in producing an image that is not used. If a board uses MMC
Simon Glass76d71b02022-08-07 16:33:26 -0600323but not SPI, but the SoC supports booting from both, then both images can be
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000324produced, with only one or other being used by a particular board. This can help
325reduce the need for having multiple defconfig targets, for boards where the
Simon Glass76d71b02022-08-07 16:33:26 -0600326only difference is the boot media, enabling / disabling secure boot, etc.
327
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000328Of course, you can use the devicetree itself to pass any board-specific
Simon Glass76d71b02022-08-07 16:33:26 -0600329information 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000344However, U-Boot builds all the devicetree files associated with an
345SoC. These are written in the (e.g. for ARM) `arch/arm/dts` directory. Each of
Simon Glass76d71b02022-08-07 16:33:26 -0600346these contains the full binman description for that board. Often the best
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000347approach is to build a single image that includes all these devicetree binaries
Simon Glass76d71b02022-08-07 16:33:26 -0600348and allow SPL to select the correct one on boot.
349
350However, it is also possible to build separate images for each board, simply by
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000351invoking binman multiple times, once for each devicetree file, using a
Simon Glass76d71b02022-08-07 16:33:26 -0600352different 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000432In either case, binman picks up the devicetree file (u-boot.dtb) and looks
Simon Glass2574ef62016-11-25 20:15:51 -0700433for 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000444The output file is typically named image.bin and is in the output
Simon Glass774b23f2021-03-18 20:25:17 +1300445directory. 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000448Once binman is executed it will pick up its instructions from a devicetree
Simon Glass4b94ac92017-11-12 21:52:06 -0700449file, 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000479that the whole image has been loaded or is available in flash. You can then
Simon Glassfa888282021-03-18 20:25:14 +1300480jump 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000484library is planned for this instead, to read from the devicetree.
Simon Glassfa888282021-03-18 20:25:14 +1300485
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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000491image is loaded to its linked address; the value will be correct and actually
Simon Glassfa888282021-03-18 20:25:14 +1300492point 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000526the devicetree. These can be used by U-Boot at run-time to find the location
Simon Glassfa888282021-03-18 20:25:14 +1300527of 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000559command line. For example, some entries need access to files, and it is not
560always convenient to put these filenames in the image definition (devicetree).
Simon Glassfa888282021-03-18 20:25:14 +1300561
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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000597CONFIG_SPL_PAD_TO. If that line were omitted, then the U-Boot binary would
Simon Glass2574ef62016-11-25 20:15:51 -0700598immediately 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000609Note that due to a devicetree requirement, all entries must have a unique
Simon Glass2574ef62016-11-25 20:15:51 -0700610name. 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000625 section or image. For example, 'align = <16>' means that the entry will
Simon Glass75ead662021-03-18 20:25:13 +1300626 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000642 assembled), the result will be that the entry ends with the padding
Samuel Hollande2574022023-01-21 17:25:16 -0600643 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000650 only when its parent section is assembled), the result will be that
651 the entry starts with the padding bytes, so it 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000659 parent section is assembled), the result will be that the entry ends
Simon Glass75ead662021-03-18 20:25:13 +1300660 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000667 assembled), the result is that the entry ends with the padding
Simon Glass75ead662021-03-18 20:25:13 +1300668 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000678 performed only when its parent section is assembled), the result
Simon Glass75ead662021-03-18 20:25:13 +1300679 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:
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000711 Sets the compression algorithm to use (for blobs only). See the entry
Simon Glass75ead662021-03-18 20:25:13 +1300712 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:
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000728 By default, binman substitutes entries with expanded versions if available,
Simon Glass7098b7f2021-03-21 18:24:30 +1300729 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000732 `no-expanded` boolean property in the node to select this behavior.
Simon Glass7098b7f2021-03-21 18:24:30 +1300733
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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000737 optional, so that when it cannot be found, this problem is ignored and
Simon Glass63328f12023-01-07 14:07:15 -0700738 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:
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000744 This is not an entry property, since it is processed early
Simon Glassfc792842023-07-18 07:24:04 -0600745 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000754 correctly. In some cases, the binary is in fact not yet in memory, but must
Simon Glass4b0f4142024-08-26 13:11:40 -0600755 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000762of them are like the attributes 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:
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000769 This is like 'offset' in entries, setting the offset of a section
Simon Glass75ead662021-03-18 20:25:13 +1300770 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
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000802 This is a boolean property, so it needs no value. To enable it, add a
Simon Glass75ead662021-03-18 20:25:13 +1300803 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
Simon Glassf427c5f2021-03-21 18:24:33 +1300826align-default:
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000827 Specifies the default alignment for entries in this section if they do
Simon Glassf427c5f2021-03-21 18:24:33 +1300828 not specify an alignment. Note that this only applies to top-level entries
829 in the section (direct subentries), not any subentries of those entries.
830 This means that each section must specify its own default alignment, if
831 required.
832
Neha Malcom Francis3eb4be32022-10-17 16:36:25 +0530833symlink:
834 Adds a symlink to the image with string given in the symlink property.
835
Simon Glassf1ee03b2023-01-11 16:10:16 -0700836overlap:
837 Indicates that this entry overlaps with others in the same section. These
838 entries should appear at the end of the section. Overlapping entries are not
839 packed with other entries, but their contents are written over other entries
840 in the section. Overlapping entries must have an explicit offset and size.
841
Simon Glasse0035c92023-01-11 16:10:17 -0700842write-symbols:
843 Indicates that the blob should be updated with symbol values calculated by
844 binman. This is automatic for certain entry types, e.g. `u-boot-spl`. See
845 binman_syms_ for more information.
846
Simon Glass4abf7842023-07-18 07:23:54 -0600847no-write-symbols:
848 Disables symbol writing for this entry. This can be used in entry types
849 where symbol writing is automatic. For example, if `u-boot-spl` refers to
850 the `u_boot_any_image_pos` symbol but U-Boot is not available in the image
851 containing SPL, this can be used to disable the writing. Quite likely this
852 indicates a bug in your setup.
853
Simon Glasse0035c92023-01-11 16:10:17 -0700854elf-filename:
855 Sets the file name of a blob's associated ELF file. For example, if the
856 blob is `zephyr.bin` then the ELF file may be `zephyr.elf`. This allows
857 binman to locate symbols and understand the structure of the blob. See
858 binman_syms_ for more information.
859
860elf-base-sym:
861 Sets the name of the ELF symbol that points to the start of a blob. For
862 U-Boot this is `__image_copy_start` and that is the default used by binman
863 if this property is missing. For other projects, a difference symbol may be
864 needed. Add this symbol to the properties for the blob so that symbols can
865 be read correctly. See binman_syms_ for more information.
866
Simon Glass49e9c002023-01-11 16:10:19 -0700867offset-from-elf:
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000868 Sets the offset of an entry based on a symbol value in another entry.
Simon Glass49e9c002023-01-11 16:10:19 -0700869 The format is <&phandle>, "sym_name", <offset> where phandle is the entry
870 containing the blob (with associated ELF file providing symbols), <sym_name>
871 is the symbol to lookup (relative to elf-base-sym) and <offset> is an offset
872 to add to that value.
873
Simon Glasscda991e2023-02-12 17:11:15 -0700874preserve:
875 Indicates that this entry should be preserved by any firmware updates. This
876 flag should be checked by the updater when it is deciding which entries to
877 update. This flag is normally attached to sections but can be attached to
878 a single entry in a section if the updater supports it. Not that binman
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000879 itself has no control over the updater's behavior, so this is just a
Simon Glasscda991e2023-02-12 17:11:15 -0700880 signal. It is not enforced by binman.
881
Simon Glass2574ef62016-11-25 20:15:51 -0700882Examples of the above options can be found in the tests. See the
883tools/binman/test directory.
884
Simon Glasse76a3e62018-06-01 09:38:11 -0600885It is possible to have the same binary appear multiple times in the image,
886either by using a unit number suffix (u-boot@0, u-boot@1) or by using a
887different name for each and specifying the type with the 'type' attribute.
888
Simon Glass2574ef62016-11-25 20:15:51 -0700889
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000890Sections and hierarchical images
891--------------------------------
Simon Glassa91e1152018-06-01 09:38:16 -0600892
893Sometimes it is convenient to split an image into several pieces, each of which
894contains its own set of binaries. An example is a flash device where part of
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000895the image is read-only, and part is read-write. We can set up sections for each
Simon Glassa91e1152018-06-01 09:38:16 -0600896of these, and place binaries in them independently. The image is still produced
897as a single output file.
898
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000899This feature provides a way of creating hierarchical images. For example, here
Simon Glass1e324002018-06-01 09:38:19 -0600900is an example image with two copies of U-Boot. One is read-only (ro), intended
901to be written only in the factory. Another is read-write (rw), so that it can be
Simon Glassa91e1152018-06-01 09:38:16 -0600902upgraded in the field. The sizes are fixed so that the ro/rw boundary is known
Simon Glass75ead662021-03-18 20:25:13 +1300903and can be programmed::
Simon Glassa91e1152018-06-01 09:38:16 -0600904
Simon Glass75ead662021-03-18 20:25:13 +1300905 binman {
906 section@0 {
907 read-only;
908 name-prefix = "ro-";
909 size = <0x100000>;
910 u-boot {
911 };
912 };
913 section@1 {
914 name-prefix = "rw-";
915 size = <0x100000>;
916 u-boot {
917 };
918 };
919 };
Simon Glassa91e1152018-06-01 09:38:16 -0600920
921This image could be placed into a SPI flash chip, with the protection boundary
922set at 1MB.
923
924A few special properties are provided for sections:
925
926read-only:
Simon Glass75ead662021-03-18 20:25:13 +1300927 Indicates that this section is read-only. This has no impact on binman's
928 operation, but his property can be read at run time.
Simon Glassa91e1152018-06-01 09:38:16 -0600929
Simon Glass3b78d532018-06-01 09:38:21 -0600930name-prefix:
Simon Glass75ead662021-03-18 20:25:13 +1300931 This string is prepended to all the names of the binaries in the
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000932 section. In the example above, the 'u-boot' binaries will be
Simon Glass75ead662021-03-18 20:25:13 +1300933 renamed to 'ro-u-boot' and 'rw-u-boot'. This can be useful to
934 distinguish binaries with otherwise identical names.
Simon Glass3b78d532018-06-01 09:38:21 -0600935
Simon Glassde244162023-01-07 14:07:08 -0700936filename:
937 This allows the contents of the section to be written to a file in the
938 output directory. This can sometimes be useful to use the data in one
939 section in different image, since there is currently no way to share data
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000940 between images other than through files.
Simon Glassa91e1152018-06-01 09:38:16 -0600941
Simon Glassed836ac2025-02-26 09:26:17 -0700942end-at-4gb:
943 For x86 machines the ROM offsets start just before 4GB and extend
944 up so that the image finished at the 4GB boundary. This boolean
945 option can be enabled to support this. The image size must be
946 provided so that binman knows when the image should start. For an
947 8MB ROM, the offset of the first entry would be 0xfff80000 with
948 this option, instead of 0 without this option.
949
950skip-at-start:
951 This property specifies the entry offset of the first entry in the section.
952 It is useful when the Binman image is written to a particular offset in the
953 media. It allows the offset of the first entry to be the media offset, even
954 though it is at the start of the image. It effectively creates a hole at the
955 start of the image, an implied, empty area.
956
957 For example, if the image is written to offset 4K on the media, set
958 skip-at-start to 0x1000. At runtime, the Binman image will assume that it
959 has be written at offset 4K and all symbols and offsets will take account of
960 that. The image-pos values will also be adjusted. The effect is similar to
961 adding an empty 4K region at the start, except that Binman does not actually
962 output it.
963
964 For PowerPC mpc85xx based CPU, CONFIG_TEXT_BASE is the entry
965 offset of the first entry. It can be 0xeff40000 or 0xfff40000 for
966 nor flash boot, 0x201000 for sd boot etc.
967
968 'end-at-4gb' property is not applicable where CONFIG_TEXT_BASE +
969 Image size != 4gb.
970
Simon Glassfb30e292019-07-20 12:23:51 -0600971Image Properties
972----------------
973
974Image nodes act like sections but also have a few extra properties:
975
976filename:
Simon Glass75ead662021-03-18 20:25:13 +1300977 Output filename for the image. This defaults to image.bin (or in the
978 case of multiple images <nodename>.bin where <nodename> is the name of
979 the image node.
Simon Glassfb30e292019-07-20 12:23:51 -0600980
981allow-repack:
Simon Glass75ead662021-03-18 20:25:13 +1300982 Create an image that can be repacked. With this option it is possible
983 to change anything in the image after it is created, including updating
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000984 the position and size of image components. By default, this is not
985 permitted since it is not possible to know whether this might violate a
986 constraint in the image description. For example, if a section must
Simon Glass75ead662021-03-18 20:25:13 +1300987 increase in size to hold a larger binary, that might cause the section
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000988 to exceed its allow-region (e.g. the read-only portion of flash).
Simon Glassfb30e292019-07-20 12:23:51 -0600989
Simon Glass75ead662021-03-18 20:25:13 +1300990 Adding this property causes the original offset and size values in the
991 image description to be stored in the FDT and fdtmap.
Simon Glassfb30e292019-07-20 12:23:51 -0600992
993
Simon Glassfca38562022-08-18 02:16:46 -0600994Image dependencies
995------------------
996
997Binman does not currently support images that depend on each other. For example,
998if one image creates `fred.bin` and then the next uses this `fred.bin` to
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +0000999produce a final `image.bin`, then the behavior is undefined. It may work, or it
Simon Glassfca38562022-08-18 02:16:46 -06001000may produce an error about `fred.bin` being missing, or it may use a version of
1001`fred.bin` from a previous run.
1002
1003Often this can be handled by incorporating the dependency into the second
1004image. For example, instead of::
1005
1006 binman {
1007 multiple-images;
1008
1009 fred {
1010 u-boot {
1011 };
1012 fill {
1013 size = <0x100>;
1014 };
1015 };
1016
1017 image {
1018 blob {
1019 filename = "fred.bin";
1020 };
1021 u-boot-spl {
1022 };
1023 };
1024
1025you can do this::
1026
1027 binman {
1028 image {
1029 fred {
1030 type = "section";
1031 u-boot {
1032 };
1033 fill {
1034 size = <0x100>;
1035 };
1036 };
1037 u-boot-spl {
1038 };
1039 };
1040
1041
1042
Simon Glassfa888282021-03-18 20:25:14 +13001043Hashing Entries
1044---------------
1045
1046It is possible to ask binman to hash the contents of an entry and write that
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001047value back to the devicetree node. For example::
Simon Glassfa888282021-03-18 20:25:14 +13001048
1049 binman {
1050 u-boot {
1051 hash {
1052 algo = "sha256";
1053 };
1054 };
1055 };
1056
1057Here, a new 'value' property will be written to the 'hash' node containing
1058the hash of the 'u-boot' entry. Only SHA256 is supported at present. Whole
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001059sections can be hashed if desired, by adding the 'hash' node to the section.
Simon Glassfa888282021-03-18 20:25:14 +13001060
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001061The hash value can be checked at runtime by hashing the data read and
1062comparing this hash to the value in the devicetree.
Simon Glassfa888282021-03-18 20:25:14 +13001063
1064
1065Expanded entries
1066----------------
1067
1068Binman automatically replaces 'u-boot' with an expanded version of that, i.e.
1069'u-boot-expanded'. This means that when you write::
1070
1071 u-boot {
1072 };
1073
1074you actually get::
1075
1076 u-boot {
1077 type = "u-boot-expanded';
1078 };
1079
1080which in turn expands to::
1081
1082 u-boot {
1083 type = "section";
1084
1085 u-boot-nodtb {
1086 };
1087
1088 u-boot-dtb {
1089 };
1090 };
1091
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001092U-Boot's phase binaries comprise two or three pieces. For example, u-boot.bin
1093has the executable followed by a devicetree.
Simon Glassfa888282021-03-18 20:25:14 +13001094
1095With binman we want to be able to update that devicetree with full image
1096information so that it is accessible to the executable. This is tricky
1097if it is not clear where the devicetree starts.
1098
1099The above feature ensures that the devicetree is clearly separated from the
1100U-Boot executable and can be updated separately by binman as needed. It can be
1101disabled with the --no-expanded flag if required.
1102
Heiko Thieryd5894562022-01-24 08:11:01 +01001103The same applies for u-boot-spl and u-boot-tpl. In those cases, the expansion
Simon Glassfa888282021-03-18 20:25:14 +13001104includes the BSS padding, so for example::
1105
1106 spl {
1107 type = "u-boot-spl"
1108 };
1109
1110you actually get::
1111
1112 spl {
1113 type = "u-boot-expanded';
1114 };
1115
1116which in turn expands to::
1117
1118 spl {
1119 type = "section";
1120
1121 u-boot-spl-nodtb {
1122 };
1123
1124 u-boot-spl-bss-pad {
1125 };
1126
1127 u-boot-spl-dtb {
1128 };
1129 };
1130
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001131Of course, we should not expand SPL if it has no devicetree. Also, if the BSS
Simon Glassfa888282021-03-18 20:25:14 +13001132padding is not needed (because BSS is in RAM as with CONFIG_SPL_SEPARATE_BSS),
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001133the 'u-boot-spl-bss-pad' subnode should not be created. The use of the expanded
Simon Glassfa888282021-03-18 20:25:14 +13001134entry type is controlled by the UseExpanded() method. In the SPL case it checks
1135the 'spl-dtb' entry arg, which is 'y' or '1' if SPL has a devicetree.
1136
1137For the BSS case, a 'spl-bss-pad' entry arg controls whether it is present. All
1138entry args are provided by the U-Boot Makefile.
1139
1140
Simon Glass1e9e61c2023-01-07 14:07:12 -07001141Optional entries
1142----------------
1143
1144Some entries need to exist only if certain conditions are met. For example, an
1145entry may want to appear in the image only if a file has a particular format.
1146Obviously the entry must exist in the image description for it to be processed
1147at all, so a way needs to be found to have the entry remove itself.
1148
1149To handle this, when entry.ObtainContents() is called, the entry can call
1150entry.mark_absent() to mark itself as absent, passing a suitable message as the
1151reason.
1152
1153Any absent entries are dropped immediately after ObtainContents() has been
1154called on all entries.
1155
1156It is not possible for an entry to mark itself absent at any other point in the
1157processing. It must happen in the ObtainContents() method.
1158
1159The effect is as if the entry had never been present at all, since the image
1160is packed without it and it disappears from the list of entries.
1161
1162
Simon Glassfa888282021-03-18 20:25:14 +13001163Compression
1164-----------
1165
1166Binman support compression for 'blob' entries (those of type 'blob' and
1167derivatives). To enable this for an entry, add a 'compress' property::
1168
1169 blob {
1170 filename = "datafile";
1171 compress = "lz4";
1172 };
1173
1174The entry will then contain the compressed data, using the 'lz4' compression
1175algorithm. Currently this is the only one that is supported. The uncompressed
1176size is written to the node in an 'uncomp-size' property, if -u is used.
1177
1178Compression is also supported for sections. In that case the entire section is
1179compressed in one block, including all its contents. This means that accessing
1180an entry from the section required decompressing the entire section. Also, the
1181size of a section indicates the space that it consumes in its parent section
1182(and typically the image). With compression, the section may contain more data,
1183and the uncomp-size property indicates that, as above. The contents of the
1184section is compressed first, before any padding is added. This ensures that the
1185padding itself is not compressed, which would be a waste of time.
1186
1187
1188Automatic .dtsi inclusion
1189-------------------------
1190
1191It is sometimes inconvenient to add a 'binman' node to the .dts file for each
1192board. This can be done by using #include to bring in a common file. Another
1193approach supported by the U-Boot build system is to automatically include
1194a common header. You can then put the binman node (and anything else that is
Simon Glassfc1aa352023-02-13 08:56:34 -07001195specific to U-Boot, such as bootph-all properies) in that header file.
Simon Glassfa888282021-03-18 20:25:14 +13001196
1197Binman will search for the following files in arch/<arch>/dts::
1198
1199 <dts>-u-boot.dtsi where <dts> is the base name of the .dts file
1200 <CONFIG_SYS_SOC>-u-boot.dtsi
1201 <CONFIG_SYS_CPU>-u-boot.dtsi
1202 <CONFIG_SYS_VENDOR>-u-boot.dtsi
1203 u-boot.dtsi
1204
1205U-Boot will only use the first one that it finds. If you need to include a
1206more general file you can do that from the more specific file using #include.
Simon Glass0a1b3b62021-12-16 20:59:23 -07001207If you are having trouble figuring out what is going on, you can use
1208`DEVICE_TREE_DEBUG=1` with your build::
Simon Glassfa888282021-03-18 20:25:14 +13001209
Simon Glass0a1b3b62021-12-16 20:59:23 -07001210 make DEVICE_TREE_DEBUG=1
1211 scripts/Makefile.lib:334: Automatic .dtsi inclusion: options:
1212 arch/arm/dts/juno-r2-u-boot.dtsi arch/arm/dts/-u-boot.dtsi
1213 arch/arm/dts/armv8-u-boot.dtsi arch/arm/dts/armltd-u-boot.dtsi
1214 arch/arm/dts/u-boot.dtsi ... found: "arch/arm/dts/juno-r2-u-boot.dtsi"
Simon Glassfa888282021-03-18 20:25:14 +13001215
1216
Simon Glassfc792842023-07-18 07:24:04 -06001217Templates
1218=========
1219
1220Sometimes multiple images need to be created which have all have a common
1221part. For example, a board may generate SPI and eMMC images which both include
1222a FIT. Since the FIT includes many entries, it is tedious to repeat them twice
1223in the image description.
1224
1225Templates provide a simple way to handle this::
1226
1227 binman {
1228 multiple-images;
1229 common_part: template-1 {
1230 some-property;
1231 fit {
1232 ... lots of entries in here
1233 };
1234
1235 text {
1236 text = "base image";
1237 };
1238 };
1239
1240 spi-image {
1241 filename = "image-spi.bin";
Simon Glasse1931ee2024-07-20 11:49:32 +01001242 insert-template = <&common_part>;
Simon Glassfc792842023-07-18 07:24:04 -06001243
1244 /* things specific to SPI follow */
1245 footer {
1246 ];
1247
1248 text {
1249 text = "SPI image";
1250 };
1251 };
1252
1253 mmc-image {
1254 filename = "image-mmc.bin";
Simon Glasse1931ee2024-07-20 11:49:32 +01001255 insert-template = <&common_part>;
Simon Glassfc792842023-07-18 07:24:04 -06001256
1257 /* things specific to MMC follow */
1258 footer {
1259 ];
1260
1261 text {
1262 text = "MMC image";
1263 };
1264 };
1265 };
1266
1267The template node name must start with 'template', so it is not considered to be
1268an image itself.
1269
1270The mechanism is very simple. For each phandle in the 'insert-templates'
1271property, the source node is looked up. Then the subnodes of that source node
1272are copied into the target node, i.e. the one containing the `insert-template`
1273property.
1274
1275If the target node has a node with the same name as a template, its properties
1276override corresponding properties in the template. This allows the template to
1277be uses as a base, with the node providing updates to the properties as needed.
1278The overriding happens recursively.
1279
1280Template nodes appear first in each node that they are inserted into and
1281ordering of template nodes is preserved. Other nodes come afterwards. If a
1282template node also appears in the target node, then the template node sets the
1283order. Thus the template can be used to set the ordering, even if the target
1284node provides all the properties. In the above example, `fit` and `text` appear
1285first in the `spi-image` and `mmc-image` images, followed by `footer`.
1286
1287Where there are multiple template nodes, they are inserted in that order. so
1288the first template node appears first, then the second.
1289
1290Properties in the template node are inserted into the destination node if they
1291do not exist there. In the example above, `some-property` is added to each of
1292`spi-image` and `mmc-image`.
1293
Simon Glass54825e12023-07-22 21:43:56 -06001294Note that template nodes are removed from the binman description after
1295processing and before binman builds the image descriptions.
1296
Simon Glass09490b02023-07-22 21:43:52 -06001297The initial devicetree produced by the templating process is written to the
1298`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 -06001299a failure before the final `u-boot.dtb.out` file is written. A second
1300`u-boot.dtb.tmpl2` file is written when the templates themselves are removed.
Simon Glassfc792842023-07-18 07:24:04 -06001301
Simon Glass86b3e472023-07-22 21:43:57 -06001302Dealing with phandles
1303---------------------
1304
1305Templates can contain phandles and these are copied to the destination node.
1306However this should be used with care, since if a template is instantiated twice
1307then the phandle will be copied twice, resulting in a devicetree with duplicate
1308phandles, i.e. the same phandle used by two different nodes. Binman detects this
1309situation and produces an error, for example::
1310
1311 Duplicate phandle 1 in nodes /binman/image/fit/images/atf/atf-bl31 and
1312 /binman/image-2/fit/images/atf/atf-bl31
1313
1314In this case an atf-bl31 node containing a phandle has been copied into two
1315different target nodes, resulting in the same phandle for each. See
1316testTemplatePhandleDup() for the test case.
1317
1318The solution is typically to put the phandles in the corresponding target nodes
1319(one for each) and remove the phandle from the template.
Simon Glassfc792842023-07-18 07:24:04 -06001320
Simon Glassadfb8492021-11-03 21:09:18 -06001321Updating an ELF file
1322====================
1323
1324For the EFI app, where U-Boot is loaded from UEFI and runs as an app, there is
1325no way to update the devicetree after U-Boot is built. Normally this works by
1326creating a new u-boot.dtb.out with he updated devicetree, which is automatically
1327built into the output image. With ELF this is not possible since the ELF is
1328not part of an image, just a stand-along file. We must create an updated ELF
1329file with the new devicetree.
1330
1331This is handled by the --update-fdt-in-elf option. It takes four arguments,
1332separated by comma:
1333
1334 infile - filename of input ELF file, e.g. 'u-boot's
1335 outfile - filename of output ELF file, e.g. 'u-boot.out'
1336 begin_sym - symbol at the start of the embedded devicetree, e.g.
1337 '__dtb_dt_begin'
1338 end_sym - symbol at the start of the embedded devicetree, e.g.
1339 '__dtb_dt_end'
1340
1341When this flag is used, U-Boot does all the normal packaging, but as an
1342additional step, it creates a new ELF file with the new devicetree embedded in
1343it.
1344
1345If logging is enabled you will see a message like this::
1346
1347 Updating file 'u-boot' with data length 0x400a (16394) between symbols
1348 '__dtb_dt_begin' and '__dtb_dt_end'
1349
1350There must be enough space for the updated devicetree. If not, an error like
1351the following is produced::
1352
1353 ValueError: Not enough space in 'u-boot' for data length 0x400a (16394);
1354 size is 0x1744 (5956)
1355
1356
Simon Glass7a61c6b2018-07-17 13:25:37 -06001357Entry Documentation
Simon Glass774b23f2021-03-18 20:25:17 +13001358===================
Simon Glass7a61c6b2018-07-17 13:25:37 -06001359
1360For details on the various entry types supported by binman and how to use them,
Simon Glass774b23f2021-03-18 20:25:17 +13001361see entries.rst which is generated from the source code using:
1362
1363 binman entry-docs >tools/binman/entries.rst
Simon Glass7a61c6b2018-07-17 13:25:37 -06001364
Simon Glass774b23f2021-03-18 20:25:17 +13001365.. toctree::
1366 :maxdepth: 2
Simon Glass7a61c6b2018-07-17 13:25:37 -06001367
Simon Glass774b23f2021-03-18 20:25:17 +13001368 entries
1369
Simon Glassfa888282021-03-18 20:25:14 +13001370
1371Managing images
1372===============
Simon Glass7a61c6b2018-07-17 13:25:37 -06001373
Simon Glassb2fd11d2019-07-08 14:25:48 -06001374Listing images
1375--------------
1376
1377It is possible to list the entries in an existing firmware image created by
Simon Glass75ead662021-03-18 20:25:13 +13001378binman, provided that there is an 'fdtmap' entry in the image. For example::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001379
1380 $ binman ls -i image.bin
1381 Name Image-pos Size Entry-type Offset Uncomp-size
1382 ----------------------------------------------------------------------
1383 main-section c00 section 0
1384 u-boot 0 4 u-boot 0
1385 section 5fc section 4
1386 cbfs 100 400 cbfs 0
1387 u-boot 138 4 u-boot 38
1388 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1389 u-boot-dtb 500 1ff u-boot-dtb 400 3b5
1390 fdtmap 6fc 381 fdtmap 6fc
1391 image-header bf8 8 image-header bf8
1392
1393This shows the hierarchy of the image, the position, size and type of each
1394entry, the offset of each entry within its parent and the uncompressed size if
1395the entry is compressed.
1396
Simon Glass75ead662021-03-18 20:25:13 +13001397It is also possible to list just some files in an image, e.g.::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001398
1399 $ binman ls -i image.bin section/cbfs
1400 Name Image-pos Size Entry-type Offset Uncomp-size
1401 --------------------------------------------------------------------
1402 cbfs 100 400 cbfs 0
1403 u-boot 138 4 u-boot 38
1404 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1405
Simon Glass75ead662021-03-18 20:25:13 +13001406or with wildcards::
Simon Glassb2fd11d2019-07-08 14:25:48 -06001407
1408 $ binman ls -i image.bin "*cb*" "*head*"
1409 Name Image-pos Size Entry-type Offset Uncomp-size
1410 ----------------------------------------------------------------------
1411 cbfs 100 400 cbfs 0
1412 u-boot 138 4 u-boot 38
1413 u-boot-dtb 180 108 u-boot-dtb 80 3b5
1414 image-header bf8 8 image-header bf8
1415
Simon Glassb9028bc2021-11-23 21:09:49 -07001416If an older version of binman is used to list images created by a newer one, it
1417is possible that it will contain entry types that are not supported. These still
1418show with the correct type, but binman just sees them as blobs (plain binary
1419data). Any special features of that etype are not supported by the old binman.
1420
Simon Glassb2fd11d2019-07-08 14:25:48 -06001421
Simon Glass980a2842019-07-08 14:25:52 -06001422Extracting files from images
1423----------------------------
1424
1425You can extract files from an existing firmware image created by binman,
Simon Glass75ead662021-03-18 20:25:13 +13001426provided that there is an 'fdtmap' entry in the image. For example::
Simon Glass980a2842019-07-08 14:25:52 -06001427
1428 $ binman extract -i image.bin section/cbfs/u-boot
1429
1430which will write the uncompressed contents of that entry to the file 'u-boot' in
1431the current directory. You can also extract to a particular file, in this case
Simon Glass75ead662021-03-18 20:25:13 +13001432u-boot.bin::
Simon Glass980a2842019-07-08 14:25:52 -06001433
1434 $ binman extract -i image.bin section/cbfs/u-boot -f u-boot.bin
1435
1436It is possible to extract all files into a destination directory, which will
Simon Glass75ead662021-03-18 20:25:13 +13001437put files in subdirectories matching the entry hierarchy::
Simon Glass980a2842019-07-08 14:25:52 -06001438
1439 $ binman extract -i image.bin -O outdir
1440
Simon Glass75ead662021-03-18 20:25:13 +13001441or just a selection::
Simon Glass980a2842019-07-08 14:25:52 -06001442
1443 $ binman extract -i image.bin "*u-boot*" -O outdir
1444
Simon Glass637958f2021-11-23 21:09:50 -07001445Some entry types have alternative formats, for example fdtmap which allows
1446extracted just the devicetree binary without the fdtmap header::
1447
1448 $ binman extract -i /tmp/b/odroid-c4/image.bin -f out.dtb -F fdt fdtmap
1449 $ fdtdump out.dtb
1450 /dts-v1/;
1451 // magic: 0xd00dfeed
1452 // totalsize: 0x8ab (2219)
1453 // off_dt_struct: 0x38
1454 // off_dt_strings: 0x82c
1455 // off_mem_rsvmap: 0x28
1456 // version: 17
1457 // last_comp_version: 2
1458 // boot_cpuid_phys: 0x0
1459 // size_dt_strings: 0x7f
1460 // size_dt_struct: 0x7f4
1461
1462 / {
1463 image-node = "binman";
1464 image-pos = <0x00000000>;
1465 size = <0x0011162b>;
1466 ...
1467
1468Use `-F list` to see what alternative formats are available::
1469
1470 $ binman extract -i /tmp/b/odroid-c4/image.bin -F list
1471 Flag (-F) Entry type Description
1472 fdt fdtmap Extract the devicetree blob from the fdtmap
1473
Simon Glass980a2842019-07-08 14:25:52 -06001474
Simon Glass072959a2019-07-20 12:23:50 -06001475Replacing files in an image
1476---------------------------
1477
1478You can replace files in an existing firmware image created by binman, provided
Simon Glass31cce972021-11-23 21:09:48 -07001479that there is an 'fdtmap' entry in the image. For example::
Simon Glass072959a2019-07-20 12:23:50 -06001480
1481 $ binman replace -i image.bin section/cbfs/u-boot
1482
1483which will write the contents of the file 'u-boot' from the current directory
Simon Glass30033c22019-07-20 12:24:15 -06001484to the that entry, compressing if necessary. If the entry size changes, you must
1485add the 'allow-repack' property to the original image before generating it (see
1486above), otherwise you will get an error.
Simon Glass072959a2019-07-20 12:23:50 -06001487
Simon Glass75ead662021-03-18 20:25:13 +13001488You can also use a particular file, in this case u-boot.bin::
Simon Glass30033c22019-07-20 12:24:15 -06001489
1490 $ binman replace -i image.bin section/cbfs/u-boot -f u-boot.bin
1491
1492It is possible to replace all files from a source directory which uses the same
Simon Glass75ead662021-03-18 20:25:13 +13001493hierarchy as the entries::
Simon Glass30033c22019-07-20 12:24:15 -06001494
1495 $ binman replace -i image.bin -I indir
1496
1497Files that are missing will generate a warning.
1498
Simon Glass75ead662021-03-18 20:25:13 +13001499You can also replace just a selection of entries::
Simon Glass30033c22019-07-20 12:24:15 -06001500
1501 $ binman replace -i image.bin "*u-boot*" -I indir
1502
Simon Glass49b77e82023-03-02 17:02:44 -07001503It is possible to replace whole sections as well, but in that case any
1504information about entries within the section may become outdated. This is
1505because Binman cannot know whether things have moved around or resized within
1506the section, once you have updated its data.
1507
1508Technical note: With 'allow-repack', Binman writes information about the
1509original offset and size properties of each entry, if any were specified, in
1510the 'orig-offset' and 'orig-size' properties. This allows Binman to distinguish
1511between an entry which ended up being packed at an offset (or assigned a size)
1512and an entry which had a particular offset / size requested in the Binman
1513configuration. Where are particular offset / size was requested, this is treated
1514as set in stone, so Binman will ensure it doesn't change. Without this feature,
1515repacking an entry might cause it to disobey the original constraints provided
1516when it was created.
1517
Simon Glassa9223472022-11-09 19:14:49 -07001518
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001519Signing FIT container with private key in an image
1520--------------------------------------------------
1521
1522You can sign FIT container with private key in your image.
1523For example::
1524
1525 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 fit
1526
1527binman will extract FIT container, sign and replace it immediately.
1528
1529If you want to sign and replace FIT container in place::
1530
1531 $ binman sign -i image.bin -k privatekey -a sha256,rsa4096 -f fit.fit fit
1532
1533which will sign FIT container with private key and replace it immediately
1534inside your image.
1535
Massimo Pegorerb05ac5e2023-09-09 15:52:35 +02001536.. _`BinmanLogging`:
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001537
Simon Glass233a26a92019-07-08 14:25:49 -06001538Logging
1539-------
1540
1541Binman normally operates silently unless there is an error, in which case it
1542just displays the error. The -D/--debug option can be used to create a full
Simon Glasscaa5f182021-02-06 09:57:28 -07001543backtrace when errors occur. You can use BINMAN_DEBUG=1 when building to select
1544this.
Simon Glass233a26a92019-07-08 14:25:49 -06001545
1546Internally binman logs some output while it is running. This can be displayed
1547by increasing the -v/--verbosity from the default of 1:
1548
1549 0: silent
1550 1: warnings only
1551 2: notices (important messages)
1552 3: info about major operations
1553 4: detailed information about each operation
1554 5: debug (all output)
1555
Simon Glasscaa5f182021-02-06 09:57:28 -07001556You can use BINMAN_VERBOSE=5 (for example) when building to select this.
Simon Glass233a26a92019-07-08 14:25:49 -06001557
Simon Glass72232452016-11-25 20:15:53 -07001558
Simon Glass41424862022-01-09 20:14:12 -07001559Bintools
1560========
1561
1562`Bintool` is the name binman gives to a binary tool which it uses to create and
1563manipulate binaries that binman cannot handle itself. Bintools are often
1564necessary since Binman only supports a subset of the available file formats
1565natively.
1566
1567Many SoC vendors invent ways to load code into their SoC using new file formats,
1568sometimes changing the format with successive SoC generations. Sometimes the
1569tool is available as Open Source. Sometimes it is a pre-compiled binary that
1570must be downloaded from the vendor's website. Sometimes it is available in
1571source form but difficult or slow to build.
1572
1573Even for images that use bintools, binman still assembles the image from its
1574image description. It may handle parts of the image natively and part with
1575various bintools.
1576
1577Binman relies on these tools so provides various features to manage them:
1578
1579- Determining whether the tool is currently installed
1580- Downloading or building the tool
1581- Determining the version of the tool that is installed
1582- Deciding which tools are needed to build an image
1583
1584The Bintool class is an interface to the tool, a thin level of abstration, using
1585Python functions to run the tool for each purpose (e.g. creating a new
1586structure, adding a file to an existing structure) rather than just lists of
1587string arguments.
1588
1589As with external blobs, bintools (which are like 'external' tools) can be
1590missing. When building an image requires a bintool and it is not installed,
1591binman detects this and reports the problem, but continues to build an image.
1592This is useful in CI systems which want to check that everything is correct but
1593don't have access to the bintools.
1594
1595To make this work, all calls to bintools (e.g. with Bintool.run_cmd()) must cope
1596with the tool being missing, i.e. when None is returned, by:
1597
1598- Calling self.record_missing_bintool()
1599- Setting up some fake contents so binman can continue
1600
1601Of course the image will not work, but binman reports which bintools are needed
1602and also provide a way to fetch them.
1603
1604To see the available bintools, use::
1605
1606 binman tool --list
1607
1608To fetch tools which are missing, use::
1609
1610 binman tool --fetch missing
1611
1612You can also use `--fetch all` to fetch all tools or `--fetch <tool>` to fetch
1613a particular tool. Some tools are built from source code, in which case you will
1614need to have at least the `build-essential` and `git` packages installed.
1615
Simon Glass9a1c7262023-02-22 12:14:49 -07001616Tools are fetched into the `~/.binman-tools` directory. This directory is
1617automatically added to the toolpath so there is no need to use `--toolpath` to
1618specify it. If you want to use these tools outside binman, you may want to
1619add this directory to your `PATH`. For example, if you use bash, add this to
1620the end of `.bashrc`::
1621
1622 PATH="$HOME/.binman-tools:$PATH"
1623
1624To select a custom directory, use the `--tooldir` option.
Simon Glassc9114962023-02-22 12:14:48 -07001625
Simon Glass41424862022-01-09 20:14:12 -07001626Bintool Documentation
1627=====================
1628
1629To provide details on the various bintools supported by binman, bintools.rst is
1630generated from the source code using:
1631
1632 binman bintool-docs >tools/binman/bintools.rst
1633
1634.. toctree::
1635 :maxdepth: 2
1636
1637 bintools
1638
Simon Glassa20c0412022-11-09 19:14:54 -07001639Binman commands and arguments
1640=============================
1641
1642Usage::
1643
Simon Glass9a1c7262023-02-22 12:14:49 -07001644 binman [-h] [-B BUILD_DIR] [-D] [--tooldir TOOLDIR] [-H]
1645 [--toolpath TOOLPATH] [-T THREADS] [--test-section-timeout]
1646 [-v VERBOSITY] [-V]
Simon Glassa20c0412022-11-09 19:14:54 -07001647 {build,bintool-docs,entry-docs,ls,extract,replace,test,tool} ...
1648
1649Binman provides the following commands:
1650
1651- **build** - build images
1652- **bintools-docs** - generate documentation about bintools
1653- **entry-docs** - generate documentation about entry types
1654- **ls** - list an image
1655- **extract** - extract files from an image
1656- **replace** - replace one or more entries in an image
1657- **test** - run tests
1658- **tool** - manage bintools
1659
1660Options:
1661
1662-h, --help
1663 Show help message and exit
1664
1665-B BUILD_DIR, --build-dir BUILD_DIR
1666 Directory containing the build output
1667
1668-D, --debug
1669 Enabling debugging (provides a full traceback on error)
1670
Simon Glass9a1c7262023-02-22 12:14:49 -07001671--tooldir TOOLDIR Set the directory to store tools
1672
Simon Glassa20c0412022-11-09 19:14:54 -07001673-H, --full-help
1674 Display the README file
1675
1676--toolpath TOOLPATH
Simon Glass9a1c7262023-02-22 12:14:49 -07001677 Add a path to the list of directories containing tools
Simon Glassa20c0412022-11-09 19:14:54 -07001678
1679-T THREADS, --threads THREADS
1680 Number of threads to use (0=single-thread). Note that -T0 is useful for
1681 debugging since everything runs in one thread.
1682
1683-v VERBOSITY, --verbosity VERBOSITY
1684 Control verbosity: 0=silent, 1=warnings, 2=notices, 3=info, 4=detail,
1685 5=debug
1686
1687-V, --version
1688 Show the binman version
1689
1690Test options:
1691
1692--test-section-timeout
1693 Use a zero timeout for section multi-threading (for testing)
1694
1695Commands are described below.
1696
1697binman build
1698------------
1699
1700This builds one or more images using the provided image description.
1701
1702Usage::
1703
1704 binman build [-h] [-a ENTRY_ARG] [-b BOARD] [-d DT] [--fake-dtb]
1705 [--fake-ext-blobs] [--force-missing-bintools FORCE_MISSING_BINTOOLS]
1706 [-i IMAGE] [-I INDIR] [-m] [-M] [-n] [-O OUTDIR] [-p] [-u]
1707 [--update-fdt-in-elf UPDATE_FDT_IN_ELF] [-W]
1708
1709Options:
1710
1711-h, --help
1712 Show help message and exit
1713
1714-a ENTRY_ARG, --entry-arg ENTRY_ARG
1715 Set argument value `arg=value`. See
1716 `Passing command-line arguments to entries`_.
1717
1718-b BOARD, --board BOARD
1719 Board name to build. This can be used instead of `-d`, in which case the
1720 file `u-boot.dtb` is used, within the build directory's board subdirectory.
1721
1722-d DT, --dt DT
1723 Configuration file (.dtb) to use. This must have a top-level node called
1724 `binman`. See `Image description format`_.
1725
1726-i IMAGE, --image IMAGE
1727 Image filename to build (if not specified, build all)
1728
1729-I INDIR, --indir INDIR
1730 Add a path to the list of directories to use for input files. This can be
1731 specified multiple times to add more than one path.
1732
1733-m, --map
1734 Output a map file for each image. See `Map files`_.
1735
1736-M, --allow-missing
1737 Allow external blobs and bintools to be missing. See `External blobs`_.
1738
1739-n, --no-expanded
1740 Don't use 'expanded' versions of entries where available; normally 'u-boot'
1741 becomes 'u-boot-expanded', for example. See `Expanded entries`_.
1742
1743-O OUTDIR, --outdir OUTDIR
1744 Path to directory to use for intermediate and output files
1745
1746-p, --preserve
1747 Preserve temporary output directory even if option -O is not given
1748
1749-u, --update-fdt
1750 Update the binman node with offset/size info. See
1751 `Access to binman entry offsets at run time (fdt)`_.
1752
1753--update-fdt-in-elf UPDATE_FDT_IN_ELF
1754 Update an ELF file with the output dtb. The argument is a string consisting
1755 of four parts, separated by commas. See `Updating an ELF file`_.
1756
1757-W, --ignore-missing
1758 Return success even if there are missing blobs/bintools (requires -M)
1759
1760Options used only for testing:
1761
1762--fake-dtb
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001763 Use fake devicetree contents
Simon Glassa20c0412022-11-09 19:14:54 -07001764
1765--fake-ext-blobs
1766 Create fake ext blobs with dummy content
1767
1768--force-missing-bintools FORCE_MISSING_BINTOOLS
1769 Comma-separated list of bintools to consider missing
1770
1771binman bintool-docs
1772-------------------
1773
1774Usage::
1775
1776 binman bintool-docs [-h]
1777
1778This outputs documentation for the bintools in rST format. See
1779`Bintool Documentation`_.
1780
1781binman entry-docs
1782-----------------
1783
1784Usage::
1785
1786 binman entry-docs [-h]
1787
1788This outputs documentation for the entry types in rST format. See
1789`Entry Documentation`_.
1790
1791binman ls
1792---------
1793
1794Usage::
1795
1796 binman ls [-h] -i IMAGE [paths ...]
1797
1798Positional arguments:
1799
1800paths
1801 Paths within file to list (wildcard)
1802
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001803Options:
Simon Glassa20c0412022-11-09 19:14:54 -07001804
1805-h, --help
1806 show help message and exit
1807
1808-i IMAGE, --image IMAGE
1809 Image filename to list
1810
1811This lists an image, showing its contents. See `Listing images`_.
1812
1813binman extract
1814--------------
1815
1816Usage::
1817
1818 binman extract [-h] [-F FORMAT] -i IMAGE [-f FILENAME] [-O OUTDIR] [-U]
1819 [paths ...]
1820
1821Positional arguments:
1822
1823Paths
1824 Paths within file to extract (wildcard)
1825
1826Options:
1827
1828-h, --help
1829 show help message and exit
1830
1831-F FORMAT, --format FORMAT
1832 Select an alternative format for extracted data
1833
1834-i IMAGE, --image IMAGE
1835 Image filename to extract
1836
1837-f FILENAME, --filename FILENAME
1838 Output filename to write to
1839
1840-O OUTDIR, --outdir OUTDIR
1841 Path to directory to use for output files
1842
1843-U, --uncompressed
1844 Output raw uncompressed data for compressed entries
1845
1846This extracts the contents of entries from an image. See
1847`Extracting files from images`_.
1848
1849binman replace
1850--------------
1851
1852Usage::
1853
1854 binman replace [-h] [-C] -i IMAGE [-f FILENAME] [-F] [-I INDIR] [-m]
1855 [paths ...]
1856
1857Positional arguments:
1858
1859paths
1860 Paths within file to replace (wildcard)
1861
1862Options:
1863
1864-h, --help
1865 show help message and exit
1866
1867-C, --compressed
1868 Input data is already compressed if needed for the entry
1869
1870-i IMAGE, --image IMAGE
1871 Image filename to update
1872
1873-f FILENAME, --filename FILENAME
1874 Input filename to read from
1875
1876-F, --fix-size
1877 Don't allow entries to be resized
1878
1879-I INDIR, --indir INDIR
1880 Path to directory to use for input files
1881
1882-m, --map
1883 Output a map file for the updated image
1884
Simon Glassb9b9b272023-03-02 17:02:42 -07001885-O OUTDIR, --outdir OUTDIR
1886 Path to directory to use for intermediate and output files
1887
1888-p, --preserve
1889 Preserve temporary output directory even if option -O is not given
1890
Simon Glassa20c0412022-11-09 19:14:54 -07001891This replaces one or more entries in an existing image. See
1892`Replacing files in an image`_.
1893
1894binman test
1895-----------
1896
1897Usage::
1898
1899 binman test [-h] [-P PROCESSES] [-T] [-X] [tests ...]
1900
1901Positional arguments:
1902
1903tests
1904 Test names to run (omit for all)
1905
1906Options:
1907
1908-h, --help
1909 show help message and exit
1910
1911-P PROCESSES, --processes PROCESSES
1912 set number of processes to use for running tests. This defaults to the
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001913 numbering the CPUs on the machine
Simon Glassa20c0412022-11-09 19:14:54 -07001914
1915-T, --test-coverage
1916 run tests and check for 100% coverage
1917
1918-X, --test-preserve-dirs
1919 Preserve and display test-created input directories; also preserve the
1920 output directory if a single test is run (pass test name at the end of the
1921 command line
1922
Ivan Mikhaylov3d80de02023-03-08 01:13:38 +00001923binman sign
1924-----------
1925
1926Usage::
1927
1928 binman sign [-h] -a ALGO [-f FILE] -i IMAGE -k KEY [paths ...]
1929
1930positional arguments:
1931
1932paths
1933 Paths within file to sign (wildcard)
1934
1935options:
1936
1937-h, --help
1938 show this help message and exit
1939
1940-a ALGO, --algo ALGO
1941 Hash algorithm e.g. sha256,rsa4096
1942
1943-f FILE, --file FILE
1944 Input filename to sign
1945
1946-i IMAGE, --image IMAGE
1947 Image filename to update
1948
1949-k KEY, --key KEY
1950 Private key file for signing
1951
Simon Glassa20c0412022-11-09 19:14:54 -07001952binman tool
1953-----------
1954
1955Usage::
1956
1957 binman tool [-h] [-l] [-f] [bintools ...]
1958
1959Positional arguments:
1960
1961bintools
1962 Bintools to process
1963
1964Options:
1965
1966-h, --help
1967 show help message and exit
1968
1969-l, --list
1970 List all known bintools
1971
1972-f, --fetch
1973 Fetch a bintool from a known location. Use `all` to fetch all and `missing`
1974 to fetch any missing tools.
1975
Simon Glass41424862022-01-09 20:14:12 -07001976
Simon Glassfa888282021-03-18 20:25:14 +13001977Technical details
1978=================
Simon Glass72232452016-11-25 20:15:53 -07001979
Simon Glass2574ef62016-11-25 20:15:51 -07001980Order of image creation
1981-----------------------
1982
1983Image creation proceeds in the following order, for each entry in the image.
1984
Simon Glasse22f8fa2018-07-06 10:27:41 -060019851. AddMissingProperties() - binman can add calculated values to the device
Simon Glasse8561af2018-08-01 15:22:37 -06001986tree as part of its processing, for example the offset and size of each
Simon Glasse22f8fa2018-07-06 10:27:41 -06001987entry. This method adds any properties associated with this, expanding the
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00001988devicetree as needed. These properties can have placeholder values which are
1989set later by SetCalculatedProperties(). By that stage, the size of sections
Simon Glasse22f8fa2018-07-06 10:27:41 -06001990cannot be changed (since it would cause the images to need to be repacked),
1991but the correct values can be inserted.
1992
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +000019932. ProcessFdt() - process the devicetree information as required by the
1994entry. This may involve adding or deleting properties. If the
Simon Glass92307732018-07-06 10:27:40 -06001995processing is complete, this method should return True. If the processing
1996cannot complete because it needs the ProcessFdt() method of another entry to
1997run first, this method should return False, in which case it will be called
1998again later.
1999
Simon Glasse22f8fa2018-07-06 10:27:41 -060020003. GetEntryContents() - the contents of each entry are obtained, normally by
Simon Glass2574ef62016-11-25 20:15:51 -07002001reading from a file. This calls the Entry.ObtainContents() to read the
2002contents. The default version of Entry.ObtainContents() calls
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002003Entry.GetDefaultFilename() and then reads that file. Thus, a common mechanism
Simon Glass2574ef62016-11-25 20:15:51 -07002004to select a file to read is to override that function in the subclass. The
2005functions must return True when they have read the contents. Binman will
2006retry calling the functions a few times if False is returned, allowing
2007dependencies between the contents of different entries.
2008
Simon Glasse8561af2018-08-01 15:22:37 -060020094. GetEntryOffsets() - calls Entry.GetOffsets() for each entry. This can
Simon Glass2574ef62016-11-25 20:15:51 -07002010return a dict containing entries that need updating. The key should be the
Simon Glasse8561af2018-08-01 15:22:37 -06002011entry name and the value is a tuple (offset, size). This allows an entry to
2012provide the offset and size for other entries. The default implementation
2013of GetEntryOffsets() returns {}.
Simon Glass2574ef62016-11-25 20:15:51 -07002014
Simon Glasse8561af2018-08-01 15:22:37 -060020155. PackEntries() - calls Entry.Pack() which figures out the offset and
2016size of an entry. The 'current' image offset is passed in, and the function
2017returns the offset immediately after the entry being packed. The default
Simon Glass2574ef62016-11-25 20:15:51 -07002018implementation of Pack() is usually sufficient.
2019
Simon Glass2d9570d2020-10-26 17:40:22 -06002020Note: for sections, this also checks that the entries do not overlap, nor extend
2021outside the section. If the section does not have a defined size, the size is
Simon Glassf1ee03b2023-01-11 16:10:16 -07002022set large enough to hold all the entries. For entries that are explicitly marked
2023as overlapping, this check is skipped.
Simon Glass2574ef62016-11-25 20:15:51 -07002024
Simon Glass2d9570d2020-10-26 17:40:22 -060020256. SetImagePos() - sets the image position of every entry. This is the absolute
Simon Glass4b05b2d2019-07-20 12:23:52 -06002026position 'image-pos', as opposed to 'offset' which is relative to the containing
2027section. This must be done after all offsets are known, which is why it is quite
2028late in the ordering.
2029
Simon Glass2d9570d2020-10-26 17:40:22 -060020307. SetCalculatedProperties() - update any calculated properties in the device
Simon Glasse8561af2018-08-01 15:22:37 -06002031tree. This sets the correct 'offset' and 'size' vaues, for example.
Simon Glasse22f8fa2018-07-06 10:27:41 -06002032
Simon Glass2d9570d2020-10-26 17:40:22 -060020338. ProcessEntryContents() - this calls Entry.ProcessContents() on each entry.
Simon Glass2574ef62016-11-25 20:15:51 -07002034The default implementatoin does nothing. This can be overriden to adjust the
2035contents of an entry in some way. For example, it would be possible to create
2036an entry containing a hash of the contents of some other entries. At this
Simon Glasse61b6f62019-07-08 14:25:37 -06002037stage the offset and size of entries should not be adjusted unless absolutely
2038necessary, since it requires a repack (going back to PackEntries()).
Simon Glass2574ef62016-11-25 20:15:51 -07002039
Simon Glass2d9570d2020-10-26 17:40:22 -060020409. ResetForPack() - if the ProcessEntryContents() step failed, in that an entry
Simon Glass4b05b2d2019-07-20 12:23:52 -06002041has changed its size, then there is no alternative but to go back to step 5 and
2042try again, repacking the entries with the updated size. ResetForPack() removes
2043the fixed offset/size values added by binman, so that the packing can start from
2044scratch.
2045
Simon Glass2d9570d2020-10-26 17:40:22 -0600204610. WriteSymbols() - write the value of symbols into the U-Boot SPL binary.
Simon Glasse8561af2018-08-01 15:22:37 -06002047See 'Access to binman entry offsets at run time' below for a description of
Simon Glass29dae672018-07-06 10:27:39 -06002048what happens in this stage.
Simon Glassbe83bc72017-11-13 18:55:05 -07002049
Simon Glass2d9570d2020-10-26 17:40:22 -0600205011. BuildImage() - builds the image and writes it to a file
Simon Glass4b05b2d2019-07-20 12:23:52 -06002051
Simon Glass2d9570d2020-10-26 17:40:22 -0600205212. WriteMap() - writes a text file containing a map of the image. This is the
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002053last step.
Simon Glass2574ef62016-11-25 20:15:51 -07002054
2055
Simon Glassa9223472022-11-09 19:14:49 -07002056.. _`External tools`:
2057
Simon Glass6244fa42019-07-08 13:18:28 -06002058External tools
2059--------------
2060
2061Binman can make use of external command-line tools to handle processing of
2062entry contents or to generate entry contents. These tools are executed using
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002063the 'tools' module's Run() method. The tools must exist on the PATH,
Simon Glass6244fa42019-07-08 13:18:28 -06002064but the --toolpath option can be used to specify additional search paths to
2065use. This option can be specified multiple times to add more than one path.
2066
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002067For some compile tools binman will use the versions specified by commonly used
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002068environment variables like CC and HOSTCC for the C compiler, based on whether
2069the tool's output will be used for the target or for the host machine. If those
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002070are not given, it will also try to derive target-specific versions from the
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002071CROSS_COMPILE environment variable during a cross-compilation.
2072
Simon Glass31cce972021-11-23 21:09:48 -07002073If the tool is not available in the path you can use BINMAN_TOOLPATHS to specify
2074a space-separated list of paths to search, e.g.::
2075
2076 BINMAN_TOOLPATHS="/tools/g12a /tools/tegra" binman ...
2077
2078
Simon Glassa9223472022-11-09 19:14:49 -07002079.. _`External blobs`:
2080
Simon Glass31cce972021-11-23 21:09:48 -07002081External blobs
2082--------------
2083
2084Binary blobs, even if the source code is available, complicate building
2085firmware. The instructions can involve multiple steps and the binaries may be
2086hard to build or obtain. Binman at least provides a unified description of how
2087to build the final image, no matter what steps are needed to get there.
2088
2089Binman also provides a `blob-ext` entry type that pulls in a binary blob from an
2090external file. If the file is missing, binman can optionally complete the build
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002091and just report a warning. Use the `-M/--allow-missing` option to enable this.
Simon Glass31cce972021-11-23 21:09:48 -07002092This is useful in CI systems which want to check that everything is correct but
2093don't have access to the blobs.
2094
2095If the blobs are in a different directory, you can specify this with the `-I`
2096option.
2097
Dario Binacchi1eec1652023-11-23 14:10:00 +01002098For U-Boot, you can set the BINMAN_INDIRS environment variable to provide a
Simon Glass31cce972021-11-23 21:09:48 -07002099space-separated list of directories to search for binary blobs::
2100
2101 BINMAN_INDIRS="odroid-c4/fip/g12a \
2102 odroid-c4/build/board/hardkernel/odroidc4/firmware \
2103 odroid-c4/build/scp_task" binman ...
Simon Glass6244fa42019-07-08 13:18:28 -06002104
Simon Glass6bce5dc2022-11-09 19:14:42 -07002105Note that binman fails with exit code 103 when there are missing blobs. If you
2106wish binman to continue anyway, you can pass `-W` to binman.
2107
2108
Simon Glass52debad2016-11-25 20:15:59 -07002109Code coverage
2110-------------
2111
2112Binman is a critical tool and is designed to be very testable. Entry
Simon Glass9469d702024-09-30 12:51:37 -06002113implementations target 100% test coverage. Run ``binman test -T`` to check this.
Simon Glass52debad2016-11-25 20:15:59 -07002114
Simon Glass75ead662021-03-18 20:25:13 +13002115To enable Python test coverage on Debian-type distributions (e.g. Ubuntu)::
Simon Glass52debad2016-11-25 20:15:59 -07002116
Simon Glassa16dd6e2019-07-08 13:18:26 -06002117 $ sudo apt-get install python-coverage python3-coverage python-pytest
Simon Glass52debad2016-11-25 20:15:59 -07002118
Simon Glass9469d702024-09-30 12:51:37 -06002119You can also check the coverage provided by a single test, e.g.::
2120
2121 binman test -T testSimple
Simon Glass52debad2016-11-25 20:15:59 -07002122
Simon Glass6bce5dc2022-11-09 19:14:42 -07002123Exit status
2124-----------
2125
2126Binman produces the following exit codes:
2127
21280
2129 Success
2130
21311
2132 Any sort of failure - see output for more details
2133
2134103
2135 There are missing external blobs or bintools. This is only returned if
2136 -M is passed to binman, otherwise missing blobs return an exit status of 1.
2137 Note, if -W is passed as well as -M, then this is converted into a warning
2138 and will return an exit status of 0 instead.
2139
2140
Simon Glassa9223472022-11-09 19:14:49 -07002141U-Boot environment variables for binman
2142---------------------------------------
2143
2144The U-Boot Makefile supports various environment variables to control binman.
2145All of these are set within the Makefile and result in passing various
2146environment variables (or make flags) to binman:
2147
2148BINMAN_DEBUG
2149 Enables backtrace debugging by adding a `-D` argument. See
2150 :ref:`BinmanLogging`.
2151
2152BINMAN_INDIRS
2153 Sets the search path for input files used by binman by adding one or more
2154 `-I` arguments. See :ref:`External blobs`.
2155
2156BINMAN_TOOLPATHS
2157 Sets the search path for external tool used by binman by adding one or more
2158 `--toolpath` arguments. See :ref:`External tools`.
2159
2160BINMAN_VERBOSE
2161 Sets the logging verbosity of binman by adding a `-v` argument. See
2162 :ref:`BinmanLogging`.
2163
2164
Simon Glassddd5e1d2022-01-23 12:55:46 -07002165Error messages
2166--------------
2167
2168This section provides some guidance for some of the less obvious error messages
2169produced by binman.
2170
2171
2172Expected __bss_size symbol
2173~~~~~~~~~~~~~~~~~~~~~~~~~~
2174
2175Example::
2176
2177 binman: Node '/binman/u-boot-spl-ddr/u-boot-spl/u-boot-spl-bss-pad':
2178 Expected __bss_size symbol in spl/u-boot-spl
2179
2180This indicates that binman needs the `__bss_size` symbol to be defined in the
2181SPL binary, where `spl/u-boot-spl` is the ELF file containing the symbols. The
2182symbol tells binman the size of the BSS region, in bytes. It needs this to be
2183able to pad the image so that the following entries do not overlap the BSS,
2184which would cause them to be overwritte by variable access in SPL.
2185
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002186These symbols are normally defined in the linker script, immediately after
Simon Glassddd5e1d2022-01-23 12:55:46 -07002187_bss_start and __bss_end are defined, like this::
2188
2189 __bss_size = __bss_end - __bss_start;
2190
2191You may need to add it to your linker script if you get this error.
2192
2193
Simon Glass1aeb7512019-05-17 22:00:52 -06002194Concurrent tests
2195----------------
2196
2197Binman tries to run tests concurrently. This means that the tests make use of
2198all available CPUs to run.
2199
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002200 Enable this::
Simon Glass1aeb7512019-05-17 22:00:52 -06002201
2202 $ sudo apt-get install python-subunit python3-subunit
2203
2204Use '-P 1' to disable this. It is automatically disabled when code coverage is
2205being used (-T) since they are incompatible.
2206
2207
Simon Glass6a0f4812024-09-30 12:51:38 -06002208Writing tests
2209-------------
2210
2211See :doc:`../binman_tests`.
2212
Simon Glass1c420c92019-07-08 13:18:49 -06002213Debugging tests
2214---------------
2215
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002216Sometimes when debugging tests, it is useful to keep the input and output
Simon Glass1c420c92019-07-08 13:18:49 -06002217directories so they can be examined later. Use -X or --test-preserve-dirs for
2218this.
2219
2220
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002221Running tests on non-x86 architectures
2222--------------------------------------
2223
2224Binman's tests have been written under the assumption that they'll be run on a
2225x86-like host and there hasn't been an attempt to make them portable yet.
2226However, it's possible to run the tests by cross-compiling to x86.
2227
Simon Glass75ead662021-03-18 20:25:13 +13002228To install an x86 cross-compiler on Debian-type distributions (e.g. Ubuntu)::
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002229
2230 $ sudo apt-get install gcc-x86-64-linux-gnu
2231
Simon Glass75ead662021-03-18 20:25:13 +13002232Then, you can run the tests under cross-compilation::
Alper Nebi Yasakfb4e5382020-09-06 14:46:07 +03002233
2234 $ CROSS_COMPILE=x86_64-linux-gnu- binman test -T
2235
2236You can also use gcc-i686-linux-gnu similar to the above.
2237
2238
Simon Glassfa888282021-03-18 20:25:14 +13002239Writing new entries and debugging
2240---------------------------------
Simon Glass2574ef62016-11-25 20:15:51 -07002241
2242The behaviour of entries is defined by the Entry class. All other entries are
2243a subclass of this. An important subclass is Entry_blob which takes binary
2244data from a file and places it in the entry. In fact most entry types are
2245subclasses of Entry_blob.
2246
2247Each entry type is a separate file in the tools/binman/etype directory. Each
2248file contains a class called Entry_<type> where <type> is the entry type.
2249New entry types can be supported by adding new files in that directory.
2250These will automatically be detected by binman when needed.
2251
2252Entry properties are documented in entry.py. The entry subclasses are free
2253to change the values of properties to support special behaviour. For example,
2254when Entry_blob loads a file, it sets content_size to the size of the file.
2255Entry classes can adjust other entries. For example, an entry that knows
Simon Glasse8561af2018-08-01 15:22:37 -06002256where other entries should be positioned can set up those entries' offsets
Simon Glass2574ef62016-11-25 20:15:51 -07002257so they don't need to be set in the binman decription. It can also adjust
2258entry contents.
2259
2260Most of the time such essoteric behaviour is not needed, but it can be
2261essential for complex images.
2262
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002263If you need to specify a particular devicetree compiler to use, you can define
Simon Glassade2ef62017-12-24 12:12:07 -07002264the DTC environment variable. This can be useful when the system dtc is too
2265old.
2266
Simon Glasse64a0922018-11-06 15:21:31 -07002267To enable a full backtrace and other debugging features in binman, pass
Simon Glass75ead662021-03-18 20:25:13 +13002268BINMAN_DEBUG=1 to your build::
Simon Glasse64a0922018-11-06 15:21:31 -07002269
Bin Menga089c412019-10-02 19:07:29 -07002270 make qemu-x86_defconfig
Simon Glasse64a0922018-11-06 15:21:31 -07002271 make BINMAN_DEBUG=1
2272
Simon Glass03b1d8f2019-09-25 08:11:11 -06002273To enable verbose logging from binman, base BINMAN_VERBOSE to your build, which
Simon Glass75ead662021-03-18 20:25:13 +13002274adds a -v<level> option to the call to binman::
Simon Glass03b1d8f2019-09-25 08:11:11 -06002275
Bin Menga089c412019-10-02 19:07:29 -07002276 make qemu-x86_defconfig
Simon Glass03b1d8f2019-09-25 08:11:11 -06002277 make BINMAN_VERBOSE=5
2278
Simon Glass2574ef62016-11-25 20:15:51 -07002279
Simon Glass76f496d2021-07-06 10:36:37 -06002280Building sections in parallel
2281-----------------------------
2282
2283By default binman uses multiprocessing to speed up compilation of large images.
2284This works at a section level, with one thread for each entry in the section.
2285This can speed things up if the entries are large and use compression.
2286
2287This feature can be disabled with the '-T' flag, which defaults to a suitable
2288value for your machine. This depends on the Python version, e.g on v3.8 it uses
228912 threads on an 8-core machine. See ConcurrentFutures_ for more details.
2290
2291The special value -T0 selects single-threaded mode, useful for debugging during
2292development, since dealing with exceptions and problems in threads is more
2293difficult. This avoids any use of ThreadPoolExecutor.
2294
2295
Simon Glass6fba35c2022-02-08 11:50:00 -07002296Collecting data for an entry type
2297---------------------------------
2298
2299Some entry types deal with data obtained from others. For example,
2300`Entry_mkimage` calls the `mkimage` tool with data from its subnodes::
2301
2302 mkimage {
2303 args = "-n test -T script";
2304
2305 u-boot-spl {
2306 };
2307
2308 u-boot {
2309 };
2310 };
2311
2312This shows mkimage being passed a file consisting of SPL and U-Boot proper. It
Simon Glass43a98cc2022-03-05 20:18:58 -07002313is created by calling `Entry.collect_contents_to_file()`. Note that in this
2314case, the data is passed to mkimage for processing but does not appear
2315separately in the image. It may not appear at all, depending on what mkimage
2316does. The contents of the `mkimage` entry are entirely dependent on the
2317processing done by the entry, with the provided subnodes (`u-boot-spl` and
2318`u-boot`) simply providing the input data for that processing.
Simon Glass6fba35c2022-02-08 11:50:00 -07002319
2320Note that `Entry.collect_contents_to_file()` simply concatenates the data from
2321the different entries together, with no control over alignment, etc. Another
2322approach is to subclass `Entry_section` so that those features become available,
2323such as `size` and `pad-byte`. Then the contents of the entry can be obtained by
Simon Glass43a98cc2022-03-05 20:18:58 -07002324calling `super().BuildSectionData()` in the entry's BuildSectionData()
2325implementation to get the input data, then write it to a file and process it
2326however is desired.
Simon Glass6fba35c2022-02-08 11:50:00 -07002327
2328There are other ways to obtain data also, depending on the situation. If the
2329entry type is simply signing data which exists elsewhere in the image, then
2330you can use `Entry_collection` as a base class. It lets you use a property
2331called `content` which lists the entries containing data to be processed. This
2332is used by `Entry_vblock`, for example::
2333
2334 u_boot: u-boot {
2335 };
Simon Glass43a98cc2022-03-05 20:18:58 -07002336
Simon Glass6fba35c2022-02-08 11:50:00 -07002337 vblock {
2338 content = <&u_boot &dtb>;
2339 keyblock = "firmware.keyblock";
2340 signprivate = "firmware_data_key.vbprivk";
2341 version = <1>;
2342 kernelkey = "kernel_subkey.vbpubk";
2343 preamble-flags = <1>;
2344 };
2345
2346 dtb: u-boot-dtb {
2347 };
2348
2349which shows an image containing `u-boot` and `u-boot-dtb`, with the `vblock`
2350image collecting their contents to produce input for its signing process,
2351without affecting those entries, which still appear in the final image
2352untouched.
2353
2354Another example is where an entry type needs several independent pieces of input
2355to function. For example, `Entry_fip` allows a number of different binary blobs
2356to be placed in their own individual places in a custom data structure in the
2357output image. To make that work you can add subnodes for each of them and call
2358`Entry.Create()` on each subnode, as `Entry_fip` does. Then the data for each
2359blob can come from any suitable place, such as an `Entry_u_boot` or an
2360`Entry_blob` or anything else::
2361
2362 atf-fip {
2363 fip-hdr-flags = /bits/ 64 <0x123>;
2364 soc-fw {
2365 fip-flags = /bits/ 64 <0x123456789abcdef>;
2366 filename = "bl31.bin";
2367 };
2368
2369 u-boot {
2370 fip-uuid = [fc 65 13 92 4a 5b 11 ec
2371 94 35 ff 2d 1c fc 79 9c];
2372 };
2373 };
2374
2375The `soc-fw` node is a `blob-ext` (i.e. it reads in a named binary file) whereas
2376`u-boot` is a normal entry type. This works because `Entry_fip` selects the
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002377`blob-ext` entry type if the node name (here `soc-fw`) is recognized as being
Simon Glass6fba35c2022-02-08 11:50:00 -07002378a known blob type.
2379
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002380When adding new entry types, you are encouraged to use subnodes to provide the
Simon Glass43a98cc2022-03-05 20:18:58 -07002381data for processing, unless the `content` approach is more suitable. Consider
2382whether the input entries are contained within (or consumed by) the entry, vs
2383just being 'referenced' by the entry. In the latter case, the `content` approach
2384makes more sense. Ad-hoc properties and other methods of obtaining data are
2385discouraged, since it adds to confusion for users.
Simon Glass6fba35c2022-02-08 11:50:00 -07002386
Simon Glass2574ef62016-11-25 20:15:51 -07002387History / Credits
2388-----------------
2389
2390Binman takes a lot of inspiration from a Chrome OS tool called
2391'cros_bundle_firmware', which I wrote some years ago. That tool was based on
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002392a simple and sound design but has expanded over the
2393years. In particular, its handling of x86 images is convoluted.
Simon Glass2574ef62016-11-25 20:15:51 -07002394
Simon Glass1e324002018-06-01 09:38:19 -06002395Quite a few lessons have been learned which are hopefully applied here.
Simon Glass2574ef62016-11-25 20:15:51 -07002396
2397
2398Design notes
2399------------
2400
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002401On the face of it, a tool to create firmware images should be simple:
Simon Glass2574ef62016-11-25 20:15:51 -07002402just find all the input binaries and place them at the right place in the
2403image. The difficulty comes from the wide variety of input types (simple
2404flat binaries containing code, packaged data with various headers), packing
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002405requirements (alignment, spacing, device boundaries) and other required
Simon Glass2574ef62016-11-25 20:15:51 -07002406features such as hierarchical images.
2407
2408The design challenge is to make it easy to create simple images, while
2409allowing the more complex cases to be supported. For example, for most
2410images we don't much care exactly where each binary ends up, so we should
2411not have to specify that unnecessarily.
2412
2413New entry types should aim to provide simple usage where possible. If new
2414core features are needed, they can be added in the Entry base class.
2415
2416
2417To do
2418-----
2419
2420Some ideas:
Simon Glass75ead662021-03-18 20:25:13 +13002421
Simon Glass2574ef62016-11-25 20:15:51 -07002422- Use of-platdata to make the information available to code that is unable
Lothar Rubuschf3ab78b2024-12-04 18:33:12 +00002423 to use devicetree (such as a small SPL image). For now, limited info is
Simon Glass774b23f2021-03-18 20:25:17 +13002424 available via linker symbols
Simon Glass2574ef62016-11-25 20:15:51 -07002425- Allow easy building of images by specifying just the board name
Simon Glass2574ef62016-11-25 20:15:51 -07002426- Support building an image for a board (-b) more completely, with a
2427 configurable build directory
Simon Glass8100a8e2019-07-20 12:24:02 -06002428- Detect invalid properties in nodes
2429- Sort the fdtmap by offset
Simon Glass01ab2292021-01-06 21:35:12 -07002430- Output temporary files to a different directory
Simon Glasse87009da2022-02-08 11:49:57 -07002431- Rationalise the fdt, fdt_util and pylibfdt modules which currently have some
2432 overlapping and confusing functionality
2433- Update the fdt library to use a better format for Prop.value (the current one
2434 is useful for dtoc but not much else)
2435- Figure out how to make Fdt support changing the node order, so that
2436 Node.AddSubnode() can support adding a node before another, existing node.
2437 Perhaps it should completely regenerate the flat tree?
Simon Glassfca38562022-08-18 02:16:46 -06002438- Support images which depend on each other
Simon Glass2574ef62016-11-25 20:15:51 -07002439
2440--
2441Simon Glass <sjg@chromium.org>
24427/7/2016
Simon Glass76f496d2021-07-06 10:36:37 -06002443
2444.. _ConcurrentFutures: https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor