All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wilfried Wessner <wilfried.wessner@gmail.com>
To: Lars-Peter Clausen <lars@metafoo.de>,
	Michael Hennerich <Michael.Hennerich@analog.com>,
	Jonathan Cameron <jic23@kernel.org>,
	Peter Meerwald-Stadler <pmeerw@pmeerw.net>
Cc: linux-iio@vger.kernel.org, Greg KH <gregkh@linuxfoundation.org>,
	Andy Shevchenko <andy.shevchenko@gmail.com>,
	Charles-Antoine Couret <charles-antoine.couret@essensium.com>
Subject: [PATCH v3] iio: ad7949: fix wrong ADC result due to incorrect bit mask
Date: Mon, 8 Feb 2021 15:27:05 +0100	[thread overview]
Message-ID: <20210208142705.GA51260@ubuntu> (raw)

Fixes a wrong bit mask used for the ADC's result, which was caused by an
improper usage of the GENMASK() macro. The bits higher than ADC's 
resolution are undefined and if not masked out correctly, a wrong result 
can be given. The GENMASK() macro indexing is zero based, so the mask has 
to go from [resolution - 1 , 0].

Fixes: 7f40e0614317f ("iio:adc:ad7949: Add AD7949 ADC driver family")

Signed-off-by: Wilfried Wessner <wilfried.wessner@gmail.com>

---

The issue was found in combination of an AD7682 ADC with an ARM based 
iMX7-CPU. The SPI line was analyzed with a logic analyzer and a 
discrepancy between applied voltage level and the ADC reported value 
in user space was observed. Digging into the driver code revealed an 
improper mask used for the ADC-result.


 drivers/iio/adc/ad7949.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/adc/ad7949.c b/drivers/iio/adc/ad7949.c
index 5d597e5050f6..1b4b3203e428 100644
--- a/drivers/iio/adc/ad7949.c
+++ b/drivers/iio/adc/ad7949.c
@@ -91,7 +91,7 @@ static int ad7949_spi_read_channel(struct ad7949_adc_chip *ad7949_adc, int *val,
 	int ret;
 	int i;
 	int bits_per_word = ad7949_adc->resolution;
-	int mask = GENMASK(ad7949_adc->resolution, 0);
+	int mask = GENMASK(ad7949_adc->resolution - 1, 0);
 	struct spi_message msg;
 	struct spi_transfer tx[] = {
 		{
-- 
2.25.1


             reply	other threads:[~2021-02-08 14:30 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-08 14:27 Wilfried Wessner [this message]
2021-02-08 16:06 ` [PATCH v3] iio: ad7949: fix wrong ADC result due to incorrect bit mask Andy Shevchenko
2021-02-11 18:42   ` Wilfried Wessner
2021-02-11 19:24     ` Andy Shevchenko
2021-02-12 19:04       ` Jonathan Cameron
2021-02-12 19:19         ` Wilfried Wessner
2021-02-09  8:44 ` Couret Charles-Antoine

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=20210208142705.GA51260@ubuntu \
    --to=wilfried.wessner@gmail.com \
    --cc=Michael.Hennerich@analog.com \
    --cc=andy.shevchenko@gmail.com \
    --cc=charles-antoine.couret@essensium.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jic23@kernel.org \
    --cc=lars@metafoo.de \
    --cc=linux-iio@vger.kernel.org \
    --cc=pmeerw@pmeerw.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.