blob: 263c059bff900ad2b6234fc87b87f9c8e3e99b1a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04002/*
3 * PCI Backend Common Data Structures & Function Declarations
4 *
5 * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
6 */
7#ifndef __XEN_PCIBACK_H__
8#define __XEN_PCIBACK_H__
9
10#include <linux/pci.h>
11#include <linux/interrupt.h>
12#include <xen/xenbus.h>
13#include <linux/list.h>
14#include <linux/spinlock.h>
15#include <linux/workqueue.h>
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -040016#include <linux/atomic.h>
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040017#include <xen/interface/io/pciif.h>
18
Jan Beulich402c5e12011-09-21 16:22:11 -040019#define DRV_NAME "xen-pciback"
20
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040021struct pci_dev_entry {
22 struct list_head list;
23 struct pci_dev *dev;
24};
25
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -040026#define _PDEVF_op_active (0)
27#define PDEVF_op_active (1<<(_PDEVF_op_active))
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040028#define _PCIB_op_pending (1)
29#define PCIB_op_pending (1<<(_PCIB_op_pending))
30
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040031struct xen_pcibk_device {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040032 void *pci_dev_data;
Konrad Rzeszutek Wilkb1766b62011-09-16 14:43:14 -040033 struct mutex dev_lock;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040034 struct xenbus_device *xdev;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040035 struct xenbus_watch be_watch;
36 u8 be_watching;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040037 int evtchn_irq;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040038 struct xen_pci_sharedinfo *sh_info;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040039 unsigned long flags;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040040 struct work_struct op_work;
Konrad Rzeszutek Wilk8135cf82015-11-16 12:40:48 -050041 struct xen_pci_op op;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040042};
43
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040044struct xen_pcibk_dev_data {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040045 struct list_head config_fields;
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -050046 struct pci_saved_state *pci_saved_state;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040047 unsigned int permissive:1;
48 unsigned int warned_on_write:1;
49 unsigned int enable_intx:1;
50 unsigned int isr_on:1; /* Whether the IRQ handler is installed. */
51 unsigned int ack_intr:1; /* .. and ACK-ing */
52 unsigned long handled;
53 unsigned int irq; /* Saved in case device transitions to MSI/MSI-X */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040054 char irq_name[0]; /* xen-pcibk[000:04:00.0] */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040055};
56
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040057/* Used by XenBus and xen_pcibk_ops.c */
58extern wait_queue_head_t xen_pcibk_aer_wait_queue;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040059/* Used by pcistub.c and conf_space_quirks.c */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040060extern struct list_head xen_pcibk_quirks;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040061
62/* Get/Put PCI Devices that are hidden from the PCI Backend Domain */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040063struct pci_dev *pcistub_get_pci_dev_by_slot(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040064 int domain, int bus,
65 int slot, int func);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040066struct pci_dev *pcistub_get_pci_dev(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040067 struct pci_dev *dev);
68void pcistub_put_pci_dev(struct pci_dev *dev);
69
70/* Ensure a device is turned off or reset */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040071void xen_pcibk_reset_device(struct pci_dev *pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040072
73/* Access a virtual configuration space for a PCI device */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040074int xen_pcibk_config_init(void);
75int xen_pcibk_config_init_dev(struct pci_dev *dev);
76void xen_pcibk_config_free_dyn_fields(struct pci_dev *dev);
77void xen_pcibk_config_reset_dev(struct pci_dev *dev);
78void xen_pcibk_config_free_dev(struct pci_dev *dev);
79int xen_pcibk_config_read(struct pci_dev *dev, int offset, int size,
80 u32 *ret_val);
81int xen_pcibk_config_write(struct pci_dev *dev, int offset, int size,
82 u32 value);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040083
84/* Handle requests for specific devices from the frontend */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040085typedef int (*publish_pci_dev_cb) (struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040086 unsigned int domain, unsigned int bus,
87 unsigned int devfn, unsigned int devid);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040088typedef int (*publish_pci_root_cb) (struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040089 unsigned int domain, unsigned int bus);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040090
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -040091/* Backend registration for the two types of BDF representation:
92 * vpci - BDFs start at 00
93 * passthrough - BDFs are exactly like in the host.
94 */
95struct xen_pcibk_backend {
Jan Beulich402c5e12011-09-21 16:22:11 -040096 const char *name;
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -040097 int (*init)(struct xen_pcibk_device *pdev);
98 void (*free)(struct xen_pcibk_device *pdev);
99 int (*find)(struct pci_dev *pcidev, struct xen_pcibk_device *pdev,
100 unsigned int *domain, unsigned int *bus,
101 unsigned int *devfn);
102 int (*publish)(struct xen_pcibk_device *pdev, publish_pci_root_cb cb);
Konrad Rzeszutek Wilke8801a72014-12-03 16:40:26 -0500103 void (*release)(struct xen_pcibk_device *pdev, struct pci_dev *dev,
104 bool lock);
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400105 int (*add)(struct xen_pcibk_device *pdev, struct pci_dev *dev,
106 int devid, publish_pci_dev_cb publish_cb);
107 struct pci_dev *(*get)(struct xen_pcibk_device *pdev,
108 unsigned int domain, unsigned int bus,
109 unsigned int devfn);
110};
111
Jan Beulich402c5e12011-09-21 16:22:11 -0400112extern const struct xen_pcibk_backend xen_pcibk_vpci_backend;
113extern const struct xen_pcibk_backend xen_pcibk_passthrough_backend;
114extern const struct xen_pcibk_backend *xen_pcibk_backend;
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400115
116static inline int xen_pcibk_add_pci_dev(struct xen_pcibk_device *pdev,
117 struct pci_dev *dev,
118 int devid,
119 publish_pci_dev_cb publish_cb)
120{
121 if (xen_pcibk_backend && xen_pcibk_backend->add)
122 return xen_pcibk_backend->add(pdev, dev, devid, publish_cb);
123 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400124}
125
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400126static inline void xen_pcibk_release_pci_dev(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilke8801a72014-12-03 16:40:26 -0500127 struct pci_dev *dev, bool lock)
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400128{
Yang Zhang6337a232012-11-22 10:20:23 +0800129 if (xen_pcibk_backend && xen_pcibk_backend->release)
Konrad Rzeszutek Wilke8801a72014-12-03 16:40:26 -0500130 return xen_pcibk_backend->release(pdev, dev, lock);
Jan Beulich402c5e12011-09-21 16:22:11 -0400131}
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400132
133static inline struct pci_dev *
134xen_pcibk_get_pci_dev(struct xen_pcibk_device *pdev, unsigned int domain,
135 unsigned int bus, unsigned int devfn)
136{
137 if (xen_pcibk_backend && xen_pcibk_backend->get)
138 return xen_pcibk_backend->get(pdev, domain, bus, devfn);
139 return NULL;
Jan Beulich402c5e12011-09-21 16:22:11 -0400140}
141
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400142/**
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400143* Add for domain0 PCIE-AER handling. Get guest domain/bus/devfn in xen_pcibk
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400144* before sending aer request to pcifront, so that guest could identify
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400145* device, coopearte with xen_pcibk to finish aer recovery job if device driver
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400146* has the capability
147*/
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400148static inline int xen_pcibk_get_pcifront_dev(struct pci_dev *pcidev,
149 struct xen_pcibk_device *pdev,
150 unsigned int *domain,
151 unsigned int *bus,
152 unsigned int *devfn)
153{
154 if (xen_pcibk_backend && xen_pcibk_backend->find)
155 return xen_pcibk_backend->find(pcidev, pdev, domain, bus,
156 devfn);
157 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400158}
159
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400160static inline int xen_pcibk_init_devices(struct xen_pcibk_device *pdev)
161{
162 if (xen_pcibk_backend && xen_pcibk_backend->init)
163 return xen_pcibk_backend->init(pdev);
164 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400165}
166
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400167static inline int xen_pcibk_publish_pci_roots(struct xen_pcibk_device *pdev,
168 publish_pci_root_cb cb)
169{
170 if (xen_pcibk_backend && xen_pcibk_backend->publish)
171 return xen_pcibk_backend->publish(pdev, cb);
172 return -1;
Jan Beulich402c5e12011-09-21 16:22:11 -0400173}
174
Konrad Rzeszutek Wilk2ebdc422011-07-11 16:49:41 -0400175static inline void xen_pcibk_release_devices(struct xen_pcibk_device *pdev)
176{
177 if (xen_pcibk_backend && xen_pcibk_backend->free)
178 return xen_pcibk_backend->free(pdev);
Jan Beulich402c5e12011-09-21 16:22:11 -0400179}
180
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400181/* Handles events from front-end */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400182irqreturn_t xen_pcibk_handle_event(int irq, void *dev_id);
183void xen_pcibk_do_op(struct work_struct *data);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400184
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400185int xen_pcibk_xenbus_register(void);
186void xen_pcibk_xenbus_unregister(void);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400187
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400188extern int verbose_request;
189
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400190void xen_pcibk_test_and_schedule_op(struct xen_pcibk_device *pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400191#endif
192
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400193/* Handles shared IRQs that can to device domain and control domain. */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400194void xen_pcibk_irq_handler(struct pci_dev *dev, int reset);