diff options
author | Joel Stanley <joel@jms.id.au> | 2016-05-13 00:13:12 +0930 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2016-06-22 18:41:10 +0000 |
commit | 50ad77db41fe3a08aeeae04088869142a1d9d007 (patch) | |
tree | c9cf120062abb564c774abab52893ef1fdc97039 /Documentation/devicetree/bindings | |
parent | 1a695a905c18548062509178b98bc91e67510864 (diff) | |
download | linux-50ad77db41fe3a08aeeae04088869142a1d9d007.tar.bz2 |
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>
Diffstat (limited to 'Documentation/devicetree/bindings')
-rw-r--r-- | Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-vic.txt | 22 |
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 @@ +Aspeed Vectored Interrupt Controller + +These bindings are for the Aspeed AST2400 interrupt controller register layout. +The SoC has an legacy register layout, but this driver does not support that +mode of operation. + +Required properties: + +- compatible : should be "aspeed,ast2400-vic". + +- interrupt-controller : Identifies the node as an interrupt controller +- #interrupt-cells : Specifies the number of cells needed to encode an + interrupt source. The value shall be 1. + +Example: + + vic: interrupt-controller@1e6c0080 { + compatible = "aspeed,ast2400-vic"; + interrupt-controller; + #interrupt-cells = <1>; + reg = <0x1e6c0080 0x80>; + }; |