aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2012-04-19 16:36:39 -0400
committerLinus Walleij <linus.walleij@linaro.org>2012-04-24 03:55:45 -0400
commit7919fb18cfcc9bc8c4751af4b26dada052483e98 (patch)
tree9d70453a4bff99d6a98ecdaf2efb4cd270043c28 /Documentation/devicetree
parent3f3ed40060ddef0c9fb6aef021a7937f8528f32c (diff)
drivers/gpio: represent gpio-nomadik as an IRQ controller in DT documentation
Now gpio-nomadik has proper bindings devices initialised by Device Tree entries are able to use the chained GPIO IRQ lines it provides. This patch aims to reflect that in the gpio-nmk documentation. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/gpio/gpio-nmk.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/gpio/gpio-nmk.txt b/Documentation/devicetree/bindings/gpio/gpio-nmk.txt
index 3856789b52ea..ee87467ad8d6 100644
--- a/Documentation/devicetree/bindings/gpio/gpio-nmk.txt
+++ b/Documentation/devicetree/bindings/gpio/gpio-nmk.txt
@@ -13,6 +13,7 @@ Required properties:
13 4 = active high level-sensitive. 13 4 = active high level-sensitive.
14 8 = active low level-sensitive. 14 8 = active low level-sensitive.
15- gpio-controller : Marks the device node as a GPIO controller. 15- gpio-controller : Marks the device node as a GPIO controller.
16- interrupt-controller : Marks the device node as an interrupt controller.
16- gpio-bank : Specifies which bank a controller owns. 17- gpio-bank : Specifies which bank a controller owns.
17- st,supports-sleepmode : Specifies whether controller can sleep or not 18- st,supports-sleepmode : Specifies whether controller can sleep or not
18 19
@@ -24,6 +25,7 @@ Example:
24 interrupts = <0 120 0x4>; 25 interrupts = <0 120 0x4>;
25 #gpio-cells = <2>; 26 #gpio-cells = <2>;
26 gpio-controller; 27 gpio-controller;
28 interrupt-controller;
27 supports-sleepmode; 29 supports-sleepmode;
28 gpio-bank = <1>; 30 gpio-bank = <1>;
29 }; 31 };