1Ingenic SoC Interrupt Controller 2 3Required properties: 4 5- compatible : should be "ingenic,<socname>-intc". Valid strings are: 6 ingenic,jz4740-intc 7 ingenic,jz4725b-intc 8 ingenic,jz4770-intc 9 ingenic,jz4775-intc 10 ingenic,jz4780-intc 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 1. 15- interrupts : Specifies the CPU interrupt the controller is connected to. 16 17Example: 18 19intc: interrupt-controller@10001000 { 20 compatible = "ingenic,jz4740-intc"; 21 reg = <0x10001000 0x14>; 22 23 interrupt-controller; 24 #interrupt-cells = <1>; 25 26 interrupt-parent = <&cpuintc>; 27 interrupts = <2>; 28}; 29