virtio: unify config_changed handling
[deliverable/linux.git] / drivers / virtio / virtio_pci.c
CommitLineData
3343660d
AL
1/*
2 * Virtio PCI driver
3 *
4 * This module allows virtio devices to be used over a virtual PCI device.
5 * This can be used with QEMU based VMMs like KVM or Xen.
6 *
7 * Copyright IBM Corp. 2007
8 *
9 * Authors:
10 * Anthony Liguori <aliguori@us.ibm.com>
11 *
12 * This work is licensed under the terms of the GNU GPL, version 2 or later.
13 * See the COPYING file in the top-level directory.
14 *
15 */
16
17#include <linux/module.h>
18#include <linux/list.h>
19#include <linux/pci.h>
5a0e3ad6 20#include <linux/slab.h>
3343660d
AL
21#include <linux/interrupt.h>
22#include <linux/virtio.h>
23#include <linux/virtio_config.h>
24#include <linux/virtio_ring.h>
25#include <linux/virtio_pci.h>
26#include <linux/highmem.h>
27#include <linux/spinlock.h>
28
29MODULE_AUTHOR("Anthony Liguori <aliguori@us.ibm.com>");
30MODULE_DESCRIPTION("virtio-pci");
31MODULE_LICENSE("GPL");
32MODULE_VERSION("1");
33
34/* Our device structure */
35struct virtio_pci_device
36{
37 struct virtio_device vdev;
38 struct pci_dev *pci_dev;
39
40 /* the IO mapping for the PCI config space */
97968358 41 void __iomem *ioaddr;
3343660d
AL
42
43 /* a list of queues so we can dispatch IRQs */
44 spinlock_t lock;
45 struct list_head virtqueues;
82af8ce8
MT
46
47 /* MSI-X support */
48 int msix_enabled;
49 int intx_enabled;
50 struct msix_entry *msix_entries;
75a0a52b 51 cpumask_var_t *msix_affinity_masks;
82af8ce8
MT
52 /* Name strings for interrupts. This size should be enough,
53 * and I'm too lazy to allocate each name separately. */
54 char (*msix_names)[256];
55 /* Number of available vectors */
56 unsigned msix_vectors;
e969fed5 57 /* Vectors allocated, excluding per-vq vectors if any */
82af8ce8 58 unsigned msix_used_vectors;
f0fe6f11
AS
59
60 /* Status saved during hibernate/restore */
61 u8 saved_status;
62
e969fed5
MT
63 /* Whether we have vector per vq */
64 bool per_vq_vectors;
82af8ce8
MT
65};
66
67/* Constants for MSI-X */
68/* Use first vector for configuration changes, second and the rest for
69 * virtqueues Thus, we need at least 2 vectors for MSI. */
70enum {
71 VP_MSIX_CONFIG_VECTOR = 0,
72 VP_MSIX_VQ_VECTOR = 1,
3343660d
AL
73};
74
75struct virtio_pci_vq_info
76{
77 /* the actual virtqueue */
78 struct virtqueue *vq;
79
80 /* the number of entries in the queue */
81 int num;
82
3343660d
AL
83 /* the virtual address of the ring queue */
84 void *queue;
85
86 /* the list node for the virtqueues list */
87 struct list_head node;
82af8ce8
MT
88
89 /* MSI-X vector (or none) */
f68d2408 90 unsigned msix_vector;
3343660d
AL
91};
92
93/* Qumranet donated their vendor ID for devices 0x1000 thru 0x10FF. */
cef340e6 94static const struct pci_device_id virtio_pci_id_table[] = {
35cdc9eb
SH
95 { PCI_DEVICE(0x1af4, PCI_ANY_ID) },
96 { 0 }
3343660d
AL
97};
98
99MODULE_DEVICE_TABLE(pci, virtio_pci_id_table);
100
3343660d
AL
101/* Convert a generic virtio device to our structure */
102static struct virtio_pci_device *to_vp_device(struct virtio_device *vdev)
103{
104 return container_of(vdev, struct virtio_pci_device, vdev);
105}
106
c45a6816
RR
107/* virtio config->get_features() implementation */
108static u32 vp_get_features(struct virtio_device *vdev)
109{
110 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
111
112 /* When someone needs more than 32 feature bits, we'll need to
113 * steal a bit to indicate that the rest are somewhere else. */
114 return ioread32(vp_dev->ioaddr + VIRTIO_PCI_HOST_FEATURES);
115}
116
c624896e
RR
117/* virtio config->finalize_features() implementation */
118static void vp_finalize_features(struct virtio_device *vdev)
3343660d
AL
119{
120 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
3343660d 121
e34f8725
RR
122 /* Give virtio_ring a chance to accept features. */
123 vring_transport_features(vdev);
124
c624896e
RR
125 /* We only support 32 feature bits. */
126 BUILD_BUG_ON(ARRAY_SIZE(vdev->features) != 1);
127 iowrite32(vdev->features[0], vp_dev->ioaddr+VIRTIO_PCI_GUEST_FEATURES);
3343660d
AL
128}
129
130/* virtio config->get() implementation */
131static void vp_get(struct virtio_device *vdev, unsigned offset,
132 void *buf, unsigned len)
133{
134 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
82af8ce8
MT
135 void __iomem *ioaddr = vp_dev->ioaddr +
136 VIRTIO_PCI_CONFIG(vp_dev) + offset;
3343660d
AL
137 u8 *ptr = buf;
138 int i;
139
140 for (i = 0; i < len; i++)
141 ptr[i] = ioread8(ioaddr + i);
142}
143
144/* the config->set() implementation. it's symmetric to the config->get()
145 * implementation */
146static void vp_set(struct virtio_device *vdev, unsigned offset,
147 const void *buf, unsigned len)
148{
149 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
82af8ce8
MT
150 void __iomem *ioaddr = vp_dev->ioaddr +
151 VIRTIO_PCI_CONFIG(vp_dev) + offset;
3343660d
AL
152 const u8 *ptr = buf;
153 int i;
154
155 for (i = 0; i < len; i++)
156 iowrite8(ptr[i], ioaddr + i);
157}
158
159/* config->{get,set}_status() implementations */
160static u8 vp_get_status(struct virtio_device *vdev)
161{
162 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
163 return ioread8(vp_dev->ioaddr + VIRTIO_PCI_STATUS);
164}
165
166static void vp_set_status(struct virtio_device *vdev, u8 status)
167{
168 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
169 /* We should never be setting status to 0. */
170 BUG_ON(status == 0);
597d56e4 171 iowrite8(status, vp_dev->ioaddr + VIRTIO_PCI_STATUS);
3343660d
AL
172}
173
e6af578c
MT
174/* wait for pending irq handlers */
175static void vp_synchronize_vectors(struct virtio_device *vdev)
176{
177 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
178 int i;
179
180 if (vp_dev->intx_enabled)
181 synchronize_irq(vp_dev->pci_dev->irq);
182
183 for (i = 0; i < vp_dev->msix_vectors; ++i)
184 synchronize_irq(vp_dev->msix_entries[i].vector);
185}
186
3343660d
AL
187static void vp_reset(struct virtio_device *vdev)
188{
189 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
190 /* 0 status means a reset. */
597d56e4 191 iowrite8(0, vp_dev->ioaddr + VIRTIO_PCI_STATUS);
e6af578c
MT
192 /* Flush out the status write, and flush in device writes,
193 * including MSi-X interrupts, if any. */
194 ioread8(vp_dev->ioaddr + VIRTIO_PCI_STATUS);
195 /* Flush pending VQ/configuration callbacks. */
196 vp_synchronize_vectors(vdev);
3343660d
AL
197}
198
199/* the notify function used when creating a virt queue */
46f9c2b9 200static bool vp_notify(struct virtqueue *vq)
3343660d
AL
201{
202 struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
3343660d
AL
203
204 /* we write the queue's selector into the notification register to
205 * signal the other end */
06ca287d 206 iowrite16(vq->index, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_NOTIFY);
46f9c2b9 207 return true;
3343660d
AL
208}
209
77cf5246
MT
210/* Handle a configuration change: Tell driver if it wants to know. */
211static irqreturn_t vp_config_changed(int irq, void *opaque)
212{
213 struct virtio_pci_device *vp_dev = opaque;
77cf5246 214
016c98c6 215 virtio_config_changed(&vp_dev->vdev);
77cf5246
MT
216 return IRQ_HANDLED;
217}
218
219/* Notify all virtqueues on an interrupt. */
220static irqreturn_t vp_vring_interrupt(int irq, void *opaque)
221{
222 struct virtio_pci_device *vp_dev = opaque;
223 struct virtio_pci_vq_info *info;
224 irqreturn_t ret = IRQ_NONE;
225 unsigned long flags;
226
227 spin_lock_irqsave(&vp_dev->lock, flags);
228 list_for_each_entry(info, &vp_dev->virtqueues, node) {
229 if (vring_interrupt(irq, info->vq) == IRQ_HANDLED)
230 ret = IRQ_HANDLED;
231 }
232 spin_unlock_irqrestore(&vp_dev->lock, flags);
233
234 return ret;
235}
236
3343660d
AL
237/* A small wrapper to also acknowledge the interrupt when it's handled.
238 * I really need an EIO hook for the vring so I can ack the interrupt once we
239 * know that we'll be handling the IRQ but before we invoke the callback since
240 * the callback may notify the host which results in the host attempting to
241 * raise an interrupt that we would then mask once we acknowledged the
242 * interrupt. */
243static irqreturn_t vp_interrupt(int irq, void *opaque)
244{
245 struct virtio_pci_device *vp_dev = opaque;
3343660d
AL
246 u8 isr;
247
248 /* reading the ISR has the effect of also clearing it so it's very
249 * important to save off the value. */
250 isr = ioread8(vp_dev->ioaddr + VIRTIO_PCI_ISR);
251
252 /* It's definitely not us if the ISR was not high */
253 if (!isr)
254 return IRQ_NONE;
255
256 /* Configuration change? Tell driver if it wants to know. */
77cf5246
MT
257 if (isr & VIRTIO_PCI_ISR_CONFIG)
258 vp_config_changed(irq, opaque);
3343660d 259
77cf5246 260 return vp_vring_interrupt(irq, opaque);
3343660d
AL
261}
262
82af8ce8
MT
263static void vp_free_vectors(struct virtio_device *vdev)
264{
265 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
266 int i;
267
268 if (vp_dev->intx_enabled) {
269 free_irq(vp_dev->pci_dev->irq, vp_dev);
270 vp_dev->intx_enabled = 0;
271 }
272
273 for (i = 0; i < vp_dev->msix_used_vectors; ++i)
274 free_irq(vp_dev->msix_entries[i].vector, vp_dev);
82af8ce8 275
75a0a52b
JW
276 for (i = 0; i < vp_dev->msix_vectors; i++)
277 if (vp_dev->msix_affinity_masks[i])
278 free_cpumask_var(vp_dev->msix_affinity_masks[i]);
279
82af8ce8
MT
280 if (vp_dev->msix_enabled) {
281 /* Disable the vector used for configuration */
282 iowrite16(VIRTIO_MSI_NO_VECTOR,
283 vp_dev->ioaddr + VIRTIO_MSI_CONFIG_VECTOR);
284 /* Flush the write out to device */
285 ioread16(vp_dev->ioaddr + VIRTIO_MSI_CONFIG_VECTOR);
286
82af8ce8 287 pci_disable_msix(vp_dev->pci_dev);
ff52c3fc 288 vp_dev->msix_enabled = 0;
82af8ce8 289 }
ff52c3fc 290
f11335db 291 vp_dev->msix_vectors = 0;
ff52c3fc
MT
292 vp_dev->msix_used_vectors = 0;
293 kfree(vp_dev->msix_names);
294 vp_dev->msix_names = NULL;
295 kfree(vp_dev->msix_entries);
296 vp_dev->msix_entries = NULL;
75a0a52b
JW
297 kfree(vp_dev->msix_affinity_masks);
298 vp_dev->msix_affinity_masks = NULL;
82af8ce8
MT
299}
300
f68d2408
RR
301static int vp_request_msix_vectors(struct virtio_device *vdev, int nvectors,
302 bool per_vq_vectors)
82af8ce8
MT
303{
304 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
305 const char *name = dev_name(&vp_dev->vdev.dev);
306 unsigned i, v;
307 int err = -ENOMEM;
e969fed5 308
f11335db
AV
309 vp_dev->msix_vectors = nvectors;
310
82af8ce8
MT
311 vp_dev->msix_entries = kmalloc(nvectors * sizeof *vp_dev->msix_entries,
312 GFP_KERNEL);
313 if (!vp_dev->msix_entries)
ff52c3fc 314 goto error;
82af8ce8
MT
315 vp_dev->msix_names = kmalloc(nvectors * sizeof *vp_dev->msix_names,
316 GFP_KERNEL);
317 if (!vp_dev->msix_names)
ff52c3fc 318 goto error;
75a0a52b
JW
319 vp_dev->msix_affinity_masks
320 = kzalloc(nvectors * sizeof *vp_dev->msix_affinity_masks,
321 GFP_KERNEL);
322 if (!vp_dev->msix_affinity_masks)
323 goto error;
324 for (i = 0; i < nvectors; ++i)
325 if (!alloc_cpumask_var(&vp_dev->msix_affinity_masks[i],
326 GFP_KERNEL))
327 goto error;
82af8ce8
MT
328
329 for (i = 0; i < nvectors; ++i)
330 vp_dev->msix_entries[i].entry = i;
331
5e37f670
AG
332 err = pci_enable_msix_exact(vp_dev->pci_dev,
333 vp_dev->msix_entries, nvectors);
e969fed5
MT
334 if (err)
335 goto error;
e969fed5
MT
336 vp_dev->msix_enabled = 1;
337
338 /* Set the vector used for configuration */
339 v = vp_dev->msix_used_vectors;
340 snprintf(vp_dev->msix_names[v], sizeof *vp_dev->msix_names,
341 "%s-config", name);
342 err = request_irq(vp_dev->msix_entries[v].vector,
343 vp_config_changed, 0, vp_dev->msix_names[v],
344 vp_dev);
345 if (err)
346 goto error;
347 ++vp_dev->msix_used_vectors;
82af8ce8 348
e969fed5
MT
349 iowrite16(v, vp_dev->ioaddr + VIRTIO_MSI_CONFIG_VECTOR);
350 /* Verify we had enough resources to assign the vector */
351 v = ioread16(vp_dev->ioaddr + VIRTIO_MSI_CONFIG_VECTOR);
352 if (v == VIRTIO_MSI_NO_VECTOR) {
353 err = -EBUSY;
354 goto error;
82af8ce8
MT
355 }
356
e969fed5 357 if (!per_vq_vectors) {
82af8ce8
MT
358 /* Shared vector for all VQs */
359 v = vp_dev->msix_used_vectors;
360 snprintf(vp_dev->msix_names[v], sizeof *vp_dev->msix_names,
361 "%s-virtqueues", name);
362 err = request_irq(vp_dev->msix_entries[v].vector,
363 vp_vring_interrupt, 0, vp_dev->msix_names[v],
364 vp_dev);
365 if (err)
ff52c3fc 366 goto error;
82af8ce8
MT
367 ++vp_dev->msix_used_vectors;
368 }
369 return 0;
ff52c3fc 370error:
82af8ce8 371 vp_free_vectors(vdev);
82af8ce8
MT
372 return err;
373}
374
f68d2408
RR
375static int vp_request_intx(struct virtio_device *vdev)
376{
377 int err;
378 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
379
380 err = request_irq(vp_dev->pci_dev->irq, vp_interrupt,
381 IRQF_SHARED, dev_name(&vdev->dev), vp_dev);
382 if (!err)
383 vp_dev->intx_enabled = 1;
384 return err;
385}
386
387static struct virtqueue *setup_vq(struct virtio_device *vdev, unsigned index,
388 void (*callback)(struct virtqueue *vq),
389 const char *name,
390 u16 msix_vec)
3343660d
AL
391{
392 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
393 struct virtio_pci_vq_info *info;
394 struct virtqueue *vq;
13b1eb33 395 unsigned long flags, size;
e969fed5 396 u16 num;
3343660d
AL
397 int err;
398
399 /* Select the queue we're interested in */
400 iowrite16(index, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_SEL);
401
402 /* Check if queue is either not available or already active. */
403 num = ioread16(vp_dev->ioaddr + VIRTIO_PCI_QUEUE_NUM);
404 if (!num || ioread32(vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN))
405 return ERR_PTR(-ENOENT);
406
407 /* allocate and fill out our structure the represents an active
408 * queue */
409 info = kmalloc(sizeof(struct virtio_pci_vq_info), GFP_KERNEL);
410 if (!info)
411 return ERR_PTR(-ENOMEM);
412
3343660d 413 info->num = num;
f68d2408 414 info->msix_vector = msix_vec;
3343660d 415
498af147 416 size = PAGE_ALIGN(vring_size(num, VIRTIO_PCI_VRING_ALIGN));
13b1eb33 417 info->queue = alloc_pages_exact(size, GFP_KERNEL|__GFP_ZERO);
3343660d
AL
418 if (info->queue == NULL) {
419 err = -ENOMEM;
420 goto out_info;
421 }
422
423 /* activate the queue */
480daab4 424 iowrite32(virt_to_phys(info->queue) >> VIRTIO_PCI_QUEUE_ADDR_SHIFT,
3343660d
AL
425 vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN);
426
427 /* create the vring */
17bb6d40 428 vq = vring_new_virtqueue(index, info->num, VIRTIO_PCI_VRING_ALIGN, vdev,
7b21e34f 429 true, info->queue, vp_notify, callback, name);
3343660d
AL
430 if (!vq) {
431 err = -ENOMEM;
432 goto out_activate_queue;
433 }
434
435 vq->priv = info;
436 info->vq = vq;
437
f68d2408
RR
438 if (msix_vec != VIRTIO_MSI_NO_VECTOR) {
439 iowrite16(msix_vec, vp_dev->ioaddr + VIRTIO_MSI_QUEUE_VECTOR);
440 msix_vec = ioread16(vp_dev->ioaddr + VIRTIO_MSI_QUEUE_VECTOR);
441 if (msix_vec == VIRTIO_MSI_NO_VECTOR) {
82af8ce8
MT
442 err = -EBUSY;
443 goto out_assign;
444 }
445 }
446
005b20a8
KK
447 if (callback) {
448 spin_lock_irqsave(&vp_dev->lock, flags);
449 list_add(&info->node, &vp_dev->virtqueues);
450 spin_unlock_irqrestore(&vp_dev->lock, flags);
451 } else {
452 INIT_LIST_HEAD(&info->node);
453 }
3343660d
AL
454
455 return vq;
456
82af8ce8 457out_assign:
82af8ce8 458 vring_del_virtqueue(vq);
3343660d
AL
459out_activate_queue:
460 iowrite32(0, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN);
13b1eb33 461 free_pages_exact(info->queue, size);
3343660d
AL
462out_info:
463 kfree(info);
464 return ERR_PTR(err);
465}
466
3343660d
AL
467static void vp_del_vq(struct virtqueue *vq)
468{
469 struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
470 struct virtio_pci_vq_info *info = vq->priv;
f6c82507
MT
471 unsigned long flags, size;
472
473 spin_lock_irqsave(&vp_dev->lock, flags);
474 list_del(&info->node);
475 spin_unlock_irqrestore(&vp_dev->lock, flags);
3343660d 476
06ca287d 477 iowrite16(vq->index, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_SEL);
82af8ce8 478
82af8ce8
MT
479 if (vp_dev->msix_enabled) {
480 iowrite16(VIRTIO_MSI_NO_VECTOR,
481 vp_dev->ioaddr + VIRTIO_MSI_QUEUE_VECTOR);
482 /* Flush the write out to device */
483 ioread8(vp_dev->ioaddr + VIRTIO_PCI_ISR);
484 }
485
3343660d
AL
486 vring_del_virtqueue(vq);
487
488 /* Select and deactivate the queue */
3343660d
AL
489 iowrite32(0, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN);
490
498af147 491 size = PAGE_ALIGN(vring_size(info->num, VIRTIO_PCI_VRING_ALIGN));
13b1eb33 492 free_pages_exact(info->queue, size);
3343660d
AL
493 kfree(info);
494}
495
82af8ce8 496/* the config->del_vqs() implementation */
d2a7ddda
MT
497static void vp_del_vqs(struct virtio_device *vdev)
498{
e969fed5 499 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
d2a7ddda 500 struct virtqueue *vq, *n;
e969fed5 501 struct virtio_pci_vq_info *info;
d2a7ddda 502
e969fed5
MT
503 list_for_each_entry_safe(vq, n, &vdev->vqs, list) {
504 info = vq->priv;
31198159
MT
505 if (vp_dev->per_vq_vectors &&
506 info->msix_vector != VIRTIO_MSI_NO_VECTOR)
f68d2408
RR
507 free_irq(vp_dev->msix_entries[info->msix_vector].vector,
508 vq);
d2a7ddda 509 vp_del_vq(vq);
e969fed5
MT
510 }
511 vp_dev->per_vq_vectors = false;
82af8ce8
MT
512
513 vp_free_vectors(vdev);
d2a7ddda
MT
514}
515
e969fed5
MT
516static int vp_try_to_find_vqs(struct virtio_device *vdev, unsigned nvqs,
517 struct virtqueue *vqs[],
518 vq_callback_t *callbacks[],
519 const char *names[],
f68d2408 520 bool use_msix,
e969fed5 521 bool per_vq_vectors)
d2a7ddda 522{
e969fed5 523 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
f68d2408
RR
524 u16 msix_vec;
525 int i, err, nvectors, allocated_vectors;
82af8ce8 526
f68d2408
RR
527 if (!use_msix) {
528 /* Old style: one normal interrupt for change and all vqs. */
529 err = vp_request_intx(vdev);
530 if (err)
531 goto error_request;
532 } else {
533 if (per_vq_vectors) {
534 /* Best option: one for change interrupt, one per vq. */
535 nvectors = 1;
536 for (i = 0; i < nvqs; ++i)
537 if (callbacks[i])
538 ++nvectors;
539 } else {
540 /* Second best: one for change, shared for all vqs. */
541 nvectors = 2;
542 }
543
544 err = vp_request_msix_vectors(vdev, nvectors, per_vq_vectors);
545 if (err)
546 goto error_request;
547 }
d2a7ddda 548
e969fed5
MT
549 vp_dev->per_vq_vectors = per_vq_vectors;
550 allocated_vectors = vp_dev->msix_used_vectors;
d2a7ddda 551 for (i = 0; i < nvqs; ++i) {
6457f126
MT
552 if (!names[i]) {
553 vqs[i] = NULL;
554 continue;
555 } else if (!callbacks[i] || !vp_dev->msix_enabled)
f68d2408 556 msix_vec = VIRTIO_MSI_NO_VECTOR;
e969fed5 557 else if (vp_dev->per_vq_vectors)
f68d2408 558 msix_vec = allocated_vectors++;
e969fed5 559 else
f68d2408
RR
560 msix_vec = VP_MSIX_VQ_VECTOR;
561 vqs[i] = setup_vq(vdev, i, callbacks[i], names[i], msix_vec);
e969fed5
MT
562 if (IS_ERR(vqs[i])) {
563 err = PTR_ERR(vqs[i]);
82af8ce8 564 goto error_find;
e969fed5 565 }
0b22bd0b
MT
566
567 if (!vp_dev->per_vq_vectors || msix_vec == VIRTIO_MSI_NO_VECTOR)
568 continue;
569
e969fed5 570 /* allocate per-vq irq if available and necessary */
0b22bd0b
MT
571 snprintf(vp_dev->msix_names[msix_vec],
572 sizeof *vp_dev->msix_names,
573 "%s-%s",
574 dev_name(&vp_dev->vdev.dev), names[i]);
575 err = request_irq(vp_dev->msix_entries[msix_vec].vector,
576 vring_interrupt, 0,
577 vp_dev->msix_names[msix_vec],
578 vqs[i]);
579 if (err) {
580 vp_del_vq(vqs[i]);
581 goto error_find;
e969fed5 582 }
d2a7ddda
MT
583 }
584 return 0;
585
82af8ce8 586error_find:
d2a7ddda 587 vp_del_vqs(vdev);
82af8ce8
MT
588
589error_request:
e969fed5
MT
590 return err;
591}
592
593/* the config->find_vqs() implementation */
594static int vp_find_vqs(struct virtio_device *vdev, unsigned nvqs,
595 struct virtqueue *vqs[],
596 vq_callback_t *callbacks[],
597 const char *names[])
598{
f68d2408 599 int err;
e969fed5 600
f68d2408
RR
601 /* Try MSI-X with one vector per queue. */
602 err = vp_try_to_find_vqs(vdev, nvqs, vqs, callbacks, names, true, true);
e969fed5
MT
603 if (!err)
604 return 0;
f68d2408 605 /* Fallback: MSI-X with one vector for config, one shared for queues. */
e969fed5 606 err = vp_try_to_find_vqs(vdev, nvqs, vqs, callbacks, names,
f68d2408 607 true, false);
e969fed5
MT
608 if (!err)
609 return 0;
610 /* Finally fall back to regular interrupts. */
f68d2408
RR
611 return vp_try_to_find_vqs(vdev, nvqs, vqs, callbacks, names,
612 false, false);
d2a7ddda
MT
613}
614
66846048
RJ
615static const char *vp_bus_name(struct virtio_device *vdev)
616{
617 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
618
619 return pci_name(vp_dev->pci_dev);
620}
621
75a0a52b
JW
622/* Setup the affinity for a virtqueue:
623 * - force the affinity for per vq vector
624 * - OR over all affinities for shared MSI
625 * - ignore the affinity request if we're using INTX
626 */
627static int vp_set_vq_affinity(struct virtqueue *vq, int cpu)
628{
629 struct virtio_device *vdev = vq->vdev;
630 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
631 struct virtio_pci_vq_info *info = vq->priv;
632 struct cpumask *mask;
633 unsigned int irq;
634
635 if (!vq->callback)
636 return -EINVAL;
637
638 if (vp_dev->msix_enabled) {
639 mask = vp_dev->msix_affinity_masks[info->msix_vector];
640 irq = vp_dev->msix_entries[info->msix_vector].vector;
641 if (cpu == -1)
642 irq_set_affinity_hint(irq, NULL);
643 else {
644 cpumask_set_cpu(cpu, mask);
645 irq_set_affinity_hint(irq, mask);
646 }
647 }
648 return 0;
649}
650
93503932 651static const struct virtio_config_ops virtio_pci_config_ops = {
3343660d
AL
652 .get = vp_get,
653 .set = vp_set,
654 .get_status = vp_get_status,
655 .set_status = vp_set_status,
656 .reset = vp_reset,
d2a7ddda
MT
657 .find_vqs = vp_find_vqs,
658 .del_vqs = vp_del_vqs,
c45a6816 659 .get_features = vp_get_features,
c624896e 660 .finalize_features = vp_finalize_features,
66846048 661 .bus_name = vp_bus_name,
75a0a52b 662 .set_vq_affinity = vp_set_vq_affinity,
3343660d
AL
663};
664
29f9f12e
MM
665static void virtio_pci_release_dev(struct device *_d)
666{
72103bd1
MT
667 /*
668 * No need for a release method as we allocate/free
669 * all devices together with the pci devices.
670 * Provide an empty one to avoid getting a warning from core.
671 */
29f9f12e
MM
672}
673
3343660d 674/* the PCI probing function */
8590dbc7
GKH
675static int virtio_pci_probe(struct pci_dev *pci_dev,
676 const struct pci_device_id *id)
3343660d
AL
677{
678 struct virtio_pci_device *vp_dev;
679 int err;
680
681 /* We only own devices >= 0x1000 and <= 0x103f: leave the rest. */
682 if (pci_dev->device < 0x1000 || pci_dev->device > 0x103f)
683 return -ENODEV;
684
55a7c066
AL
685 if (pci_dev->revision != VIRTIO_PCI_ABI_VERSION) {
686 printk(KERN_ERR "virtio_pci: expected ABI version %d, got %d\n",
687 VIRTIO_PCI_ABI_VERSION, pci_dev->revision);
688 return -ENODEV;
689 }
690
3343660d
AL
691 /* allocate our structure and fill it out */
692 vp_dev = kzalloc(sizeof(struct virtio_pci_device), GFP_KERNEL);
693 if (vp_dev == NULL)
694 return -ENOMEM;
695
8b3bb3ec 696 vp_dev->vdev.dev.parent = &pci_dev->dev;
29f9f12e 697 vp_dev->vdev.dev.release = virtio_pci_release_dev;
3343660d
AL
698 vp_dev->vdev.config = &virtio_pci_config_ops;
699 vp_dev->pci_dev = pci_dev;
700 INIT_LIST_HEAD(&vp_dev->virtqueues);
701 spin_lock_init(&vp_dev->lock);
702
b03214d5
MT
703 /* Disable MSI/MSIX to bring device to a known good state. */
704 pci_msi_off(pci_dev);
705
3343660d
AL
706 /* enable the device */
707 err = pci_enable_device(pci_dev);
708 if (err)
709 goto out;
710
711 err = pci_request_regions(pci_dev, "virtio-pci");
712 if (err)
713 goto out_enable_device;
714
715 vp_dev->ioaddr = pci_iomap(pci_dev, 0, 0);
74a74b37
PST
716 if (vp_dev->ioaddr == NULL) {
717 err = -ENOMEM;
3343660d 718 goto out_req_regions;
74a74b37 719 }
3343660d
AL
720
721 pci_set_drvdata(pci_dev, vp_dev);
bc505f37 722 pci_set_master(pci_dev);
3343660d
AL
723
724 /* we use the subsystem vendor/device id as the virtio vendor/device
725 * id. this allows us to use the same PCI vendor/device id for all
726 * virtio devices and to identify the particular virtio driver by
88393161 727 * the subsystem ids */
3343660d
AL
728 vp_dev->vdev.id.vendor = pci_dev->subsystem_vendor;
729 vp_dev->vdev.id.device = pci_dev->subsystem_device;
730
3343660d
AL
731 /* finally register the virtio device */
732 err = register_virtio_device(&vp_dev->vdev);
733 if (err)
82af8ce8 734 goto out_set_drvdata;
3343660d
AL
735
736 return 0;
737
3343660d 738out_set_drvdata:
3343660d
AL
739 pci_iounmap(pci_dev, vp_dev->ioaddr);
740out_req_regions:
741 pci_release_regions(pci_dev);
742out_enable_device:
743 pci_disable_device(pci_dev);
744out:
745 kfree(vp_dev);
746 return err;
747}
748
8590dbc7 749static void virtio_pci_remove(struct pci_dev *pci_dev)
3343660d
AL
750{
751 struct virtio_pci_device *vp_dev = pci_get_drvdata(pci_dev);
752
bd6c2690 753 unregister_virtio_device(&vp_dev->vdev);
31a3ddda
AS
754
755 vp_del_vqs(&vp_dev->vdev);
31a3ddda
AS
756 pci_iounmap(pci_dev, vp_dev->ioaddr);
757 pci_release_regions(pci_dev);
758 pci_disable_device(pci_dev);
72103bd1 759 kfree(vp_dev);
3343660d
AL
760}
761
9e266ece 762#ifdef CONFIG_PM_SLEEP
f0fe6f11
AS
763static int virtio_pci_freeze(struct device *dev)
764{
765 struct pci_dev *pci_dev = to_pci_dev(dev);
766 struct virtio_pci_device *vp_dev = pci_get_drvdata(pci_dev);
767 struct virtio_driver *drv;
768 int ret;
769
770 drv = container_of(vp_dev->vdev.dev.driver,
771 struct virtio_driver, driver);
772
773 ret = 0;
774 vp_dev->saved_status = vp_get_status(&vp_dev->vdev);
775 if (drv && drv->freeze)
776 ret = drv->freeze(&vp_dev->vdev);
777
778 if (!ret)
779 pci_disable_device(pci_dev);
780 return ret;
781}
782
0517fdd1 783static int virtio_pci_restore(struct device *dev)
f0fe6f11
AS
784{
785 struct pci_dev *pci_dev = to_pci_dev(dev);
786 struct virtio_pci_device *vp_dev = pci_get_drvdata(pci_dev);
0517fdd1 787 struct virtio_driver *drv;
6fbc198c 788 unsigned status = 0;
f0fe6f11
AS
789 int ret;
790
0517fdd1
AS
791 drv = container_of(vp_dev->vdev.dev.driver,
792 struct virtio_driver, driver);
793
f0fe6f11
AS
794 ret = pci_enable_device(pci_dev);
795 if (ret)
796 return ret;
0517fdd1 797
f0fe6f11 798 pci_set_master(pci_dev);
6fbc198c
MT
799 /* We always start by resetting the device, in case a previous
800 * driver messed it up. */
801 vp_reset(&vp_dev->vdev);
802
803 /* Acknowledge that we've seen the device. */
804 status |= VIRTIO_CONFIG_S_ACKNOWLEDGE;
805 vp_set_status(&vp_dev->vdev, status);
806
807 /* Maybe driver failed before freeze.
808 * Restore the failed status, for debugging. */
809 status |= vp_dev->saved_status & VIRTIO_CONFIG_S_FAILED;
810 vp_set_status(&vp_dev->vdev, status);
811
812 if (!drv)
813 return 0;
814
815 /* We have a driver! */
816 status |= VIRTIO_CONFIG_S_DRIVER;
817 vp_set_status(&vp_dev->vdev, status);
818
f0fe6f11
AS
819 vp_finalize_features(&vp_dev->vdev);
820
6fbc198c 821 if (drv->restore) {
f0fe6f11 822 ret = drv->restore(&vp_dev->vdev);
6fbc198c
MT
823 if (ret) {
824 status |= VIRTIO_CONFIG_S_FAILED;
825 vp_set_status(&vp_dev->vdev, status);
826 return ret;
827 }
828 }
f0fe6f11
AS
829
830 /* Finally, tell the device we're all set */
6fbc198c
MT
831 status |= VIRTIO_CONFIG_S_DRIVER_OK;
832 vp_set_status(&vp_dev->vdev, status);
f0fe6f11
AS
833
834 return ret;
835}
836
d0775363 837static const struct dev_pm_ops virtio_pci_pm_ops = {
f878d0be 838 SET_SYSTEM_SLEEP_PM_OPS(virtio_pci_freeze, virtio_pci_restore)
d0775363 839};
3343660d
AL
840#endif
841
842static struct pci_driver virtio_pci_driver = {
843 .name = "virtio-pci",
844 .id_table = virtio_pci_id_table,
845 .probe = virtio_pci_probe,
8590dbc7 846 .remove = virtio_pci_remove,
9e266ece 847#ifdef CONFIG_PM_SLEEP
d0775363 848 .driver.pm = &virtio_pci_pm_ops,
3343660d
AL
849#endif
850};
851
1ce6853a 852module_pci_driver(virtio_pci_driver);
This page took 0.47012 seconds and 5 git commands to generate.