al,alpine-msix.txt 692 B

12345678910111213141516171819202122232425
  1. Alpine MSIX controller
  2. See arm,gic-v3.txt for SPI and MSI definitions.
  3. Required properties:
  4. - compatible: should be "al,alpine-msix"
  5. - reg: physical base address and size of the registers
  6. - interrupt-controller: identifies the node as an interrupt controller
  7. - msi-controller: identifies the node as an PCI Message Signaled Interrupt
  8. controller
  9. - al,msi-base-spi: SPI base of the MSI frame
  10. - al,msi-num-spis: number of SPIs assigned to the MSI frame, relative to SPI0
  11. Example:
  12. msix: msix {
  13. compatible = "al,alpine-msix";
  14. reg = <0x0 0xfbe00000 0x0 0x100000>;
  15. interrupt-parent = <&gic>;
  16. interrupt-controller;
  17. msi-controller;
  18. al,msi-base-spi = <160>;
  19. al,msi-num-spis = <160>;
  20. };