PCI MSI: Refactor interrupt masking code
[deliverable/linux.git] / include / linux / msi.h
1 #ifndef LINUX_MSI_H
2 #define LINUX_MSI_H
3
4 #include <linux/list.h>
5
6 struct msi_msg {
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 */
10 };
11
12 /* Helper functions */
13 struct irq_desc;
14 extern void mask_msi_irq(unsigned int irq);
15 extern void unmask_msi_irq(unsigned int irq);
16 extern void read_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg);
17 extern void write_msi_msg_desc(struct irq_desc *desc, struct msi_msg *msg);
18 extern void read_msi_msg(unsigned int irq, struct msi_msg *msg);
19 extern void write_msi_msg(unsigned int irq, struct msi_msg *msg);
20
21 struct msi_desc {
22 struct {
23 __u8 is_msix : 1;
24 __u8 maskbit : 1; /* mask-pending bit supported ? */
25 __u8 is_64 : 1; /* Address size: 0=32bit 1=64bit */
26 __u8 pos; /* Location of the msi capability */
27 __u16 entry_nr; /* specific enabled entry */
28 unsigned default_irq; /* default pre-assigned irq */
29 } msi_attrib;
30
31 u32 masked; /* mask bits */
32 unsigned int irq;
33 struct list_head list;
34
35 union {
36 void __iomem *mask_base;
37 u8 mask_pos;
38 };
39 struct pci_dev *dev;
40
41 /* Last set MSI message */
42 struct msi_msg msg;
43 };
44
45 /*
46 * The arch hook for setup up msi irqs
47 */
48 int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc);
49 void arch_teardown_msi_irq(unsigned int irq);
50 extern int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
51 extern void arch_teardown_msi_irqs(struct pci_dev *dev);
52 extern int arch_msi_check_device(struct pci_dev* dev, int nvec, int type);
53
54
55 #endif /* LINUX_MSI_H */
This page took 0.031938 seconds and 6 git commands to generate.