All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names
@ 2023-02-02 10:44 Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern Krzysztof Kozlowski
                   ` (11 more replies)
  0 siblings, 12 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Hi,

Changes since v1:
1. Match the driver's ngpios (so usually include the ufs-reset where
   applicable). Several patches were dropped, other rewritten.
2. Add tags

Best regards,
Krzysztof

Krzysztof Kozlowski (10):
  dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern
  dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and
    example
  dt-bindings: pinctrl: qcom,sm6375: correct GPIO name pattern and
    example
  dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern
  dt-bindings: pinctrl: qcom,sdx55: correct GPIO name pattern
  dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs
  dt-bindings: pinctrl: qcom: correct gpio-ranges in examples
  ARM: dts: qcom: sdx55: correct TLMM gpio-ranges
  arm64: dts: qcom: msm8953: correct TLMM gpio-ranges
  arm64: dts: qcom: sm6115: correct TLMM gpio-ranges

 .../devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml   | 2 +-
 .../devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml      | 4 ++--
 .../devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml   | 2 +-
 .../devicetree/bindings/pinctrl/qcom,msm8994-pinctrl.yaml   | 6 +++---
 .../devicetree/bindings/pinctrl/qcom,sdx55-pinctrl.yaml     | 2 +-
 .../devicetree/bindings/pinctrl/qcom,sm6375-tlmm.yaml       | 4 ++--
 .../devicetree/bindings/pinctrl/qcom,sm8250-pinctrl.yaml    | 2 +-
 .../devicetree/bindings/pinctrl/qcom,sm8350-tlmm.yaml       | 2 +-
 arch/arm/boot/dts/qcom-sdx55.dtsi                           | 2 +-
 arch/arm64/boot/dts/qcom/msm8953.dtsi                       | 2 +-
 arch/arm64/boot/dts/qcom/sm6115.dtsi                        | 2 +-
 11 files changed, 15 insertions(+), 15 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-02 17:31   ` Luca Weiss
                     ` (2 more replies)
  2023-02-02 10:44 ` [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example Krzysztof Kozlowski
                   ` (10 subsequent siblings)
  11 siblings, 3 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The MSM8226 TLMM pin controller has GPIOs 0-116, so correct the pattern
to bring back missing 107-109.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml
index a29b8a9e1f31..6cb667fa8665 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml
@@ -56,7 +56,7 @@ $defs:
           subnode.
         items:
           oneOf:
-            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-1][0-6])$"
+            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-6])$"
             - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk, sdc2_cmd, sdc2_data ]
         minItems: 1
         maxItems: 36
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-03  0:01   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: " Krzysztof Kozlowski
                   ` (9 subsequent siblings)
  11 siblings, 2 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The MSM8909 TLMM pin controller has GPIOs 0-112, so narrow the pattern
and gpio-ranges in the example.

Fixes: c249ec7ba1b1 ("dt-bindings: pinctrl: Add DT schema for qcom,msm8909-tlmm")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Stephan Gerhold <stephan@gerhold.net>
---
 .../devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml        | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
index 449e6e34be61..85082adc1811 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
@@ -63,7 +63,7 @@ $defs:
           subnode.
         items:
           oneOf:
-            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-7])$"
+            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-2])$"
             - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk, sdc2_cmd,
                       sdc2_data, qdsd_clk, qdsd_cmd, qdsd_data0, qdsd_data1,
                       qdsd_data2, qdsd_data3 ]
@@ -127,7 +127,7 @@ examples:
         interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
         gpio-controller;
         #gpio-cells = <2>;
