ti,cp-intc.txt 844 B

123456789101112131415161718192021222324252627
  1. * TI Common Platform Interrupt Controller
  2. Common Platform Interrupt Controller (cp_intc) is used on
  3. OMAP-L1x SoCs and can support several configurable number
  4. of interrupts.
  5. Main node required properties:
  6. - compatible : should be:
  7. "ti,cp-intc"
  8. - interrupt-controller : Identifies the node as an interrupt controller
  9. - #interrupt-cells : Specifies the number of cells needed to encode an
  10. interrupt source. The type shall be a <u32> and the value shall be 1.
  11. The cell contains the interrupt number in the range [0-128].
  12. - ti,intc-size: Number of interrupts handled by the interrupt controller.
  13. - reg: physical base address and size of the intc registers map.
  14. Example:
  15. intc: interrupt-controller@1 {
  16. compatible = "ti,cp-intc";
  17. interrupt-controller;
  18. #interrupt-cells = <1>;
  19. ti,intc-size = <101>;
  20. reg = <0xfffee000 0x2000>;
  21. };