al,alpine-msix.txt 755 B

123456789101112131415161718192021222324252627
  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-parent: specifies the parent interrupt controller.
  7. - interrupt-controller: identifies the node as an interrupt controller
  8. - msi-controller: identifies the node as an PCI Message Signaled Interrupt
  9. controller
  10. - al,msi-base-spi: SPI base of the MSI frame
  11. - al,msi-num-spis: number of SPIs assigned to the MSI frame, relative to SPI0
  12. Example:
  13. msix: msix {
  14. compatible = "al,alpine-msix";
  15. reg = <0x0 0xfbe00000 0x0 0x100000>;
  16. interrupt-parent = <&gic>;
  17. interrupt-controller;
  18. msi-controller;
  19. al,msi-base-spi = <160>;
  20. al,msi-num-spis = <160>;
  21. };