diff options
author | Daniel Tang <dt.tangr@gmail.com> | 2013-12-05 17:12:17 +1100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-01-22 21:48:55 +0100 |
commit | 397e7b515785cad6e10b29f3001fd80c3f519bb8 (patch) | |
tree | 14efaf3aedfb75f343135941c1275d995e0fa6bf /Documentation/devicetree/bindings/interrupt-controller | |
parent | 43881ec7a88a3d3b2fd6da58168173e135b41fba (diff) | |
download | talos-obmc-linux-397e7b515785cad6e10b29f3001fd80c3f519bb8.tar.gz talos-obmc-linux-397e7b515785cad6e10b29f3001fd80c3f519bb8.zip |
irqchip: Add support for TI-NSPIRE irqchip
This patch adds support for the interrupt controllers found in some
TI-Nspire models.
FIQ support was taken out to simplify the driver code and may be added
in later. Since Linux on this platform doesn't really use FIQs, this
wasn't really that important in the first place.
[ tglx: Made zevio_handle_irq static and reordered __init functions ]
Signed-off-by: Daniel Tang <dt.tangr@gmail.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Link: http://lkml.kernel.org/r/1386223937-12189-1-git-send-email-dt.tangr@gmail.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'Documentation/devicetree/bindings/interrupt-controller')
-rw-r--r-- | Documentation/devicetree/bindings/interrupt-controller/lsi,zevio-intc.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/interrupt-controller/lsi,zevio-intc.txt b/Documentation/devicetree/bindings/interrupt-controller/lsi,zevio-intc.txt new file mode 100644 index 000000000000..aee38e7c13e7 --- /dev/null +++ b/Documentation/devicetree/bindings/interrupt-controller/lsi,zevio-intc.txt @@ -0,0 +1,18 @@ +TI-NSPIRE interrupt controller + +Required properties: +- compatible: Compatible property value should be "lsi,zevio-intc". + +- reg: Physical base address of the controller and length of memory mapped + region. + +- interrupt-controller : Identifies the node as an interrupt controller + +Example: + +interrupt-controller { + compatible = "lsi,zevio-intc"; + interrupt-controller; + reg = <0xDC000000 0x1000>; + #interrupt-cells = <1>; +}; |