From: Andy Shevchenko <andriy.shevchenko@intel.com>
To: Bartosz Golaszewski <brgl@bgdev.pl>
Cc: Kees Cook <kees@kernel.org>, Mika Westerberg <westeri@kernel.org>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
Linus Walleij <linus.walleij@linaro.org>,
Manivannan Sadhasivam <mani@kernel.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Saravana Kannan <saravanak@google.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Andy Shevchenko <andy@kernel.org>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
Srinivas Kandagatla <srini@kernel.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>, Jaroslav Kysela <perex@perex.cz>,
Takashi Iwai <tiwai@suse.com>,
linux-hardening@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-sound@vger.kernel.org, linux-arm-msm@vger.kernel.org,
Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Subject: Re: [PATCH v2 03/10] gpiolib: implement low-level, shared GPIO support
Date: Fri, 24 Oct 2025 10:09:38 +0300 [thread overview]
Message-ID: <aPsmMruDxOil_wYQ@smile.fi.intel.com> (raw)
In-Reply-To: <CAMRc=Mc165HSLdug1F+t3qcOoE52mR1e_zEh=rSTUKN_-dB5NA@mail.gmail.com>
On Thu, Oct 23, 2025 at 08:55:27PM +0200, Bartosz Golaszewski wrote:
> On Wed, Oct 22, 2025 at 7:34 PM Andy Shevchenko
> <andriy.shevchenko@intel.com> wrote:
> > On Wed, Oct 22, 2025 at 03:10:42PM +0200, Bartosz Golaszewski wrote:
...
> > > + if (!strends(prop->name, "-gpios") &&
> > > + !strends(prop->name, "-gpio") &&
> >
> > > + strcmp(prop->name, "gpios") != 0 &&
> > > + strcmp(prop->name, "gpio") != 0)
> >
> > We have gpio_suffixes for a reason (also refer to for_each_gpio_property_name()
> > implementation, and yes I understand the difference, this is just a reference
> > for an example of use of the existing list of suffixes).
>
> And how would you use them here - when you also need the hyphen -
> without multiple dynamic allocations instead of static strings?
Something like
char suffix[6];
bool found = false;
for_each_gpio_property_name(suffix, "")
found = found || strends();
for_each_gpio_property_name(suffix, NULL)
found = found || (strcmp() == 0);
if (!found)
continue;
Of course with more thinking this may be optimized to avoid snprintf()
(probably with a new helper macro or so).
But see my next reply, I found something more interesting.
...
> > > + /* No need to dev->release() anything. */
> >
> > And is it okay?
> >
> > See drivers/base/core.c:2567
> >
> > WARN(1, KERN_ERR "Device '%s' does not have a release() function, it is broken and must be fixed. See Documentation/core-api/kobject.rst.\n",
>
> Huh... you're not wrong but I haven't seen this warning. Do people
> just use empty functions in this case?
I dunno. Maybe something applies a default release in you case? Can you
investigate that?
...
> > > + pr_debug("Created an auxiliary GPIO proxy %s for GPIO device %s\n",
> > > + dev_name(&adev->dev), gpio_device_get_label(gdev));
> >
> > Are you expecting dev_name() to be NULL in some cases? Otherwise why is this
> > not a dev_dbg() call?
>
> It's the low-level code saying: "I created device X for Y", not "Hey,
> here's X, I'm here for Y".
OK.
> > > + return 0;
> > > +}
...
> > > +static void gpio_shared_remove_adev(struct auxiliary_device *adev)
> > > +{
> > > + lockdep_assert_held(&gpio_shared_lock);
> > > +
> > > + auxiliary_device_uninit(adev);
> > > + auxiliary_device_delete(adev);
> >
> > _destroy() ? Esp. taking into account the (wrong?) ordering.
> >
>
> You're right about the order but if you _add() then you should
> _delete(). You typically _destroy() if you earlier _create().
Maybe, but as we noticed above my suggestion would make the code less error
prone to begin with.
> > > +}
...
> > > + struct auxiliary_device *adev = to_auxiliary_dev(dev);
> > > + struct gpio_shared_desc *shared_desc;
> > > + struct gpio_shared_entry *entry;
> > > + struct gpio_shared_ref *ref;
> > > + struct gpio_device *gdev;
> > > + int ret;
> >
> > > + + scoped_guard(mutex, &gpio_shared_lock) {
> >
> > Much better to split the below to a helper and make it run under a
> > scoped_guard() here or call a guard()() there.
>
> I'm not following, please rephrase.
scoped_guard() {
call_my_new_helper_which_is_easier to read();
}
ret = devm_add_...
OR
call_my_new_helper_which_is_easier to read()
{
guard()()
...
}
call_my_new_helper_which_is_easier to read();
ret = devm_add_...
> > > + list_for_each_entry(entry, &gpio_shared_list, list) {
> > > + list_for_each_entry(ref, &entry->refs, list) {
> > > + if (adev != &ref->adev)
> > > + continue;
> > > +
> > > + if (entry->shared_desc) {
> > > + kref_get(&entry->ref);
> > > + shared_desc = entry->shared_desc;
> > > + break;
> > > + }
> > > +
> > > + shared_desc = kzalloc(sizeof(*shared_desc), GFP_KERNEL);
> > > + if (!shared_desc)
> > > + return ERR_PTR(-ENOMEM);
> > > +
> > > + gdev = gpio_device_find_by_fwnode(entry->fwnode);
> > > + if (!gdev) {
> > > + kfree(shared_desc);
> > > + return ERR_PTR(-EPROBE_DEFER);
> > > + }
> > > +
> > > + shared_desc->desc = &gdev->descs[entry->offset];
> > > + shared_desc->can_sleep = gpiod_cansleep(shared_desc->desc);
> > > + if (shared_desc->can_sleep)
> > > + mutex_init(&shared_desc->mutex);
> > > + else
> > > + spin_lock_init(&shared_desc->spinlock);
> > > +
> > > + kref_init(&entry->ref);
> > > + entry->shared_desc = shared_desc;
> > > +
> > > + pr_debug("Device %s acquired a reference to the shared GPIO %u owned by %s\n",
> > > + dev_name(dev), desc_to_gpio(shared_desc->desc),
> > > + gpio_device_get_label(gdev));
> > > + break;
> > > + }
> > > + }
> > > + }
> > > +
> > > + ret = devm_add_action_or_reset(dev, gpiod_shared_put, entry);
> > > + if (ret)
> > > + return ERR_PTR(ret);
> > > +
> > > + return shared_desc;
> > > +}
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2025-10-24 7:09 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-22 13:10 [PATCH v2 00/10] gpio: improve support for shared GPIOs Bartosz Golaszewski
2025-10-22 13:10 ` [PATCH v2 01/10] string: provide strends() Bartosz Golaszewski
2025-10-22 13:33 ` Andy Shevchenko
2025-10-22 13:40 ` Bartosz Golaszewski
2025-10-22 15:23 ` Andy Shevchenko
2025-10-22 15:25 ` Andy Shevchenko
2025-10-22 15:36 ` Bartosz Golaszewski
2025-10-22 17:12 ` Andy Shevchenko
2025-10-23 18:43 ` Bartosz Golaszewski
2025-10-22 13:10 ` [PATCH v2 02/10] gpiolib: define GPIOD_FLAG_SHARED Bartosz Golaszewski
2025-10-22 13:10 ` [PATCH v2 03/10] gpiolib: implement low-level, shared GPIO support Bartosz Golaszewski
2025-10-22 17:34 ` Andy Shevchenko
2025-10-23 18:55 ` Bartosz Golaszewski
2025-10-24 7:09 ` Andy Shevchenko [this message]
2025-10-27 18:02 ` Bartosz Golaszewski
2025-10-22 13:10 ` [PATCH v2 04/10] gpio: shared-proxy: implement the shared GPIO proxy driver Bartosz Golaszewski
2025-10-22 18:04 ` Andy Shevchenko
2025-10-24 7:03 ` Bartosz Golaszewski
2025-10-22 13:10 ` [PATCH v2 05/10] gpiolib: support shared GPIOs in core subsystem code Bartosz Golaszewski
2025-10-22 13:10 ` [PATCH v2 06/10] gpio: provide gpiod_is_shared() Bartosz Golaszewski
2025-11-11 10:44 ` Linus Walleij
2025-11-12 8:06 ` Bartosz Golaszewski
2025-11-18 22:58 ` Linus Walleij
2025-10-22 13:10 ` [PATCH v2 07/10] arm64: select HAVE_SHARED_GPIOS for ARCH_QCOM Bartosz Golaszewski
2025-10-22 13:10 ` [PATCH v2 08/10] ASoC: wsa881x: drop GPIOD_FLAGS_BIT_NONEXCLUSIVE flag from GPIO lookup Bartosz Golaszewski
2025-10-24 15:46 ` Mark Brown
2025-10-24 23:32 ` Alexey Klimov
2025-10-22 13:10 ` [PATCH v2 09/10] ASoC: wsa883x: " Bartosz Golaszewski
2025-10-24 15:46 ` Mark Brown
2025-10-22 13:10 ` [PATCH v2 10/10] regulator: make the subsystem aware of shared GPIOs Bartosz Golaszewski
2025-10-24 15:57 ` Mark Brown
2025-10-24 7:17 ` [PATCH v2 00/10] gpio: improve support for " Péter Ujfalusi
2025-10-24 7:20 ` Bartosz Golaszewski
2025-10-24 7:32 ` Péter Ujfalusi
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=aPsmMruDxOil_wYQ@smile.fi.intel.com \
--to=andriy.shevchenko@intel.com \
--cc=akpm@linux-foundation.org \
--cc=andy@kernel.org \
--cc=bartosz.golaszewski@linaro.org \
--cc=brgl@bgdev.pl \
--cc=broonie@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=dmitry.torokhov@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=kees@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=mani@kernel.org \
--cc=perex@perex.cz \
--cc=robh@kernel.org \
--cc=saravanak@google.com \
--cc=srini@kernel.org \
--cc=tiwai@suse.com \
--cc=westeri@kernel.org \
--cc=will@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