From: Matti Vaittinen <mazziesaccount@gmail.com>
To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Cc: Lee Jones <lee@kernel.org>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Arnd Bergmann <arnd@kernel.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Linus Walleij <linus.walleij@linaro.org>,
linux-input@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/3] mfd: rohm-bd71828: Use software nodes for gpio-keys
Date: Tue, 19 Aug 2025 13:49:28 +0300 [thread overview]
Message-ID: <60a311ca-1642-48f0-8b73-267c0ba58bc4@gmail.com> (raw)
In-Reply-To: <jnf7z5hlljmoxw6ud3vuz4jaohh2ewjnpparh2dpbhef7ea7vp@up74k2viwhad>
On 18/08/2025 20:11, Dmitry Torokhov wrote:
> On Mon, Aug 18, 2025 at 09:56:07AM +0300, Matti Vaittinen wrote:
>> On 18/08/2025 09:54, Matti Vaittinen wrote:
>>> On 18/08/2025 01:47, Dmitry Torokhov wrote:
>>>> Refactor the rohm-bd71828 MFD driver to use software nodes for
>>>> instantiating the gpio-keys child device, replacing the old
>>>> platform_data mechanism.
>>>
>>> Thanks for doing this Dmitry! I believe I didn't understand how
>>> providing the IRQs via swnode works... :)
>>>
>>> If I visit the ROHM office this week, then I will try to test this using
>>> the PMIC HW. (Next week I'll be in ELCE, and after it I have probably
>>> already forgotten this...)
>>>
>>>> The power key's properties are now defined using software nodes and
>>>> property entries. The IRQ is passed as a resource attached to the
>>>> platform device.
>>>>
>>>> This will allow dropping support for using platform data for configuring
>>>> gpio-keys in the future.
>>>>
>>>> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
>>>> ---
>>>> drivers/mfd/rohm-bd71828.c | 81 +++++++++++++++++++++++++++-----------
>>>> 1 file changed, 58 insertions(+), 23 deletions(-)
>>>>
>>>> diff --git a/drivers/mfd/rohm-bd71828.c b/drivers/mfd/rohm-bd71828.c
>>>> index a14b7aa69c3c..c29dde9996b7 100644
>>>> --- a/drivers/mfd/rohm-bd71828.c
>>>> +++ b/drivers/mfd/rohm-bd71828.c
>>>> @@ -4,7 +4,6 @@
>>>
>>> // ...snip
>>>
>>>> +static int bd71828_reg_cnt;
>>>> +
>>>> +static int bd71828_i2c_register_swnodes(void)
>>>> +{
>>>> + int error;
>>>> +
>>>> + if (bd71828_reg_cnt == 0) {
>>>
>>> Isn't this check racy...
>>>
>>>> + error = software_node_register_node_group(bd71828_swnodes);
>>>> + if (error)
>>>> + return error;
>>>> + }
>>>> +
>>>> + bd71828_reg_cnt++;
>>>
>>> ... with this...
>>>
>>>> + return 0;
>>>> +}
>>>> +
>>>> +static void bd71828_i2c_unregister_swnodes(void *dummy)
>>>> +{
>>>> + if (bd71828_reg_cnt != 0) {
>>>
>>> ...this...
>>>
>>>> + software_node_unregister_node_group(bd71828_swnodes);
>>>> + bd71828_reg_cnt--;
>>>
>>> ...and this? Perhaps add a mutex or use atomics?
>>>
>>> Also, shouldn't the software_node_unregister_node_group() be only called
>>> for the last instance to exit (Eg, "if (bd71828_reg_cnt == 0)" instead
>>> of the "if (bd71828_reg_cnt != 0) {")?
>>
>> Oh. Probably "if (bd71828_reg_cnt == 1)".
>
> You are right, I am not sure what I was thinking when I wrote this.
>
> I actually doubt that sharing of nodes between devices would work well.
> But I believe these devices are singletons, it should not be possible to
> have several of them in a single system, right?
I can't say for sure. I have seen more and more setups where more than
one PMIC is used to power-up a system. Thus I nowadays try to use
solutions which don't limit the amount of instances.
The BD718[37,47,50] regulator driver seems to be written in a way it
doesn't properly support multiple driver instances. (It uses global
data, with a comment that if multiple instances need to be supported the
data should be copied):
https://elixir.bootlin.com/linux/v6.11-rc2/source/drivers/regulator/bd718x7-regulator.c#L1558
For BD71828 and BD71815 I don't see existing limitations on how many
instances there can be...
...except that I do :)
The current MFD driver uses single static global for the gpio_keys
platform data. I assume that wouldn't be race-free if we had multiple
instances.
So, I am unsure what to say. I know that for example the BD9680x PMIC
series is intended to be used with multi-PMIC configurations, and I
believe these setups are getting more common. Hence I would like to see
the bd718XX code to work on multi-PMIC systems too, so the gpio_keys
swnode example could be copied over to new PMICs ;)
But yeah, I am not insisting on it. The existing solution does not
support multiple instances, so if you think it gets too cumbersome to
add such support, then I am happy with supporting just one chip/system.
> So maybe the best way is
> to simply instantiate them in probe and bail out if they are already
> registered.
Well, I wouldn't say best (as explained above), but yes, sufficient for
these PMICs AFAICS.
Thanks for doing this!
Yours,
-- Matti
next prev parent reply other threads:[~2025-08-19 10:49 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-17 22:47 [PATCH 1/3] Input: gpio_keys - fall back to platform_get_irq() for interrupt-only keys Dmitry Torokhov
2025-08-17 22:47 ` [PATCH 2/3] mfd: rohm-bd71828: Use software nodes for gpio-keys Dmitry Torokhov
2025-08-18 6:54 ` Matti Vaittinen
2025-08-18 6:56 ` Matti Vaittinen
2025-08-18 17:11 ` Dmitry Torokhov
2025-08-19 10:49 ` Matti Vaittinen [this message]
2025-08-17 22:47 ` [PATCH 3/3] mfd: rohm-bd718x7: " Dmitry Torokhov
2025-08-18 6:57 ` Matti Vaittinen
2025-08-20 13:37 ` [PATCH 1/3] Input: gpio_keys - fall back to platform_get_irq() for interrupt-only keys Andy Shevchenko
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=60a311ca-1642-48f0-8b73-267c0ba58bc4@gmail.com \
--to=mazziesaccount@gmail.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=arnd@kernel.org \
--cc=brgl@bgdev.pl \
--cc=dmitry.torokhov@gmail.com \
--cc=lee@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.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