From: Sam Winchenbach <sam.winchenbach@framepointer.org>
To: Jonathan Cameron <jic23@kernel.org>
Cc: linux-kernel@vger.kernel.org, lars@metafoo.de,
Michael.Hennerich@analog.com, antoniu.miclaus@analog.com,
robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
bpellegrino@arka.org
Subject: Re: [PATCH v6 6/6] iio: filter: admv8818: Support frequencies >= 2^32
Date: Sun, 16 Mar 2025 09:54:07 -0400 [thread overview]
Message-ID: <Z9bX_7pAxcwzpHv6@65YTFL3.secure.tethers.com> (raw)
In-Reply-To: <20250315182605.4b0dd8b3@jic23-huawei>
On Sat, Mar 15, 2025 at 06:26:05PM +0000, Jonathan Cameron wrote:
> On Wed, 12 Mar 2025 08:16:00 -0400
> Sam Winchenbach <sam.winchenbach@framepointer.org> wrote:
>
> > On Sat, Mar 08, 2025 at 02:01:43PM +0000, Jonathan Cameron wrote:
> > > On Fri, 7 Mar 2025 10:02:16 -0500
> > > Sam Winchenbach <sam.winchenbach@framepointer.org> wrote:
> > >
> > > > From: Brian Pellegrino <bpellegrino@arka.org>
> > > >
> > > > This patch allows writing u64 values to the ADMV8818's high and low-pass
> > > > filter frequencies. It includes the following changes:
> > > >
> > > > - Rejects negative frequencies in admv8818_write_raw.
> > > > - Adds a write_raw_get_fmt function to admv8818's iio_info, returning
> > > > IIO_VAL_INT_64 for the high and low-pass filter 3dB frequency channels.
> > > >
> > > > Fixes: f34fe888ad05 ("iio:filter:admv8818: add support for ADMV8818")
> > > > Signed-off-by: Brian Pellegrino <bpellegrino@arka.org>
> > > > Signed-off-by: Sam Winchenbach <sam.winchenbach@framepointer.org>
> > > I only have that minor comment on patch 5. If nothing else comes up
> > > and the dt binding ack comes in I may just tidy that up whilst applying.
> > >
> >
> > Sounds good. If given the opportunity I would like to submit
> > the patchset once more; I would like to use my work email
> > for author and signoff, and use the framepointer address
> > as an envelope. If I do this, I can update patch 5 as noted.
> > Would that be ok?
> >
> Absolutely. That's fine.
>
Done, patch v7 is up.
The only changes are:
* "driver core:" -> "iio: core:"
* "sam.winchenach@framepointer.org" -> "swinchenbach@arka.org"
Thanks,
-Sam
> > Thanks,
> > -Sam
> >
> > > > ---
> > > > drivers/iio/filter/admv8818.c | 17 +++++++++++++++++
> > > > 1 file changed, 17 insertions(+)
> > > >
> > > > diff --git a/drivers/iio/filter/admv8818.c b/drivers/iio/filter/admv8818.c
> > > > index e9602bfd4af7..9785533d0cdd 100644
> > > > --- a/drivers/iio/filter/admv8818.c
> > > > +++ b/drivers/iio/filter/admv8818.c
> > > > @@ -402,6 +402,19 @@ static int admv8818_read_lpf_freq(struct admv8818_state *st, u64 *lpf_freq)
> > > > return ret;
> > > > }
> > > >
> > > > +static int admv8818_write_raw_get_fmt(struct iio_dev *indio_dev,
> > > > + struct iio_chan_spec const *chan,
> > > > + long mask)
> > > > +{
> > > > + switch (mask) {
> > > > + case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
> > > > + case IIO_CHAN_INFO_HIGH_PASS_FILTER_3DB_FREQUENCY:
> > > > + return IIO_VAL_INT_64;
> > > > + default:
> > > > + return -EINVAL;
> > > > + }
> > > > +}
> > > > +
> > > > static int admv8818_write_raw(struct iio_dev *indio_dev,
> > > > struct iio_chan_spec const *chan,
> > > > int val, int val2, long info)
> > > > @@ -410,6 +423,9 @@ static int admv8818_write_raw(struct iio_dev *indio_dev,
> > > >
> > > > u64 freq = ((u64)val2 << 32 | (u32)val);
> > > >
> > > > + if ((s64)freq < 0)
> > > > + return -EINVAL;
> > > > +
> > > > switch (info) {
> > > > case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY:
> > > > return admv8818_lpf_select(st, freq);
> > > > @@ -571,6 +587,7 @@ static int admv8818_set_mode(struct iio_dev *indio_dev,
> > > >
> > > > static const struct iio_info admv8818_info = {
> > > > .write_raw = admv8818_write_raw,
> > > > + .write_raw_get_fmt = admv8818_write_raw_get_fmt,
> > > > .read_raw = admv8818_read_raw,
> > > > .debugfs_reg_access = &admv8818_reg_access,
> > > > };
> > >
>
next prev parent reply other threads:[~2025-03-16 13:54 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-07 15:02 [PATCH v6 1/6] dt-bindings: iio: filter: Add lpf/hpf freq margins Sam Winchenbach
2025-03-07 15:02 ` [PATCH v6 2/6] iio: filter: admv8818: fix band 4, state 15 Sam Winchenbach
2025-03-07 15:02 ` [PATCH v6 3/6] iio: filter: admv8818: fix integer overflow Sam Winchenbach
2025-03-07 15:02 ` [PATCH v6 4/6] iio: filter: admv8818: fix range calculation Sam Winchenbach
2025-03-08 14:03 ` Jonathan Cameron
2025-03-07 15:02 ` [PATCH v6 5/6] driver core: Add support for writing 64 bit attrs Sam Winchenbach
2025-03-08 14:00 ` Jonathan Cameron
2025-03-07 15:02 ` [PATCH v6 6/6] iio: filter: admv8818: Support frequencies >= 2^32 Sam Winchenbach
2025-03-08 14:01 ` Jonathan Cameron
2025-03-12 12:16 ` Sam Winchenbach
2025-03-15 18:26 ` Jonathan Cameron
2025-03-16 13:54 ` Sam Winchenbach [this message]
2025-03-10 9:22 ` [PATCH v6 1/6] dt-bindings: iio: filter: Add lpf/hpf freq margins Krzysztof Kozlowski
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=Z9bX_7pAxcwzpHv6@65YTFL3.secure.tethers.com \
--to=sam.winchenbach@framepointer.org \
--cc=Michael.Hennerich@analog.com \
--cc=antoniu.miclaus@analog.com \
--cc=bpellegrino@arka.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jic23@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--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