virtio_pci_common.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. #include <linux/virtio_pci.h>
  30. #include <linux/highmem.h>
  31. #include <linux/spinlock.h>
  32. struct virtio_pci_vq_info {
  33. /* the actual virtqueue */
  34. struct virtqueue *vq;
  35. /* the list node for the virtqueues list */
  36. struct list_head node;
  37. /* MSI-X vector (or none) */
  38. unsigned msix_vector;
  39. };
  40. /* Our device structure */
  41. struct virtio_pci_device {
  42. struct virtio_device vdev;
  43. struct pci_dev *pci_dev;
  44. /* In legacy mode, these two point to within ->legacy. */
  45. /* Where to read and clear interrupt */
  46. u8 __iomem *isr;
  47. /* Modern only fields */
  48. /* The IO mapping for the PCI config space (non-legacy mode) */
  49. struct virtio_pci_common_cfg __iomem *common;
  50. /* Device-specific data (non-legacy mode) */
  51. void __iomem *device;
  52. /* Base of vq notifications (non-legacy mode). */
  53. void __iomem *notify_base;
  54. /* So we can sanity-check accesses. */
  55. size_t notify_len;
  56. size_t device_len;
  57. /* Capability for when we need to map notifications per-vq. */
  58. int notify_map_cap;
  59. /* Multiply queue_notify_off by this value. (non-legacy mode). */
  60. u32 notify_offset_multiplier;
  61. int modern_bars;
  62. /* Legacy only field */
  63. /* the IO mapping for the PCI config space */
  64. void __iomem *ioaddr;
  65. /* a list of queues so we can dispatch IRQs */
  66. spinlock_t lock;
  67. struct list_head virtqueues;
  68. /* array of all queues for house-keeping */
  69. struct virtio_pci_vq_info **vqs;
  70. /* MSI-X support */
  71. int msix_enabled;
  72. int intx_enabled;
  73. cpumask_var_t *msix_affinity_masks;
  74. /* Name strings for interrupts. This size should be enough,
  75. * and I'm too lazy to allocate each name separately. */
  76. char (*msix_names)[256];
  77. /* Number of available vectors */
  78. unsigned msix_vectors;
  79. /* Vectors allocated, excluding per-vq vectors if any */
  80. unsigned msix_used_vectors;
  81. /* Whether we have vector per vq */
  82. bool per_vq_vectors;
  83. struct virtqueue *(*setup_vq)(struct virtio_pci_device *vp_dev,
  84. struct virtio_pci_vq_info *info,
  85. unsigned idx,
  86. void (*callback)(struct virtqueue *vq),
  87. const char *name,
  88. bool ctx,
  89. u16 msix_vec);
  90. void (*del_vq)(struct virtio_pci_vq_info *info);
  91. u16 (*config_vector)(struct virtio_pci_device *vp_dev, u16 vector);
  92. };
  93. /* Constants for MSI-X */
  94. /* Use first vector for configuration changes, second and the rest for
  95. * virtqueues Thus, we need at least 2 vectors for MSI. */
  96. enum {
  97. VP_MSIX_CONFIG_VECTOR = 0,
  98. VP_MSIX_VQ_VECTOR = 1,
  99. };
  100. /* Convert a generic virtio device to our structure */
  101. static struct virtio_pci_device *to_vp_device(struct virtio_device *vdev)
  102. {
  103. return container_of(vdev, struct virtio_pci_device, vdev);
  104. }
  105. /* wait for pending irq handlers */
  106. void vp_synchronize_vectors(struct virtio_device *vdev);
  107. /* the notify function used when creating a virt queue */
  108. bool vp_notify(struct virtqueue *vq);
  109. /* the config->del_vqs() implementation */
  110. void vp_del_vqs(struct virtio_device *vdev);
  111. /* the config->find_vqs() implementation */
  112. int vp_find_vqs(struct virtio_device *vdev, unsigned nvqs,
  113. struct virtqueue *vqs[], vq_callback_t *callbacks[],
  114. const char * const names[], const bool *ctx,
  115. struct irq_affinity *desc);
  116. const char *vp_bus_name(struct virtio_device *vdev);
  117. /* Setup the affinity for a virtqueue:
  118. * - force the affinity for per vq vector
  119. * - OR over all affinities for shared MSI
  120. * - ignore the affinity request if we're using INTX
  121. */
  122. int vp_set_vq_affinity(struct virtqueue *vq, int cpu);
  123. const struct cpumask *vp_get_vq_affinity(struct virtio_device *vdev, int index);
  124. #if IS_ENABLED(CONFIG_VIRTIO_PCI_LEGACY)
  125. int virtio_pci_legacy_probe(struct virtio_pci_device *);
  126. void virtio_pci_legacy_remove(struct virtio_pci_device *);
  127. #else
  128. static inline int virtio_pci_legacy_probe(struct virtio_pci_device *vp_dev)
  129. {
  130. return -ENODEV;
  131. }
  132. static inline void virtio_pci_legacy_remove(struct virtio_pci_device *vp_dev)
  133. {
  134. }
  135. #endif
  136. int virtio_pci_modern_probe(struct virtio_pci_device *);
  137. void virtio_pci_modern_remove(struct virtio_pci_device *);
  138. #endif