1eb3fcf00SRob Herring* OMAP Interrupt Controller 2eb3fcf00SRob Herring 3eb3fcf00SRob HerringOMAP2/3 are using a TI interrupt controller that can support several 4eb3fcf00SRob Herringconfigurable number of interrupts. 5eb3fcf00SRob Herring 6eb3fcf00SRob HerringMain node required properties: 7eb3fcf00SRob Herring 8eb3fcf00SRob Herring- compatible : should be: 9eb3fcf00SRob Herring "ti,omap2-intc" 10eb3fcf00SRob Herring- interrupt-controller : Identifies the node as an interrupt controller 11eb3fcf00SRob Herring- #interrupt-cells : Specifies the number of cells needed to encode an 12eb3fcf00SRob Herring interrupt source. The type shall be a <u32> and the value shall be 1. 13eb3fcf00SRob Herring 14eb3fcf00SRob Herring The cell contains the interrupt number in the range [0-128]. 15eb3fcf00SRob Herring- ti,intc-size: Number of interrupts handled by the interrupt controller. 16eb3fcf00SRob Herring- reg: physical base address and size of the intc registers map. 17eb3fcf00SRob Herring 18eb3fcf00SRob HerringExample: 19eb3fcf00SRob Herring 20eb3fcf00SRob Herring intc: interrupt-controller@1 { 21eb3fcf00SRob Herring compatible = "ti,omap2-intc"; 22eb3fcf00SRob Herring interrupt-controller; 23eb3fcf00SRob Herring #interrupt-cells = <1>; 24eb3fcf00SRob Herring ti,intc-size = <96>; 25eb3fcf00SRob Herring reg = <0x48200000 0x1000>; 26eb3fcf00SRob Herring }; 27eb3fcf00SRob Herring 28