dts文件格式:

1、引用:

1)、phandle引用

  • 被引用的节点中增加phandle属性,引用节点可在属性中使用phandle值引用该节点:
pic@10000000 {
    phandle = <123>;
    interrupt-controller;
};

another-device-node {
    interrupt-parent = <123>;   // 使用phandle值为123来引用上述节点
};

2)、标签引用:

  • 被引用节点增加标签,引用节点可在属性中使用标签引用该节点,本质是在编译dts时,dtc为有标签的节点增加了phandle属性,并为其赋唯一值。
PIC: pic@11000000 {
    interrupt-controller;
};

another-device-node {
    interrupt-parent = <&PIC>;   // 使用label来引用上述节点, 
};
上一篇:【开发参考】Silverlight 4控件对应装配文件表


下一篇:理解并正确使用synchronized和volatile