From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Dooks Subject: Re: [PATCH] i2c-bfin-twi: handle faulty slave devices better Date: Sun, 9 May 2010 12:34:20 +0100 Message-ID: <20100509113420.GB2589@trinity.fluff.org> References: <1273403087-3326-1-git-send-email-vapier@gentoo.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <1273403087-3326-1-git-send-email-vapier@gentoo.org> Sender: linux-kernel-owner@vger.kernel.org To: Mike Frysinger Cc: linux-i2c@vger.kernel.org, Ben Dooks , linux-kernel@vger.kernel.org, Andrew Morton , uclinux-dist-devel@blackfin.uclinux.org, Michael Hennerich List-Id: linux-i2c@vger.kernel.org On Sun, May 09, 2010 at 07:04:47AM -0400, Mike Frysinger wrote: > From: Michael Hennerich > > Faulty slave devices might drive SDA low after a transfer finishes. So, > when this scenario is detected, have the master generate up to 8 extra > clocks until the SDA is properly released. > > Signed-off-by: Michael Hennerich > Signed-off-by: Mike Frysinger > --- > Note: this requires the existing Blackfin TWI patches already sent out hmm, it is late in the -rc series for anything other than critical bugfixes, will update series tomorrow. > drivers/i2c/busses/i2c-bfin-twi.c | 22 ++++++++++++++++++++++ > 1 files changed, 22 insertions(+), 0 deletions(-) > > diff --git a/drivers/i2c/busses/i2c-bfin-twi.c b/drivers/i2c/busses/i2c-bfin-twi.c > index fb26e5c..f9c05e1 100644 > --- a/drivers/i2c/busses/i2c-bfin-twi.c > +++ b/drivers/i2c/busses/i2c-bfin-twi.c > @@ -20,6 +20,7 @@ > #include > #include > #include > +#include > > #include > #include > @@ -159,6 +160,27 @@ static void bfin_twi_handle_interrupt(struct bfin_twi_iface *iface, > if (mast_stat & BUFWRERR) > dev_dbg(&iface->adap.dev, "Buffer Write Error\n"); > > + /* Faulty salve devices, may drive SDA low after a transfer spello: slave > + * finishes. To release the bus this code generates up to 8 > + * extra clocks until SDA is released. > + */ > + > + if (read_MASTER_STAT(iface) & SDASEN) { > + int cnt = 8; > + do { > + write_MASTER_CTL(iface, SCLOVR); > + udelay(6); > + write_MASTER_CTL(iface, 0); > + udelay(6); > + } while ((read_MASTER_STAT(iface) & SDASEN) && cnt--); > + > + write_MASTER_CTL(iface, SDAOVR | SCLOVR); > + udelay(6); > + write_MASTER_CTL(iface, SDAOVR); > + udelay(6); > + write_MASTER_CTL(iface, 0); > + } > + > /* If it is a quick transfer, only address without data, > * not an err, return 1. > */ > -- > 1.7.1 > -- -- Ben Q: What's a light-year? A: One-third less calories than a regular year.