Skip to content

Commit fbffee7

Browse files
Kalyan Kinthadagclement
authored andcommitted
ARM: dts: Fix I2C repeated start issue on Armada-38x
All the Armada 38x(380, 385, 388) have a silicon issue in the I2C controller which violates the I2C repeated start timing (errata FE-8471889). i2c-mv64xxx driver handles this errata based on the compatible string "marvell,mv78230-a0-i2c". This patch activates the "marvell,mv78230-a0-i2c" compatible string for the I2C controller on armada-38x SoC based devices. Signed-off-by: Kalyan Kinthada <kalyan.kinthada@alliedtelesis.co.nz> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
1 parent 98f7d57 commit fbffee7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/arm/boot/dts/armada-38x.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
};
179179

180180
i2c0: i2c@11000 {
181-
compatible = "marvell,mv64xxx-i2c";
181+
compatible = "marvell,mv78230-a0-i2c", "marvell,mv64xxx-i2c";
182182
reg = <0x11000 0x20>;
183183
#address-cells = <1>;
184184
#size-cells = <0>;
@@ -189,7 +189,7 @@
189189
};
190190

191191
i2c1: i2c@11100 {
192-
compatible = "marvell,mv64xxx-i2c";
192+
compatible = "marvell,mv78230-a0-i2c", "marvell,mv64xxx-i2c";
193193
reg = <0x11100 0x20>;
194194
#address-cells = <1>;
195195
#size-cells = <0>;

0 commit comments

Comments
 (0)