6. Barebox devicetree handling and bindings¶
The preferred way of adding board support to barebox is to have devices
on non-enumerable buses probed from device tree.
barebox imports the Linux OpenFirmware of_*
-API functions for device tree
parsing, which makes porting the device tree specific bits from device drivers
very straight forward.
Additionally, barebox has support for programmatically fixing up device trees
it passes to the kernel, either directly via of_register_fixup
or via device
tree overlays.
6.1. Upstream Device Trees¶
barebox regularly synchronizes with the Linux kernel device tree definitions
via the kernel.org Split device-tree repository.
They are located under the top-level dts/
directory.
Patches against dts/
and its subdirectories are not accepted upstream.
6.2. barebox Device Trees¶
For supporting architectures, barebox device trees are located in
arch/$ARCH/dts
. Usually the barebox board.dts
imports the upstream
device tree under dts/src/$ARCH
with #include "$ARCH/board.dts"
and
then extends it with barebox-specifics like Barebox state,
environment or boot-time device configuration.
6.3. Device Tree Compiler¶
barebox makes use of the dtc
and fdtget
and the underlying libfdt
from the Device-Tree Compiler project.
These utilities are built as part of the barebox build process. Additionally,
libfdt is compiled once more as part of the CONFIG_BOARD_ARM_GENERIC_DT
if selected.
Steps to update scripts/dtc
:
- Place a
git-checkout
of the upstreamdtc
directory in the parent directory of your bareboxgit-checkout
. - Run
scripts/dtc/update-dtc-source.sh
from the top-level barebox directory. - Wait till
dtc
build, test, install and commit conclude. - Compile-test with
CONFIG_BOARD_ARM_GENERIC_DT=y
. - If
scripts/dtc/Makefile
or barebox include file changes are necessary, apply them manually in a commit preceding thedtc
update.
6.4. barebox-specific Bindings¶
Contents:
- 6.4.1. barebox environment
- 6.4.2. Barebox state
- 6.4.3. U-Boot environment device
- 6.4.4. Common leds properties
- 6.4.5. Freescale i.MX IIM (Ic Identification Module)
- 6.4.6. Freescale i.MX OCOTP (On-Chip OTP)
- 6.4.7. MTD SPI driver for ST M25Pxx (and similar) serial flash chips
- 6.4.8. Dallas DS1307 I2C Serial Real-Time Clock