linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
To: Linus Walleij <linus.walleij-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org>
Cc: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
	Linus Walleij
	<linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Subject: Re: [PATCH 3/4] spi/pl022: strengthen FIFO watermark level checks
Date: Thu, 16 Jun 2011 08:27:35 -0600	[thread overview]
Message-ID: <20110616142735.GC2255@ponder.secretlab.ca> (raw)
In-Reply-To: <1308212086-22553-1-git-send-email-linus.walleij-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org>

On Thu, Jun 16, 2011 at 10:14:46AM +0200, Linus Walleij wrote:
> From: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
> 
> The platform configuration can select custom FIFO watermarks, but
> these may conflict the actual FIFO size of the PL022 variant if
> set too high. So strengthen the sanity checks to deny any
> conflicting settings.
> 
> Signed-off-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

Applied, thanks.

g.

> ---
>  drivers/spi/spi-pl022.c |   48 +++++++++++++++++++++++++++++++++++++++++++---
>  1 files changed, 44 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/spi/spi-pl022.c b/drivers/spi/spi-pl022.c
> index 48fa8b0..eba88c7 100644
> --- a/drivers/spi/spi-pl022.c
> +++ b/drivers/spi/spi-pl022.c
> @@ -1678,17 +1678,57 @@ static int verify_controller_parameters(struct pl022 *pl022,
>  			"Communication mode is configured incorrectly\n");
>  		return -EINVAL;
>  	}
> -	if ((chip_info->rx_lev_trig < SSP_RX_1_OR_MORE_ELEM)
> -	    || (chip_info->rx_lev_trig > SSP_RX_32_OR_MORE_ELEM)) {
> +	switch (chip_info->rx_lev_trig) {
> +	case SSP_RX_1_OR_MORE_ELEM:
> +	case SSP_RX_4_OR_MORE_ELEM:
> +	case SSP_RX_8_OR_MORE_ELEM:
> +		/* These are always OK, all variants can handle this */
> +		break;
> +	case SSP_RX_16_OR_MORE_ELEM:
> +		if (pl022->vendor->fifodepth < 16) {
> +			dev_err(&pl022->adev->dev,
> +			"RX FIFO Trigger Level is configured incorrectly\n");
> +			return -EINVAL;
> +		}
> +		break;
> +	case SSP_RX_32_OR_MORE_ELEM:
> +		if (pl022->vendor->fifodepth < 32) {
> +			dev_err(&pl022->adev->dev,
> +			"RX FIFO Trigger Level is configured incorrectly\n");
> +			return -EINVAL;
> +		}
> +		break;
> +	default:
>  		dev_err(&pl022->adev->dev,
>  			"RX FIFO Trigger Level is configured incorrectly\n");
>  		return -EINVAL;
> +		break;
>  	}
> -	if ((chip_info->tx_lev_trig < SSP_TX_1_OR_MORE_EMPTY_LOC)
> -	    || (chip_info->tx_lev_trig > SSP_TX_32_OR_MORE_EMPTY_LOC)) {
> +	switch (chip_info->tx_lev_trig) {
> +	case SSP_TX_1_OR_MORE_EMPTY_LOC:
> +	case SSP_TX_4_OR_MORE_EMPTY_LOC:
> +	case SSP_TX_8_OR_MORE_EMPTY_LOC:
> +		/* These are always OK, all variants can handle this */
> +		break;
> +	case SSP_TX_16_OR_MORE_EMPTY_LOC:
> +		if (pl022->vendor->fifodepth < 16) {
> +			dev_err(&pl022->adev->dev,
> +			"TX FIFO Trigger Level is configured incorrectly\n");
> +			return -EINVAL;
> +		}
> +		break;
> +	case SSP_TX_32_OR_MORE_EMPTY_LOC:
> +		if (pl022->vendor->fifodepth < 32) {
> +			dev_err(&pl022->adev->dev,
> +			"TX FIFO Trigger Level is configured incorrectly\n");
> +			return -EINVAL;
> +		}
> +		break;
> +	default:
>  		dev_err(&pl022->adev->dev,
>  			"TX FIFO Trigger Level is configured incorrectly\n");
>  		return -EINVAL;
> +		break;
>  	}
>  	if (chip_info->iface == SSP_INTERFACE_NATIONAL_MICROWIRE) {
>  		if ((chip_info->ctrl_len < SSP_BITS_4)
> -- 
> 1.7.3.2
> 

------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev

      parent reply	other threads:[~2011-06-16 14:27 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-16  8:14 [PATCH 3/4] spi/pl022: strengthen FIFO watermark level checks Linus Walleij
     [not found] ` <1308212086-22553-1-git-send-email-linus.walleij-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org>
2011-06-16 14:27   ` 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=20110616142735.GC2255@ponder.secretlab.ca \
    --to=grant.likely-s3s/wqlpoipyb63q8fvjnq@public.gmane.org \
    --cc=lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=linus.walleij-0IS4wlFg1OjSUeElwK9/Pw@public.gmane.org \
    --cc=linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    /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).