pciback.h 6.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * PCI Backend Common Data Structures & Function Declarations
 *
 *   Author: Ryan Wilson <hap9@epoch.ncsc.mil>
 */
#ifndef __XEN_PCIBACK_H__
#define __XEN_PCIBACK_H__

#include <linux/pci.h>
#include <linux/interrupt.h>
#include <xen/xenbus.h>
#include <linux/list.h>
#include <linux/spinlock.h>
#include <linux/workqueue.h>
15
#include <linux/atomic.h>
16 17
#include <xen/interface/io/pciif.h>

18 19
#define DRV_NAME	"xen-pciback"

20 21 22 23 24
struct pci_dev_entry {
	struct list_head list;
	struct pci_dev *dev;
};

25 26
#define _PDEVF_op_active	(0)
#define PDEVF_op_active		(1<<(_PDEVF_op_active))
27 28 29
#define _PCIB_op_pending	(1)
#define PCIB_op_pending		(1<<(_PCIB_op_pending))

30
struct xen_pcibk_device {
31
	void *pci_dev_data;
32
	struct mutex dev_lock;
33 34 35 36 37 38 39
	struct xenbus_device *xdev;
	struct xenbus_watch be_watch;
	u8 be_watching;
	int evtchn_irq;
	struct xen_pci_sharedinfo *sh_info;
	unsigned long flags;
	struct work_struct op_work;
40
	struct xen_pci_op op;
41 42
};

43
struct xen_pcibk_dev_data {
44
	struct list_head config_fields;
45
	struct pci_saved_state *pci_saved_state;
46 47 48 49 50 51 52
	unsigned int permissive:1;
	unsigned int warned_on_write:1;
	unsigned int enable_intx:1;
	unsigned int isr_on:1; /* Whether the IRQ handler is installed. */
	unsigned int ack_intr:1; /* .. and ACK-ing */
	unsigned long handled;
	unsigned int irq; /* Saved in case device transitions to MSI/MSI-X */
53
	char irq_name[0]; /* xen-pcibk[000:04:00.0] */
54 55
};

56 57 58
/* Used by XenBus and xen_pcibk_ops.c */
extern wait_queue_head_t xen_pcibk_aer_wait_queue;
extern struct workqueue_struct *xen_pcibk_wq;
59
/* Used by pcistub.c and conf_space_quirks.c */
60
extern struct list_head xen_pcibk_quirks;
61 62

/* Get/Put PCI Devices that are hidden from the PCI Backend Domain */
63
struct pci_dev *pcistub_get_pci_dev_by_slot(struct xen_pcibk_device *pdev,
64 65
					    int domain, int bus,
					    int slot, int func);
66
struct pci_dev *pcistub_get_pci_dev(struct xen_pcibk_device *pdev,
67 68 69 70
				    struct pci_dev *dev);
void pcistub_put_pci_dev(struct pci_dev *dev);

/* Ensure a device is turned off or reset */
71
void xen_pcibk_reset_device(struct pci_dev *pdev);
72 73

/* Access a virtual configuration space for a PCI device */
74 75 76 77 78 79 80 81 82
int xen_pcibk_config_init(void);
int xen_pcibk_config_init_dev(struct pci_dev *dev);
void xen_pcibk_config_free_dyn_fields(struct pci_dev *dev);
void xen_pcibk_config_reset_dev(struct pci_dev *dev);
void xen_pcibk_config_free_dev(struct pci_dev *dev);
int xen_pcibk_config_read(struct pci_dev *dev, int offset, int size,
			  u32 *ret_val);
int xen_pcibk_config_write(struct pci_dev *dev, int offset, int size,
			   u32 value);
83 84

/* Handle requests for specific devices from the frontend */
85
typedef int (*publish_pci_dev_cb) (struct xen_pcibk_device *pdev,
86 87
				   unsigned int domain, unsigned int bus,
				   unsigned int devfn, unsigned int devid);
88
typedef int (*publish_pci_root_cb) (struct xen_pcibk_device *pdev,
89 90
				    unsigned int domain, unsigned int bus);

91 92 93 94 95
/* Backend registration for the two types of BDF representation:
 *  vpci - BDFs start at 00
 *  passthrough - BDFs are exactly like in the host.
 */
