From: Matti Vaittinen <mazziesaccount@gmail.com>
To: Jonathan Cameron <jic23@kernel.org>
Cc: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Paul Gazzillo <paul@pgazz.com>,
Shreeya Patel <shreeya.patel@collabora.com>,
Dmitry Osipenko <dmitry.osipenko@collabora.com>,
Zhigang Shi <Zhigang.Shi@liteon.com>,
linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org
Subject: Re: [PATCH v1 2/3] iio: light: ROHM BU27008 color sensor
Date: Mon, 24 Apr 2023 13:14:56 +0300 [thread overview]
Message-ID: <e47b367f-717b-387e-2d6a-40c998795440@gmail.com> (raw)
In-Reply-To: <20230423135706.008206da@jic23-huawei>
On 4/23/23 15:57, Jonathan Cameron wrote:
> On Fri, 21 Apr 2023 12:39:36 +0300
> Matti Vaittinen <mazziesaccount@gmail.com> wrote:
>
>> The ROHM BU27008 is a sensor with 5 photodiodes (red, green, blue, clear
>> and IR) with four configurable channels. Red and green being always
>> available and two out of the rest three (blue, clear, IR) can be
>> selected to be simultaneously measured. Typical application is adjusting
>> LCD backlight of TVs, mobile phones and tablet PCs.
>>
>> Add initial support for the ROHM BU27008 color sensor.
>> - raw_read() of RGB and clear channels
>> - triggered buffer w/ DRDY interrtupt
>>
>> Signed-off-by: Matti Vaittinen <mazziesaccount@gmail.com>
>> +
>> +static int bu27008_meas_set(struct bu27008_data *data, bool enable)
>> +{
>> + if (enable)
>> + return regmap_set_bits(data->regmap, BU27008_REG_MODE_CONTROL3,
>> + BU27008_MASK_MEAS_EN);
>> +
>> + return regmap_clear_bits(data->regmap, BU27008_REG_MODE_CONTROL3,
>> + BU27008_MASK_MEAS_EN);
>
> Might be cleaner with regmap_update_bits()
>
>> +}
Hm. I need to disagree on this although I think it depends on what one
is used to :)
For me adding a variable for value to be used is slightly more complex
than just using clear or set function depending on the enable/disable. I
remember thinking the same as you and preferring the update_bits also on
enable/disable cases - until I wrote my first power-supply driver and
Sebasian Reichel told me to not do:
int val;
if (foo)
val = mask;
else
val = 0;
return regmap_update_bits(regmap, reg, mask, val);
but use set/clear bits. This allows killing the 'int val;'. I remember I
had to sleep over night on it but I later started seeing the set/clear
bits as a simpler thing.
Sure we could also do
if (foo)
return regmap_update_bits(map, reg, mask, mask);
else
return regmap_update_bits(map, reg, mask, 0);
- but here we just replace:
regmap_set_bits(map, reg, mask) with
regmap_update_bits(map, reg, mask, mask)
and
regmap_clear_bits(map, reg, mask)
regmap_update_bits(map, reg, mask, 0)
with longer but functionally same variants - which kind of says "I think
the "regmap_set_bits() and regmap_clear_bits()" are useless ;)
After saying this - I can use the regmap_update_bits() if you insist,
but in my (not always so) humble opinion this does not improve the function.
>> +
>> +static int bu27008_set_drdy_irq(struct bu27008_data *data, bool state)
>> +{
>> + if (state)
>> + return regmap_set_bits(data->regmap, BU27008_REG_MODE_CONTROL3,
>> + BU27008_MASK_INT_EN);
>> + return regmap_clear_bits(data->regmap, BU27008_REG_MODE_CONTROL3,
>> + BU27008_MASK_INT_EN);
> regmap_update_bits() maybe with the mask and value supplied.
Same weak objection here as was with the bu27008_meas_set(). Eg, can
change if required but please reconsider :)
>> +}
>> +
>
>> +static irqreturn_t bu27008_irq_handler(int irq, void *private)
>> +{
>> + struct iio_dev *idev = private;
>> + struct bu27008_data *data = iio_priv(idev);
>> +
>> + data->old_timestamp = data->timestamp;
>
> What is old_timestamp for? Without out setting that, this
> is the same as iio_pollfunc_store_time() with the timestamp
> stored in a slightly difference place and always waking the thread
> (which probably doesn't matter)
Thanks. I just re-used the logic from a driver which had some other
options but the data-ready IRQ as well. As we don't have any such in
bu27008, I think we can drop the custom stuff as you suggest and clean
up this for quite a bit :) Thanks!
>> +
>> +static irqreturn_t bu27008_irq_thread_handler(int irq, void *private)
>> +{
>> + struct iio_dev *idev = private;
>> + struct bu27008_data *data = iio_priv(idev);
>> + irqreturn_t ret = IRQ_NONE;
>> +
>> + mutex_lock(&data->mutex);
>> + if (data->trigger_enabled) {
>> + iio_trigger_poll_nested(data->trig);
>
> Add a comment here on why it makes sense to hold the mutex whilst
> calling this.
After revising this - I don't think it makes. Nor do I think we need the
trigger_enable flag so we don't propably need the mutex in buffer enable
either as all raw-write configs are claiming the direct mode.
I'll cook the v2 soon(ish). Thanks!
Yours,
--Matti
--
Matti Vaittinen
Linux kernel developer at ROHM Semiconductors
Oulu Finland
~~ When things go utterly wrong vim users can always type :help! ~~
next prev parent reply other threads:[~2023-04-24 10:15 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-21 9:37 [PATCH v1 0/3] Support ROHM BU27008 RGB sensor Matti Vaittinen
2023-04-21 9:38 ` [PATCH v1 1/3] dt-bindings: iio: light: ROHM BU27008 Matti Vaittinen
2023-04-24 10:12 ` Krzysztof Kozlowski
2023-04-24 10:26 ` Matti Vaittinen
2023-04-21 9:39 ` [PATCH v1 2/3] iio: light: ROHM BU27008 color sensor Matti Vaittinen
2023-04-23 12:57 ` Jonathan Cameron
2023-04-24 6:21 ` Vaittinen, Matti
2023-05-01 15:32 ` Jonathan Cameron
2023-04-24 10:14 ` Matti Vaittinen [this message]
2023-05-01 15:36 ` Jonathan Cameron
[not found] ` <82ae3f4eb27b64554d7804c46febbb4a7f9fe7ae.1682067567.git.mazziesaccount@gmail.com>
2023-04-21 9:44 ` [PATCH v1 3/3] MAINTAINERS: Add ROHM BU27008 Matti Vaittinen
2023-04-23 12:04 ` [PATCH v1 0/3] Support ROHM BU27008 RGB sensor Jonathan Cameron
2023-04-24 5:35 ` Vaittinen, Matti
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=e47b367f-717b-387e-2d6a-40c998795440@gmail.com \
--to=mazziesaccount@gmail.com \
--cc=Zhigang.Shi@liteon.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=dmitry.osipenko@collabora.com \
--cc=jic23@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=paul@pgazz.com \
--cc=shreeya.patel@collabora.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