From: Jonathan Cameron <jic23@kernel.org>
To: Matti Vaittinen <mazziesaccount@gmail.com>
Cc: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>, Nuno Sa <nuno.sa@analog.com>,
David Lechner <dlechner@baylibre.com>,
Javier Carrasco <javier.carrasco.cruz@gmail.com>,
linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 6/6] iio: adc: ti-adc128s052: Support ROHM BD79104
Date: Sat, 5 Apr 2025 18:43:46 +0100 [thread overview]
Message-ID: <20250405184346.3c4b1234@jic23-huawei> (raw)
In-Reply-To: <a35ab4b1-4d6a-4b95-963a-96b2ab4c05e9@gmail.com>
On Tue, 1 Apr 2025 15:33:15 +0300
Matti Vaittinen <mazziesaccount@gmail.com> wrote:
> On 31/03/2025 14:22, Jonathan Cameron wrote:
> > On Mon, 31 Mar 2025 11:03:58 +0300
> > Matti Vaittinen <mazziesaccount@gmail.com> wrote:
> >
> >> The ROHM BD79104 ADC has identical SPI communication logic as the
> >> ti-adc128s052. Eg, SPI transfer should be 16 clk cycles, conversion is
> >> started when the CS is pulled low, and channel selection is done by
> >> writing the channel ID after two zero bits. Data is contained in
> >> big-endian format in the last 12 bits.
> >
> > Nicely found match. Sometimes these are tricky to spot.
> >
> >>
> >> The BD79104 has two input voltage pins. Data sheet uses terms "vdd" and
> >> "iovdd". The "vdd" is used also as an analog reference voltage. Hence
> >> the driver expects finding these from the device-tree, instead of having
> >> the "vref" only as TI's driver.
> >>
> >> NOTE: The TI's data sheet[1] does show that the TI's IC does actually
> >> have two voltage inputs as well. Pins are called Va (analog reference)
> >> and Vd (digital supply pin) - but I keep the existing driver behaviour
> >> for the TI's IC "as is", because I have no HW to test changes, and
> >> because I have no real need to touch it.
> >>
> >> NOTE II: The BD79104 requires SPI MODE 3.
> >>
> >> NOTE III: I used evaluation board "BD79104FV-EVK-001" made by ROHM. With
> >> this board I had to drop the SPI speed below the 20M which is mentioned
> >> in the data-sheet [2]. This, however, may be a limitation of the EVK
> >> board, not the component itself.
> >>
> >> [1]: https://www.ti.com/lit/ds/symlink/adc128s052.pdf
> >>
> >> [2]:
> >> https://fscdn.rohm.com/en/products/databook/datasheet/ic/data_converter/dac/bd79104fv-la-e.pdf
> >>
> > Prefer Datasheet tags with # [1]
> > after them for the cross references.
> >
> > Those belong here in the tag block (no blank lines)
> >> Signed-off-by: Matti Vaittinen <mazziesaccount@gmail.com>
> >
> > One request for an additional cleanup precursor patch given you are
> > touching the relevant code anyway. It's a small one that you can
> > test so hope you don't mind doing that whilst here.
> >
> > I'm relying on the incredibly small chance anyone has a variable
> > regulator wired up to the reference that they are modifying at runtime.
> > I have seen that done (once long ago on a crazy dev board for a really
> > noisy humidity sensor) when the reference was VDD but not on a separate
> > reference pin. That means we almost certainly won't break the existing
> > parts and can't have a regression on your new one so we should be fine
> > to make the change.
>
> The change you ask for is indeed small. I have no real objections
> against implementing it (and I actually wrote it already) - but I am
> still somewhat hesitant. As you say, (it seems like) the idea of the
> original code is to allow changing the vref at runtime. It looks to me
> this might've been intentional choice. I am not terribly happy about
> dropping the working functionality, when the gained simplification isn't
> particularly massive.
Hmm. I suspect this was added at my request (or copied from where I requested
it) Back when we did this there was no advantage in doing it at probe
as it was just a question of store a value or store a pointer we had
to get anyway. So I tended to advocate what I now think was a bit silly,
that someone elses board might have it changing...
User space wise, what code checks for random scaling changes? So it
was best effort at best anyway!
>
> Because of this, I am thinking of adding the patch dropping the
> functionality as an RFC. Leaving that floating on the list for a while
> would at least have my ass partially covered ;)
>
> I'd rather not delayed the support for the BD79104 though. So - would it
> be okay if I didn't implement the clean-up as a precursory patch, but
> did it as a last patch of the series? That will make it a tad more
> complex to review, but it'd allow taking the BD79104 changes in while
> leaving the RFC to float on a list. (Also, I'm not sure if you can push
> an RFC in next without taking it in for the cycle?)
I'll probably just merge it even as an RFC :) That way it's my
fault if we break someone and they shout!
Jonathan
>
> Yours,
> -- Matti
>
next prev parent reply other threads:[~2025-04-05 17:43 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-31 8:01 [PATCH 0/6] Support ROHM BD79104 ADC Matti Vaittinen
2025-03-31 8:02 ` [PATCH 1/6] dt-bindings: " Matti Vaittinen
2025-03-31 15:47 ` Conor Dooley
2025-03-31 8:02 ` [PATCH 2/6] iio: adc: ti-adc128s052: Fix ADC value on BE systems Matti Vaittinen
2025-03-31 11:11 ` Jonathan Cameron
2025-03-31 12:07 ` Matti Vaittinen
2025-03-31 8:03 ` [PATCH 3/6] iio: adc: ti-adc128s052: Be consistent with arrays Matti Vaittinen
2025-03-31 11:13 ` Jonathan Cameron
2025-03-31 8:03 ` [PATCH 4/6] iio: adc: ti-adc128s052: Use devm_mutex_init() Matti Vaittinen
2025-03-31 11:13 ` Jonathan Cameron
2025-03-31 8:03 ` [PATCH 5/6] iio: adc: ti-adc128s052: Simplify using guard(mutex) Matti Vaittinen
2025-03-31 11:14 ` Jonathan Cameron
2025-03-31 8:03 ` [PATCH 6/6] iio: adc: ti-adc128s052: Support ROHM BD79104 Matti Vaittinen
2025-03-31 11:22 ` Jonathan Cameron
2025-04-01 12:33 ` Matti Vaittinen
2025-04-05 17:43 ` Jonathan Cameron [this message]
2025-04-07 6:10 ` Matti Vaittinen
2025-04-07 18:44 ` 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=20250405184346.3c4b1234@jic23-huawei \
--to=jic23@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlechner@baylibre.com \
--cc=javier.carrasco.cruz@gmail.com \
--cc=krzk+dt@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=matti.vaittinen@fi.rohmeurope.com \
--cc=mazziesaccount@gmail.com \
--cc=nuno.sa@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