From: Jonathan Cameron <jic23@kernel.org>
To: Alexandru Ardelean <alexandru.ardelean@analog.com>
Cc: <linux-iio@vger.kernel.org>, <Michael.Hennerich@analog.com>,
<lars@metafoo.de>, <knaack.h@gmx.de>, <pmeerw@pmeerw.net>
Subject: Re: [PATCH V2] staging:iio:ad7606: fix voltage scales
Date: Sun, 16 Sep 2018 12:12:02 +0100 [thread overview]
Message-ID: <20180916121202.547a8d41@archlinux> (raw)
In-Reply-To: <20180913084409.5986-1-alexandru.ardelean@analog.com>
On Thu, 13 Sep 2018 11:44:09 +0300
Alexandru Ardelean <alexandru.ardelean@analog.com> wrote:
> Fixes commit 17be2a2905a6ec9aa27cd59521495e2f490d2af0 ("staging: iio:
> ad7606: replace range/range_available with corresponding scale").
>
> The AD7606 devices don't have a 2.5V voltage range, they have 5V & 10V
> voltage range, which is selectable via the `gpio_range` descriptor.
>
> The scales also seem to have been miscomputed, because when they were
> applied to the raw values, the results differ from the expected values.
> After checking the ADC transfer function in the datasheet, these were
> re-computed.
>
> Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com>
On thing inline.
Applied to the togreg branch of iio.git and pushed out as testing for
the autobuilders to play with it.
Thanks,
Jonathan
> ---
>
> Changelog V1 -> V2:
> * changed 2.5/2**16 and 5/2**16 -> 5000/32768 and 10000/32768, because
> my computation of 32768 in power of 2 is also wrong; it's 2**15, not 2**16
> and the datasheet mentions 32768, so use that value
>
> drivers/staging/iio/adc/ad7606.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/staging/iio/adc/ad7606.c b/drivers/staging/iio/adc/ad7606.c
> index c5fe3003075b..87d5fb073c95 100644
> --- a/drivers/staging/iio/adc/ad7606.c
> +++ b/drivers/staging/iio/adc/ad7606.c
> @@ -26,9 +26,11 @@
>
> #include "ad7606.h"
>
> -/* Scales are computed as 2.5/2**16 and 5/2**16 respectively */
This isn't a kernel comment style. I'll fix up.
> +/* Scales are computed as 5000/32768 and 10000/32768 respectively,
> + * so that when applied to the raw values they provide mV values
> + */
> static const unsigned int scale_avail[2][2] = {
> - {0, 38147}, {0, 76294}
> + {0, 152588}, {0, 305176}
> };
>
> static int ad7606_reset(struct ad7606_state *st)
prev parent reply other threads:[~2018-09-16 16:34 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-13 8:44 [PATCH V2] staging:iio:ad7606: fix voltage scales Alexandru Ardelean
2018-09-16 11:12 ` Jonathan Cameron [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=20180916121202.547a8d41@archlinux \
--to=jic23@kernel.org \
--cc=Michael.Hennerich@analog.com \
--cc=alexandru.ardelean@analog.com \
--cc=knaack.h@gmx.de \
--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.