linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 2/2] iio: adc: meson-saradc: improve meson_sar_adc_read_raw_sample
       [not found] <e6dbc777-25a9-15a1-a415-2a020b8e40f7@gmail.com>
@ 2017-02-15 19:31 ` Heiner Kallweit
  2017-02-19 12:19   ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Heiner Kallweit @ 2017-02-15 19:31 UTC (permalink / raw)
  To: Jonathan Cameron, Martin Blumenstingl
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio

After sampling there should always be only one value in the FIFO.
This also applies to averaging mode as the averaging is done
chip-internally. So we don't have to loop and let the driver
complain if there's not exactly one value in the FIFO.

If the value belongs to a different channel then don't silently
swallow the value but complain.

Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
---
v2:
- rebased
---
 drivers/iio/adc/meson_saradc.c | 36 +++++++++++++++++-------------------
 1 file changed, 17 insertions(+), 19 deletions(-)

diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c
index 9f186de2..cde9ca7a 100644
--- a/drivers/iio/adc/meson_saradc.c
+++ b/drivers/iio/adc/meson_saradc.c
@@ -278,33 +278,31 @@ static int meson_sar_adc_read_raw_sample(struct iio_dev *indio_dev,
 					 int *val)
 {
 	struct meson_sar_adc_priv *priv = iio_priv(indio_dev);
-	int regval, fifo_chan, fifo_val, sum = 0, count = 0;
+	int regval, fifo_chan, fifo_val, count;
 
 	if(!wait_for_completion_timeout(&priv->done,
 				msecs_to_jiffies(MESON_SAR_ADC_TIMEOUT)))
 		return -ETIMEDOUT;
 
-	while (meson_sar_adc_get_fifo_count(indio_dev) > 0 &&
-	       count < MESON_SAR_ADC_MAX_FIFO_SIZE) {
-		regmap_read(priv->regmap, MESON_SAR_ADC_FIFO_RD, &regval);
-
-		fifo_chan = FIELD_GET(MESON_SAR_ADC_FIFO_RD_CHAN_ID_MASK,
-				      regval);
-		if (fifo_chan != chan->channel)
-			continue;
-
-		fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK,
-				     regval);
-		fifo_val &= (BIT(priv->data->resolution) - 1);
-
-		sum += fifo_val;
-		count++;
+	count = meson_sar_adc_get_fifo_count(indio_dev);
+	if (count != 1) {
+		dev_err(&indio_dev->dev,
+			"ADC FIFO has %d element(s) instead of one\n", count);
+		return -EINVAL;
 	}
 
-	if (!count)
-		return -ENOENT;
+	regmap_read(priv->regmap, MESON_SAR_ADC_FIFO_RD, &regval);
+	fifo_chan = FIELD_GET(MESON_SAR_ADC_FIFO_RD_CHAN_ID_MASK, regval);
+	if (fifo_chan != chan->channel) {
+		dev_err(&indio_dev->dev,
+			"ADC FIFO entry belongs to channel %d instead of %d\n",
+			fifo_chan, chan->channel);
+		return -EINVAL;
+	}
 
-	*val = sum / count;
+	fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK, regval);
+	fifo_val &= GENMASK(priv->data->resolution - 1, 0);
+	*val = fifo_val;
 
 	return 0;
 }
-- 
2.11.1



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

* Re: [PATCH v2 2/2] iio: adc: meson-saradc: improve meson_sar_adc_read_raw_sample
  2017-02-15 19:31 ` [PATCH v2 2/2] iio: adc: meson-saradc: improve meson_sar_adc_read_raw_sample Heiner Kallweit
@ 2017-02-19 12:19   ` Jonathan Cameron
  2017-02-19 12:53     ` Jonathan Cameron
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Cameron @ 2017-02-19 12:19 UTC (permalink / raw)
  To: Heiner Kallweit, Martin Blumenstingl
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio

On 15/02/17 19:31, Heiner Kallweit wrote:
> After sampling there should always be only one value in the FIFO.
> This also applies to averaging mode as the averaging is done
> chip-internally. So we don't have to loop and let the driver
> complain if there's not exactly one value in the FIFO.
> 
> If the value belongs to a different channel then don't silently
> swallow the value but complain.
> 
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
> Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Will pick up once Martin is happy with patch 1.  Give me a poke if I
seem to have missed this after say a week.

Jonathan
> ---
> v2:
> - rebased
> ---
>  drivers/iio/adc/meson_saradc.c | 36 +++++++++++++++++-------------------
>  1 file changed, 17 insertions(+), 19 deletions(-)
> 
> diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c
> index 9f186de2..cde9ca7a 100644
> --- a/drivers/iio/adc/meson_saradc.c
> +++ b/drivers/iio/adc/meson_saradc.c
> @@ -278,33 +278,31 @@ static int meson_sar_adc_read_raw_sample(struct iio_dev *indio_dev,
>  					 int *val)
>  {
>  	struct meson_sar_adc_priv *priv = iio_priv(indio_dev);
> -	int regval, fifo_chan, fifo_val, sum = 0, count = 0;
> +	int regval, fifo_chan, fifo_val, count;
>  
>  	if(!wait_for_completion_timeout(&priv->done,
>  				msecs_to_jiffies(MESON_SAR_ADC_TIMEOUT)))
>  		return -ETIMEDOUT;
>  
> -	while (meson_sar_adc_get_fifo_count(indio_dev) > 0 &&
> -	       count < MESON_SAR_ADC_MAX_FIFO_SIZE) {
> -		regmap_read(priv->regmap, MESON_SAR_ADC_FIFO_RD, &regval);
> -
> -		fifo_chan = FIELD_GET(MESON_SAR_ADC_FIFO_RD_CHAN_ID_MASK,
> -				      regval);
> -		if (fifo_chan != chan->channel)
> -			continue;
> -
> -		fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK,
> -				     regval);
> -		fifo_val &= (BIT(priv->data->resolution) - 1);
> -
> -		sum += fifo_val;
> -		count++;
> +	count = meson_sar_adc_get_fifo_count(indio_dev);
> +	if (count != 1) {
> +		dev_err(&indio_dev->dev,
> +			"ADC FIFO has %d element(s) instead of one\n", count);
> +		return -EINVAL;
>  	}
>  
> -	if (!count)
> -		return -ENOENT;
> +	regmap_read(priv->regmap, MESON_SAR_ADC_FIFO_RD, &regval);
> +	fifo_chan = FIELD_GET(MESON_SAR_ADC_FIFO_RD_CHAN_ID_MASK, regval);
> +	if (fifo_chan != chan->channel) {
> +		dev_err(&indio_dev->dev,
> +			"ADC FIFO entry belongs to channel %d instead of %d\n",
> +			fifo_chan, chan->channel);
> +		return -EINVAL;
> +	}
>  
> -	*val = sum / count;
> +	fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK, regval);
> +	fifo_val &= GENMASK(priv->data->resolution - 1, 0);
> +	*val = fifo_val;
>  
>  	return 0;
>  }
> 


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

