diff options
| author | Rani Hod | 2025-11-27 23:43:13 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-11-28 08:47:39 +0000 |
| commit | cdf187f1e789b5f192440e3ecb89439242d36a44 (patch) | |
| tree | 935dc6b51bb9ee3620f809960e2567bf540e3bb2 | |
| parent | 9274e9a7337e109b73dbcf37493ac6a4472d6b7a (diff) | |
| download | openwrt-cdf187f1e789b5f192440e3ecb89439242d36a44.tar.gz | |
siflower: sf21 device tree fix
`i2c1` node was missing `resets`, so even when enabled, the driver would
not recognize it:
```
i2c_designware c101000.i2c: Unknown Synopsys component type: 0x00000000
```
With this fix, I2C pins on BPi-RV2 26-pin GPIO header are usable.
Signed-off-by: Rani Hod <rani.hod@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/20969
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | target/linux/siflower/dts/sf21.dtsi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/siflower/dts/sf21.dtsi b/target/linux/siflower/dts/sf21.dtsi index 40d87ad2e5..1488200a46 100644 --- a/target/linux/siflower/dts/sf21.dtsi +++ b/target/linux/siflower/dts/sf21.dtsi @@ -655,6 +655,7 @@ #size-cells = <0>; pinctrl-names = "default"; pinctrl-0 = <&i2c1_pins>; + resets = <&i2crst 1>; status = "disabled"; }; |