From: "Liam Beguin" <liambeguin@gmail.com>
To: "Peter Rosin" <peda@axentia.se>, <jic23@kernel.org>,
<lars@metafoo.de>, <pmeerw@pmeerw.net>
Cc: <linux-kernel@vger.kernel.org>, <linux-iio@vger.kernel.org>,
<devicetree@vger.kernel.org>, <robh+dt@kernel.org>
Subject: Re: [PATCH v1 4/9] iio: afe: rescale: add offset support
Date: Mon, 31 May 2021 09:36:56 -0400 [thread overview]
Message-ID: <CBRGZCQWCG6S.676W3VCPMMUH@shaak> (raw)
In-Reply-To: <0769aaae-8925-d943-e57d-c787d560a8dc@axentia.se>
Hi Peter,
On Mon May 31, 2021 at 4:52 AM EDT, Peter Rosin wrote:
> Hi!
>
> Thanks for the patch!
>
> On 2021-05-30 02:59, Liam Beguin wrote:
> > From: Liam Beguin <lvb@xiphos.com>
> >
> > This is a preparatory change required for the addition of temperature
> > sensing front ends.
>
> I think this is too simplistic. I think that if the upstream iio-dev has
> an offset, it should be dealt with (i.e. be rescaled). The rescale
> driver
> cannot ignore such an upstream offset and then throw in some other
> unrelated offset of its own. That would be thoroughly confusing.
I'm not sure I fully understand. The upstream offset should be dealt
with when calling iio_read_channel_processed(). That was my main
motivation behind using the IIO core to get a processed value.
>
> Also, I see no reason of expose an offset channel if there is no offset.
You're right, I'll add conditions to only expose an offset when
required.
Liam
>
> Cheers,
> Peter
>
> > Signed-off-by: Liam Beguin <lvb@xiphos.com>
> > ---
> > drivers/iio/afe/iio-rescale.c | 12 ++++++++++--
> > 1 file changed, 10 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/iio/afe/iio-rescale.c b/drivers/iio/afe/iio-rescale.c
> > index 4d0813b274d1..3bd1f11f21db 100644
> > --- a/drivers/iio/afe/iio-rescale.c
> > +++ b/drivers/iio/afe/iio-rescale.c
> > @@ -31,6 +31,7 @@ struct rescale {
> > struct iio_chan_spec_ext_info *ext_info;
> > s32 numerator;
> > s32 denominator;
> > + s32 offset;
> > };
> >
> > static int rescale_read_raw(struct iio_dev *indio_dev,
> > @@ -52,6 +53,10 @@ static int rescale_read_raw(struct iio_dev *indio_dev,
> > *val2 = rescale->denominator;
> >
> > return IIO_VAL_FRACTIONAL;
> > + case IIO_CHAN_INFO_OFFSET:
> > + *val = rescale->offset;
> > +
> > + return IIO_VAL_INT;
> > default:
> > return -EINVAL;
> > }
> > @@ -119,8 +124,10 @@ static int rescale_configure_channel(struct device *dev,
> > return -EINVAL;
> > }
> >
> > - chan->info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
> > - BIT(IIO_CHAN_INFO_SCALE);
> > + chan->info_mask_separate =
> > + BIT(IIO_CHAN_INFO_RAW) |
> > + BIT(IIO_CHAN_INFO_SCALE) |
> > + BIT(IIO_CHAN_INFO_OFFSET);
> >
> > if (iio_channel_has_available(schan, IIO_CHAN_INFO_RAW))
> > chan->info_mask_separate_available |= BIT(IIO_CHAN_INFO_RAW);
> > @@ -280,6 +287,7 @@ static int rescale_probe(struct platform_device *pdev)
> > rescale->cfg = of_device_get_match_data(dev);
> > rescale->numerator = 1;
> > rescale->denominator = 1;
> > + rescale->offset = 0;
> >
> > ret = rescale->cfg->props(dev, rescale);
> > if (ret)
> >
next prev parent reply other threads:[~2021-05-31 14:00 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-30 0:59 [PATCH v1 0/9] iio: afe: add temperature rescaling support Liam Beguin
2021-05-30 0:59 ` [PATCH v1 1/9] iio: inkern: always apply scale requested by consumer Liam Beguin
2021-05-31 13:39 ` Peter Rosin
2021-05-30 0:59 ` [PATCH v1 2/9] iio: inkern: error out on unsupported offset type Liam Beguin
2021-05-31 9:45 ` Peter Rosin
2021-05-31 13:31 ` Liam Beguin
2021-05-30 0:59 ` [PATCH v1 3/9] iio: afe: rescale: use core to get processed value Liam Beguin
2021-05-31 7:09 ` Peter Rosin
2021-05-31 13:23 ` Liam Beguin
2021-06-01 16:22 ` Jonathan Cameron
2021-05-30 0:59 ` [PATCH v1 4/9] iio: afe: rescale: add offset support Liam Beguin
2021-05-31 8:52 ` Peter Rosin
2021-05-31 13:36 ` Liam Beguin [this message]
2021-05-31 14:08 ` Peter Rosin
2021-05-31 14:51 ` Liam Beguin
2021-05-31 16:25 ` Peter Rosin
2021-05-31 17:42 ` Liam Beguin
2021-06-01 16:31 ` Jonathan Cameron
2021-05-30 0:59 ` [PATCH v1 5/9] iio: afe: rescale: add support for temperature sensors Liam Beguin
2021-06-01 16:34 ` Jonathan Cameron
2021-05-30 0:59 ` [PATCH v1 6/9] dt-bindings: iio: afe: update MAINTAINERS file Liam Beguin
2021-05-31 7:57 ` Peter Rosin
2021-05-30 0:59 ` [PATCH v1 7/9] dt-bindings: iio: afe: add binding for temperature-sense-rtd Liam Beguin
2021-06-01 16:43 ` Jonathan Cameron
2021-06-04 21:17 ` Rob Herring
2021-06-05 14:58 ` Jonathan Cameron
2021-05-30 0:59 ` [PATCH v1 8/9] dt-bindings: iio: afe: add binding for temperature-sense-current Liam Beguin
2021-05-31 7:28 ` Peter Rosin
2021-05-31 8:58 ` Peter Rosin
2021-05-31 13:41 ` Liam Beguin
2021-06-01 16:47 ` Jonathan Cameron
2021-06-04 21:21 ` Rob Herring
2021-05-30 0:59 ` [PATCH v1 9/9] dt-bindings: iio: afe: add binding for temperature-sense-amplifier Liam Beguin
2021-05-31 7:32 ` Peter Rosin
2021-05-31 14:03 ` Liam Beguin
2021-06-01 16:02 ` Jonathan Cameron
2021-06-01 16:07 ` Jonathan Cameron
2021-06-01 15:59 ` Jonathan Cameron
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=CBRGZCQWCG6S.676W3VCPMMUH@shaak \
--to=liambeguin@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=peda@axentia.se \
--cc=pmeerw@pmeerw.net \
--cc=robh+dt@kernel.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).