Aw: Re: [PATCH v1] gpiolib: fix trace on missing gpiochip->get_direction callback
From: Frank Wunderlich
Date: Thu Apr 09 2026 - 16:42:29 EST
Hi
> Gesendet: Donnerstag, 9. April 2026 um 16:23
> Von: "Bartosz Golaszewski" <brgl@xxxxxxxxxx>
>
> I prefer GPIO drivers to just implement get_direction(). Looking at the code
> it should be pretty straightforward for this driver.
>
> Can you test if the following works for you?
>
> diff --git a/drivers/pinctrl/mediatek/pinctrl-moore.c
> b/drivers/pinctrl/mediatek/pinctrl-moore.c
> index 70f608347a5f6..071ba849e5322 100644
> --- a/drivers/pinctrl/mediatek/pinctrl-moore.c
> +++ b/drivers/pinctrl/mediatek/pinctrl-moore.c
> @@ -520,6 +520,23 @@ static int mtk_gpio_direction_output(struct
> gpio_chip *chip, unsigned int gpio,
> return pinctrl_gpio_direction_output(chip, gpio);
> }
>
> +static int mtk_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
> +{
> + struct mtk_pinctrl *hw = gpiochip_get_data(chip);
> + const struct mtk_pin_desc *desc;
> + int ret, dir;
> +
> + desc = (const struct mtk_pin_desc *)&hw->soc->pins[offset];
> + if (!desc->name)
> + return -ENOTSUPP;
> +
> + ret = mtk_hw_get_value(hw, desc, PINCTRL_PIN_REG_DIR, &dir);
> + if (ret)
> + return ret;
> +
> + return dir ? GPIO_LINE_DIRECTION_OUT : GPIO_LINE_DIRECTION_IN;
> +}
> +
> static int mtk_gpio_to_irq(struct gpio_chip *chip, unsigned int offset)
> {
> struct mtk_pinctrl *hw = gpiochip_get_data(chip);
> @@ -566,6 +583,7 @@ static int mtk_build_gpiochip(struct mtk_pinctrl *hw)
> chip->parent = hw->dev;
> chip->request = gpiochip_generic_request;
> chip->free = gpiochip_generic_free;
> + chip->get_direction = mtk_gpio_get_direction;
> chip->direction_input = pinctrl_gpio_direction_input;
> chip->direction_output = mtk_gpio_direction_output;
> chip->get = mtk_gpio_get;
it looks good on a quick test, just reverted my patch and applied yours and got no trace
root@bpi-r4:~# cat /sys/kernel/debug/gpio
gpiochip0: 84 GPIOs, parent: platform/1001f000.pinctrl, pinctrl_moore:
gpio-0 ( |tx-disable ) in lo
gpio-1 ( |mod-def0 ) in hi IRQ ACTIVE LOW
gpio-2 ( |los ) in hi IRQ
gpio-12 ( |cd ) in lo IRQ ACTIVE LOW
gpio-13 ( |reset ) in hi IRQ ACTIVE LOW
gpio-14 ( |WPS ) in hi IRQ ACTIVE LOW
gpio-21 ( |tx-disable ) out hi
gpio-69 ( |mod-def0 ) in lo IRQ ACTIVE LOW
gpio-70 ( |los ) in hi IRQ
gpiochip1: 16 GPIOs, parent: i2c/3-0020, 3-0020, can sleep:
gpio-14 ( |blue:activity ) out lo
gpio-15 ( |red:fault ) out lo
output seems correct.
regards Frank
> Thanks,
> Bart