码迷,mamicode.com
首页 > 其他好文 > 详细

设备树

时间:2020-01-10 15:36:44      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:dtb   二进制文件   parent   def   int   mem   cloc   dtc   存在   

device tree

解决内核源码中,存在大量对板级细节信息描述的代码。

编译过程

DTC(device tree compiler)将DTS(device tree source)/DTSI文件编译为二进制文件DTB(device tree blob)

格式

/ {
memory: memory {
    reg = <0x10000000 0x40000000>;
    };

&i2c1 {
    clock-frequency = <100000>;
    pinctrl-names = "default";
    pinctrl-0 = <&pinctrl_i2c1>;
    status = "okay";
    
    mpu9150@68 {
        compatible = "mpu9150";
        reg = <0x68>;
        pinctrl-names = "default";
        pinctrl-0 = <&pinctrl_i2c1_mpu9150_int>;
        interrupt-parent = <&gpio3>;
        interrupts = <31 2>;
    };
    }
}

设备树

标签:dtb   二进制文件   parent   def   int   mem   cloc   dtc   存在   

原文地址:https://www.cnblogs.com/xiongyungang/p/12176175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!