blob: b290ca150d30eabb5bd25ac64ff8efb682caab47 [file] [log] [blame]
Maxime Ripardafd24e12012-11-14 09:59:14 +01001Allwinner Sunxi Interrupt Controller
2
3Required properties:
4
Maxime Riparda7e8b4b2014-02-07 21:50:25 +01005- compatible : should be "allwinner,sun4i-a10-ic"
Maxime Ripardafd24e12012-11-14 09:59:14 +01006- reg : Specifies base physical address and size of the registers.
7- interrupt-controller : Identifies the node as an interrupt controller
8- #interrupt-cells : Specifies the number of cells needed to encode an
9 interrupt source. The value shall be 1.
10
Maxime Ripardafd24e12012-11-14 09:59:14 +010011Example:
12
13intc: interrupt-controller {
Maxime Riparda7e8b4b2014-02-07 21:50:25 +010014 compatible = "allwinner,sun4i-a10-ic";
Maxime Ripardafd24e12012-11-14 09:59:14 +010015 reg = <0x01c20400 0x400>;
16 interrupt-controller;
Baruch Siacha3b7a0c2013-12-11 14:33:13 +020017 #interrupt-cells = <1>;
Maxime Ripardafd24e12012-11-14 09:59:14 +010018};