diff mbox series

i2c: designware: must wait for enable

Message ID 1518622192-19700-1-git-send-email-gardner.ben@gmail.com
State Accepted
Headers show
Series i2c: designware: must wait for enable | expand

Commit Message

Ben Gardner Feb. 14, 2018, 3:29 p.m. UTC
One I2C bus on my Atom E3845 board has been broken since 4.9.
It has two devices, both declared by ACPI and with built-in drivers.

There are two back-to-back transactions originating from the kernel, one
targeting each device. The first transaction works, the second one locks
up the I2C controller. The controller never recovers.

These kernel logs show up whenever an I2C transaction is attempted after
this failure.
i2c-designware-pci 0000:00:18.3: timeout in disabling adapter
i2c-designware-pci 0000:00:18.3: timeout waiting for bus ready

Waiting for the I2C controller status to indicate that it is enabled
before programming it fixes the issue.

I have tested this patch on 4.14 and 4.15.

Fixes: commit 2702ea7dbec5 ("i2c: designware: wait for disable/enable only if necessary")
Cc: linux-stable <stable@vger.kernel.org> #4.13+
Cc: José Roberto de Souza <jose.souza@intel.com>
Signed-off-by: Ben Gardner <gardner.ben@gmail.com>
---
 drivers/i2c/busses/i2c-designware-master.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jarkko Nikula Feb. 15, 2018, 11:06 a.m. UTC | #1
On 02/14/2018 05:29 PM, Ben Gardner wrote:
> One I2C bus on my Atom E3845 board has been broken since 4.9.
> It has two devices, both declared by ACPI and with built-in drivers.
> 
> There are two back-to-back transactions originating from the kernel, one
> targeting each device. The first transaction works, the second one locks
> up the I2C controller. The controller never recovers.
> 
> These kernel logs show up whenever an I2C transaction is attempted after
> this failure.
> i2c-designware-pci 0000:00:18.3: timeout in disabling adapter
> i2c-designware-pci 0000:00:18.3: timeout waiting for bus ready
> 
> Waiting for the I2C controller status to indicate that it is enabled
> before programming it fixes the issue.
> 
> I have tested this patch on 4.14 and 4.15.
> 
> Fixes: commit 2702ea7dbec5 ("i2c: designware: wait for disable/enable only if necessary")
> Cc: linux-stable <stable@vger.kernel.org> #4.13+
> Cc: José Roberto de Souza <jose.souza@intel.com>
> Signed-off-by: Ben Gardner <gardner.ben@gmail.com>
> ---
>   drivers/i2c/busses/i2c-designware-master.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/i2c/busses/i2c-designware-master.c b/drivers/i2c/busses/i2c-designware-master.c
> index ae69188..55926ef 100644
> --- a/drivers/i2c/busses/i2c-designware-master.c
> +++ b/drivers/i2c/busses/i2c-designware-master.c
> @@ -209,7 +209,7 @@ static void i2c_dw_xfer_init(struct dw_i2c_dev *dev)
>   	i2c_dw_disable_int(dev);
>   
>   	/* Enable the adapter */
> -	__i2c_dw_enable(dev, true);
> +	__i2c_dw_enable_and_wait(dev, true);
>   
I believe this conversion was missing from commit 2702ea7dbec5 and 
regression is better to fix this way than reverting. We'll provide 
similar fix for for v4.9..v4.12. Code have had changes and renaming.

Acked-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Souza, Jose Feb. 21, 2018, 1:14 a.m. UTC | #2
LGTM

On Wed, 2018-02-14 at 09:29 -0600, Ben Gardner wrote:
> One I2C bus on my Atom E3845 board has been broken since 4.9.

> It has two devices, both declared by ACPI and with built-in drivers.

> 

> There are two back-to-back transactions originating from the kernel,

> one

> targeting each device. The first transaction works, the second one

> locks

> up the I2C controller. The controller never recovers.

> 

> These kernel logs show up whenever an I2C transaction is attempted

> after

> this failure.

> i2c-designware-pci 0000:00:18.3: timeout in disabling adapter

> i2c-designware-pci 0000:00:18.3: timeout waiting for bus ready

> 

> Waiting for the I2C controller status to indicate that it is enabled

> before programming it fixes the issue.

> 

> I have tested this patch on 4.14 and 4.15.

> 

> Fixes: commit 2702ea7dbec5 ("i2c: designware: wait for disable/enable

> only if necessary")

> Cc: linux-stable <stable@vger.kernel.org> #4.13+

> Cc: José Roberto de Souza <jose.souza@intel.com>


Reviewed-by: José Roberto de Souza <jose.souza@intel.com>


> Signed-off-by: Ben Gardner <gardner.ben@gmail.com>

> ---

>  drivers/i2c/busses/i2c-designware-master.c | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)

> 

> diff --git a/drivers/i2c/busses/i2c-designware-master.c

> b/drivers/i2c/busses/i2c-designware-master.c

> index ae69188..55926ef 100644

> --- a/drivers/i2c/busses/i2c-designware-master.c

> +++ b/drivers/i2c/busses/i2c-designware-master.c

> @@ -209,7 +209,7 @@ static void i2c_dw_xfer_init(struct dw_i2c_dev

> *dev)

>  	i2c_dw_disable_int(dev);

>  

>  	/* Enable the adapter */

> -	__i2c_dw_enable(dev, true);

> +	__i2c_dw_enable_and_wait(dev, true);

>  

>  	/* Clear and enable interrupts */

>  	dw_readl(dev, DW_IC_CLR_INTR);
Wolfram Sang Feb. 21, 2018, 8:16 a.m. UTC | #3
On Wed, Feb 14, 2018 at 09:29:52AM -0600, Ben Gardner wrote:
> One I2C bus on my Atom E3845 board has been broken since 4.9.
> It has two devices, both declared by ACPI and with built-in drivers.
> 
> There are two back-to-back transactions originating from the kernel, one
> targeting each device. The first transaction works, the second one locks
> up the I2C controller. The controller never recovers.
> 
> These kernel logs show up whenever an I2C transaction is attempted after
> this failure.
> i2c-designware-pci 0000:00:18.3: timeout in disabling adapter
> i2c-designware-pci 0000:00:18.3: timeout waiting for bus ready
> 
> Waiting for the I2C controller status to indicate that it is enabled
> before programming it fixes the issue.
> 
> I have tested this patch on 4.14 and 4.15.
> 
> Fixes: commit 2702ea7dbec5 ("i2c: designware: wait for disable/enable only if necessary")
> Cc: linux-stable <stable@vger.kernel.org> #4.13+
> Cc: José Roberto de Souza <jose.souza@intel.com>
> Signed-off-by: Ben Gardner <gardner.ben@gmail.com>

Applied to for-current, thanks!
diff mbox series

Patch

diff --git a/drivers/i2c/busses/i2c-designware-master.c b/drivers/i2c/busses/i2c-designware-master.c
index ae69188..55926ef 100644
--- a/drivers/i2c/busses/i2c-designware-master.c
+++ b/drivers/i2c/busses/i2c-designware-master.c
@@ -209,7 +209,7 @@  static void i2c_dw_xfer_init(struct dw_i2c_dev *dev)
 	i2c_dw_disable_int(dev);
 
 	/* Enable the adapter */
-	__i2c_dw_enable(dev, true);
+	__i2c_dw_enable_and_wait(dev, true);
 
 	/* Clear and enable interrupts */
 	dw_readl(dev, DW_IC_CLR_INTR);