struct xen_pcibk_backend {
96
	const char *name;
97 98 99 100 101 102
	int (*init)(struct xen_pcibk_device *pdev);
	void (*free)(struct xen_pcibk_device *pdev);
	int (*find)(struct pci_dev *pcidev, struct xen_pcibk_device *pdev,
		    unsigned int *domain, unsigned int *bus,
		    unsigned int *devfn);
	int (*publish)(struct xen_pcibk_device *pdev, publish_pci_root_cb cb);
103 104
	void (*release)(struct xen_pcibk_device *pdev, struct pci_dev *dev,
                        bool lock);
105 106 107 108 109 110 111
	int (*add)(struct xen_pcibk_device *pdev, struct pci_dev *dev,
		   int devid, publish_pci_dev_cb publish_cb);
	struct pci_dev *(*get)(struct xen_pcibk_device *pdev,
			       unsigned int domain, unsigned int bus,
			       unsigned int devfn);
};

112 113 114
extern const struct xen_pcibk_backend xen_pcibk_vpci_backend;
extern const struct xen_pcibk_backend xen_pcibk_passthrough_backend;
extern const struct xen_pcibk_backend *xen_pcibk_backend;
115 116 117 118 119 120 121 122 123

static inline int xen_pcibk_add_pci_dev(struct xen_pcibk_device *pdev,
					struct pci_dev *dev,
					int devid,
					publish_pci_dev_cb publish_cb)
{
	if (xen_pcibk_backend && xen_pcibk_backend->add)
		return xen_pcibk_backend->add(pdev, dev, devid, publish_cb);
	return -1;
124 125
}

126
static inline void xen_pcibk_release_pci_dev(struct xen_pcibk_device *pdev,
127
					     struct pci_dev *dev, bool lock)
128
{
129
	if (xen_pcibk_backend && xen_pcibk_backend->release)
130
		return xen_pcibk_backend->release(pdev, dev, lock);
131
}
132 133 134 135 136 137 138 139

static inline struct pci_dev *
xen_pcibk_get_pci_dev(struct xen_pcibk_device *pdev, unsigned int domain,
		      unsigned int bus, unsigned int devfn)
{
	if (xen_pcibk_backend && xen_pcibk_backend->get)
		return xen_pcibk_backend->get(pdev, domain, bus, devfn);
	return NULL;
140 141
}

142
/**
143
* Add for domain0 PCIE-AER handling. Get guest domain/bus/devfn in xen_pcibk
144
* before sending aer request to pcifront, so that guest could identify
145
* device, coopearte with xen_pcibk to finish aer recovery job if device driver
146 147
* has the capability
*/
148 149 150 151 152 153 154 155 156 157
static inline int xen_pcibk_get_pcifront_dev(struct pci_dev *pcidev,
					     struct xen_pcibk_device *pdev,
					     unsigned int *domain,
					     unsigned int *bus,
					     unsigned int *devfn)
{
	if (xen_pcibk_backend && xen_pcibk_backend->find)
		return xen_pcibk_backend->find(pcidev, pdev, domain, bus,
					       devfn);
	return -1;
158 159
}

160 161 162 163 164
static inline int xen_pcibk_init_devices(struct xen_pcibk_device *pdev)
{
	if (xen_pcibk_backend && xen_pcibk_backend->init)
		return xen_pcibk_backend->init(pdev);
	return -1;
165 166
}

167 168 169 170 171 172
static inline int xen_pcibk_publish_pci_roots(struct xen_pcibk_device *pdev,
					      publish_pci_root_cb cb)
{
	if (xen_pcibk_backend && xen_pcibk_backend->publish)
		return xen_pcibk_backend->publish(pdev, cb);
	return -1;
173 174
}

175 176 177 178
static inline void xen_pcibk_release_devices(struct xen_pcibk_device *pdev)
{
	if (xen_pcibk_backend && xen_pcibk_backend->free)
		return xen_pcibk_backend->free(pdev);
179 180
}

181
/* Handles events from front-end */
182 183
irqreturn_t xen_pcibk_handle_event(int irq, void *dev_id);
void xen_pcibk_do_op(struct work_struct *data);
184

185 186
int xen_pcibk_xenbus_register(void);
void xen_pcibk_xenbus_unregister(void);
187 188 189

extern int verbose_request;

190
void xen_pcibk_test_and_schedule_op(struct xen_pcibk_device *pdev);
191 192
#endif

193
/* Handles shared IRQs that can to device domain and control domain. */
194
void xen_pcibk_irq_handler(struct pci_dev *dev, int reset);