Merge branch 'for-linus' into next
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / interrupt-controller / allwinner,sun4i-ic.txt
1 Allwinner Sunxi Interrupt Controller
2
3 Required properties:
4
5 - compatible : should be one of the following:
6               "allwinner,sun4i-a10-ic"
7               "allwinner,suniv-f1c100s-ic"
8 - reg : Specifies base physical address and size of the registers.
9 - interrupt-controller : Identifies the node as an interrupt controller
10 - #interrupt-cells : Specifies the number of cells needed to encode an
11   interrupt source. The value shall be 1.
12
13 Example:
14
15 intc: interrupt-controller {
16         compatible = "allwinner,sun4i-a10-ic";
17         reg = <0x01c20400 0x400>;
18         interrupt-controller;
19         #interrupt-cells = <1>;
20 };