linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Grant Likely <grant.likely@secretlab.ca>
To: Michael Jones <michael.jones@matrix-vision.de>
Cc: linux-omap@vger.kernel.org, spi-devel-general@lists.sourceforge.net
Subject: Re: [PATCH] OMAP: McSPI: catch xfers of non-multiple SPI word size
Date: Fri, 4 Mar 2011 22:26:06 -0700	[thread overview]
Message-ID: <20110305052606.GL7579@angua.secretlab.ca> (raw)
In-Reply-To: <1298649311-9201-1-git-send-email-michael.jones@matrix-vision.de>

On Fri, Feb 25, 2011 at 04:55:11PM +0100, Michael Jones wrote:
> If an SPI access was not a multiple of the SPI word size,
> the while() loop would spin and the rx/tx ptrs would be incremented
> indefinitely.
> 
> Signed-off-by: Michael Jones <michael.jones@matrix-vision.de>

Applied, thanks.

g.

> ---
>  drivers/spi/omap2_mcspi.c |    9 ++++++---
>  1 files changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/spi/omap2_mcspi.c b/drivers/spi/omap2_mcspi.c
> index abb1ffb..9e439be 100644
> --- a/drivers/spi/omap2_mcspi.c
> +++ b/drivers/spi/omap2_mcspi.c
> @@ -487,6 +487,9 @@ omap2_mcspi_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
>  	rx_reg		= base + OMAP2_MCSPI_RX0;
>  	chstat_reg	= base + OMAP2_MCSPI_CHSTAT0;
>  
> +	if (c < (word_len>>3))
> +		return 0;
> +
>  	if (word_len <= 8) {
>  		u8		*rx;
>  		const u8	*tx;
> @@ -534,7 +537,7 @@ omap2_mcspi_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
>  				dev_vdbg(&spi->dev, "read-%d %02x\n",
>  						word_len, *(rx - 1));
>  			}
> -		} while (c);
> +		} while (c > (word_len>>3));
>  	} else if (word_len <= 16) {
>  		u16		*rx;
>  		const u16	*tx;
> @@ -581,7 +584,7 @@ omap2_mcspi_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
>  				dev_vdbg(&spi->dev, "read-%d %04x\n",
>  						word_len, *(rx - 1));
>  			}
> -		} while (c);
> +		} while (c > (word_len>>3));
>  	} else if (word_len <= 32) {
>  		u32		*rx;
>  		const u32	*tx;
> @@ -628,7 +631,7 @@ omap2_mcspi_txrx_pio(struct spi_device *spi, struct spi_transfer *xfer)
>  				dev_vdbg(&spi->dev, "read-%d %08x\n",
>  						word_len, *(rx - 1));
>  			}
> -		} while (c);
> +		} while (c > (word_len>>3));
>  	}
>  
>  	/* for TX_ONLY mode, be sure all words have shifted out */
> -- 
> 1.7.4.1
> 
> 
> MATRIX VISION GmbH, Talstrasse 16, DE-71570 Oppenweiler
> Registergericht: Amtsgericht Stuttgart, HRB 271090
> Geschaeftsfuehrer: Gerhard Thullner, Werner Armingeon, Uwe Furtner
> 
> ------------------------------------------------------------------------------
> Free Software Download: Index, Search & Analyze Logs and other IT data in 
> Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
> generated by your applications, servers and devices whether physical, virtual
> or in the cloud. Deliver compliance at lower cost and gain new business 
> insights. http://p.sf.net/sfu/splunk-dev2dev 
> _______________________________________________
> spi-devel-general mailing list
> spi-devel-general@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/spi-devel-general

      reply	other threads:[~2011-03-05  5:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-25 15:55 [PATCH] OMAP: McSPI: catch xfers of non-multiple SPI word size Michael Jones
2011-03-05  5:26 ` Grant Likely [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110305052606.GL7579@angua.secretlab.ca \
    --to=grant.likely@secretlab.ca \
    --cc=linux-omap@vger.kernel.org \
    --cc=michael.jones@matrix-vision.de \
    --cc=spi-devel-general@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).