marvell,gicp.txt 710 B

123456789101112131415161718192021222324252627
  1. Marvell GICP Controller
  2. -----------------------
  3. GICP is a Marvell extension of the GIC that allows to trigger GIC SPI
  4. interrupts by doing a memory transaction. It is used by the ICU
  5. located in the Marvell CP110 to turn wired interrupts inside the CP
  6. into GIC SPI interrupts.
  7. Required properties:
  8. - compatible: Must be "marvell,ap806-gicp"
  9. - reg: Must be the address and size of the GICP SPI registers
  10. - marvell,spi-ranges: tuples of GIC SPI interrupts ranges available
  11. for this GICP
  12. - msi-controller: indicates that this is an MSI controller
  13. Example:
  14. gicp_spi: gicp-spi@3f0040 {
  15. compatible = "marvell,ap806-gicp";
  16. reg = <0x3f0040 0x10>;
  17. marvell,spi-ranges = <64 64>, <288 64>;
  18. msi-controller;
  19. };