]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
arm64: dts: ti: k3-j722s: fix pinctrl settings
authorMichael Walle <mwalle@kernel.org>
Fri, 21 Feb 2025 09:14:47 +0000 (10:14 +0100)
committerVignesh Raghavendra <vigneshr@ti.com>
Wed, 5 Mar 2025 04:16:09 +0000 (09:46 +0530)
It appears that pinctrl-single is misused on this SoC to control both
the mux and the input and output and bias settings. This results in
non-working pinctrl configurations for GPIOs within the device tree.

This is what happens:
 (1) During startup the pinctrl settings are applied according to the
     device tree. I.e. the pin is configured as output and with
     pull-ups enabled.
 (2) During startup a device driver requests a GPIO.
 (3) pinctrl-single is applying the default GPIO setting according to
     the pinctrl-single,gpio-range property.

This would work as expected if the pinctrl-single is only controlling
the function mux, but it also controls the input/output buffer enable,
the pull-up and pull-down settings etc (pinctrl-single,function-mask
covers the entire pad setting instead of just the mux field).

Remove the pinctrl-single,gpio-range property, so that no settings are
applied during a gpio_request() call.

Fixes: 5e5c50964e2e ("arm64: dts: ti: k3-j722s: Add gpio-ranges properties")
Signed-off-by: Michael Walle <mwalle@kernel.org>
Link: https://lore.kernel.org/r/20250221091447.595199-2-mwalle@kernel.org
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
arch/arm64/boot/dts/ti/k3-j722s-main.dtsi

index 3ac2d45a055857e6606d1b77258cd701e325a79a..6da7b3a2943c44c10d926ee3003821dac5a750a8 100644 (file)
        ti,interrupt-ranges = <7 71 21>;
 };
 
-&main_pmx0 {
-       pinctrl-single,gpio-range =
-               <&main_pmx0_range 0 32 PIN_GPIO_RANGE_IOPAD>,
-               <&main_pmx0_range 33 38 PIN_GPIO_RANGE_IOPAD>,
-               <&main_pmx0_range 72 17 PIN_GPIO_RANGE_IOPAD>,
-               <&main_pmx0_range 101 25 PIN_GPIO_RANGE_IOPAD>,
-               <&main_pmx0_range 137 5 PIN_GPIO_RANGE_IOPAD>,
-               <&main_pmx0_range 143 3 PIN_GPIO_RANGE_IOPAD>,
-               <&main_pmx0_range 149 2 PIN_GPIO_RANGE_IOPAD>;
-
-       main_pmx0_range: gpio-range {
-               #pinctrl-single,gpio-range-cells = <3>;
-       };
-};
-
 &main_gpio0 {
        gpio-ranges = <&main_pmx0 0 0 32>, <&main_pmx0 32 33 38>,
                        <&main_pmx0 70 72 17>;