2006-10-04 16:16:59 +07:00
|
|
|
#ifndef LINUX_MSI_H
|
|
|
|
#define LINUX_MSI_H
|
|
|
|
|
2011-10-07 01:08:18 +07:00
|
|
|
#include <linux/kobject.h>
|
2007-04-05 14:19:10 +07:00
|
|
|
#include <linux/list.h>
|
|
|
|
|
2006-10-04 16:16:59 +07:00
|
|
|
struct msi_msg {
|
|
|
|
u32 address_lo; /* low 32 bits of msi message address */
|
|
|
|
u32 address_hi; /* high 32 bits of msi message address */
|
|
|
|
u32 data; /* 16 bits of msi message data */
|
|
|
|
};
|
|
|
|
|
2007-01-18 11:50:05 +07:00
|
|
|
/* Helper functions */
|
2010-09-28 21:46:51 +07:00
|
|
|
struct irq_data;
|
2010-09-29 00:09:51 +07:00
|
|
|
struct msi_desc;
|
2013-04-18 23:55:46 +07:00
|
|
|
void mask_msi_irq(struct irq_data *data);
|
|
|
|
void unmask_msi_irq(struct irq_data *data);
|
|
|
|
void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg);
|
|
|
|
void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg);
|
|
|
|
void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg);
|
|
|
|
void read_msi_msg(unsigned int irq, struct msi_msg *msg);
|
|
|
|
void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg);
|
|
|
|
void write_msi_msg(unsigned int irq, struct msi_msg *msg);
|
2006-10-04 16:16:59 +07:00
|
|
|
|
|
|
|
struct msi_desc {
|
|
|
|
struct {
|
2009-03-17 19:54:06 +07:00
|
|
|
__u8 is_msix : 1;
|
2009-03-17 19:54:10 +07:00
|
|
|
__u8 multiple: 3; /* log2 number of messages */
|
2006-10-04 16:16:59 +07:00
|
|
|
__u8 maskbit : 1; /* mask-pending bit supported ? */
|
|
|
|
__u8 is_64 : 1; /* Address size: 0=32bit 1=64bit */
|
|
|
|
__u8 pos; /* Location of the msi capability */
|
|
|
|
__u16 entry_nr; /* specific enabled entry */
|
|
|
|
unsigned default_irq; /* default pre-assigned irq */
|
2009-03-17 19:54:09 +07:00
|
|
|
} msi_attrib;
|
2006-10-04 16:16:59 +07:00
|
|
|
|
2009-03-17 19:54:09 +07:00
|
|
|
u32 masked; /* mask bits */
|
2007-04-05 14:19:10 +07:00
|
|
|
unsigned int irq;
|
|
|
|
struct list_head list;
|
2006-10-04 16:16:59 +07:00
|
|
|
|
2009-03-17 19:54:08 +07:00
|
|
|
union {
|
|
|
|
void __iomem *mask_base;
|
|
|
|
u8 mask_pos;
|
|
|
|
};
|
2006-10-04 16:16:59 +07:00
|
|
|
struct pci_dev *dev;
|
|
|
|
|
2007-03-09 03:04:57 +07:00
|
|
|
/* Last set MSI message */
|
|
|
|
struct msi_msg msg;
|
2011-10-07 01:08:18 +07:00
|
|
|
|
|
|
|
struct kobject kobj;
|
2006-10-04 16:16:59 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The arch hook for setup up msi irqs
|
|
|
|
*/
|
2007-01-29 02:56:37 +07:00
|
|
|
int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc);
|
2006-10-04 16:16:59 +07:00
|
|
|
void arch_teardown_msi_irq(unsigned int irq);
|
2013-04-18 23:55:46 +07:00
|
|
|
int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type);
|
|
|
|
void arch_teardown_msi_irqs(struct pci_dev *dev);
|
|
|
|
int arch_msi_check_device(struct pci_dev* dev, int nvec, int type);
|
2006-10-04 16:16:59 +07:00
|
|
|
|
|
|
|
#endif /* LINUX_MSI_H */
|