-        gpio-ranges = <&tlmm 0 0 117>;
+        gpio-ranges = <&tlmm 0 0 113>;
         interrupt-controller;
         #interrupt-cells = <2>;
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: correct GPIO name pattern and example
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-03  0:04   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern Krzysztof Kozlowski
                   ` (8 subsequent siblings)
  11 siblings, 2 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The SM6375 TLMM pin controller has GPIOs 0-155, so narrow the pattern
and gpio-ranges in the example.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../devicetree/bindings/pinctrl/qcom,sm6375-tlmm.yaml         | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,sm6375-tlmm.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,sm6375-tlmm.yaml
index e4231d10d76f..66cef48ed59b 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,sm6375-tlmm.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,sm6375-tlmm.yaml
@@ -63,7 +63,7 @@ $defs:
           subnode.
         items:
           oneOf:
-            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-4][0-9]|15[0-6])$"
+            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-4][0-9]|15[0-5])$"
             - enum: [ ufs_reset, sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk,
                       sdc2_cmd, sdc2_data ]
         minItems: 1
@@ -134,7 +134,7 @@ examples:
         #gpio-cells = <2>;
         interrupt-controller;
         #interrupt-cells = <2>;
-        gpio-ranges = <&tlmm 0 0 157>;
+        gpio-ranges = <&tlmm 0 0 157>; /* GPIOs + ufs_reset */
 
         gpio-wo-subnode-state {
             pins = "gpio1";
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (2 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: " Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-02 17:33   ` Luca Weiss
                     ` (2 more replies)
  2023-02-02 10:44 ` [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: " Krzysztof Kozlowski
                   ` (7 subsequent siblings)
  11 siblings, 3 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The MSM8953 TLMM pin controller has GPIOs 0-141, so narrow the pattern.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml
index 6bcd52080801..ce219827ccc8 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml
@@ -53,7 +53,7 @@ $defs:
           subnode.
         items:
           oneOf:
-            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-7][0-9])$"
+            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-3][0-9]|14[01])$"
             - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc1_rclk, sdc2_clk,
                       sdc2_cmd, sdc2_data, qdsd_clk, qdsd_cmd, qdsd_data0,
                       qdsd_data1, qdsd_data2, qdsd_data3 ]
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: correct GPIO name pattern
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (3 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-03  0:04   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs Krzysztof Kozlowski
                   ` (6 subsequent siblings)
  11 siblings, 2 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The SDX55 TLMM pin controller has GPIOs 0-107, so narrow the pattern.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../devicetree/bindings/pinctrl/qcom,sdx55-pinctrl.yaml         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,sdx55-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,sdx55-pinctrl.yaml
index add3c7e64520..a40175258495 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,sdx55-pinctrl.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,sdx55-pinctrl.yaml
@@ -55,7 +55,7 @@ $defs:
           List of gpio pins affected by the properties specified in this subnode.
         items:
           oneOf:
-            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-1][0-6])$"
+            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-7])$"
             - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk, sdc2_cmd, sdc2_data ]
         minItems: 1
         maxItems: 36
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (4 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: " Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-03  0:05   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples Krzysztof Kozlowski
                   ` (5 subsequent siblings)
  11 siblings, 2 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

The MSM8994 TLMM pin controller has GPIOs 0-145, so narrow the pattern
and reduce sizes of arrays with pins.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../devicetree/bindings/pinctrl/qcom,msm8994-pinctrl.yaml   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,msm8994-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,msm8994-pinctrl.yaml
index f4a8180f5959..0c4936fc35ef 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8994-pinctrl.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8994-pinctrl.yaml
@@ -34,10 +34,10 @@ properties:
 
   gpio-reserved-ranges:
     minItems: 1
-    maxItems: 75
+    maxItems: 73
 
   gpio-line-names:
-    maxItems: 150
+    maxItems: 146
 
 patternProperties:
   "-state$":
@@ -63,7 +63,7 @@ $defs:
           subnode.
         items:
           oneOf:
-            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-4][0-9])$"
+            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-3][0-9]|14[0-5])$"
             - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc1_rclk, sdc2_clk,
                       sdc2_cmd, sdc2_data, sdc3_clk, sdc3_cmd, sdc3_data ]
         minItems: 1
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (5 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-03  0:05   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 08/10] ARM: dts: qcom: sdx55: correct TLMM gpio-ranges Krzysztof Kozlowski
                   ` (4 subsequent siblings)
  11 siblings, 2 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Correct the number of GPIOs in gpio-ranges to match reality.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../devicetree/bindings/pinctrl/qcom,sm8250-pinctrl.yaml        | 2 +-
 Documentation/devicetree/bindings/pinctrl/qcom,sm8350-tlmm.yaml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,sm8250-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,sm8250-pinctrl.yaml
index 56e058c315f7..cf561dff8893 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,sm8250-pinctrl.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,sm8250-pinctrl.yaml
@@ -131,6 +131,6 @@ examples:
         #gpio-cells = <2>;
         interrupt-controller;
         #interrupt-cells = <2>;
-        gpio-ranges = <&tlmm 0 0 180>;
+        gpio-ranges = <&tlmm 0 0 181>; /* GPIOs + ufs_reset */
         wakeup-parent = <&pdc>;
     };
diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,sm8350-tlmm.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,sm8350-tlmm.yaml
index e13d50d6d388..797242f68b1c 100644
--- a/Documentation/devicetree/bindings/pinctrl/qcom,sm8350-tlmm.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/qcom,sm8350-tlmm.yaml
@@ -130,7 +130,7 @@ examples:
         #gpio-cells = <2>;
         interrupt-controller;
         #interrupt-cells = <2>;
