Loading...
Note: File does not exist in v3.1.
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Virtio PCI driver - modern (virtio 1.0) device support
4 *
5 * This module allows virtio devices to be used over a virtual PCI device.
6 * This can be used with QEMU based VMMs like KVM or Xen.
7 *
8 * Copyright IBM Corp. 2007
9 * Copyright Red Hat, Inc. 2014
10 *
11 * Authors:
12 * Anthony Liguori <aliguori@us.ibm.com>
13 * Rusty Russell <rusty@rustcorp.com.au>
14 * Michael S. Tsirkin <mst@redhat.com>
15 */
16
17#include <linux/delay.h>
18#define VIRTIO_PCI_NO_LEGACY
19#define VIRTIO_RING_NO_LEGACY
20#include "virtio_pci_common.h"
21
22static u64 vp_get_features(struct virtio_device *vdev)
23{
24 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
25
26 return vp_modern_get_features(&vp_dev->mdev);
27}
28
29static void vp_transport_features(struct virtio_device *vdev, u64 features)
30{
31 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
32 struct pci_dev *pci_dev = vp_dev->pci_dev;
33
34 if ((features & BIT_ULL(VIRTIO_F_SR_IOV)) &&
35 pci_find_ext_capability(pci_dev, PCI_EXT_CAP_ID_SRIOV))
36 __virtio_set_bit(vdev, VIRTIO_F_SR_IOV);
37}
38
39/* virtio config->finalize_features() implementation */
40static int vp_finalize_features(struct virtio_device *vdev)
41{
42 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
43 u64 features = vdev->features;
44
45 /* Give virtio_ring a chance to accept features. */
46 vring_transport_features(vdev);
47
48 /* Give virtio_pci a chance to accept features. */
49 vp_transport_features(vdev, features);
50
51 if (!__virtio_test_bit(vdev, VIRTIO_F_VERSION_1)) {
52 dev_err(&vdev->dev, "virtio: device uses modern interface "
53 "but does not have VIRTIO_F_VERSION_1\n");
54 return -EINVAL;
55 }
56
57 vp_modern_set_features(&vp_dev->mdev, vdev->features);
58
59 return 0;
60}
61
62/* virtio config->get() implementation */
63static void vp_get(struct virtio_device *vdev, unsigned offset,
64 void *buf, unsigned len)
65{
66 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
67 struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
68 void __iomem *device = mdev->device;
69 u8 b;
70 __le16 w;
71 __le32 l;
72
73 BUG_ON(offset + len > mdev->device_len);
74
75 switch (len) {
76 case 1:
77 b = ioread8(device + offset);
78 memcpy(buf, &b, sizeof b);
79 break;
80 case 2:
81 w = cpu_to_le16(ioread16(device + offset));
82 memcpy(buf, &w, sizeof w);
83 break;
84 case 4:
85 l = cpu_to_le32(ioread32(device + offset));
86 memcpy(buf, &l, sizeof l);
87 break;
88 case 8:
89 l = cpu_to_le32(ioread32(device + offset));
90 memcpy(buf, &l, sizeof l);
91 l = cpu_to_le32(ioread32(device + offset + sizeof l));
92 memcpy(buf + sizeof l, &l, sizeof l);
93 break;
94 default:
95 BUG();
96 }
97}
98
99/* the config->set() implementation. it's symmetric to the config->get()
100 * implementation */
101static void vp_set(struct virtio_device *vdev, unsigned offset,
102 const void *buf, unsigned len)
103{
104 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
105 struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
106 void __iomem *device = mdev->device;
107 u8 b;
108 __le16 w;
109 __le32 l;
110
111 BUG_ON(offset + len > mdev->device_len);
112
113 switch (len) {
114 case 1:
115 memcpy(&b, buf, sizeof b);
116 iowrite8(b, device + offset);
117 break;
118 case 2:
119 memcpy(&w, buf, sizeof w);
120 iowrite16(le16_to_cpu(w), device + offset);
121 break;
122 case 4:
123 memcpy(&l, buf, sizeof l);
124 iowrite32(le32_to_cpu(l), device + offset);
125 break;
126 case 8:
127 memcpy(&l, buf, sizeof l);
128 iowrite32(le32_to_cpu(l), device + offset);
129 memcpy(&l, buf + sizeof l, sizeof l);
130 iowrite32(le32_to_cpu(l), device + offset + sizeof l);
131 break;
132 default:
133 BUG();
134 }
135}
136
137static u32 vp_generation(struct virtio_device *vdev)
138{
139 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
140
141 return vp_modern_generation(&vp_dev->mdev);
142}
143
144/* config->{get,set}_status() implementations */
145static u8 vp_get_status(struct virtio_device *vdev)
146{
147 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
148
149 return vp_modern_get_status(&vp_dev->mdev);
150}
151
152static void vp_set_status(struct virtio_device *vdev, u8 status)
153{
154 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
155
156 /* We should never be setting status to 0. */
157 BUG_ON(status == 0);
158 vp_modern_set_status(&vp_dev->mdev, status);
159}
160
161static void vp_reset(struct virtio_device *vdev)
162{
163 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
164 struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
165
166 /* 0 status means a reset. */
167 vp_modern_set_status(mdev, 0);
168 /* After writing 0 to device_status, the driver MUST wait for a read of
169 * device_status to return 0 before reinitializing the device.
170 * This will flush out the status write, and flush in device writes,
171 * including MSI-X interrupts, if any.
172 */
173 while (vp_modern_get_status(mdev))
174 msleep(1);
175 /* Flush pending VQ/configuration callbacks. */
176 vp_synchronize_vectors(vdev);
177}
178
179static u16 vp_config_vector(struct virtio_pci_device *vp_dev, u16 vector)
180{
181 return vp_modern_config_vector(&vp_dev->mdev, vector);
182}
183
184static struct virtqueue *setup_vq(struct virtio_pci_device *vp_dev,
185 struct virtio_pci_vq_info *info,
186 unsigned index,
187 void (*callback)(struct virtqueue *vq),
188 const char *name,
189 bool ctx,
190 u16 msix_vec)
191{
192
193 struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
194 struct virtqueue *vq;
195 u16 num;
196 int err;
197
198 if (index >= vp_modern_get_num_queues(mdev))
199 return ERR_PTR(-ENOENT);
200
201 /* Check if queue is either not available or already active. */
202 num = vp_modern_get_queue_size(mdev, index);
203 if (!num || vp_modern_get_queue_enable(mdev, index))
204 return ERR_PTR(-ENOENT);
205
206 if (num & (num - 1)) {
207 dev_warn(&vp_dev->pci_dev->dev, "bad queue size %u", num);
208 return ERR_PTR(-EINVAL);
209 }
210
211 info->msix_vector = msix_vec;
212
213 /* create the vring */
214 vq = vring_create_virtqueue(index, num,
215 SMP_CACHE_BYTES, &vp_dev->vdev,
216 true, true, ctx,
217 vp_notify, callback, name);
218 if (!vq)
219 return ERR_PTR(-ENOMEM);
220
221 /* activate the queue */
222 vp_modern_set_queue_size(mdev, index, virtqueue_get_vring_size(vq));
223 vp_modern_queue_address(mdev, index, virtqueue_get_desc_addr(vq),
224 virtqueue_get_avail_addr(vq),
225 virtqueue_get_used_addr(vq));
226
227 vq->priv = (void __force *)vp_modern_map_vq_notify(mdev, index, NULL);
228 if (!vq->priv) {
229 err = -ENOMEM;
230 goto err_map_notify;
231 }
232
233 if (msix_vec != VIRTIO_MSI_NO_VECTOR) {
234 msix_vec = vp_modern_queue_vector(mdev, index, msix_vec);
235 if (msix_vec == VIRTIO_MSI_NO_VECTOR) {
236 err = -EBUSY;
237 goto err_assign_vector;
238 }
239 }
240
241 return vq;
242
243err_assign_vector:
244 if (!mdev->notify_base)
245 pci_iounmap(mdev->pci_dev, (void __iomem __force *)vq->priv);
246err_map_notify:
247 vring_del_virtqueue(vq);
248 return ERR_PTR(err);
249}
250
251static int vp_modern_find_vqs(struct virtio_device *vdev, unsigned nvqs,
252 struct virtqueue *vqs[],
253 vq_callback_t *callbacks[],
254 const char * const names[], const bool *ctx,
255 struct irq_affinity *desc)
256{
257 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
258 struct virtqueue *vq;
259 int rc = vp_find_vqs(vdev, nvqs, vqs, callbacks, names, ctx, desc);
260
261 if (rc)
262 return rc;
263
264 /* Select and activate all queues. Has to be done last: once we do
265 * this, there's no way to go back except reset.
266 */
267 list_for_each_entry(vq, &vdev->vqs, list)
268 vp_modern_set_queue_enable(&vp_dev->mdev, vq->index, true);
269
270 return 0;
271}
272
273static void del_vq(struct virtio_pci_vq_info *info)
274{
275 struct virtqueue *vq = info->vq;
276 struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
277 struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
278
279 if (vp_dev->msix_enabled)
280 vp_modern_queue_vector(mdev, vq->index,
281 VIRTIO_MSI_NO_VECTOR);
282
283 if (!mdev->notify_base)
284 pci_iounmap(mdev->pci_dev, (void __force __iomem *)vq->priv);
285
286 vring_del_virtqueue(vq);
287}
288
289static int virtio_pci_find_shm_cap(struct pci_dev *dev, u8 required_id,
290 u8 *bar, u64 *offset, u64 *len)
291{
292 int pos;
293
294 for (pos = pci_find_capability(dev, PCI_CAP_ID_VNDR); pos > 0;
295 pos = pci_find_next_capability(dev, pos, PCI_CAP_ID_VNDR)) {
296 u8 type, cap_len, id;
297 u32 tmp32;
298 u64 res_offset, res_length;
299
300 pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
301 cfg_type), &type);
302 if (type != VIRTIO_PCI_CAP_SHARED_MEMORY_CFG)
303 continue;
304
305 pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
306 cap_len), &cap_len);
307 if (cap_len != sizeof(struct virtio_pci_cap64)) {
308 dev_err(&dev->dev, "%s: shm cap with bad size offset:"
309 " %d size: %d\n", __func__, pos, cap_len);
310 continue;
311 }
312
313 pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
314 id), &id);
315 if (id != required_id)
316 continue;
317
318 /* Type, and ID match, looks good */
319 pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
320 bar), bar);
321
322 /* Read the lower 32bit of length and offset */
323 pci_read_config_dword(dev, pos + offsetof(struct virtio_pci_cap,
324 offset), &tmp32);
325 res_offset = tmp32;
326 pci_read_config_dword(dev, pos + offsetof(struct virtio_pci_cap,
327 length), &tmp32);
328 res_length = tmp32;
329
330 /* and now the top half */
331 pci_read_config_dword(dev,
332 pos + offsetof(struct virtio_pci_cap64,
333 offset_hi), &tmp32);
334 res_offset |= ((u64)tmp32) << 32;
335 pci_read_config_dword(dev,
336 pos + offsetof(struct virtio_pci_cap64,
337 length_hi), &tmp32);
338 res_length |= ((u64)tmp32) << 32;
339
340 *offset = res_offset;
341 *len = res_length;
342
343 return pos;
344 }
345 return 0;
346}
347
348static bool vp_get_shm_region(struct virtio_device *vdev,
349 struct virtio_shm_region *region, u8 id)
350{
351 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
352 struct pci_dev *pci_dev = vp_dev->pci_dev;
353 u8 bar;
354 u64 offset, len;
355 phys_addr_t phys_addr;
356 size_t bar_len;
357
358 if (!virtio_pci_find_shm_cap(pci_dev, id, &bar, &offset, &len))
359 return false;
360
361 phys_addr = pci_resource_start(pci_dev, bar);
362 bar_len = pci_resource_len(pci_dev, bar);
363
364 if ((offset + len) < offset) {
365 dev_err(&pci_dev->dev, "%s: cap offset+len overflow detected\n",
366 __func__);
367 return false;
368 }
369
370 if (offset + len > bar_len) {
371 dev_err(&pci_dev->dev, "%s: bar shorter than cap offset+len\n",
372 __func__);
373 return false;
374 }
375
376 region->len = len;
377 region->addr = (u64) phys_addr + offset;
378
379 return true;
380}
381
382static const struct virtio_config_ops virtio_pci_config_nodev_ops = {
383 .get = NULL,
384 .set = NULL,
385 .generation = vp_generation,
386 .get_status = vp_get_status,
387 .set_status = vp_set_status,
388 .reset = vp_reset,
389 .find_vqs = vp_modern_find_vqs,
390 .del_vqs = vp_del_vqs,
391 .get_features = vp_get_features,
392 .finalize_features = vp_finalize_features,
393 .bus_name = vp_bus_name,
394 .set_vq_affinity = vp_set_vq_affinity,
395 .get_vq_affinity = vp_get_vq_affinity,
396 .get_shm_region = vp_get_shm_region,
397};
398
399static const struct virtio_config_ops virtio_pci_config_ops = {
400 .get = vp_get,
401 .set = vp_set,
402 .generation = vp_generation,
403 .get_status = vp_get_status,
404 .set_status = vp_set_status,
405 .reset = vp_reset,
406 .find_vqs = vp_modern_find_vqs,
407 .del_vqs = vp_del_vqs,
408 .get_features = vp_get_features,
409 .finalize_features = vp_finalize_features,
410 .bus_name = vp_bus_name,
411 .set_vq_affinity = vp_set_vq_affinity,
412 .get_vq_affinity = vp_get_vq_affinity,
413 .get_shm_region = vp_get_shm_region,
414};
415
416/* the PCI probing function */
417int virtio_pci_modern_probe(struct virtio_pci_device *vp_dev)
418{
419 struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
420 struct pci_dev *pci_dev = vp_dev->pci_dev;
421 int err;
422
423 mdev->pci_dev = pci_dev;
424
425 err = vp_modern_probe(mdev);
426 if (err)
427 return err;
428
429 if (mdev->device)
430 vp_dev->vdev.config = &virtio_pci_config_ops;
431 else
432 vp_dev->vdev.config = &virtio_pci_config_nodev_ops;
433
434 vp_dev->config_vector = vp_config_vector;
435 vp_dev->setup_vq = setup_vq;
436 vp_dev->del_vq = del_vq;
437 vp_dev->isr = mdev->isr;
438 vp_dev->vdev.id = mdev->id;
439
440 return 0;
441}
442
443void virtio_pci_modern_remove(struct virtio_pci_device *vp_dev)
444{
445 struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
446
447 vp_modern_remove(mdev);
448}