aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2016-05-12 10:43:12 -0400
committerJason Cooper <jason@lakedaemon.net>2016-06-22 14:41:10 -0400
commit50ad77db41fe3a08aeeae04088869142a1d9d007 (patch)
treec9cf120062abb564c774abab52893ef1fdc97039
parent1a695a905c18548062509178b98bc91e67510864 (diff)
doc/devicetree: Add Aspeed VIC bindings
Signed-off-by: Joel Stanley <joel@jms.id.au> Link: https://lkml.kernel.org/r/1463064193-2178-2-git-send-email-joel@jms.id.au Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r--Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-vic.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-vic.txt b/Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-vic.txt
new file mode 100644
index 000000000000..6c6e85324b9d
--- /dev/null
+++ b/Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-vic.txt
@@ -0,0 +1,22 @@
1Aspeed Vectored Interrupt Controller
2
3These bindings are for the Aspeed AST2400 interrupt controller register layout.
4The SoC has an legacy register layout, but this driver does not support that
5mode of operation.
6
7Required properties:
8
9- compatible : should be "aspeed,ast2400-vic".
10
11- interrupt-controller : Identifies the node as an interrupt controller
12- #interrupt-cells : Specifies the number of cells needed to encode an
13 interrupt source. The value shall be 1.
14
15Example:
16
17 vic: interrupt-controller@1e6c0080 {
18 compatible = "aspeed,ast2400-vic";
19 interrupt-controller;
20 #interrupt-cells = <1>;
21 reg = <0x1e6c0080 0x80>;
22 };