parent
d7e0bb2a61
commit
979ee1c2d6
|
@ -63,7 +63,7 @@ reg = <address1 size1 [address2 size2] [address3 size3]...>;
|
||||||
* interrutt-controller:属性为空,表明“我是中断控制器”;
|
* interrutt-controller:属性为空,表明“我是中断控制器”;
|
||||||
* #interrupt-cells:表明连接此中断控制器的设备的中断属性的 cell 大小,也就是 interrupt = <> 属性的 cell 大小;
|
* #interrupt-cells:表明连接此中断控制器的设备的中断属性的 cell 大小,也就是 interrupt = <> 属性的 cell 大小;
|
||||||
* interrupt-parent:设备节点通过这个关键字指定其依附的中断控制器 phandle,如果没有指定,则继承父节点的 interrupt-parent 配置;
|
* interrupt-parent:设备节点通过这个关键字指定其依附的中断控制器 phandle,如果没有指定,则继承父节点的 interrupt-parent 配置;
|
||||||
* interrupt:设备节点里使用,一般包含中断号、触发方法等。具体有多少个 cell,由 #interrupt-cells 决定,每个 cell 的具体含义,一般由驱动的实决定,一般会在绑定文件里说明。
|
* interrupt:设备节点里使用,一般包含中断号、触发方法等。具体有多少个 cell,由 #interrupt-cells 决定,每个 cell 的具体含义,一般由驱动决定。
|
||||||
|
|
||||||
### DTS 示例
|
### DTS 示例
|
||||||
|
|
||||||
|
@ -410,7 +410,6 @@ int of_property_read_u32_index(const struct device_node *np,
|
||||||
const char *propname,
|
const char *propname,
|
||||||
u32 index,
|
u32 index,
|
||||||
u32 *out_value);
|
u32 *out_value);
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
**说明:**
|
**说明:**
|
||||||
|
|
Loading…
Reference in New Issue