]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
pinctrl: qcom: ipq4019: mark gpio as a GPIO pin function
authorTil Kaiser <mail@tk154.de>
Mon, 13 Apr 2026 13:52:34 +0000 (15:52 +0200)
committerLinus Walleij <linusw@kernel.org>
Mon, 27 Apr 2026 08:35:30 +0000 (10:35 +0200)
The qcom pinctrl core supports marking functions that represent GPIO mode
via PINCTRL_GPIO_PINFUNCTION(), so that strict pinmuxing does not reject
GPIO requests for pins that are muxed to the GPIO function.

ipq4019 still describes its gpio function with QCA_PIN_FUNCTION(gpio),
so it is not treated as a GPIO pin function. As a result, GPIO consumers
can still conflict with pinctrl states that select the "gpio" function.

Add a QCA_GPIO_PIN_FUNCTION() helper and use it for the ipq4019 gpio
function, matching how the msm-based qcom drivers handle this.

This allows ipq4019 to keep the GPIO-related pin configuration in DTS
without tripping over strict pinmux ownership checks.

Fixes: cc85cb96e2e4 ("pinctrl: qcom: make the pinmuxing strict")
Signed-off-by: Til Kaiser <mail@tk154.de>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Signed-off-by: Linus Walleij <linusw@kernel.org>
drivers/pinctrl/qcom/pinctrl-ipq4019.c
drivers/pinctrl/qcom/pinctrl-msm.h

index c5f0decc3eb3214881e34fc236586d0d3f614757..05fdd73b951ef939e45acaf057711dc851c6aa60 100644 (file)
@@ -479,7 +479,7 @@ static const struct pinfunction ipq4019_functions[] = {
        QCA_PIN_FUNCTION(blsp_uart0),
        QCA_PIN_FUNCTION(blsp_uart1),
        QCA_PIN_FUNCTION(chip_rst),
-       QCA_PIN_FUNCTION(gpio),
+       QCA_GPIO_PIN_FUNCTION(gpio),
        QCA_PIN_FUNCTION(i2s_rx),
        QCA_PIN_FUNCTION(i2s_spdif_in),
        QCA_PIN_FUNCTION(i2s_spdif_out),
index a4af279f748abfa60f55bab62406c50e326568db..4fbff61de6bb3e806b878b84e63291f8759344dc 100644 (file)
@@ -39,6 +39,11 @@ struct pinctrl_pin_desc;
                                        fname##_groups,         \
                                        ARRAY_SIZE(fname##_groups))
 
+#define QCA_GPIO_PIN_FUNCTION(fname)                           \
+       [qca_mux_##fname] = PINCTRL_GPIO_PINFUNCTION(#fname,    \
+                                       fname##_groups,         \
+                                       ARRAY_SIZE(fname##_groups))
+
 /**
  * struct msm_pingroup - Qualcomm pingroup definition
  * @grp:                  Generic data of the pin group (name and pins)