Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to modify kernel DTB file

Summary

I am currently compiling the Linux kernel (kernel, modules and DTB) with some custom drivers for a custom board. Occasionally I'll compile the kernel and realize that the compatibility string in the DTB file is not what the custom driver is looking for. Right now the only way i can remedy this is modify the DTS or kernel driver so the strings match and then recompile the kernel again. Is there are way I can just edit the DTB file to update the compatibility string?

Failed Attempts

I have been able to decompile the DTB file back to a DTS file using the command:

dtc -I dtb -o <filename>.dts -<filename>.dtb

However if I modify the DTS file and recompile using the command:

dtc -I dts -o <filename>.dtb -<filename>.dts

The kernel will not load the recompiled DTB file

like image 833
Liam Kelly Avatar asked Sep 28 '17 13:09

Liam Kelly


People also ask

How do I open a DTB file?

DTB files are not meant to be opened. Instead, they are meant to be passed to the Linux kernel for use as a device tree. Linux users can use the devicetree command to load a DTB file as their device tree.

Where is DTB file in Linux?

The dtb and dtbo files are located on the target filesystem under “/boot” directory.


2 Answers

Just want to update this with 2 years more experience on the subject.

The DTS files in the Linux repository are a mixture of DTS and C preprocessor directives (#include, #define, etc.). So when the original DTB is compiled, the preprocessor links to the referenced files to create a pure DTS file. dtc converts the single DTS file into a DTB file.

So if you want to modify a kernel DTS file and compile it, then you have two options:

  1. Just run make dtbs which automatically handles all of this
  2. Manually run the preprocessor (cpp -nostdinc -I <include dir> -undef -x assembler-with-cpp ...) and then compile the output with dtc.
like image 134
Liam Kelly Avatar answered Oct 11 '22 06:10

Liam Kelly


Why don't you generate new dtb?

DTB(Device tree blob/binary), is hardware database which represents the hardware components of the board.

U-boot pass the board information struct to the kernel, that is derived from the header file in U-Boot.

DTB is compiled by the special compiler that produces the binary in the proper form for U-Boot and Linux to understand.


DTC (Device Tree Compiler) it translates device tree file to the machine-readable binary that U-Boot and Linux kernel can understand.

The straightforward way to use DTC.

$ dtc -O dtb -o arm_board.dtb -b 0 arm_board.dts

to get the device tree in text from the dtb.

dtc -I dtb -O dts arm_board.dtb

board.dts is binary created by the above command. -O specifies the output format. -o flag is output file. -b 0 specifies physical boot CPU.

Then do

$ make ARCH=arm arm_board.dtb

Another approach might be just use make dtbs this will call dtc. arch/arm/boot/dts/Makefile lists which DTBs should be generated at build time This another way to compile it. make will put that in this location of kernel tree /arch/arm/boot/dts

Have a look at this Device Tree for Dummies

like image 29
danglingpointer Avatar answered Oct 11 '22 07:10

danglingpointer