* [PATCH] gpiolib: return quietly from gpiod_get_direction() without .get_direction()
@ 2026-08-13 19:37 Mehmet Fide
2026-08-20 11:12 ` Mehmet Fide
0 siblings, 1 reply; 4+ messages in thread
From: Mehmet Fide @ 2026-08-13 19:37 UTC (permalink / raw)
To: Bartosz Golaszewski, Linus Walleij
Cc: Christophe Leroy, linux-gpio, linux-kernel, Mehmet Fide
From: Mehmet Fide <mehmet.fide@screeningeagle.com>
Since commit 471e998c0e31 ("gpiolib: remove redundant callback check")
gpiod_get_direction() lets gpiochip_get_direction() WARN when the
controller does not implement .get_direction(). Callers of the public
API have no way to check for the callback themselves, so any of them
hitting such a controller now produces a backtrace.
One reachable case is the i2c generic GPIO bus recovery:
i2c_register_adapter() calls gpiod_get_direction() on the SDA line,
and on a Vybrid VF500 (gpio-vf610 has no .get_direction(), the pad
direction lives in the iomuxc, not in the GPIO block) every i2c
adapter probe logs
WARNING: drivers/gpio/gpiolib.c:431 at gpiod_get_direction+0x16c/0x19c
...
gpiod_get_direction from i2c_register_adapter+0x5bc/0x7f4
i2c_register_adapter from i2c_imx_probe+0x3fc/0x6a0
Commit d761c7e38a00 ("gpiolib: Check gc->get_direction() before
calling gpiod_get_direction()") already shields the debugfs dump the
same way. Do it once inside gpiod_get_direction() instead, and return
-EOPNOTSUPP quietly, which restores the pre-471e998c0e31 behavior for
external callers.
Tested on a Colibri VF50: the boot log goes from 21 identical
backtraces to none, and the i2c recovery init degrades exactly as
before, by skipping set_sda.
Fixes: 471e998c0e31 ("gpiolib: remove redundant callback check")
Signed-off-by: Mehmet Fide <mehmet.fide@screeningeagle.com>
---
drivers/gpio/gpiolib.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index c433a095907f..ad9740a3b42d 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -464,6 +464,14 @@ int gpiod_get_direction(struct gpio_desc *desc)
if (!guard.gc)
return -ENODEV;
+ /*
+ * Callers of the public API cannot know whether the controller
+ * implements .get_direction(), so bail out quietly instead of
+ * letting gpiochip_get_direction() WARN on them.
+ */
+ if (!guard.gc->get_direction)
+ return -EOPNOTSUPP;
+
offset = gpiod_hwgpio(desc);
flags = READ_ONCE(desc->flags);
--
2.54.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] gpiolib: return quietly from gpiod_get_direction() without .get_direction()
2026-08-13 19:37 [PATCH] gpiolib: return quietly from gpiod_get_direction() without .get_direction() Mehmet Fide
@ 2026-08-20 11:12 ` Mehmet Fide
2026-08-26 15:06 ` Bartosz Golaszewski
0 siblings, 1 reply; 4+ messages in thread
From: Mehmet Fide @ 2026-08-20 11:12 UTC (permalink / raw)
To: Linus Walleij, Bartosz Golaszewski; +Cc: Mehmet Fide, linux-gpio, linux-kernel
Hello,
A gentle ping on this one, sent a week ago and I have not seen a reply:
https://lore.kernel.org/linux-gpio/20260813193715.2346477-1-mehmet.fide@gmail.com/
To recap: gpiod_get_direction() warns when a chip has no .get_direction(),
which is a legitimate thing for a chip to lack. On vf610 the direction is
not in the GPIO block at all, it is a bit of the pinmux pad register, so
the driver cannot implement the callback and every caller that asks for a
direction produces a WARN.
Happy to respin or take a different approach if you would rather solve it
elsewhere.
Best regards,
Mehmet Fide
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gpiolib: return quietly from gpiod_get_direction() without .get_direction()
2026-08-20 11:12 ` Mehmet Fide
@ 2026-08-26 15:06 ` Bartosz Golaszewski
2026-08-27 20:12 ` Mehmet Fide
0 siblings, 1 reply; 4+ messages in thread
From: Bartosz Golaszewski @ 2026-08-26 15:06 UTC (permalink / raw)
To: Mehmet Fide; +Cc: linux-gpio, linux-kernel, Linus Walleij, Bartosz Golaszewski
On Thu, 20 Aug 2026 13:12:34 +0200, Mehmet Fide <mehmet.fide@gmail.com> said:
> Hello,
>
> A gentle ping on this one, sent a week ago and I have not seen a reply:
>
Yeah, this is August in Europe for you, I've been OoO and will be until the
end of this month.
> https://lore.kernel.org/linux-gpio/20260813193715.2346477-1-mehmet.fide@gmail.com/
>
> To recap: gpiod_get_direction() warns when a chip has no .get_direction(),
> which is a legitimate thing for a chip to lack. On vf610 the direction is
> not in the GPIO block at all, it is a bit of the pinmux pad register, so
> the driver cannot implement the callback and every caller that asks for a
> direction produces a WARN.
>
> Happy to respin or take a different approach if you would rather solve it
> elsewhere.
I would rather implement the missing callback in gpio-mmio. We already call
into pinctrl if needed when setting direction, could we call
pinctrl_gpio_get_config() here and read the direction from the underlying
pinctrl driver?
Thanks,
Bartosz
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] gpiolib: return quietly from gpiod_get_direction() without .get_direction()
2026-08-26 15:06 ` Bartosz Golaszewski
@ 2026-08-27 20:12 ` Mehmet Fide
0 siblings, 0 replies; 4+ messages in thread
From: Mehmet Fide @ 2026-08-27 20:12 UTC (permalink / raw)
To: Bartosz Golaszewski; +Cc: linux-gpio
Hi Bartosz,
On 26/08/2026 at 17:06, Bartosz Golaszewski wrote:
> I would rather implement the missing callback in gpio-mmio. We already call
> into pinctrl if needed when setting direction, could we call
> pinctrl_gpio_get_config() here and read the direction from the underlying
> pinctrl driver?
I agree that is the better place, and I am happy to drop this patch in
favour of it. One wrinkle I ran into while prototyping: for the config
road to work, the pinctrl driver has to report the direction as a
generic parameter, and pinctrl-imx (which serves vf610) does not - its
pin_config_get() returns the raw pad register value, not
pinconf-generic parameters, so gpio-mmio cannot decode it generically
(on vf610 the buffer enables are bits 1:0 of the shared mux/conf
register).
So my plan would be two small steps:
1. teach the vf610 pinconf side to report PIN_CONFIG_OUTPUT_ENABLE
(and PIN_CONFIG_INPUT_ENABLE) from the pad register;
2. give gpio-mmio a get_direction() that is only installed when the
chip has no direction registers, asking pinctrl for
PIN_CONFIG_OUTPUT_ENABLE, as you suggest.
Does that match what you had in mind? If so I will send that series
instead of this patch. Enjoy the rest of your time off - September is
fine for me.
Thanks,
Mehmet
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-08-27 20:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-13 19:37 [PATCH] gpiolib: return quietly from gpiod_get_direction() without .get_direction() Mehmet Fide
2026-08-20 11:12 ` Mehmet Fide
2026-08-26 15:06 ` Bartosz Golaszewski
2026-08-27 20:12 ` Mehmet Fide
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox