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来引用上述节点,
};
标签:标签,interrupt,文件格式,phandle,dts,属性,节点,引用 来源: https://www.cnblogs.com/hug567/p/15371558.html