imx6 Device Tree compilation -- FATAL ERROR: Unable to parse input tree

imx6 Device Tree compilation -- FATAL ERROR: Unable to parse input tree

我正在为基于 Freescale imx6 的 TX6U-8010 开发嵌入式 Linux。

我正在尝试使用设备树编译器 (dtc) 编译 dtb。但是当我使用命令时:

dtc -O dtb -o imx6dl-tx6u-801x.dtb imx6dl-tx6u-801x.dts

...我收到以下错误:

Error: imx6dl-tx6u-801x.dts:13.1-9 syntax error
FATAL ERROR: Unable to parse input tree

第 12、13、14 行是:-

/dts-v1/;
#include "imx6dl.dtsi"
#include "imx6qdl-tx6.dtsi"

我使用的内核版本是linux-3.18.5,dtc版本是DTC 1.4.0。

您可以使用随内核源码提供的Makefile文件为您处理所有问题。

从内核代码根目录,只需运行:

make ARCH=arm CROSS_COMPILE=arm-none-eabi- imx_v6_v7_defconfig
make ARCH=arm CROSS_COMPILE=arm-none-eabi- dtbs

只需确保用正确的前缀替换 CROSS_COMPILE 值。

https://linux-sunxi.org/Device_Tree#Compiling_the_Device_Tree

内核中的设备树源代码偏离了常规语法,通过使用 cpp 预处理器进行包含和替换。其过程如下:

IDE=<your-device-name>
SRC=$IDE.dts
TMP=$IDE.tmp.dts
DST=$IDE.dtb

cpp -nostdinc -I include -undef -x assembler-with-cpp $SRC > $TMP
dtc -O dtb -b 0 -o $DST $TMP
rm $TMP