All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] i2c: designware: fix race between subsequent xfers
@ 2013-06-06 13:43 ` Christian Ruppert
  0 siblings, 0 replies; 31+ messages in thread
From: Christian Ruppert @ 2013-06-06 13:43 UTC (permalink / raw)
  To: Wolfram Sang, Mika Westerberg
  Cc: Jean Delvare, Pierrick Hascoet, Christian Ruppert,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA

The designware block is not always properly disabled in the case of
transfer errors. Interrupts from aborted transfers might be handled
after the data structures for the following transfer are initialised but
before the hardware is set up. This might corrupt the data structures to
the point that the system is stuck in an infinite interrupt loop (where
FIFOs are never emptied).
This patch cleanly disables the designware-i2c hardware at the end of
every transfer, successful or not.

Signed-off-by: Christian Ruppert <christian.ruppert-ux6zf3SgZrrQT0dZR+AlfA@public.gmane.org>
---
 drivers/i2c/busses/i2c-designware-core.c |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/drivers/i2c/busses/i2c-designware-core.c b/drivers/i2c/busses/i2c-designware-core.c
index 6c0e776..65c0c7a 100644
--- a/drivers/i2c/busses/i2c-designware-core.c
+++ b/drivers/i2c/busses/i2c-designware-core.c
@@ -588,10 +588,20 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
 	ret = wait_for_completion_interruptible_timeout(&dev->cmd_complete, HZ);
 	if (ret == 0) {
 		dev_err(dev->dev, "controller timed out\n");
+		/* i2c_dw_init implicitly disables the adapter */
 		i2c_dw_init(dev);
 		ret = -ETIMEDOUT;
 		goto done;
-	} else if (ret < 0)
+	}
+
+	/*
+	 * We must disable the adapter before unlocking the &dev->lock mutex
+	 * below. Otherwise the hardware might continue generating interrupts
+	 * which in turn causes a race condition with the following transfer.
+	 */
+	__i2c_dw_enable(dev, false);
+
+	if (ret < 0)
 		goto done;
 
 	if (dev->msg_err) {
@@ -601,8 +611,6 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
 
 	/* no error */
 	if (likely(!dev->cmd_err)) {
-		/* Disable the adapter */
-		__i2c_dw_enable(dev, false);
 		ret = num;
 		goto done;
 	}
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 31+ messages in thread

end of thread, other threads:[~2013-06-17  9:02 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-06 13:43 [PATCH 1/2] i2c: designware: fix race between subsequent xfers Christian Ruppert
2013-06-06 13:43 ` Christian Ruppert
     [not found] ` <1370526216-10060-1-git-send-email-christian.ruppert-ux6zf3SgZrrQT0dZR+AlfA@public.gmane.org>
2013-06-06 13:43   ` [PATCH 2/2] i2c: designware: make i2c xfers non-interruptible Christian Ruppert
2013-06-06 13:43     ` Christian Ruppert
     [not found]     ` <1370526216-10060-2-git-send-email-christian.ruppert-ux6zf3SgZrrQT0dZR+AlfA@public.gmane.org>
2013-06-07  5:25       ` Mika Westerberg
2013-06-07  5:25         ` Mika Westerberg
     [not found]         ` <20130607052555.GC11878-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2013-06-07  7:55           ` Christian Ruppert
2013-06-07  7:55             ` Christian Ruppert
2013-06-07  5:23   ` [PATCH 1/2] i2c: designware: fix race between subsequent xfers Mika Westerberg
2013-06-07  5:23     ` Mika Westerberg
     [not found]     ` <20130607052353.GB11878-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2013-06-07  8:16       ` Christian Ruppert
2013-06-07  8:16         ` Christian Ruppert
2013-06-07  8:51 ` [PATCH V2] " Christian Ruppert
     [not found]   ` <1370595083-801-1-git-send-email-christian.ruppert-ux6zf3SgZrrQT0dZR+AlfA@public.gmane.org>
2013-06-07  9:19     ` Andy Shevchenko
2013-06-07  9:19       ` Andy Shevchenko
     [not found]       ` <CAHp75VfwSTO7UoEGVpd7qdFVSFNYrBG6aXx1Oj8UAkgbmi=1XQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-06-07  9:30         ` [RFC PATCH] i2c-designware-core: disable adapter before fill dev structure Andy Shevchenko
     [not found]           ` <1370597401-22501-1-git-send-email-andriy.shevchenko-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2013-06-07 13:01             ` Christian Ruppert
     [not found]               ` <20130607130133.GH11875-7oYq3qWSd+k@public.gmane.org>
2013-06-11 18:40                 ` Wolfram Sang
2013-06-12  9:41                   ` Christian Ruppert
2013-06-13  8:16             ` Christian Ruppert
     [not found]               ` <20130613081621.GB19061-7oYq3qWSd+k@public.gmane.org>
2013-06-13  8:33                 ` Andy Shevchenko
2013-06-13  8:58                   ` Christian Ruppert
2013-06-14 14:37     ` [PATCH V2] i2c: designware: fix race between subsequent xfers Wolfram Sang
2013-06-14 14:37       ` Wolfram Sang
2013-06-17  8:19       ` Christian Ruppert
2013-06-17  8:19         ` Christian Ruppert
     [not found]         ` <20130617081931.GB19380-7oYq3qWSd+k@public.gmane.org>
2013-06-17  8:33           ` Jean Delvare
2013-06-17  8:33             ` Jean Delvare
     [not found]             ` <20130617103336.354022c2-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
2013-06-17  9:01               ` Christian Ruppert
2013-06-17  9:01                 ` Christian Ruppert
2013-06-17  8:34       ` Mika Westerberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.