1 * NXP LPC32xx MIC, SIC1 and SIC2 Interrupt Controllers
4 - compatible: "nxp,lpc3220-mic" or "nxp,lpc3220-sic".
5 - reg: should contain IC registers location and length.
6 - interrupt-controller: identifies the node as an interrupt controller.
7 - #interrupt-cells: the number of cells to define an interrupt, should be 2.
8 The first cell is the IRQ number, the second cell is used to specify
9 one of the supported IRQ types:
10 IRQ_TYPE_EDGE_RISING = low-to-high edge triggered,
11 IRQ_TYPE_EDGE_FALLING = high-to-low edge triggered,
12 IRQ_TYPE_LEVEL_HIGH = active high level-sensitive,
13 IRQ_TYPE_LEVEL_LOW = active low level-sensitive.
14 Reset value is IRQ_TYPE_LEVEL_LOW.
17 - interrupt-parent: empty for MIC interrupt controller, link to parent
18 MIC interrupt controller for SIC1 and SIC2
19 - interrupts: empty for MIC interrupt controller, cascaded MIC
20 hardware interrupts for SIC1 and SIC2
24 /* LPC32xx MIC, SIC1 and SIC2 interrupt controllers */
25 mic: interrupt-controller@40008000 {
26 compatible = "nxp,lpc3220-mic";
27 reg = <0x40008000 0x4000>;
29 #interrupt-cells = <2>;
32 sic1: interrupt-controller@4000c000 {
33 compatible = "nxp,lpc3220-sic";
34 reg = <0x4000c000 0x4000>;
36 #interrupt-cells = <2>;
38 interrupt-parent = <&mic>;
39 interrupts = <0 IRQ_TYPE_LEVEL_LOW>,
40 <30 IRQ_TYPE_LEVEL_LOW>;
43 sic2: interrupt-controller@40010000 {
44 compatible = "nxp,lpc3220-sic";
45 reg = <0x40010000 0x4000>;
47 #interrupt-cells = <2>;
49 interrupt-parent = <&mic>;
50 interrupts = <1 IRQ_TYPE_LEVEL_LOW>,
51 <31 IRQ_TYPE_LEVEL_LOW>;
56 compatible = "nxp,lpc3220-adc";
57 reg = <0x40048000 0x1000>;
58 interrupt-parent = <&sic1>;
59 interrupts = <7 IRQ_TYPE_LEVEL_HIGH>;