From: Jonathan Cameron <jic23@kernel.org>
To: Alexandru Ardelean <aardelean@baylibre.com>
Cc: David Lechner <dlechner@baylibre.com>,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org, krzk+dt@kernel.org, robh@kernel.org,
lars@metafoo.de, michael.hennerich@analog.com,
gstols@baylibre.com
Subject: Re: [PATCH v7 1/8] iio: adc: ad7606: add 'bits' parameter to channels macros
Date: Sat, 28 Sep 2024 15:43:39 +0100 [thread overview]
Message-ID: <20240928154339.2c886ba4@jic23-huawei> (raw)
In-Reply-To: <CA+GgBR94rNX4wLh527EmfO4pzYFU02fQOr-KfzMt6Reyb5QFgA@mail.gmail.com>
On Tue, 24 Sep 2024 10:11:38 +0200
Alexandru Ardelean <aardelean@baylibre.com> wrote:
> On Mon, Sep 23, 2024 at 4:51 PM David Lechner <dlechner@baylibre.com> wrote:
> >
> > On Thu, Sep 19, 2024 at 3:04 PM Alexandru Ardelean
> > <aardelean@baylibre.com> wrote:
> > >
> > > There are some newer additions to the AD7606 family, which support 18 bit
> > > precision. Up until now, all chips were 16 bit.
> > >
> > > This change adds a 'bits' parameter to the AD760X_CHANNEL macro and renames
> > > 'ad7606_channels' -> 'ad7606_channels_16bit' for the current devices.
> > >
> > > The AD7606_SW_CHANNEL() macro is also introduced, as a short-hand for IIO
> > > channels in SW mode.
> > >
> > > Signed-off-by: Alexandru Ardelean <aardelean@baylibre.com>
> > > ---
> >
> > ...
> >
> > > diff --git a/drivers/iio/adc/ad7606.h b/drivers/iio/adc/ad7606.h
> > > index 6649e84d25de..204a343067e5 100644
> > > --- a/drivers/iio/adc/ad7606.h
> > > +++ b/drivers/iio/adc/ad7606.h
> > > @@ -8,7 +8,7 @@
> > > #ifndef IIO_ADC_AD7606_H_
> > > #define IIO_ADC_AD7606_H_
> > >
> > > -#define AD760X_CHANNEL(num, mask_sep, mask_type, mask_all) { \
> > > +#define AD760X_CHANNEL(num, mask_sep, mask_type, mask_all, bits) { \
> > > .type = IIO_VOLTAGE, \
> > > .indexed = 1, \
> > > .channel = num, \
> > > @@ -19,24 +19,26 @@
> > > .scan_index = num, \
> > > .scan_type = { \
> > > .sign = 's', \
> > > - .realbits = 16, \
> > > - .storagebits = 16, \
> > > + .realbits = (bits), \
> > > + .storagebits = (bits) > 16 ? 32 : 16, \
> > > .endianness = IIO_CPU, \
> > > }, \
> > > }
> > >
> > > #define AD7605_CHANNEL(num) \
> > > AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW), \
> > > - BIT(IIO_CHAN_INFO_SCALE), 0)
> > > + BIT(IIO_CHAN_INFO_SCALE), 0, 16)
> > >
> > > -#define AD7606_CHANNEL(num) \
> > > +#define AD7606_CHANNEL(num, bits) \
> > > AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW), \
> > > BIT(IIO_CHAN_INFO_SCALE), \
> > > - BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO))
> > > + BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), bits)
> > >
> > > -#define AD7616_CHANNEL(num) \
> > > +#define AD7606_SW_CHANNEL(num, bits) \
> > > AD760X_CHANNEL(num, BIT(IIO_CHAN_INFO_RAW) | BIT(IIO_CHAN_INFO_SCALE),\
> > > - 0, BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO))
> > > + 0, BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO), bits)
> > > +
> > > +#define AD7616_CHANNEL(num) AD7606_SW_CHANNEL(num, 16)
> >
> > It looks like the AD7616_CHANNEL macro is no longer used, so can be
> > dropped. Or alternately, don't change the lines below to use
> > AD7606_SW_CHANNEL.
>
> Well, the AD7616_CHANNEL() macro is still being used for the actual
> AD7616 channels.
> For the AD7606B software channels, the AD7616_CHANNEL() macro was
> being re-used, which seemed like a bit of a lazy/convenient way to do
> it.
>
> The patch here, just cleans up that minor quirk, but just for AD7606B.
> The AD7616 driver part, still uses the AD7616_CHANNEL() macro.
>
> Though, interestingly, the AD7616_CHANNEL() macro is only used for SW channels.
> Maybe in a subsequent patch, the AD7616_CHANNEL() macro can be removed
> altogether.
> I thought about doing it in this series, but decided against it, to
> keep the series small.
It's been a while, and David hasn't said he disagrees with this
argument so I've picked up David's tag whilst applying this.
So David, if you'd rather I didn't then shout!
Series applied to the togreg branch of iio.git and pushed out as testing
for all the normal reasons + I'm waiting for rc1 to rebase on.
Thanks
Jonathan
>
> >
> > With either of those changes:
> >
> > Reviewed-by: David Lechner <dlechner@baylibre.com>
> >
> > >
> > > /**
> > > * struct ad7606_chip_info - chip specific information
> > > diff --git a/drivers/iio/adc/ad7606_spi.c b/drivers/iio/adc/ad7606_spi.c
> > > index 62ec12195307..e00f58a6a0e9 100644
> > > --- a/drivers/iio/adc/ad7606_spi.c
> > > +++ b/drivers/iio/adc/ad7606_spi.c
> > > @@ -67,14 +67,14 @@ static const struct iio_chan_spec ad7616_sw_channels[] = {
> > >
> > > static const struct iio_chan_spec ad7606b_sw_channels[] = {
> > > IIO_CHAN_SOFT_TIMESTAMP(8),
> > > - AD7616_CHANNEL(0),
> > > - AD7616_CHANNEL(1),
> > > - AD7616_CHANNEL(2),
> > > - AD7616_CHANNEL(3),
> > > - AD7616_CHANNEL(4),
> > > - AD7616_CHANNEL(5),
> > > - AD7616_CHANNEL(6),
> > > - AD7616_CHANNEL(7),
> > > + AD7606_SW_CHANNEL(0, 16),
> > > + AD7606_SW_CHANNEL(1, 16),
> > > + AD7606_SW_CHANNEL(2, 16),
> > > + AD7606_SW_CHANNEL(3, 16),
> > > + AD7606_SW_CHANNEL(4, 16),
> > > + AD7606_SW_CHANNEL(5, 16),
> > > + AD7606_SW_CHANNEL(6, 16),
> > > + AD7606_SW_CHANNEL(7, 16),
> > > };
> > >
> > > static const unsigned int ad7606B_oversampling_avail[9] = {
> > > --
> > > 2.46.0
> > >
next prev parent reply other threads:[~2024-09-28 14:43 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-19 13:04 [PATCH v7 0/8] iio: adc: ad7606: add support for AD7606C-{16,18} parts Alexandru Ardelean
2024-09-19 13:04 ` [PATCH v7 1/8] iio: adc: ad7606: add 'bits' parameter to channels macros Alexandru Ardelean
2024-09-23 14:50 ` David Lechner
2024-09-24 8:11 ` Alexandru Ardelean
2024-09-28 14:43 ` Jonathan Cameron [this message]
2024-09-19 13:04 ` [PATCH v7 2/8] iio: adc: ad7606: move 'val' pointer to ad7606_scan_direct() Alexandru Ardelean
2024-09-19 13:04 ` [PATCH v7 3/8] iio: adc: ad7606: move scale_setup as function pointer on chip-info Alexandru Ardelean
2024-09-19 13:04 ` [PATCH v7 4/8] iio: adc: ad7606: wrap channel ranges & scales into struct Alexandru Ardelean
2024-09-19 13:04 ` [PATCH v7 5/8] iio: adc: ad7606: rework available attributes for SW channels Alexandru Ardelean
2024-10-17 17:50 ` Jonathan Cameron
2024-10-19 16:15 ` Alexandru Ardelean
2024-09-19 13:04 ` [PATCH v7 6/8] dt-bindings: iio: adc: document diff-channels corner case for some ADCs Alexandru Ardelean
2024-09-19 13:04 ` [PATCH v7 7/8] dt-bindings: iio: adc: add docs for AD7606C-{16,18} parts Alexandru Ardelean
2024-09-19 13:04 ` [PATCH v7 8/8] iio: adc: ad7606: add support " Alexandru Ardelean
2024-10-01 8:26 ` Alexandru Ardelean
2024-10-01 9:26 ` Guillaume Stols
2024-10-01 13:42 ` David Lechner
2024-10-01 18:41 ` Jonathan Cameron
2024-10-02 6:12 ` Alexandru Ardelean
2024-10-04 13:54 ` Jonathan Cameron
2024-10-06 10:56 ` Jonathan Cameron
2024-10-07 7:00 ` Alexandru Ardelean
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=20240928154339.2c886ba4@jic23-huawei \
--to=jic23@kernel.org \
--cc=aardelean@baylibre.com \
--cc=devicetree@vger.kernel.org \
--cc=dlechner@baylibre.com \
--cc=gstols@baylibre.com \
--cc=krzk+dt@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=michael.hennerich@analog.com \
--cc=robh@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).