gpiof: gpio@50007000 { interrupt-controller; #interrupt-cells = <2>; reg = <0x50007000 0x400>; clocks = <&rcc GPIOF>; st,bank-name = "GPIOF"; status = "disabled"; }; }; #interrupt-cells = <2>; 这个子节点怎么设置
时间: 2023-06-20 22:04:05 浏览: 109
stm32l0 reference manual
这是一个中断控制器的节点,它的 #interrupt-cells 属性应该设置为 2,因为它处理的是两个中断参数。同时,它的 reg 属性指定了该节点在设备树上的地址和大小。clocks 属性指定了该节点所需的时钟源,st,bank-name 属性指定了该 GPIO 的名称,status 属性指定了该节点当前的状态是否启用("disabled"表示未启用)。你可以根据实际情况来修改这些属性。
阅读全文