blob: 610c43f192306ac91a52c240c01bef87b6fcaa3c [file] [log] [blame]
Michael S. Tsirkin5f4c9762014-12-08 16:39:45 +02001#ifndef _DRIVERS_VIRTIO_VIRTIO_PCI_COMMON_H
2#define _DRIVERS_VIRTIO_VIRTIO_PCI_COMMON_H
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +02003/*
Michael S. Tsirkina90fdce2014-12-08 12:31:02 +02004 * Virtio PCI driver - APIs for common functionality for all device versions
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +02005 *
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
Michael S. Tsirkina90fdce2014-12-08 12:31:02 +020010 * Copyright Red Hat, Inc. 2014
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020011 *
12 * Authors:
13 * Anthony Liguori <aliguori@us.ibm.com>
Michael S. Tsirkina90fdce2014-12-08 12:31:02 +020014 * Rusty Russell <rusty@rustcorp.com.au>
15 * Michael S. Tsirkin <mst@redhat.com>
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020016 *
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
22#include <linux/module.h>
23#include <linux/list.h>
24#include <linux/pci.h>
25#include <linux/slab.h>
26#include <linux/interrupt.h>
27#include <linux/virtio.h>
28#include <linux/virtio_config.h>
29#include <linux/virtio_ring.h>
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020030#include <linux/virtio_pci.h>
31#include <linux/highmem.h>
32#include <linux/spinlock.h>
33
34struct virtio_pci_vq_info {
35 /* the actual virtqueue */
36 struct virtqueue *vq;
37
38 /* the number of entries in the queue */
39 int num;
40
41 /* the virtual address of the ring queue */
42 void *queue;
43
44 /* the list node for the virtqueues list */
45 struct list_head node;
46
47 /* MSI-X vector (or none) */
48 unsigned msix_vector;
49};
50
51/* Our device structure */
52struct virtio_pci_device {
53 struct virtio_device vdev;
54 struct pci_dev *pci_dev;
55
Michael S. Tsirkin1fcf0512014-12-11 13:59:51 +020056 /* In legacy mode, these two point to within ->legacy. */
57 /* Where to read and clear interrupt */
58 u8 __iomem *isr;
59
60 /* Modern only fields */
61 /* The IO mapping for the PCI config space (non-legacy mode) */
62 struct virtio_pci_common_cfg __iomem *common;
63 /* Device-specific data (non-legacy mode) */
64 void __iomem *device;
65
66 /* So we can sanity-check accesses. */
67 size_t device_len;
68
69 /* Capability for when we need to map notifications per-vq. */
70 int notify_map_cap;
71
72 /* Multiply queue_notify_off by this value. (non-legacy mode). */
73 u32 notify_offset_multiplier;
74
75 /* Legacy only field */
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020076 /* the IO mapping for the PCI config space */
77 void __iomem *ioaddr;
78
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020079 /* a list of queues so we can dispatch IRQs */
80 spinlock_t lock;
81 struct list_head virtqueues;
82
83 /* array of all queues for house-keeping */
84 struct virtio_pci_vq_info **vqs;
85
86 /* MSI-X support */
87 int msix_enabled;
88 int intx_enabled;
89 struct msix_entry *msix_entries;
90 cpumask_var_t *msix_affinity_masks;
91 /* Name strings for interrupts. This size should be enough,
92 * and I'm too lazy to allocate each name separately. */
93 char (*msix_names)[256];
94 /* Number of available vectors */
95 unsigned msix_vectors;
96 /* Vectors allocated, excluding per-vq vectors if any */
97 unsigned msix_used_vectors;
98
99 /* Whether we have vector per vq */
100 bool per_vq_vectors;
101
102 struct virtqueue *(*setup_vq)(struct virtio_pci_device *vp_dev,
103 struct virtio_pci_vq_info *info,
104 unsigned idx,
105 void (*callback)(struct virtqueue *vq),
106 const char *name,
107 u16 msix_vec);
108 void (*del_vq)(struct virtio_pci_vq_info *info);
109
110 u16 (*config_vector)(struct virtio_pci_device *vp_dev, u16 vector);
111};
112
113/* Constants for MSI-X */
114/* Use first vector for configuration changes, second and the rest for
115 * virtqueues Thus, we need at least 2 vectors for MSI. */
116enum {
117 VP_MSIX_CONFIG_VECTOR = 0,
118 VP_MSIX_VQ_VECTOR = 1,
119};
120
121/* Convert a generic virtio device to our structure */
122static struct virtio_pci_device *to_vp_device(struct virtio_device *vdev)
123{
124 return container_of(vdev, struct virtio_pci_device, vdev);
125}
126
127/* wait for pending irq handlers */
128void vp_synchronize_vectors(struct virtio_device *vdev);
129/* the notify function used when creating a virt queue */
130bool vp_notify(struct virtqueue *vq);
131/* the config->del_vqs() implementation */
132void vp_del_vqs(struct virtio_device *vdev);
133/* the config->find_vqs() implementation */
134int vp_find_vqs(struct virtio_device *vdev, unsigned nvqs,
135 struct virtqueue *vqs[],
136 vq_callback_t *callbacks[],
137 const char *names[]);
138const char *vp_bus_name(struct virtio_device *vdev);
139
140/* Setup the affinity for a virtqueue:
141 * - force the affinity for per vq vector
142 * - OR over all affinities for shared MSI
143 * - ignore the affinity request if we're using INTX
144 */
145int vp_set_vq_affinity(struct virtqueue *vq, int cpu);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200146
Michael S. Tsirkinff31d2e2015-01-13 11:23:32 +0200147int virtio_pci_legacy_probe(struct virtio_pci_device *);
148void virtio_pci_legacy_remove(struct virtio_pci_device *);
Michael S. Tsirkin1fcf0512014-12-11 13:59:51 +0200149int virtio_pci_modern_probe(struct virtio_pci_device *);
150void virtio_pci_modern_remove(struct virtio_pci_device *);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200151
152#endif