blob: e9b4011c5f9a8109322192c75b67ca50fb325853 [file] [log] [blame]
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001/*
2 * PCI Backend Common Data Structures & Function Declarations
3 *
4 * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
5 */
6#ifndef __XEN_PCIBACK_H__
7#define __XEN_PCIBACK_H__
8
9#include <linux/pci.h>
10#include <linux/interrupt.h>
11#include <xen/xenbus.h>
12#include <linux/list.h>
13#include <linux/spinlock.h>
14#include <linux/workqueue.h>
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -040015#include <linux/atomic.h>
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040016#include <xen/interface/io/pciif.h>
17
Jan Beulich402c5e12011-09-21 16:22:11 -040018#define DRV_NAME "xen-pciback"
19
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040020struct pci_dev_entry {
21 struct list_head list;
22 struct pci_dev *dev;
23};
24
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -040025#define _PDEVF_op_active (0)
26#define PDEVF_op_active (1<<(_PDEVF_op_active))
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040027#define _PCIB_op_pending (1)
28#define PCIB_op_pending (1<<(_PCIB_op_pending))
29
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040030struct xen_pcibk_device {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040031 void *pci_dev_data;
Konrad Rzeszutek Wilkb1766b62011-09-16 14:43:14 -040032 struct mutex dev_lock;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040033 struct xenbus_device *xdev;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040034 struct xenbus_watch be_watch;
35 u8 be_watching;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040036 int evtchn_irq;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040037 struct xen_pci_sharedinfo *sh_info;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040038 unsigned long flags;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040039 struct work_struct op_work;
40};
41
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040042struct xen_pcibk_dev_data {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040043 struct list_head config_fields;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040044 unsigned int permissive:1;
45 unsigned int warned_on_write:1;
46 unsigned int enable_intx:1;
47 unsigned int isr_on:1; /* Whether the IRQ handler is installed. */
48 unsigned int ack_intr:1; /* .. and ACK-ing */
49 unsigned long handled;
50 unsigned int irq; /* Saved in case device transitions to MSI/MSI-X */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040051 char irq_name[0]; /* xen-pcibk[000:04:00.0] */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040052};
53
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040054/* Used by XenBus and xen_pcibk_ops.c */
55extern wait_queue_head_t xen_pcibk_aer_wait_queue;
56extern struct workqueue_struct *xen_pcibk_wq;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040057/* Used by pcistub.c and conf_space_quirks.c */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040058extern struct list_head xen_pcibk_quirks;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040059
60/* Get/Put PCI Devices that are hidden from the PCI Backend Domain */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040061struct pci_dev *pcistub_get_pci_dev_by_slot(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040062 int domain, int bus,
63 int slot, int func);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040064struct pci_dev *pcistub_get_pci_dev(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040065 struct pci_dev *dev);
66void pcistub_put_pci_dev(struct pci_dev *dev);
67
68/* Ensure a device is turned off or reset */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040069void xen_pcibk_reset_device(struct pci_dev *pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040070
71/* Access a virtual configuration space for a PCI device */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040072int xen_pcibk_config_init(void);
73int xen_pcibk_config_init_dev(struct pci_dev *dev);
74void xen_pcibk_config_free_dyn_fields(struct pci_dev *dev);
75void xen_pcibk_config_reset_dev(struct pci_dev *dev);
76void xen_pcibk_config_free_dev(struct pci_dev *dev);
77int xen_pcibk_config_read(struct pci_dev *dev, int offset, int size,
78 u32 *ret_val);
79int xen_pcibk_config_write(struct pci_dev *dev, int offset, int size,
80 u32 value);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040081
82/* Handle requests for specific devices from the frontend */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040083typedef int (*publish_pci_dev_cb) (struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040084 unsigned int domain, unsigned int bus,
85 unsigned int devfn, unsigned int devid);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040086typedef int (*publish_pci_root_cb) (struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040087 unsigned int domain, unsigned int bus);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040088
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -040089/* Backend registration for the two types of BDF representation:
90 * vpci - BDFs start at 00
91 * passthrough - BDFs are exactly like in the host.
92 */
93struct xen_pcibk_backend {
Jan Beulich402c5e12011-09-21 16:22:11 -040094 const char *name;
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -040095 int (*init)(struct xen_pcibk_device *pdev);
96 void (*free)(struct xen_pcibk_device *pdev);
97 int (*find)(struct pci_dev *pcidev, struct xen_pcibk_device *pdev,
98 unsigned int *domain, unsigned int *bus,
99 unsigned int *devfn);
100 int (*publish)(struct xen_pcibk_device *pdev, publish_pci_root_cb cb);
101 void (*release)(struct xen_pcibk_device *pdev, struct pci_dev *dev);
102 int (*add)(struct xen_pcibk_device *pdev, struct pci_dev *dev,
103 int devid, publish_pci_dev_cb publish_cb);
104 struct pci_dev *(*get)(struct xen_pcibk_device *pdev,
105 unsigned int domain, unsigned int bus,
106 unsigned int devfn);
107};
108
Jan Beulich402c5e12011-09-21 16:22:11 -0400109extern const struct xen_pcibk_backend xen_pcibk_vpci_backend;
110extern const struct xen_pcibk_backend xen_pcibk_passthrough_backend;
111extern const struct xen_pcibk_backend *xen_pcibk_backend;
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400112
113static inline int xen_pcibk_add_pci_dev(struct xen_pcibk_device *pdev,
114 struct pci_dev *dev,
115 int devid,
116 publish_pci_dev_cb publish_cb)
117{
118 if (xen_pcibk_backend && xen_pcibk_backend->add)
119 return xen_pcibk_backend->add(pdev, dev, devid, publish_cb);
120 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400121}
122
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400123static inline void xen_pcibk_release_pci_dev(struct xen_pcibk_device *pdev,
124 struct pci_dev *dev)
125{
126 if (xen_pcibk_backend && xen_pcibk_backend->free)
127 return xen_pcibk_backend->release(pdev, dev);
Jan Beulich402c5e12011-09-21 16:22:11 -0400128}
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400129
130static inline struct pci_dev *
131xen_pcibk_get_pci_dev(struct xen_pcibk_device *pdev, unsigned int domain,
132 unsigned int bus, unsigned int devfn)
133{
134 if (xen_pcibk_backend && xen_pcibk_backend->get)
135 return xen_pcibk_backend->get(pdev, domain, bus, devfn);
136 return NULL;
Jan Beulich402c5e12011-09-21 16:22:11 -0400137}
138
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400139/**
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400140* Add for domain0 PCIE-AER handling. Get guest domain/bus/devfn in xen_pcibk
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400141* before sending aer request to pcifront, so that guest could identify
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400142* device, coopearte with xen_pcibk to finish aer recovery job if device driver
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400143* has the capability
144*/
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400145static inline int xen_pcibk_get_pcifront_dev(struct pci_dev *pcidev,
146 struct xen_pcibk_device *pdev,
147 unsigned int *domain,
148 unsigned int *bus,
149 unsigned int *devfn)
150{
151 if (xen_pcibk_backend && xen_pcibk_backend->find)
152 return xen_pcibk_backend->find(pcidev, pdev, domain, bus,
153 devfn);
154 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400155}
156
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400157static inline int xen_pcibk_init_devices(struct xen_pcibk_device *pdev)
158{
159 if (xen_pcibk_backend && xen_pcibk_backend->init)
160 return xen_pcibk_backend->init(pdev);
161 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400162}
163
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400164static inline int xen_pcibk_publish_pci_roots(struct xen_pcibk_device *pdev,
165 publish_pci_root_cb cb)
166{
167 if (xen_pcibk_backend && xen_pcibk_backend->publish)
168 return xen_pcibk_backend->publish(pdev, cb);
169 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400170}
171
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400172static inline void xen_pcibk_release_devices(struct xen_pcibk_device *pdev)
173{
174 if (xen_pcibk_backend && xen_pcibk_backend->free)
175 return xen_pcibk_backend->free(pdev);
Jan Beulich402c5e12011-09-21 16:22:11 -0400176}
177
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400178/* Handles events from front-end */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400179irqreturn_t xen_pcibk_handle_event(int irq, void *dev_id);
180void xen_pcibk_do_op(struct work_struct *data);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400181
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400182int xen_pcibk_xenbus_register(void);
183void xen_pcibk_xenbus_unregister(void);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400184
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400185extern int verbose_request;
186
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400187void xen_pcibk_test_and_schedule_op(struct xen_pcibk_device *pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400188#endif
189
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400190/* Handles shared IRQs that can to device domain and control domain. */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400191void xen_pcibk_irq_handler(struct pci_dev *dev, int reset);