0001 * TI Common Platform Interrupt Controller
0002
0003 Common Platform Interrupt Controller (cp_intc) is used on
0004 OMAP-L1x SoCs and can support several configurable number
0005 of interrupts.
0006
0007 Main node required properties:
0008
0009 - compatible : should be:
0010 "ti,cp-intc"
0011 - interrupt-controller : Identifies the node as an interrupt controller
0012 - #interrupt-cells : Specifies the number of cells needed to encode an
0013 interrupt source. The type shall be a <u32> and the value shall be 1.
0014
0015 The cell contains the interrupt number in the range [0-128].
0016 - ti,intc-size: Number of interrupts handled by the interrupt controller.
0017 - reg: physical base address and size of the intc registers map.
0018
0019 Example:
0020
0021 intc: interrupt-controller@1 {
0022 compatible = "ti,cp-intc";
0023 interrupt-controller;
0024 #interrupt-cells = <1>;
0025 ti,intc-size = <101>;
0026 reg = <0xfffee000 0x2000>;
0027 };