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