blob: 029f33ddb8bfc33239e35f1cbb20feee10f4dd92 [file] [log] [blame]
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001/*
2 * PCI Backend Operations - respond to PCI requests from Frontend
3 *
4 * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
5 */
Joe Perches283c0972013-06-28 03:21:41 -07006
7#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
8
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04009#include <linux/module.h>
10#include <linux/wait.h>
11#include <linux/bitops.h>
12#include <xen/events.h>
13#include <linux/sched.h>
14#include "pciback.h"
15
16int verbose_request;
17module_param(verbose_request, int, 0644);
18
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040019static irqreturn_t xen_pcibk_guest_interrupt(int irq, void *dev_id);
20
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040021/* Ensure a device is has the fake IRQ handler "turned on/off" and is
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040022 * ready to be exported. This MUST be run after xen_pcibk_reset_device
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040023 * which does the actual PCI device enable/disable.
24 */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040025static void xen_pcibk_control_isr(struct pci_dev *dev, int reset)
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040026{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040027 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040028 int rc;
29 int enable = 0;
30
31 dev_data = pci_get_drvdata(dev);
32 if (!dev_data)
33 return;
34
35 /* We don't deal with bridges */
36 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL)
37 return;
38
39 if (reset) {
40 dev_data->enable_intx = 0;
41 dev_data->ack_intr = 0;
42 }
43 enable = dev_data->enable_intx;
44
45 /* Asked to disable, but ISR isn't runnig */
46 if (!enable && !dev_data->isr_on)
47 return;
48
49 /* Squirrel away the IRQs in the dev_data. We need this
50 * b/c when device transitions to MSI, the dev->irq is
51 * overwritten with the MSI vector.
52 */
53 if (enable)
54 dev_data->irq = dev->irq;
55
Konrad Rzeszutek Wilke17ab352011-02-16 15:43:25 -050056 /*
57 * SR-IOV devices in all use MSI-X and have no legacy
58 * interrupts, so inhibit creating a fake IRQ handler for them.
59 */
60 if (dev_data->irq == 0)
61 goto out;
62
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040063 dev_dbg(&dev->dev, "%s: #%d %s %s%s %s-> %s\n",
64 dev_data->irq_name,
65 dev_data->irq,
66 pci_is_enabled(dev) ? "on" : "off",
67 dev->msi_enabled ? "MSI" : "",
68 dev->msix_enabled ? "MSI/X" : "",
69 dev_data->isr_on ? "enable" : "disable",
70 enable ? "enable" : "disable");
71
72 if (enable) {
73 rc = request_irq(dev_data->irq,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040074 xen_pcibk_guest_interrupt, IRQF_SHARED,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -040075 dev_data->irq_name, dev);
76 if (rc) {
77 dev_err(&dev->dev, "%s: failed to install fake IRQ " \
78 "handler for IRQ %d! (rc:%d)\n",
79 dev_data->irq_name, dev_data->irq, rc);
80 goto out;
81 }
82 } else {
83 free_irq(dev_data->irq, dev);
84 dev_data->irq = 0;
85 }
86 dev_data->isr_on = enable;
87 dev_data->ack_intr = enable;
88out:
89 dev_dbg(&dev->dev, "%s: #%d %s %s%s %s\n",
90 dev_data->irq_name,
91 dev_data->irq,
92 pci_is_enabled(dev) ? "on" : "off",
93 dev->msi_enabled ? "MSI" : "",
94 dev->msix_enabled ? "MSI/X" : "",
95 enable ? (dev_data->isr_on ? "enabled" : "failed to enable") :
96 (dev_data->isr_on ? "failed to disable" : "disabled"));
97}
98
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040099/* Ensure a device is "turned off" and ready to be exported.
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400100 * (Also see xen_pcibk_config_reset to ensure virtual configuration space is
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400101 * ready to be re-exported)
102 */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400103void xen_pcibk_reset_device(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400104{
105 u16 cmd;
106
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400107 xen_pcibk_control_isr(dev, 1 /* reset device */);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400108
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400109 /* Disable devices (but not bridges) */
110 if (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) {
Konrad Rzeszutek Wilka2be65fd2010-03-03 13:38:43 -0500111#ifdef CONFIG_PCI_MSI
112 /* The guest could have been abruptly killed without
113 * disabling MSI/MSI-X interrupts.*/
114 if (dev->msix_enabled)
115 pci_disable_msix(dev);
116 if (dev->msi_enabled)
117 pci_disable_msi(dev);
118#endif
Konrad Rzeszutek Wilkbdc5c182013-03-05 13:14:19 -0500119 if (pci_is_enabled(dev))
120 pci_disable_device(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400121
122 pci_write_config_word(dev, PCI_COMMAND, 0);
123
124 dev->is_busmaster = 0;
125 } else {
126 pci_read_config_word(dev, PCI_COMMAND, &cmd);
127 if (cmd & (PCI_COMMAND_INVALIDATE)) {
128 cmd &= ~(PCI_COMMAND_INVALIDATE);
129 pci_write_config_word(dev, PCI_COMMAND, cmd);
130
131 dev->is_busmaster = 0;
132 }
133 }
134}
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400135
136#ifdef CONFIG_PCI_MSI
137static
138int xen_pcibk_enable_msi(struct xen_pcibk_device *pdev,
139 struct pci_dev *dev, struct xen_pci_op *op)
140{
141 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400142 int status;
143
144 if (unlikely(verbose_request))
145 printk(KERN_DEBUG DRV_NAME ": %s: enable MSI\n", pci_name(dev));
146
Konrad Rzeszutek Wilk56441f32015-04-03 11:08:22 -0400147 if (dev->msi_enabled)
148 status = -EALREADY;
149 else if (dev->msix_enabled)
150 status = -ENXIO;
151 else
152 status = pci_enable_msi(dev);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400153
154 if (status) {
Joe Perches283c0972013-06-28 03:21:41 -0700155 pr_warn_ratelimited("%s: error enabling MSI for guest %u: err %d\n",
Jan Beulich51ac8892013-02-06 10:30:38 -0500156 pci_name(dev), pdev->xdev->otherend_id,
157 status);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400158 op->value = 0;
159 return XEN_PCI_ERR_op_failed;
160 }
161
162 /* The value the guest needs is actually the IDT vector, not the
163 * the local domain's IRQ number. */
164
165 op->value = dev->irq ? xen_pirq_from_irq(dev->irq) : 0;
166 if (unlikely(verbose_request))
167 printk(KERN_DEBUG DRV_NAME ": %s: MSI: %d\n", pci_name(dev),
168 op->value);
169
170 dev_data = pci_get_drvdata(dev);
171 if (dev_data)
172 dev_data->ack_intr = 0;
173
174 return 0;
175}
176
177static
178int xen_pcibk_disable_msi(struct xen_pcibk_device *pdev,
179 struct pci_dev *dev, struct xen_pci_op *op)
180{
181 struct xen_pcibk_dev_data *dev_data;
182
183 if (unlikely(verbose_request))
184 printk(KERN_DEBUG DRV_NAME ": %s: disable MSI\n",
185 pci_name(dev));
186 pci_disable_msi(dev);
187
188 op->value = dev->irq ? xen_pirq_from_irq(dev->irq) : 0;
189 if (unlikely(verbose_request))
190 printk(KERN_DEBUG DRV_NAME ": %s: MSI: %d\n", pci_name(dev),
191 op->value);
192 dev_data = pci_get_drvdata(dev);
193 if (dev_data)
194 dev_data->ack_intr = 1;
195 return 0;
196}
197
198static
199int xen_pcibk_enable_msix(struct xen_pcibk_device *pdev,
200 struct pci_dev *dev, struct xen_pci_op *op)
201{
202 struct xen_pcibk_dev_data *dev_data;
203 int i, result;
204 struct msix_entry *entries;
205
206 if (unlikely(verbose_request))
207 printk(KERN_DEBUG DRV_NAME ": %s: enable MSI-X\n",
208 pci_name(dev));
Konrad Rzeszutek Wilk5e0ce142015-11-02 18:07:44 -0500209
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400210 if (op->value > SH_INFO_MAX_VEC)
211 return -EINVAL;
212
Konrad Rzeszutek Wilk5e0ce142015-11-02 18:07:44 -0500213 if (dev->msix_enabled)
214 return -EALREADY;
215
216 if (dev->msi_enabled)
217 return -ENXIO;
218
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400219 entries = kmalloc(op->value * sizeof(*entries), GFP_KERNEL);
220 if (entries == NULL)
221 return -ENOMEM;
222
223 for (i = 0; i < op->value; i++) {
224 entries[i].entry = op->msix_entries[i].entry;
225 entries[i].vector = op->msix_entries[i].vector;
226 }
227
Alexander Gordeevefdfa3e2014-02-21 17:53:40 +0100228 result = pci_enable_msix_exact(dev, entries, op->value);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400229 if (result == 0) {
230 for (i = 0; i < op->value; i++) {
231 op->msix_entries[i].entry = entries[i].entry;
Dan Carpenterc0914e62014-03-28 11:24:59 +0300232 if (entries[i].vector) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400233 op->msix_entries[i].vector =
234 xen_pirq_from_irq(entries[i].vector);
235 if (unlikely(verbose_request))
236 printk(KERN_DEBUG DRV_NAME ": %s: " \
237 "MSI-X[%d]: %d\n",
238 pci_name(dev), i,
239 op->msix_entries[i].vector);
Dan Carpenterc0914e62014-03-28 11:24:59 +0300240 }
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400241 }
Jan Beulich51ac8892013-02-06 10:30:38 -0500242 } else
Joe Perches283c0972013-06-28 03:21:41 -0700243 pr_warn_ratelimited("%s: error enabling MSI-X for guest %u: err %d!\n",
Jan Beulich51ac8892013-02-06 10:30:38 -0500244 pci_name(dev), pdev->xdev->otherend_id,
245 result);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400246 kfree(entries);
247
248 op->value = result;
249 dev_data = pci_get_drvdata(dev);
250 if (dev_data)
251 dev_data->ack_intr = 0;
252
Jan Beulich0ee46ec2012-04-02 15:32:22 +0100253 return result > 0 ? 0 : result;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400254}
255
256static
257int xen_pcibk_disable_msix(struct xen_pcibk_device *pdev,
258 struct pci_dev *dev, struct xen_pci_op *op)
259{
260 struct xen_pcibk_dev_data *dev_data;
261 if (unlikely(verbose_request))
262 printk(KERN_DEBUG DRV_NAME ": %s: disable MSI-X\n",
263 pci_name(dev));
264 pci_disable_msix(dev);
265
266 /*
267 * SR-IOV devices (which don't have any legacy IRQ) have
268 * an undefined IRQ value of zero.
269 */
270 op->value = dev->irq ? xen_pirq_from_irq(dev->irq) : 0;
271 if (unlikely(verbose_request))
272 printk(KERN_DEBUG DRV_NAME ": %s: MSI-X: %d\n", pci_name(dev),
273 op->value);
274 dev_data = pci_get_drvdata(dev);
275 if (dev_data)
276 dev_data->ack_intr = 1;
277 return 0;
278}
279#endif
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400280/*
281* Now the same evtchn is used for both pcifront conf_read_write request
282* as well as pcie aer front end ack. We use a new work_queue to schedule
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400283* xen_pcibk conf_read_write service for avoiding confict with aer_core
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400284* do_recovery job which also use the system default work_queue
285*/
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400286void xen_pcibk_test_and_schedule_op(struct xen_pcibk_device *pdev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400287{
288 /* Check that frontend is requesting an operation and that we are not
289 * already processing a request */
290 if (test_bit(_XEN_PCIF_active, (unsigned long *)&pdev->sh_info->flags)
291 && !test_and_set_bit(_PDEVF_op_active, &pdev->flags)) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400292 queue_work(xen_pcibk_wq, &pdev->op_work);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400293 }
294 /*_XEN_PCIB_active should have been cleared by pcifront. And also make
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400295 sure xen_pcibk is waiting for ack by checking _PCIB_op_pending*/
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400296 if (!test_bit(_XEN_PCIB_active, (unsigned long *)&pdev->sh_info->flags)
297 && test_bit(_PCIB_op_pending, &pdev->flags)) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400298 wake_up(&xen_pcibk_aer_wait_queue);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400299 }
300}
301
302/* Performing the configuration space reads/writes must not be done in atomic
303 * context because some of the pci_* functions can sleep (mostly due to ACPI
304 * use of semaphores). This function is intended to be called from a work
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400305 * queue in process context taking a struct xen_pcibk_device as a parameter */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400306
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400307void xen_pcibk_do_op(struct work_struct *data)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400308{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400309 struct xen_pcibk_device *pdev =
310 container_of(data, struct xen_pcibk_device, op_work);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400311 struct pci_dev *dev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400312 struct xen_pcibk_dev_data *dev_data = NULL;
Konrad Rzeszutek Wilk8135cf82015-11-16 12:40:48 -0500313 struct xen_pci_op *op = &pdev->op;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400314 int test_intx = 0;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400315
Konrad Rzeszutek Wilk8135cf82015-11-16 12:40:48 -0500316 *op = pdev->sh_info->op;
317 barrier();
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400318 dev = xen_pcibk_get_pci_dev(pdev, op->domain, op->bus, op->devfn);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400319
320 if (dev == NULL)
321 op->err = XEN_PCI_ERR_dev_not_found;
322 else {
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400323 dev_data = pci_get_drvdata(dev);
324 if (dev_data)
325 test_intx = dev_data->enable_intx;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400326 switch (op->cmd) {
327 case XEN_PCI_OP_conf_read:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400328 op->err = xen_pcibk_config_read(dev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400329 op->offset, op->size, &op->value);
330 break;
331 case XEN_PCI_OP_conf_write:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400332 op->err = xen_pcibk_config_write(dev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400333 op->offset, op->size, op->value);
334 break;
335#ifdef CONFIG_PCI_MSI
336 case XEN_PCI_OP_enable_msi:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400337 op->err = xen_pcibk_enable_msi(pdev, dev, op);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400338 break;
339 case XEN_PCI_OP_disable_msi:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400340 op->err = xen_pcibk_disable_msi(pdev, dev, op);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400341 break;
342 case XEN_PCI_OP_enable_msix:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400343 op->err = xen_pcibk_enable_msix(pdev, dev, op);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400344 break;
345 case XEN_PCI_OP_disable_msix:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400346 op->err = xen_pcibk_disable_msix(pdev, dev, op);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400347 break;
348#endif
349 default:
350 op->err = XEN_PCI_ERR_not_implemented;
351 break;
352 }
353 }
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400354 if (!op->err && dev && dev_data) {
355 /* Transition detected */
356 if ((dev_data->enable_intx != test_intx))
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400357 xen_pcibk_control_isr(dev, 0 /* no reset */);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400358 }
Konrad Rzeszutek Wilk8135cf82015-11-16 12:40:48 -0500359 pdev->sh_info->op.err = op->err;
360 pdev->sh_info->op.value = op->value;
361#ifdef CONFIG_PCI_MSI
362 if (op->cmd == XEN_PCI_OP_enable_msix && op->err == 0) {
363 unsigned int i;
364
365 for (i = 0; i < op->value; i++)
366 pdev->sh_info->op.msix_entries[i].vector =
367 op->msix_entries[i].vector;
368 }
369#endif
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400370 /* Tell the driver domain that we're done. */
371 wmb();
372 clear_bit(_XEN_PCIF_active, (unsigned long *)&pdev->sh_info->flags);
373 notify_remote_via_irq(pdev->evtchn_irq);
374
375 /* Mark that we're done. */
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100376 smp_mb__before_atomic(); /* /after/ clearing PCIF_active */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400377 clear_bit(_PDEVF_op_active, &pdev->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100378 smp_mb__after_atomic(); /* /before/ final check for work */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400379
380 /* Check to see if the driver domain tried to start another request in
381 * between clearing _XEN_PCIF_active and clearing _PDEVF_op_active.
382 */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400383 xen_pcibk_test_and_schedule_op(pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400384}
385
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400386irqreturn_t xen_pcibk_handle_event(int irq, void *dev_id)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400387{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400388 struct xen_pcibk_device *pdev = dev_id;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400389
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400390 xen_pcibk_test_and_schedule_op(pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400391
392 return IRQ_HANDLED;
393}
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400394static irqreturn_t xen_pcibk_guest_interrupt(int irq, void *dev_id)
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400395{
396 struct pci_dev *dev = (struct pci_dev *)dev_id;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400397 struct xen_pcibk_dev_data *dev_data = pci_get_drvdata(dev);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400398
399 if (dev_data->isr_on && dev_data->ack_intr) {
400 dev_data->handled++;
401 if ((dev_data->handled % 1000) == 0) {
402 if (xen_test_irq_shared(irq)) {
Joe Perches283c0972013-06-28 03:21:41 -0700403 pr_info("%s IRQ line is not shared "
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400404 "with other domains. Turning ISR off\n",
405 dev_data->irq_name);
406 dev_data->ack_intr = 0;
407 }
408 }
409 return IRQ_HANDLED;
410 }
411 return IRQ_NONE;
412}