其他分享
首页 > 其他分享> > dts文件格式:

dts文件格式:

作者:互联网

1、引用:

1)、phandle引用

pic@10000000 {
    phandle = <123>;
    interrupt-controller;
};

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

2)、标签引用:

PIC: pic@11000000 {
    interrupt-controller;
};

another-device-node {
    interrupt-parent = <&PIC>;   // 使用label来引用上述节点, 
};

标签:标签,interrupt,文件格式,phandle,dts,属性,节点,引用
来源: https://www.cnblogs.com/hug567/p/15371558.html