Skip to content

Commit

Permalink
arm64: dts: marvell: 98dx25xx: use correct property for i2c gpios
Browse files Browse the repository at this point in the history
Use the correct names for scl-gpios and sda-gpios so that the generic
i2c recovery code will find them. While we're here set the
GPIO_OPEN_DRAIN flag on the gpios.

Fixes: b795fad ("arm64: dts: marvell: Add Armada 98DX2530 SoC and RD-AC5X board")
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
  • Loading branch information
cpackham-atlnz authored and gclement committed Sep 2, 2022
1 parent 1a9f978 commit 2b14d38
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/arm64/boot/dts/marvell/ac5-98dx25xx.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@
pinctrl-names = "default", "gpio";
pinctrl-0 = <&i2c0_pins>;
pinctrl-1 = <&i2c0_gpio>;
scl_gpio = <&gpio0 26 GPIO_ACTIVE_HIGH>;
sda_gpio = <&gpio0 27 GPIO_ACTIVE_HIGH>;
scl-gpios = <&gpio0 26 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
sda-gpios = <&gpio0 27 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
status = "disabled";
};

Expand All @@ -166,8 +166,8 @@
pinctrl-names = "default", "gpio";
pinctrl-0 = <&i2c1_pins>;
pinctrl-1 = <&i2c1_gpio>;
scl_gpio = <&gpio0 20 GPIO_ACTIVE_HIGH>;
sda_gpio = <&gpio0 21 GPIO_ACTIVE_HIGH>;
scl-gpios = <&gpio0 20 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
sda-gpios = <&gpio0 21 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
status = "disabled";
};

Expand Down

0 comments on commit 2b14d38

Please sign in to comment.