-        gpio-ranges = <&tlmm 0 0 203>;
+        gpio-ranges = <&tlmm 0 0 204>; /* GPIOs + ufs_reset */
 
         gpio-wo-subnode-state {
             pins = "gpio1";
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 08/10] ARM: dts: qcom: sdx55: correct TLMM gpio-ranges
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (6 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-02 10:44 ` [PATCH v2 09/10] arm64: dts: qcom: msm8953: " Krzysztof Kozlowski
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Correct the number of GPIOs in TLMM pin controller.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm/boot/dts/qcom-sdx55.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/dts/qcom-sdx55.dtsi b/arch/arm/boot/dts/qcom-sdx55.dtsi
index a9433d1e4f54..f1553e1e40db 100644
--- a/arch/arm/boot/dts/qcom-sdx55.dtsi
+++ b/arch/arm/boot/dts/qcom-sdx55.dtsi
@@ -560,7 +560,7 @@ tlmm: pinctrl@f100000 {
 			#gpio-cells = <2>;
 			interrupt-controller;
 			#interrupt-cells = <2>;
-			gpio-ranges = <&tlmm 0 0 109>;
+			gpio-ranges = <&tlmm 0 0 108>;
 		};
 
 		sram@1468f000 {
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 09/10] arm64: dts: qcom: msm8953: correct TLMM gpio-ranges
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (7 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 08/10] ARM: dts: qcom: sdx55: correct TLMM gpio-ranges Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-02 17:36   ` Luca Weiss
  2023-02-02 10:44 ` [PATCH v2 10/10] arm64: dts: qcom: sm6115: " Krzysztof Kozlowski
                   ` (2 subsequent siblings)
  11 siblings, 1 reply; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Correct the number of GPIOs in TLMM pin controller.

Fixes: 9fb08c801923 ("arm64: dts: qcom: Add MSM8953 device tree")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/msm8953.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8953.dtsi b/arch/arm64/boot/dts/qcom/msm8953.dtsi
index 4e17bc9f8167..610f3e3fc0c2 100644
--- a/arch/arm64/boot/dts/qcom/msm8953.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8953.dtsi
@@ -399,7 +399,7 @@ tlmm: pinctrl@1000000 {
 			reg = <0x1000000 0x300000>;
 			interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
 			gpio-controller;
-			gpio-ranges = <&tlmm 0 0 155>;
+			gpio-ranges = <&tlmm 0 0 142>;
 			#gpio-cells = <2>;
 			interrupt-controller;
 			#interrupt-cells = <2>;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [PATCH v2 10/10] arm64: dts: qcom: sm6115: correct TLMM gpio-ranges
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (8 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 09/10] arm64: dts: qcom: msm8953: " Krzysztof Kozlowski
@ 2023-02-02 10:44 ` Krzysztof Kozlowski
  2023-02-06 11:28   ` Iskren Chernev
  2023-02-02 22:28 ` [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Linus Walleij
  2023-02-09  4:23 ` (subset) " Bjorn Andersson
  11 siblings, 1 reply; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-02 10:44 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Luca Weiss, Iskren Chernev, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel
  Cc: Krzysztof Kozlowski

Correct the number of GPIOs in TLMM pin controller.

Fixes: 97e563bf5ba1 ("arm64: dts: qcom: sm6115: Add basic soc dtsi")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/qcom/sm6115.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sm6115.dtsi b/arch/arm64/boot/dts/qcom/sm6115.dtsi
index 50cb8a82ecd5..b9fff0b0ea1c 100644
--- a/arch/arm64/boot/dts/qcom/sm6115.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm6115.dtsi
@@ -363,7 +363,7 @@ tlmm: pinctrl@500000 {
 			reg-names = "west", "south", "east";
 			interrupts = <GIC_SPI 227 IRQ_TYPE_LEVEL_HIGH>;
 			gpio-controller;
-			gpio-ranges = <&tlmm 0 0 121>;
+			gpio-ranges = <&tlmm 0 0 114>; /* GPIOs + ufs_reset */
 			#gpio-cells = <2>;
 			interrupt-controller;
 			#interrupt-cells = <2>;
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern Krzysztof Kozlowski
@ 2023-02-02 17:31   ` Luca Weiss
  2023-02-03  0:00   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2 siblings, 0 replies; 33+ messages in thread
From: Luca Weiss @ 2023-02-02 17:31 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Iskren Chernev, linux-arm-msm, linux-gpio,
	devicetree, linux-kernel, Krzysztof Kozlowski
  Cc: Krzysztof Kozlowski

On Donnerstag, 2. Februar 2023 11:44:43 CET Krzysztof Kozlowski wrote:
> The MSM8226 TLMM pin controller has GPIOs 0-116, so correct the pattern
> to bring back missing 107-109.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Luca Weiss <luca@z3ntu.xyz>

> ---
>  .../devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml       | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git
> a/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml
> b/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml index
> a29b8a9e1f31..6cb667fa8665 100644
> --- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml
> +++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml
> @@ -56,7 +56,7 @@ $defs:
>            subnode.
>          items:
>            oneOf:
> -            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-1][0-6])$"
> +            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-6])$"
>              - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk, sdc2_cmd,
> sdc2_data ] minItems: 1
>          maxItems: 36





^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern Krzysztof Kozlowski
@ 2023-02-02 17:33   ` Luca Weiss
  2023-02-03  0:04   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2 siblings, 0 replies; 33+ messages in thread
From: Luca Weiss @ 2023-02-02 17:33 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Iskren Chernev, linux-arm-msm, linux-gpio,
	devicetree, linux-kernel, Krzysztof Kozlowski
  Cc: Krzysztof Kozlowski

On Donnerstag, 2. Februar 2023 11:44:46 CET Krzysztof Kozlowski wrote:
> The MSM8953 TLMM pin controller has GPIOs 0-141, so narrow the pattern.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Luca Weiss <luca@z3ntu.xyz>

> ---
>  .../devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml       | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git
> a/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml
> b/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml index
> 6bcd52080801..ce219827ccc8 100644
> --- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml
> +++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml
> @@ -53,7 +53,7 @@ $defs:
>            subnode.
>          items:
>            oneOf:
> -            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-7][0-9])$"
> +            - pattern: "^gpio([0-9]|[1-9][0-9]|1[0-3][0-9]|14[01])$"
>              - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc1_rclk, sdc2_clk,
>                        sdc2_cmd, sdc2_data, qdsd_clk, qdsd_cmd, qdsd_data0,
>                        qdsd_data1, qdsd_data2, qdsd_data3 ]





