]> Git Repo - linux.git/commitdiff
wilc1000: Document enable-gpios and reset-gpios properties
authorDavid Mosberger-Tang <[email protected]>
Tue, 21 Dec 2021 21:25:34 +0000 (21:25 +0000)
committerKalle Valo <[email protected]>
Wed, 22 Dec 2021 17:51:18 +0000 (19:51 +0200)
Add documentation for the ENABLE and RESET GPIOs that may be needed by
wilc1000-spi.

Signed-off-by: David Mosberger-Tang <[email protected]>
Reviewed-by: Rob Herring <[email protected]>
Signed-off-by: Kalle Valo <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Documentation/devicetree/bindings/net/wireless/microchip,wilc1000.yaml

index 6c35682377e6d1d413dbd7dbe9c0dcd8e5617d8a..60de78f1bc7b9c4a8885d4fc4ade73ddc5f6dcbe 100644 (file)
@@ -32,6 +32,21 @@ properties:
   clock-names:
     const: rtc
 
+  enable-gpios:
+    maxItems: 1
+    description: Used by wilc1000-spi to determine the GPIO line
+      connected to the ENABLE line.  If specified, reset-gpios
+      must be specified as well as otherwise the driver cannot
+      ensure the timing required between asserting ENABLE
+      and deasserting RESET.  This should be declared as an
+      active-high signal.
+
+  reset-gpios:
+    maxItems: 1
+    description: Used by wilc1000-spi to determine the GPIO line
+      connected to the RESET line.  This should be declared as an
+      active-low signal.
+
 required:
   - compatible
   - interrupts
@@ -40,6 +55,8 @@ additionalProperties: false
 
 examples:
   - |
+    #include <dt-bindings/gpio/gpio.h>
+
     spi {
       #address-cells = <1>;
       #size-cells = <0>;
@@ -51,6 +68,8 @@ examples:
         interrupts = <27 0>;
         clocks = <&pck1>;
         clock-names = "rtc";
+        enable-gpios = <&pioA 5 GPIO_ACTIVE_HIGH>;
+        reset-gpios = <&pioA 6 GPIO_ACTIVE_LOW>;
       };
     };
 
This page took 0.080769 seconds and 4 git commands to generate.