virtio_pci_common.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. #ifndef _DRIVERS_VIRTIO_VIRTIO_PCI_COMMON_H
  2. #define _DRIVERS_VIRTIO_VIRTIO_PCI_COMMON_H
  3. /*
  4. * Virtio PCI driver - APIs for common functionality for all device versions
  5. *
  6. * This module allows virtio devices to be used over a virtual PCI device.
  7. * This can be used with QEMU based VMMs like KVM or Xen.
  8. *
  9. * Copyright IBM Corp. 2007
  10. * Copyright Red Hat, Inc. 2014
  11. *
  12. * Authors:
  13. * Anthony Liguori <aliguori@us.ibm.com>
  14. * Rusty Russell <rusty@rustcorp.com.au>
  15. * Michael S. Tsirkin <mst@redhat.com>
  16. *
  17. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  18. * See the COPYING file in the top-level directory.
  19. *
  20. */
  21. #include <linux/module.h>
  22. #include <linux/list.h>
  23. #include <linux/pci.h>
  24. #include <linux/slab.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/virtio.h>
  27. #include <linux/virtio_config.h>
  28. #include <linux/virtio_ring.h>
  29. #define VIRTIO_PCI_NO_LEGACY
  30. #include <linux/virtio_pci.h>
  31. #include <linux/highmem.h>
  32. #include <linux/spinlock.h>
  33. struct virtio_pci_vq_info {
  34. /* the actual virtqueue */
  35. struct virtqueue *vq;
  36. /* the number of entries in the queue */
  37. int num;
  38. /* the virtual address of the ring queue */
  39. void *queue;
  40. /* the list node for the virtqueues list */
  41. struct list_head node;
  42. /* MSI-X vector (or none) */
  43. unsigned msix_vector;
  44. };
  45. /* Our device structure */
  46. struct virtio_pci_device {
  47. struct virtio_device vdev;
  48. struct pci_dev *pci_dev;
  49. /* the IO mapping for the PCI config space */
  50. void __iomem *ioaddr;
  51. /* the IO mapping for ISR operation */
  52. void __iomem *isr;
  53. /* a list of queues so we can dispatch IRQs */
  54. spinlock_t lock;
  55. struct list_head virtqueues;
  56. /* array of all queues for house-keeping */
  57. struct virtio_pci_vq_info **vqs;
  58. /* MSI-X support */
  59. int msix_enabled;
  60. int intx_enabled;
  61. struct msix_entry *msix_entries;
  62. cpumask_var_t *msix_affinity_masks;
  63. /* Name strings for interrupts. This size should be enough,
  64. * and I'm too lazy to allocate each name separately. */
  65. char (*msix_names)[256];
  66. /* Number of available vectors */
  67. unsigned msix_vectors;
  68. /* Vectors allocated, excluding per-vq vectors if any */
  69. unsigned msix_used_vectors;
  70. /* Whether we have vector per vq */
  71. bool per_vq_vectors;
  72. struct virtqueue *(*setup_vq)(struct virtio_pci_device *vp_dev,
  73. struct virtio_pci_vq_info *info,
  74. unsigned idx,
  75. void (*callback)(struct virtqueue *vq),
  76. const char *name,
  77. u16 msix_vec);
  78. void (*del_vq)(struct virtio_pci_vq_info *info);
  79. u16 (*config_vector)(struct virtio_pci_device *vp_dev, u16 vector);
  80. };
  81. /* Constants for MSI-X */
  82. /* Use first vector for configuration changes, second and the rest for
  83. * virtqueues Thus, we need at least 2 vectors for MSI. */
  84. enum {
  85. VP_MSIX_CONFIG_VECTOR = 0,
  86. VP_MSIX_VQ_VECTOR = 1,
  87. };
  88. /* Convert a generic virtio device to our structure */
  89. static struct virtio_pci_device *to_vp_device(struct virtio_device *vdev)
  90. {
  91. return container_of(vdev, struct virtio_pci_device, vdev);
  92. }
  93. /* wait for pending irq handlers */
  94. void vp_synchronize_vectors(struct virtio_device *vdev);
  95. /* the notify function used when creating a virt queue */
  96. bool vp_notify(struct virtqueue *vq);
  97. /* the config->del_vqs() implementation */
  98. void vp_del_vqs(struct virtio_device *vdev);
  99. /* the config->find_vqs() implementation */
  100. int vp_find_vqs(struct virtio_device *vdev, unsigned nvqs,
  101. struct virtqueue *vqs[],
  102. vq_callback_t *callbacks[],
  103. const char *names[]);
  104. const char *vp_bus_name(struct virtio_device *vdev);
  105. /* Setup the affinity for a virtqueue:
  106. * - force the affinity for per vq vector
  107. * - OR over all affinities for shared MSI
  108. * - ignore the affinity request if we're using INTX
  109. */
  110. int vp_set_vq_affinity(struct virtqueue *vq, int cpu);
  111. void virtio_pci_release_dev(struct device *);
  112. #ifdef CONFIG_PM_SLEEP
  113. extern const struct dev_pm_ops virtio_pci_pm_ops;
  114. #endif
  115. #endif