1Allwinner Sunxi NMI Controller
2==============================
3
4Required properties:
5
6- compatible : should be one of the following:
7  - "allwinner,sun7i-a20-sc-nmi"
8  - "allwinner,sun6i-a31-sc-nmi" (deprecated)
9  - "allwinner,sun6i-a31-r-intc"
10  - "allwinner,sun9i-a80-nmi"
11- reg : Specifies base physical address and size of the registers.
12- interrupt-controller : Identifies the node as an interrupt controller
13- #interrupt-cells : Specifies the number of cells needed to encode an
14  interrupt source. The value shall be 2. The first cell is the IRQ number, the
15  second cell the trigger type as defined in interrupt.txt in this directory.
16- interrupts: Specifies the interrupt line (NMI) which is handled by
17  the interrupt controller in the parent controller's notation. This value
18  shall be the NMI.
19
20Example:
21
22sc-nmi-intc@1c00030 {
23	compatible = "allwinner,sun7i-a20-sc-nmi";
24	interrupt-controller;
25	#interrupt-cells = <2>;
26	reg = <0x01c00030 0x0c>;
27	interrupt-parent = <&gic>;
28	interrupts = <0 0 4>;
29};
30