armada-370-xp-mpic.txt 840 B

1234567891011121314151617181920212223
  1. Marvell Armada 370 and Armada XP Interrupt Controller
  2. -----------------------------------------------------
  3. Required properties:
  4. - compatible: Should be "marvell,mpic"
  5. - interrupt-controller: Identifies the node as an interrupt controller.
  6. - #interrupt-cells: The number of cells to define the interrupts. Should be 1.
  7. The cell is the IRQ number
  8. - reg: Should contain PMIC registers location and length. First pair
  9. for the main interrupt registers, second pair for the per-CPU
  10. interrupt registers
  11. Example:
  12. mpic: interrupt-controller@d0020000 {
  13. compatible = "marvell,mpic";
  14. #interrupt-cells = <1>;
  15. #address-cells = <1>;
  16. #size-cells = <1>;
  17. interrupt-controller;
  18. reg = <0xd0020000 0x1000>,
  19. <0xd0021000 0x1000>;
  20. };