Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1564370 > unrolled thread

[PATCH 06/22] gpio: add DT bindings for Cortina Gemini GPIO

Started byLinus Walleij <linus.walleij@linaro.org>
First post2017-01-22 13:20 +0100
Last post2017-01-23 21:10 +0100
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH 06/22] gpio: add DT bindings for Cortina Gemini GPIO Linus Walleij <linus.walleij@linaro.org> - 2017-01-22 13:20 +0100
    Re: [PATCH 06/22] gpio: add DT bindings for Cortina Gemini GPIO Rob Herring <robh@kernel.org> - 2017-01-23 21:10 +0100

#1564370 — [PATCH 06/22] gpio: add DT bindings for Cortina Gemini GPIO

FromLinus Walleij <linus.walleij@linaro.org>
Date2017-01-22 13:20 +0100
Subject[PATCH 06/22] gpio: add DT bindings for Cortina Gemini GPIO
Message-ID<t2phL-Fc-7@gated-at.bofh.it>
This adds fairly standard DT bindings for the Cortina Systems
Gemini GPIO controller.

Cc: Janos Laube <janos.dev@gmail.com>
Cc: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Cc: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: devicetree@vger.kernel.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
Note to self: just apply this to the GPIO tree when discussion is over.
---
 .../bindings/gpio/cortina,gemini-gpio.txt          | 24 ++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/gpio/cortina,gemini-gpio.txt

diff --git a/Documentation/devicetree/bindings/gpio/cortina,gemini-gpio.txt b/Documentation/devicetree/bindings/gpio/cortina,gemini-gpio.txt
new file mode 100644
index 000000000000..5c9246c054e5
--- /dev/null
+++ b/Documentation/devicetree/bindings/gpio/cortina,gemini-gpio.txt
@@ -0,0 +1,24 @@
+Cortina Systems Gemini GPIO Controller
+
+Required properties:
+
+- compatible : Must be "cortina,gemini-gpio"
+- reg : Should contain registers location and length
+- interrupts : Should contain the interrupt line for the GPIO block
+- gpio-controller : marks this as a GPIO controller
+- #gpio-cells : Should be 2, see gpio/gpio.txt
+- interrupt-controller : marks this as an interrupt controller
+- #interrupt-cells : a standard two-cell interrupt flag, see
+  interrupt-controller/interrupts.txt
+
+Example:
+
+gpio@4d000000 {
+	compatible = "cortina,gemini-gpio";
+	reg = <0x4d000000 0x100>;
+	interrupts = <22 IRQ_TYPE_LEVEL_HIGH>;
+	gpio-controller;
+	#gpio-cells = <2>;
+	interrupt-controller;
+	#interrupt-cells = <2>;
+};
-- 
2.9.3

[toc] | [next] | [standalone]


#1565271

FromRob Herring <robh@kernel.org>
Date2017-01-23 21:10 +0100
Message-ID<t2T6a-2tK-35@gated-at.bofh.it>
In reply to#1564370
On Sun, Jan 22, 2017 at 01:18:30PM +0100, Linus Walleij wrote:
> This adds fairly standard DT bindings for the Cortina Systems
> Gemini GPIO controller.
> 
> Cc: Janos Laube <janos.dev@gmail.com>
> Cc: Paulius Zaleckas <paulius.zaleckas@gmail.com>
> Cc: Hans Ulli Kroll <ulli.kroll@googlemail.com>
> Cc: Florian Fainelli <f.fainelli@gmail.com>
> Cc: devicetree@vger.kernel.org
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
> Note to self: just apply this to the GPIO tree when discussion is over.
> ---
>  .../bindings/gpio/cortina,gemini-gpio.txt          | 24 ++++++++++++++++++++++
>  1 file changed, 24 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/gpio/cortina,gemini-gpio.txt

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

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web