^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 09/10] arm64: dts: qcom: msm8953: correct TLMM gpio-ranges
  2023-02-02 10:44 ` [PATCH v2 09/10] arm64: dts: qcom: msm8953: " Krzysztof Kozlowski
@ 2023-02-02 17:36   ` Luca Weiss
  0 siblings, 0 replies; 33+ messages in thread
From: Luca Weiss @ 2023-02-02 17:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Rob Herring, Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul,
	Vladimir Lypak, Iskren Chernev, linux-arm-msm, linux-gpio,
	devicetree, linux-kernel, Krzysztof Kozlowski
  Cc: Krzysztof Kozlowski

On Donnerstag, 2. Februar 2023 11:44:51 CET Krzysztof Kozlowski wrote:
> Correct the number of GPIOs in TLMM pin controller.
> 
> Fixes: 9fb08c801923 ("arm64: dts: qcom: Add MSM8953 device tree")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Given msm8953 has gpio0 - gpio141, 142 looks correct.

Reviewed-by: Luca Weiss <luca@z3ntu.xyz>

> ---
>  arch/arm64/boot/dts/qcom/msm8953.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/msm8953.dtsi
> b/arch/arm64/boot/dts/qcom/msm8953.dtsi index 4e17bc9f8167..610f3e3fc0c2
> 100644
> --- a/arch/arm64/boot/dts/qcom/msm8953.dtsi
> +++ b/arch/arm64/boot/dts/qcom/msm8953.dtsi
> @@ -399,7 +399,7 @@ tlmm: pinctrl@1000000 {
>  			reg = <0x1000000 0x300000>;
>  			interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
>  			gpio-controller;
> -			gpio-ranges = <&tlmm 0 0 155>;
> +			gpio-ranges = <&tlmm 0 0 142>;
>  			#gpio-cells = <2>;
>  			interrupt-controller;
>  			#interrupt-cells = <2>;





^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (9 preceding siblings ...)
  2023-02-02 10:44 ` [PATCH v2 10/10] arm64: dts: qcom: sm6115: " Krzysztof Kozlowski
@ 2023-02-02 22:28 ` Linus Walleij
  2023-02-03  7:11   ` Krzysztof Kozlowski
  2023-02-09  4:23 ` (subset) " Bjorn Andersson
  11 siblings, 1 reply; 33+ messages in thread
From: Linus Walleij @ 2023-02-02 22:28 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul, Vladimir Lypak,
	Luca Weiss, Iskren Chernev, linux-arm-msm, linux-gpio,
	devicetree, linux-kernel

On Thu, Feb 2, 2023 at 11:45 AM Krzysztof Kozlowski
<krzysztof.kozlowski@linaro.org> wrote:

> Changes since v1:
> 1. Match the driver's ngpios (so usually include the ufs-reset where
>    applicable). Several patches were dropped, other rewritten.
> 2. Add tags

Needless to say I'm a big fan of the series:
Acked-by: Linus Walleij <linus.walleij@linaro.org>

