From: Matti Vaittinen <mazziesaccount@gmail.com>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: "Matti Vaittinen" <matti.vaittinen@fi.rohmeurope.com>,
"Jonathan Cameron" <jic23@kernel.org>,
"Lars-Peter Clausen" <lars@metafoo.de>,
"Nuno Sa" <nuno.sa@analog.com>,
"David Lechner" <dlechner@baylibre.com>,
"Javier Carrasco" <javier.carrasco.cruz@gmail.com>,
"Olivier Moysan" <olivier.moysan@foss.st.com>,
"Guillaume Stols" <gstols@baylibre.com>,
"Dumitru Ceclan" <mitrutzceclan@gmail.com>,
"Trevor Gamblin" <tgamblin@baylibre.com>,
"Matteo Martelli" <matteomartelli3@gmail.com>,
"Alisa-Dariana Roman" <alisadariana@gmail.com>,
"João Paulo Gonçalves" <joao.goncalves@toradex.com>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org
Subject: Re: [PATCH v7 06/10] iio: adc: Support ROHM BD79124 ADC
Date: Mon, 17 Mar 2025 09:07:30 +0200 [thread overview]
Message-ID: <fb0cee75-30aa-4175-b518-cbf9f3b7d46c@gmail.com> (raw)
In-Reply-To: <Z9Q_GK0_4J6ga1or@smile.fi.intel.com>
On 14/03/2025 16:37, Andy Shevchenko wrote:
> On Fri, Mar 14, 2025 at 11:22:37AM +0200, Matti Vaittinen wrote:
>> On 13/03/2025 15:19, Andy Shevchenko wrote:
>>> On Thu, Mar 13, 2025 at 09:19:03AM +0200, Matti Vaittinen wrote:
>
> ...
>
>>>> + ret = regmap_read(data->map, BD79124_REG_EVENT_FLAG_HI, &i_hi);
>>>> + if (ret)
>>>> + return IRQ_NONE;
>>>> +
>>>> + ret = regmap_read(data->map, BD79124_REG_EVENT_FLAG_LO, &i_lo);
>>>> + if (ret)
>>>> + return IRQ_NONE;
>>>
>>> Only I don't get why you can't use bulk read here.
>>> The registers seem to be sequential.
>>
>> After taking another look - there seems to be undocumented register (0x1b)
>> between the BD79124_REG_EVENT_FLAG_HI (0x1a) and the
>> BD79124_REG_EVENT_FLAG_LO (0x1c).
>>
>> I won't touch it unless there is a real verified performance problem.
>
> ...
>
>>> In the similar way bulk write.
>>
>> definitely not due to the 0x1b.
>
> Okay, it seems I misinterpreted the values you have in regmap configuration,
> I was under the impression that regmap is 16-bit data, but it is about address.
>
> So, we need to know why the heck HW has sparse registers
We don't know. And we really don't even need to know it. We can just use
this device knowing there are some.
> for what is supposed
> to be sequential. This needs a good comment.
I think it is quite usual that devices contain undocumented registers.
Not sure having a comment that this device also has some, adds much of
value? I suppose I can add a comment that we can't use bulk_write
because registers aren't in subsequent addresses - but having just
removed bunch of unnecessary comments from the code (as requested), I'm
not sure adding this one really improves situation... When one sees
separate reads/writes for data spread to multiple registers, he is
likely to assume addresses aren't subsequent.
Yours,
-- Matti
next prev parent reply other threads:[~2025-03-17 7:07 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-13 7:16 [PATCH v7 00/10] " Matti Vaittinen
2025-03-13 7:17 ` [PATCH v7 01/10] dt-bindings: ROHM BD79124 ADC/GPO Matti Vaittinen
2025-03-13 7:18 ` [PATCH v7 02/10] property: Add functions to iterate named child Matti Vaittinen
2025-03-13 12:15 ` Andy Shevchenko
2025-03-16 21:45 ` Marcelo Schmitt
2025-03-13 7:18 ` [PATCH v7 03/10] iio: adc: add helpers for parsing ADC nodes Matti Vaittinen
2025-03-13 12:31 ` Andy Shevchenko
2025-03-13 13:17 ` Matti Vaittinen
2025-03-13 13:29 ` Andy Shevchenko
2025-03-16 9:38 ` Jonathan Cameron
2025-03-17 8:22 ` Matti Vaittinen
2025-03-13 7:18 ` [PATCH v7 04/10] iio: adc: rzg2l_adc: Use adc-helpers Matti Vaittinen
2025-03-13 7:18 ` [PATCH v7 05/10] iio: adc: sun20i-gpadc: " Matti Vaittinen
2025-03-13 12:34 ` Andy Shevchenko
2025-03-16 9:41 ` Jonathan Cameron
2025-03-17 7:11 ` Matti Vaittinen
2025-03-17 7:51 ` Andy Shevchenko
2025-03-17 8:42 ` Matti Vaittinen
2025-03-17 9:27 ` Andy Shevchenko
2025-03-17 10:45 ` Jonathan Cameron
2025-03-13 7:19 ` [PATCH v7 06/10] iio: adc: Support ROHM BD79124 ADC Matti Vaittinen
2025-03-13 13:19 ` Andy Shevchenko
2025-03-14 7:31 ` Matti Vaittinen
2025-03-14 8:52 ` Matti Vaittinen
2025-03-14 14:33 ` Andy Shevchenko
2025-03-16 9:52 ` Jonathan Cameron
2025-03-16 10:01 ` Jonathan Cameron
2025-03-17 6:52 ` Matti Vaittinen
2025-03-17 10:52 ` Jonathan Cameron
2025-03-14 9:22 ` Matti Vaittinen
2025-03-14 14:37 ` Andy Shevchenko
2025-03-17 7:07 ` Matti Vaittinen [this message]
2025-03-17 7:57 ` Andy Shevchenko
2025-03-17 8:33 ` Matti Vaittinen
2025-03-16 11:02 ` Jonathan Cameron
2025-03-17 7:34 ` Matti Vaittinen
2025-03-17 11:24 ` Matti Vaittinen
2025-03-30 16:04 ` Jonathan Cameron
2025-03-31 7:37 ` Andy Shevchenko
2025-03-31 7:51 ` Matti Vaittinen
2025-03-13 7:19 ` [PATCH v7 07/10] MAINTAINERS: Add IIO ADC helpers Matti Vaittinen
2025-03-13 7:19 ` [PATCH v7 08/10] MAINTAINERS: Add ROHM BD79124 ADC/GPO Matti Vaittinen
2025-03-13 7:20 ` [PATCH v7 net-next 09/10] net: gianfar: Use device_get_child_node_count_named() Matti Vaittinen
2025-03-13 12:35 ` Andy Shevchenko
2025-03-13 7:20 ` [PATCH v7 10/10] media: thp7312: Use helper for iterating named child nodes Matti Vaittinen
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=fb0cee75-30aa-4175-b518-cbf9f3b7d46c@gmail.com \
--to=mazziesaccount@gmail.com \
--cc=alisadariana@gmail.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=dlechner@baylibre.com \
--cc=gstols@baylibre.com \
--cc=javier.carrasco.cruz@gmail.com \
--cc=jic23@kernel.org \
--cc=joao.goncalves@toradex.com \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=matteomartelli3@gmail.com \
--cc=matti.vaittinen@fi.rohmeurope.com \
--cc=mitrutzceclan@gmail.com \
--cc=nuno.sa@analog.com \
--cc=olivier.moysan@foss.st.com \
--cc=tgamblin@baylibre.com \
/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
all inboxes | Powered by JetHome®