marvell,armada-370-xp-mpic.txt 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Marvell Armada 370, 375, 38x, XP Interrupt Controller
  2. -----------------------------------------------------
  3. Required properties:
  4. - compatible: Should be "marvell,mpic"
  5. - interrupt-controller: Identifies the node as an interrupt controller.
  6. - msi-controller: Identifies the node as an PCI Message Signaled
  7. Interrupt controller.
  8. - #interrupt-cells: The number of cells to define the interrupts. Should be 1.
  9. The cell is the IRQ number
  10. - reg: Should contain PMIC registers location and length. First pair
  11. for the main interrupt registers, second pair for the per-CPU
  12. interrupt registers. For this last pair, to be compliant with SMP
  13. support, the "virtual" must be use (For the record, these registers
  14. automatically map to the interrupt controller registers of the
  15. current CPU)
  16. Optional properties:
  17. - interrupts: If defined, then it indicates that this MPIC is
  18. connected as a slave to another interrupt controller. This is
  19. typically the case on Armada 375 and Armada 38x, where the MPIC is
  20. connected as a slave to the Cortex-A9 GIC. The provided interrupt
  21. indicate to which GIC interrupt the MPIC output is connected.
  22. Example:
  23. mpic: interrupt-controller@d0020000 {
  24. compatible = "marvell,mpic";
  25. #interrupt-cells = <1>;
  26. #address-cells = <1>;
  27. #size-cells = <1>;
  28. interrupt-controller;
  29. msi-controller;
  30. reg = <0xd0020a00 0x1d0>,
  31. <0xd0021070 0x58>;
  32. };