* [PATCH] dt-bindings: pinctrl: cy8x95x0: Minor fix & update
@ 2024-01-26 11:57 Naresh Solanki
2024-01-26 16:48 ` Conor Dooley
0 siblings, 1 reply; 2+ messages in thread
From: Naresh Solanki @ 2024-01-26 11:57 UTC (permalink / raw)
To: Linus Walleij, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Patrick Rudolph
Cc: mazziesaccount, Naresh Solanki, linux-gpio, devicetree,
linux-kernel
Update maxItems to 60 for gpio-reserved-ranges.
Add input-enable property.
Rearrange allOf
Update example.
TEST=Run below command make sure there is no error.
make DT_CHECKER_FLAGS=-m dt_binding_check
Signed-off-by: Naresh Solanki <naresh.solanki@9elements.com>
---
.../bindings/pinctrl/cypress,cy8c95x0.yaml | 28 +++++++++++++++----
1 file changed, 23 insertions(+), 5 deletions(-)
diff --git a/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml b/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml
index 7f30ec2f1e54..89ce0cb68834 100644
--- a/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml
@@ -45,7 +45,8 @@ properties:
maxItems: 1
gpio-reserved-ranges:
- maxItems: 1
+ minItems: 1
+ maxItems: 60
vdd-supply:
description:
@@ -85,6 +86,8 @@ patternProperties:
bias-disable: true
+ input-enable: true
+
output-high: true
output-low: true
@@ -101,6 +104,9 @@ patternProperties:
additionalProperties: false
+allOf:
+ - $ref: pinctrl.yaml#
+
required:
- compatible
- reg
@@ -112,9 +118,6 @@ required:
additionalProperties: false
-allOf:
- - $ref: pinctrl.yaml#
-
examples:
- |
#include <dt-bindings/interrupt-controller/arm-gic.h>
@@ -133,6 +136,21 @@ examples:
interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
interrupt-controller;
vdd-supply = <&p3v3>;
- gpio-reserved-ranges = <5 1>;
+ gpio-reserved-ranges = <1 2>, <6 1>, <10 1>, <15 1>;
+
+ pinctrl-0 = <&U62160_pins>, <&U62160_ipins>;
+ pinctrl-names = "default";
+ U62160_pins: cfg-pins {
+ pins = "gp03", "gp16", "gp20", "gp50", "gp51";
+ function = "gpio";
+ input-enable;
+ bias-pull-up;
+ };
+ U62160_ipins: icfg-pins {
+ pins = "gp04", "gp17", "gp21", "gp52", "gp53";
+ function = "gpio";
+ input-enable;
+ bias-pull-up;
+ };
};
};
base-commit: ecb1b8288dc7ccbdcb3b9df005fa1c0e0c0388a7
--
2.42.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] dt-bindings: pinctrl: cy8x95x0: Minor fix & update
2024-01-26 11:57 [PATCH] dt-bindings: pinctrl: cy8x95x0: Minor fix & update Naresh Solanki
@ 2024-01-26 16:48 ` Conor Dooley
0 siblings, 0 replies; 2+ messages in thread
From: Conor Dooley @ 2024-01-26 16:48 UTC (permalink / raw)
To: Naresh Solanki
Cc: Linus Walleij, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Patrick Rudolph, mazziesaccount, linux-gpio, devicetree,
linux-kernel
[-- Attachment #1: Type: text/plain, Size: 2715 bytes --]
On Fri, Jan 26, 2024 at 05:27:48PM +0530, Naresh Solanki wrote:
> Update maxItems to 60 for gpio-reserved-ranges.
> Add input-enable property.
> Rearrange allOf
> Update example.
Same as elsewhere, please justify the changes rather than list what can
be seen in the diff.
> TEST=Run below command make sure there is no error.
> make DT_CHECKER_FLAGS=-m dt_binding_check
Same comment as elsewhere :)
Thanks,
Conor.
>
> Signed-off-by: Naresh Solanki <naresh.solanki@9elements.com>
> ---
> .../bindings/pinctrl/cypress,cy8c95x0.yaml | 28 +++++++++++++++----
> 1 file changed, 23 insertions(+), 5 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml b/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml
> index 7f30ec2f1e54..89ce0cb68834 100644
> --- a/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml
> +++ b/Documentation/devicetree/bindings/pinctrl/cypress,cy8c95x0.yaml
> @@ -45,7 +45,8 @@ properties:
> maxItems: 1
>
> gpio-reserved-ranges:
> - maxItems: 1
> + minItems: 1
> + maxItems: 60
>
> vdd-supply:
> description:
> @@ -85,6 +86,8 @@ patternProperties:
>
> bias-disable: true
>
> + input-enable: true
> +
> output-high: true
>
> output-low: true
> @@ -101,6 +104,9 @@ patternProperties:
>
> additionalProperties: false
>
> +allOf:
> + - $ref: pinctrl.yaml#
> +
> required:
> - compatible
> - reg
> @@ -112,9 +118,6 @@ required:
>
> additionalProperties: false
>
> -allOf:
> - - $ref: pinctrl.yaml#
> -
> examples:
> - |
> #include <dt-bindings/interrupt-controller/arm-gic.h>
> @@ -133,6 +136,21 @@ examples:
> interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
> interrupt-controller;
> vdd-supply = <&p3v3>;
> - gpio-reserved-ranges = <5 1>;
> + gpio-reserved-ranges = <1 2>, <6 1>, <10 1>, <15 1>;
> +
> + pinctrl-0 = <&U62160_pins>, <&U62160_ipins>;
> + pinctrl-names = "default";
> + U62160_pins: cfg-pins {
> + pins = "gp03", "gp16", "gp20", "gp50", "gp51";
> + function = "gpio";
> + input-enable;
> + bias-pull-up;
> + };
> + U62160_ipins: icfg-pins {
> + pins = "gp04", "gp17", "gp21", "gp52", "gp53";
> + function = "gpio";
> + input-enable;
> + bias-pull-up;
> + };
> };
> };
>
> base-commit: ecb1b8288dc7ccbdcb3b9df005fa1c0e0c0388a7
> --
> 2.42.0
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-01-26 16:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-26 11:57 [PATCH] dt-bindings: pinctrl: cy8x95x0: Minor fix & update Naresh Solanki
2024-01-26 16:48 ` Conor Dooley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).