Will you send me a pull request for the pinctrl things as soon as
you feel confident it is finished, and I'll queue it up for v6.3?

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern Krzysztof Kozlowski
  2023-02-02 17:31   ` Luca Weiss
@ 2023-02-03  0:00   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2 siblings, 0 replies; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:00 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Vladimir Lypak, devicetree, linux-gpio, Andy Gross,
	linux-arm-msm, Stephan Gerhold, Krzysztof Kozlowski,
	Konrad Dybcio, Luca Weiss, Rob Herring, Bjorn Andersson,
	Vinod Koul, Linus Walleij, Iskren Chernev, linux-kernel


On Thu, 02 Feb 2023 11:44:43 +0100, Krzysztof Kozlowski wrote:
> The MSM8226 TLMM pin controller has GPIOs 0-116, so correct the pattern
> to bring back missing 107-109.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../devicetree/bindings/pinctrl/qcom,msm8226-pinctrl.yaml       | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example
  2023-02-02 10:44 ` [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example Krzysztof Kozlowski
@ 2023-02-03  0:01   ` Rob Herring
  2023-02-03  0:03     ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  1 sibling, 1 reply; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:01 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul, Vladimir Lypak,
	Luca Weiss, Iskren Chernev, linux-arm-msm, linux-gpio,
	devicetree, linux-kernel

On Thu, Feb 02, 2023 at 11:44:44AM +0100, Krzysztof Kozlowski wrote:
> The MSM8909 TLMM pin controller has GPIOs 0-112, so narrow the pattern
> and gpio-ranges in the example.
> 
> Fixes: c249ec7ba1b1 ("dt-bindings: pinctrl: Add DT schema for qcom,msm8909-tlmm")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Reviewed-by: Stephan Gerhold <stephan@gerhold.net>
> ---
>  .../devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml        | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
> index 449e6e34be61..85082adc1811 100644
> --- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
> +++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
> @@ -63,7 +63,7 @@ $defs:
>            subnode.
>          items:
>            oneOf:
> -            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-7])$"
> +            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-2])$"
>              - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk, sdc2_cmd,
>                        sdc2_data, qdsd_clk, qdsd_cmd, qdsd_data0, qdsd_data1,
>                        qdsd_data2, qdsd_data3 ]
> @@ -127,7 +127,7 @@ examples:
>          interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
>          gpio-controller;
>          #gpio-cells = <2>;
> -        gpio-ranges = <&tlmm 0 0 117>;
> +        gpio-ranges = <&tlmm 0 0 113>;

I thought 112 was the max?

>          interrupt-controller;
>          #interrupt-cells = <2>;
>  
> -- 
> 2.34.1
> 

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example
  2023-02-03  0:01   ` Rob Herring
@ 2023-02-03  0:03     ` Rob Herring
  0 siblings, 0 replies; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:03 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Linus Walleij,
	Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul, Vladimir Lypak,
	Luca Weiss, Iskren Chernev, linux-arm-msm, linux-gpio,
	devicetree, linux-kernel

On Thu, Feb 2, 2023 at 6:01 PM Rob Herring <robh@kernel.org> wrote:
>
> On Thu, Feb 02, 2023 at 11:44:44AM +0100, Krzysztof Kozlowski wrote:
> > The MSM8909 TLMM pin controller has GPIOs 0-112, so narrow the pattern
> > and gpio-ranges in the example.
> >
> > Fixes: c249ec7ba1b1 ("dt-bindings: pinctrl: Add DT schema for qcom,msm8909-tlmm")
> > Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> > Reviewed-by: Stephan Gerhold <stephan@gerhold.net>
> > ---
> >  .../devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml        | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml b/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
> > index 449e6e34be61..85082adc1811 100644
> > --- a/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
> > +++ b/Documentation/devicetree/bindings/pinctrl/qcom,msm8909-tlmm.yaml
> > @@ -63,7 +63,7 @@ $defs:
> >            subnode.
> >          items:
> >            oneOf:
> > -            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-7])$"
> > +            - pattern: "^gpio([0-9]|[1-9][0-9]|10[0-9]|11[0-2])$"
> >              - enum: [ sdc1_clk, sdc1_cmd, sdc1_data, sdc2_clk, sdc2_cmd,
> >                        sdc2_data, qdsd_clk, qdsd_cmd, qdsd_data0, qdsd_data1,
> >                        qdsd_data2, qdsd_data3 ]
> > @@ -127,7 +127,7 @@ examples:
> >          interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
> >          gpio-controller;
> >          #gpio-cells = <2>;
> > -        gpio-ranges = <&tlmm 0 0 117>;
> > +        gpio-ranges = <&tlmm 0 0 113>;
>
> I thought 112 was the max?

That's the count, duh.

Acked-by: Rob Herring <robh@kernel.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: correct GPIO name pattern and example
  2023-02-02 10:44 ` [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: " Krzysztof Kozlowski
@ 2023-02-03  0:04   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Iskren Chernev, Luca Weiss, linux-arm-msm, Bjorn Andersson,
	Stephan Gerhold, Rob Herring, Konrad Dybcio, linux-gpio,
	linux-kernel, Andy Gross, Vinod Koul, devicetree, Linus Walleij,
	Krzysztof Kozlowski, Vladimir Lypak


On Thu, 02 Feb 2023 11:44:45 +0100, Krzysztof Kozlowski wrote:
> The SM6375 TLMM pin controller has GPIOs 0-155, so narrow the pattern
> and gpio-ranges in the example.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../devicetree/bindings/pinctrl/qcom,sm6375-tlmm.yaml         | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern Krzysztof Kozlowski
  2023-02-02 17:33   ` Luca Weiss
@ 2023-02-03  0:04   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  2 siblings, 0 replies; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Bjorn Andersson, Rob Herring, Krzysztof Kozlowski,
	Stephan Gerhold, Vladimir Lypak, Vinod Koul, devicetree,
	linux-gpio, Iskren Chernev, Linus Walleij, Konrad Dybcio,
	Luca Weiss, linux-arm-msm, linux-kernel, Andy Gross


On Thu, 02 Feb 2023 11:44:46 +0100, Krzysztof Kozlowski wrote:
> The MSM8953 TLMM pin controller has GPIOs 0-141, so narrow the pattern.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../devicetree/bindings/pinctrl/qcom,msm8953-pinctrl.yaml       | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: " Krzysztof Kozlowski
@ 2023-02-03  0:04   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:04 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: linux-arm-msm, linux-kernel, Vinod Koul, Andy Gross,
	Stephan Gerhold, Rob Herring, Linus Walleij, devicetree,
	Iskren Chernev, Bjorn Andersson, Krzysztof Kozlowski, linux-gpio,
	Vladimir Lypak, Konrad Dybcio, Luca Weiss


On Thu, 02 Feb 2023 11:44:47 +0100, Krzysztof Kozlowski wrote:
> The SDX55 TLMM pin controller has GPIOs 0-107, so narrow the pattern.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../devicetree/bindings/pinctrl/qcom,sdx55-pinctrl.yaml         | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs
  2023-02-02 10:44 ` [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs Krzysztof Kozlowski
@ 2023-02-03  0:05   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:05 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: linux-arm-msm, linux-kernel, Linus Walleij, Konrad Dybcio,
	Bjorn Andersson, Rob Herring, Stephan Gerhold, Vinod Koul,
	Luca Weiss, Vladimir Lypak, Iskren Chernev, Andy Gross,
	linux-gpio, devicetree, Krzysztof Kozlowski


On Thu, 02 Feb 2023 11:44:48 +0100, Krzysztof Kozlowski wrote:
> The MSM8994 TLMM pin controller has GPIOs 0-145, so narrow the pattern
> and reduce sizes of arrays with pins.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../devicetree/bindings/pinctrl/qcom,msm8994-pinctrl.yaml   | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples
  2023-02-02 10:44 ` [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples Krzysztof Kozlowski
@ 2023-02-03  0:05   ` Rob Herring
  2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Rob Herring @ 2023-02-03  0:05 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Vinod Koul, linux-gpio, Bjorn Andersson, Rob Herring,
	Iskren Chernev, devicetree, linux-kernel, Luca Weiss,
	Linus Walleij, Konrad Dybcio, linux-arm-msm, Stephan Gerhold,
	Vladimir Lypak, Krzysztof Kozlowski, Andy Gross


On Thu, 02 Feb 2023 11:44:49 +0100, Krzysztof Kozlowski wrote:
> Correct the number of GPIOs in gpio-ranges to match reality.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
>  .../devicetree/bindings/pinctrl/qcom,sm8250-pinctrl.yaml        | 2 +-
>  Documentation/devicetree/bindings/pinctrl/qcom,sm8350-tlmm.yaml | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 

Acked-by: Rob Herring <robh@kernel.org>


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names
  2023-02-02 22:28 ` [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Linus Walleij
@ 2023-02-03  7:11   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:11 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Andy Gross, Bjorn Andersson, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, Stephan Gerhold, Vinod Koul, Vladimir Lypak,
	Luca Weiss, Iskren Chernev, linux-arm-msm, linux-gpio,
	devicetree, linux-kernel

On 02/02/2023 23:28, Linus Walleij wrote:
> On Thu, Feb 2, 2023 at 11:45 AM Krzysztof Kozlowski
> <krzysztof.kozlowski@linaro.org> wrote:
> 
>> Changes since v1:
>> 1. Match the driver's ngpios (so usually include the ufs-reset where
>>    applicable). Several patches were dropped, other rewritten.
>> 2. Add tags
> 
> Needless to say I'm a big fan of the series:
> Acked-by: Linus Walleij <linus.walleij@linaro.org>
> 
> Will you send me a pull request for the pinctrl things as soon as
> you feel confident it is finished, and I'll queue it up for v6.3?

Sure!

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern Krzysztof Kozlowski
  2023-02-02 17:31   ` Luca Weiss
  2023-02-03  0:00   ` Rob Herring
@ 2023-02-03  7:17   ` Krzysztof Kozlowski
  2 siblings, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:17 UTC (permalink / raw)
  To: Iskren Chernev, Krzysztof Kozlowski, linux-arm-msm, Rob Herring,
	Bjorn Andersson, Luca Weiss, Vinod Koul, linux-kernel,
	Krzysztof Kozlowski, Konrad Dybcio, linux-gpio, Andy Gross,
	Stephan Gerhold, devicetree, Linus Walleij, Vladimir Lypak

On Thu, 2 Feb 2023 11:44:43 +0100, Krzysztof Kozlowski wrote:
> The MSM8226 TLMM pin controller has GPIOs 0-116, so correct the pattern
> to bring back missing 107-109.
> 
> 

Applied, thanks!

[01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern
        https://git.kernel.org/krzk/linux-dt/c/792349083a7307bf34de26516bc047cfd5c6296b

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example
  2023-02-02 10:44 ` [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example Krzysztof Kozlowski
  2023-02-03  0:01   ` Rob Herring
@ 2023-02-03  7:17   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:17 UTC (permalink / raw)
  To: Iskren Chernev, linux-kernel, linux-arm-msm, Rob Herring,
	Luca Weiss, Bjorn Andersson, Vinod Koul, Vladimir Lypak,
	Krzysztof Kozlowski, Konrad Dybcio, linux-gpio, Andy Gross,
	Stephan Gerhold, devicetree, Linus Walleij, Krzysztof Kozlowski

On Thu, 2 Feb 2023 11:44:44 +0100, Krzysztof Kozlowski wrote:
> The MSM8909 TLMM pin controller has GPIOs 0-112, so narrow the pattern
> and gpio-ranges in the example.
> 
> 

Applied, thanks!

[02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example
        https://git.kernel.org/krzk/linux-dt/c/87b93dd1fbb23b9bbae461bb2c01f6d93c7524d9

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: correct GPIO name pattern and example
  2023-02-02 10:44 ` [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: " Krzysztof Kozlowski
  2023-02-03  0:04   ` Rob Herring
@ 2023-02-03  7:17   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:17 UTC (permalink / raw)
  To: Iskren Chernev, linux-arm-msm, linux-kernel, Rob Herring,
	Luca Weiss, Bjorn Andersson, Vinod Koul, Vladimir Lypak,
	Krzysztof Kozlowski, Konrad Dybcio, linux-gpio, Andy Gross,
	Stephan Gerhold, devicetree, Linus Walleij, Krzysztof Kozlowski

On Thu, 2 Feb 2023 11:44:45 +0100, Krzysztof Kozlowski wrote:
> The SM6375 TLMM pin controller has GPIOs 0-155, so narrow the pattern
> and gpio-ranges in the example.
> 
> 

Applied, thanks!

[03/10] dt-bindings: pinctrl: qcom,sm6375: correct GPIO name pattern and example
        https://git.kernel.org/krzk/linux-dt/c/a51c1f0244c84e482f1ceb4701c38aaa4b224baf

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern Krzysztof Kozlowski
  2023-02-02 17:33   ` Luca Weiss
  2023-02-03  0:04   ` Rob Herring
@ 2023-02-03  7:17   ` Krzysztof Kozlowski
  2 siblings, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:17 UTC (permalink / raw)
  To: Iskren Chernev, linux-arm-msm, linux-kernel, Rob Herring,
	Luca Weiss, Bjorn Andersson, Vinod Koul, Vladimir Lypak,
	Krzysztof Kozlowski, Konrad Dybcio, linux-gpio, Andy Gross,
	Stephan Gerhold, devicetree, Linus Walleij, Krzysztof Kozlowski

On Thu, 2 Feb 2023 11:44:46 +0100, Krzysztof Kozlowski wrote:
> The MSM8953 TLMM pin controller has GPIOs 0-141, so narrow the pattern.
> 
> 

Applied, thanks!

[04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern
        https://git.kernel.org/krzk/linux-dt/c/913137a1cd1e792587e8ae2a43d31389fdbaddf6

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: correct GPIO name pattern
  2023-02-02 10:44 ` [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: " Krzysztof Kozlowski
  2023-02-03  0:04   ` Rob Herring
@ 2023-02-03  7:17   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:17 UTC (permalink / raw)
  To: Iskren Chernev, linux-arm-msm, linux-kernel, Rob Herring,
	Luca Weiss, Krzysztof Kozlowski, Vinod Koul, Vladimir Lypak,
	Krzysztof Kozlowski, Konrad Dybcio, linux-gpio, Andy Gross,
	Stephan Gerhold, devicetree, Linus Walleij, Bjorn Andersson

On Thu, 2 Feb 2023 11:44:47 +0100, Krzysztof Kozlowski wrote:
> The SDX55 TLMM pin controller has GPIOs 0-107, so narrow the pattern.
> 
> 

Applied, thanks!

[05/10] dt-bindings: pinctrl: qcom,sdx55: correct GPIO name pattern
        https://git.kernel.org/krzk/linux-dt/c/5c7069712c9be01d1bf9061a7ef5ce78df0af0a5

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs
  2023-02-02 10:44 ` [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs Krzysztof Kozlowski
  2023-02-03  0:05   ` Rob Herring
@ 2023-02-03  7:17   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:17 UTC (permalink / raw)
  To: Iskren Chernev, Krzysztof Kozlowski, linux-kernel, Rob Herring,
	Luca Weiss, linux-arm-msm, Vinod Koul, Vladimir Lypak,
	Krzysztof Kozlowski, Konrad Dybcio, linux-gpio, Andy Gross,
	Stephan Gerhold, devicetree, Linus Walleij, Bjorn Andersson

On Thu, 2 Feb 2023 11:44:48 +0100, Krzysztof Kozlowski wrote:
> The MSM8994 TLMM pin controller has GPIOs 0-145, so narrow the pattern
> and reduce sizes of arrays with pins.
> 
> 

Applied, thanks!

[06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs
        https://git.kernel.org/krzk/linux-dt/c/174668bf5f6c2dd03441a4660e249cc5e2c78b95

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples
  2023-02-02 10:44 ` [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples Krzysztof Kozlowski
  2023-02-03  0:05   ` Rob Herring
@ 2023-02-03  7:17   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 33+ messages in thread
From: Krzysztof Kozlowski @ 2023-02-03  7:17 UTC (permalink / raw)
  To: Iskren Chernev, linux-arm-msm, linux-kernel, Rob Herring,
	Luca Weiss, Bjorn Andersson, Vinod Koul, Vladimir Lypak,
	Krzysztof Kozlowski, Konrad Dybcio, linux-gpio, Andy Gross,
	Stephan Gerhold, devicetree, Linus Walleij, Krzysztof Kozlowski

On Thu, 2 Feb 2023 11:44:49 +0100, Krzysztof Kozlowski wrote:
> Correct the number of GPIOs in gpio-ranges to match reality.
> 
> 

Applied, thanks!

[07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples
        https://git.kernel.org/krzk/linux-dt/c/6f4e10ffa8fbccf220f7c5c869e8373065b9ef7d

Best regards,
-- 
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: [PATCH v2 10/10] arm64: dts: qcom: sm6115: correct TLMM gpio-ranges
  2023-02-02 10:44 ` [PATCH v2 10/10] arm64: dts: qcom: sm6115: " Krzysztof Kozlowski
@ 2023-02-06 11:28   ` Iskren Chernev
  0 siblings, 0 replies; 33+ messages in thread
From: Iskren Chernev @ 2023-02-06 11:28 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Andy Gross, Bjorn Andersson, Konrad Dybcio,
	Linus Walleij, Rob Herring, Krzysztof Kozlowski, Stephan Gerhold,
	Vinod Koul, Vladimir Lypak, Luca Weiss, linux-arm-msm,
	linux-gpio, devicetree, linux-kernel



On 2/2/23 12:44, Krzysztof Kozlowski wrote:
> Correct the number of GPIOs in TLMM pin controller.
> 
> Fixes: 97e563bf5ba1 ("arm64: dts: qcom: sm6115: Add basic soc dtsi")
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Iskren Chernev <me@iskren.info>

> ---
>  arch/arm64/boot/dts/qcom/sm6115.dtsi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/qcom/sm6115.dtsi b/arch/arm64/boot/dts/qcom/sm6115.dtsi
> index 50cb8a82ecd5..b9fff0b0ea1c 100644
> --- a/arch/arm64/boot/dts/qcom/sm6115.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm6115.dtsi
> @@ -363,7 +363,7 @@ tlmm: pinctrl@500000 {
>  			reg-names = "west", "south", "east";
>  			interrupts = <GIC_SPI 227 IRQ_TYPE_LEVEL_HIGH>;
>  			gpio-controller;
> -			gpio-ranges = <&tlmm 0 0 121>;
> +			gpio-ranges = <&tlmm 0 0 114>; /* GPIOs + ufs_reset */
>  			#gpio-cells = <2>;
>  			interrupt-controller;
>  			#interrupt-cells = <2>;

^ permalink raw reply	[flat|nested] 33+ messages in thread

* Re: (subset) [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names
  2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
                   ` (10 preceding siblings ...)
  2023-02-02 22:28 ` [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Linus Walleij
@ 2023-02-09  4:23 ` Bjorn Andersson
  11 siblings, 0 replies; 33+ messages in thread
From: Bjorn Andersson @ 2023-02-09  4:23 UTC (permalink / raw)
  To: Iskren Chernev, Andy Gross, Linus Walleij, linux-gpio,
	Stephan Gerhold, Rob Herring, Luca Weiss, Vladimir Lypak,
	devicetree, Konrad Dybcio, Krzysztof Kozlowski, Vinod Koul,
	linux-kernel, Krzysztof Kozlowski, linux-arm-msm

On Thu, 2 Feb 2023 11:44:42 +0100, Krzysztof Kozlowski wrote:
> Changes since v1:
> 1. Match the driver's ngpios (so usually include the ufs-reset where
>    applicable). Several patches were dropped, other rewritten.
> 2. Add tags
> 
> Best regards,
> Krzysztof
> 
> [...]

Applied, thanks!

[08/10] ARM: dts: qcom: sdx55: correct TLMM gpio-ranges
        commit: 2291bbd74f3869fb0400a6f867e2ec6d2620b1c2

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2023-02-09  4:33 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-02 10:44 [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 01/10] dt-bindings: pinctrl: qcom,msm8226: correct GPIO name pattern Krzysztof Kozlowski
2023-02-02 17:31   ` Luca Weiss
2023-02-03  0:00   ` Rob Herring
2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 02/10] dt-bindings: pinctrl: qcom,msm8909: correct GPIO name pattern and example Krzysztof Kozlowski
2023-02-03  0:01   ` Rob Herring
2023-02-03  0:03     ` Rob Herring
2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 03/10] dt-bindings: pinctrl: qcom,sm6375: " Krzysztof Kozlowski
2023-02-03  0:04   ` Rob Herring
2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 04/10] dt-bindings: pinctrl: qcom,msm8953: correct GPIO name pattern Krzysztof Kozlowski
2023-02-02 17:33   ` Luca Weiss
2023-02-03  0:04   ` Rob Herring
2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 05/10] dt-bindings: pinctrl: qcom,sdx55: " Krzysztof Kozlowski
2023-02-03  0:04   ` Rob Herring
2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 06/10] dt-bindings: pinctrl: qcom,msm8994: correct number of GPIOs Krzysztof Kozlowski
2023-02-03  0:05   ` Rob Herring
2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 07/10] dt-bindings: pinctrl: qcom: correct gpio-ranges in examples Krzysztof Kozlowski
2023-02-03  0:05   ` Rob Herring
2023-02-03  7:17   ` (subset) " Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 08/10] ARM: dts: qcom: sdx55: correct TLMM gpio-ranges Krzysztof Kozlowski
2023-02-02 10:44 ` [PATCH v2 09/10] arm64: dts: qcom: msm8953: " Krzysztof Kozlowski
2023-02-02 17:36   ` Luca Weiss
2023-02-02 10:44 ` [PATCH v2 10/10] arm64: dts: qcom: sm6115: " Krzysztof Kozlowski
2023-02-06 11:28   ` Iskren Chernev
2023-02-02 22:28 ` [PATCH v2 00/10] pinctrl/ARM/arm64: qcom: correct TLMM gpio-ranges and GPIO pin names Linus Walleij
2023-02-03  7:11   ` Krzysztof Kozlowski
2023-02-09  4:23 ` (subset) " Bjorn Andersson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.