msi.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef LINUX_MSI_H
  2. #define LINUX_MSI_H
  3. #include <linux/list.h>
  4. struct msi_msg {
  5. u32 address_lo; /* low 32 bits of msi message address */
  6. u32 address_hi; /* high 32 bits of msi message address */
  7. u32 data; /* 16 bits of msi message data */
  8. };
  9. /* Helper functions */
  10. extern void mask_msi_irq(unsigned int irq);
  11. extern void unmask_msi_irq(unsigned int irq);
  12. extern void read_msi_msg(unsigned int irq, struct msi_msg *msg);
  13. extern void write_msi_msg(unsigned int irq, struct msi_msg *msg);
  14. struct msi_desc {
  15. struct {
  16. __u8 type : 5; /* {0: unused, 5h:MSI, 11h:MSI-X} */
  17. __u8 maskbit : 1; /* mask-pending bit supported ? */
  18. __u8 masked : 1;
  19. __u8 is_64 : 1; /* Address size: 0=32bit 1=64bit */
  20. __u8 pos; /* Location of the msi capability */
  21. __u16 entry_nr; /* specific enabled entry */
  22. unsigned default_irq; /* default pre-assigned irq */
  23. }msi_attrib;
  24. unsigned int irq;
  25. struct list_head list;
  26. void __iomem *mask_base;
  27. struct pci_dev *dev;
  28. /* Last set MSI message */
  29. struct msi_msg msg;
  30. };
  31. /*
  32. * The arch hook for setup up msi irqs
  33. */
  34. int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc);
  35. void arch_teardown_msi_irq(unsigned int irq);
  36. extern int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
  37. extern int arch_msi_check_device(struct pci_dev* dev, int nvec, int type);
  38. #endif /* LINUX_MSI_H */