* Re: [PATCH v2 2/2] iio: adc: meson-saradc: improve meson_sar_adc_read_raw_sample
  2017-02-19 12:19   ` Jonathan Cameron
@ 2017-02-19 12:53     ` Jonathan Cameron
  0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Cameron @ 2017-02-19 12:53 UTC (permalink / raw)
  To: Heiner Kallweit, Martin Blumenstingl
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio

On 19/02/17 12:19, Jonathan Cameron wrote:
> On 15/02/17 19:31, Heiner Kallweit wrote:
>> After sampling there should always be only one value in the FIFO.
>> This also applies to averaging mode as the averaging is done
>> chip-internally. So we don't have to loop and let the driver
>> complain if there's not exactly one value in the FIFO.
>>
>> If the value belongs to a different channel then don't silently
>> swallow the value but complain.
>>
>> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>> Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
> Will pick up once Martin is happy with patch 1.  Give me a poke if I
> seem to have missed this after say a week.
Applied to the togreg branch of iio.git and pushed out as testing for the
autobuilders to play with it.

Thanks,

Jonathan
> 
> Jonathan
>> ---
>> v2:
>> - rebased
>> ---
>>  drivers/iio/adc/meson_saradc.c | 36 +++++++++++++++++-------------------
>>  1 file changed, 17 insertions(+), 19 deletions(-)
>>
>> diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c
>> index 9f186de2..cde9ca7a 100644
>> --- a/drivers/iio/adc/meson_saradc.c
>> +++ b/drivers/iio/adc/meson_saradc.c
>> @@ -278,33 +278,31 @@ static int meson_sar_adc_read_raw_sample(struct iio_dev *indio_dev,
>>  					 int *val)
>>  {
>>  	struct meson_sar_adc_priv *priv = iio_priv(indio_dev);
>> -	int regval, fifo_chan, fifo_val, sum = 0, count = 0;
>> +	int regval, fifo_chan, fifo_val, count;
>>  
>>  	if(!wait_for_completion_timeout(&priv->done,
>>  				msecs_to_jiffies(MESON_SAR_ADC_TIMEOUT)))
>>  		return -ETIMEDOUT;
>>  
>> -	while (meson_sar_adc_get_fifo_count(indio_dev) > 0 &&
>> -	       count < MESON_SAR_ADC_MAX_FIFO_SIZE) {
>> -		regmap_read(priv->regmap, MESON_SAR_ADC_FIFO_RD, &regval);
>> -
>> -		fifo_chan = FIELD_GET(MESON_SAR_ADC_FIFO_RD_CHAN_ID_MASK,
>> -				      regval);
>> -		if (fifo_chan != chan->channel)
>> -			continue;
>> -
>> -		fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK,
>> -				     regval);
>> -		fifo_val &= (BIT(priv->data->resolution) - 1);
>> -
>> -		sum += fifo_val;
>> -		count++;
>> +	count = meson_sar_adc_get_fifo_count(indio_dev);
>> +	if (count != 1) {
>> +		dev_err(&indio_dev->dev,
>> +			"ADC FIFO has %d element(s) instead of one\n", count);
>> +		return -EINVAL;
>>  	}
>>  
>> -	if (!count)
>> -		return -ENOENT;
>> +	regmap_read(priv->regmap, MESON_SAR_ADC_FIFO_RD, &regval);
>> +	fifo_chan = FIELD_GET(MESON_SAR_ADC_FIFO_RD_CHAN_ID_MASK, regval);
>> +	if (fifo_chan != chan->channel) {
>> +		dev_err(&indio_dev->dev,
>> +			"ADC FIFO entry belongs to channel %d instead of %d\n",
>> +			fifo_chan, chan->channel);
>> +		return -EINVAL;
>> +	}
>>  
>> -	*val = sum / count;
>> +	fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK, regval);
>> +	fifo_val &= GENMASK(priv->data->resolution - 1, 0);
>> +	*val = fifo_val;
>>  
>>  	return 0;
>>  }
>>
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


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

end of thread, other threads:[~2017-02-19 12:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <e6dbc777-25a9-15a1-a415-2a020b8e40f7@gmail.com>
2017-02-15 19:31 ` [PATCH v2 2/2] iio: adc: meson-saradc: improve meson_sar_adc_read_raw_sample Heiner Kallweit
2017-02-19 12:19   ` Jonathan Cameron
2017-02-19 12:53     ` Jonathan Cameron

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).