msi.h 2.6 KB
Newer Older
1 2 3
#ifndef LINUX_MSI_H
#define LINUX_MSI_H

4
#include <linux/kobject.h>
5 6
#include <linux/list.h>

7 8 9 10 11 12
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 */
};

S
Satoru Takeuchi 已提交
13
/* Helper functions */
14
struct irq_data;
15
struct msi_desc;
16 17 18 19 20 21 22 23
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);
24 25 26

struct msi_desc {
	struct {
27
		__u8	is_msix	: 1;
28
		__u8	multiple: 3;	/* log2 number of messages */
29 30 31 32 33
		__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	  */
34
	} msi_attrib;
35

36
	u32 masked;			/* mask bits */
37
	unsigned int irq;
38
	unsigned int nvec_used;		/* number of messages */
39
	struct list_head list;
40

41 42 43 44
	union {
		void __iomem *mask_base;
		u8 mask_pos;
	};
45 46
	struct pci_dev *dev;

47 48
	/* Last set MSI message */
	struct msi_msg msg;
49 50

	struct kobject kobj;
51 52 53
};

/*
54 55 56
 * The arch hooks to setup up msi irqs. Those functions are
 * implemented as weak symbols so that they /can/ be overriden by
 * architecture specific code if needed.
57
 */
58
int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc);
59
void arch_teardown_msi_irq(unsigned int irq);
60 61 62
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);
63 64 65 66
void arch_restore_msi_irqs(struct pci_dev *dev, int irq);

void default_teardown_msi_irqs(struct pci_dev *dev);
void default_restore_msi_irqs(struct pci_dev *dev, int irq);
67 68
u32 default_msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag);
u32 default_msix_mask_irq(struct msi_desc *desc, u32 flag);
69

70 71 72
struct msi_chip {
	struct module *owner;
	struct device *dev;
73 74
	struct device_node *of_node;
	struct list_head list;
75 76 77 78 79 80 81 82

	int (*setup_irq)(struct msi_chip *chip, struct pci_dev *dev,
			 struct msi_desc *desc);
	void (*teardown_irq)(struct msi_chip *chip, unsigned int irq);
	int (*check_device)(struct msi_chip *chip, struct pci_dev *dev,
			    int nvec, int type);
};

83
#endif /* LINUX_MSI_H */