msi.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. struct irq_desc;
  11. extern void mask_msi_irq(unsigned int irq);
  12. extern void unmask_msi_irq(unsigned int irq);
  13. extern void read_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg);
  14. extern void get_cached_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg);
  15. extern void write_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg);
  16. extern void read_msi_msg(unsigned int irq, struct msi_msg *msg);
  17. extern void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg);
  18. extern void write_msi_msg(unsigned int irq, struct msi_msg *msg);
  19. struct msi_desc {
  20. struct {
  21. __u8 is_msix : 1;
  22. __u8 multiple: 3; /* log2 number of messages */
  23. __u8 maskbit : 1; /* mask-pending bit supported ? */
  24. __u8 is_64 : 1; /* Address size: 0=32bit 1=64bit */
  25. __u8 pos; /* Location of the msi capability */
  26. __u16 entry_nr; /* specific enabled entry */
  27. unsigned default_irq; /* default pre-assigned irq */
  28. } msi_attrib;
  29. u32 masked; /* mask bits */
  30. unsigned int irq;
  31. struct list_head list;
  32. union {
  33. void __iomem *mask_base;
  34. u8 mask_pos;
  35. };
  36. struct pci_dev *dev;
  37. /* Last set MSI message */
  38. struct msi_msg msg;
  39. };
  40. /*
  41. * The arch hook for setup up msi irqs
  42. */
  43. int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc);
  44. void arch_teardown_msi_irq(unsigned int irq);
  45. extern int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
  46. extern void arch_teardown_msi_irqs(struct pci_dev *dev);
  47. extern int arch_msi_check_device(struct pci_dev* dev, int nvec, int type);
  48. #endif /* LINUX_MSI_H */