This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / linux / msi.h
1 #ifndef LINUX_MSI_H
2 #define LINUX_MSI_H
3
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
10 /* Heper functions */
11 extern void mask_msi_irq(unsigned int irq);
12 extern void unmask_msi_irq(unsigned int irq);
13 extern void disable_msi_irq(unsigned int irq);
14 extern void enable_msi_irq(unsigned int irq);
15 extern void read_msi_msg(unsigned int irq, struct msi_msg *msg);
16
17 extern void write_msi_msg(unsigned int irq, struct msi_msg *msg);
18 extern void msix_flush_writes(unsigned int irq);
19
20 struct msi_desc {
21         struct {
22                 __u8    type    : 5;    /* {0: unused, 5h:MSI, 11h:MSI-X} */
23                 __u8    maskbit : 1;    /* mask-pending bit supported ?   */
24                 __u8    unused  : 1;
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         struct {
32                 __u16   head;
33                 __u16   tail;
34         }link;
35
36         void __iomem *mask_base;
37         struct pci_dev *dev;
38
39 #ifdef CONFIG_PM
40         /* PM save area for MSIX address/data */
41         struct msi_msg msg_save;
42 #endif
43 };
44
45 /*
46  * The arch hook for setup up msi irqs
47  */
48 int arch_setup_msi_irq(unsigned int irq, struct pci_dev *dev);
49 void arch_teardown_msi_irq(unsigned int irq);
50
51
52 #endif /* LINUX_MSI_H */