[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20100908160034.GB3686@angua.secretlab.ca>
Date: Wed, 8 Sep 2010 10:00:34 -0600
From: Grant Likely <grant.likely@...retlab.ca>
To: Jassi Brar <jassisinghbrar@...il.com>
Cc: Mark Brown <broonie@...nsource.wolfsonmicro.com>,
David Brownell <dbrownell@...rs.sourceforge.net>,
Jassi Brar <jassi.brar@...sung.com>,
spi-devel-general@...ts.sourceforge.net,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 2/2] spi/spi_s3c64xx: Increase dead reckoning time in
wait_for_xfer()
On Wed, Sep 08, 2010 at 10:44:26AM +0900, Jassi Brar wrote:
> On Wed, Sep 8, 2010 at 12:37 AM, Mark Brown
> <broonie@...nsource.wolfsonmicro.com> wrote:
> > For small transfers at high speeds the expected transfer time can easily
> > be well under 1ms, causing the delay in wait_for_xfer() to be only the
> > dead reckoning fudge factor of 5ms currently included. Experiments on
> > some of my systems shows that this is marginal for some transfers so
> > double it to 10ms.
> >
> > Signed-off-by: Mark Brown <broonie@...nsource.wolfsonmicro.com>
> > ---
> > drivers/spi/spi_s3c64xx.c | 2 +-
> > 1 files changed, 1 insertions(+), 1 deletions(-)
> >
> > diff --git a/drivers/spi/spi_s3c64xx.c b/drivers/spi/spi_s3c64xx.c
> > index 03b28e4..4abb441 100644
> > --- a/drivers/spi/spi_s3c64xx.c
> > +++ b/drivers/spi/spi_s3c64xx.c
> > @@ -326,7 +326,7 @@ static int wait_for_xfer(struct s3c64xx_spi_driver_data *sdd,
> >
> > /* millisecs to xfer 'len' bytes @ 'cur_speed' */
> > ms = xfer->len * 8 * 1000 / sdd->cur_speed;
> > - ms += 5; /* some tolerance */
> > + ms += 10; /* some tolerance */
> >
> > if (dma_mode) {
> > val = msecs_to_jiffies(ms) + 10;
>
> Acked-by: Jassi Brar <jassi.brar@...sung.com>
Applied, thanks.
g.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists