Linux Audio

Check our new training course

Loading...
v5.9
  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
 22/*
 23 * Type-safe wrappers for io accesses.
 24 * Use these to enforce at compile time the following spec requirement:
 25 *
 26 * The driver MUST access each field using the “natural” access
 27 * method, i.e. 32-bit accesses for 32-bit fields, 16-bit accesses
 28 * for 16-bit fields and 8-bit accesses for 8-bit fields.
 29 */
 30static inline u8 vp_ioread8(const u8 __iomem *addr)
 31{
 32	return ioread8(addr);
 33}
 34static inline u16 vp_ioread16 (const __le16 __iomem *addr)
 35{
 36	return ioread16(addr);
 37}
 38
 39static inline u32 vp_ioread32(const __le32 __iomem *addr)
 40{
 41	return ioread32(addr);
 42}
 43
 44static inline void vp_iowrite8(u8 value, u8 __iomem *addr)
 45{
 46	iowrite8(value, addr);
 47}
 48
 49static inline void vp_iowrite16(u16 value, __le16 __iomem *addr)
 50{
 51	iowrite16(value, addr);
 52}
 53
 54static inline void vp_iowrite32(u32 value, __le32 __iomem *addr)
 55{
 56	iowrite32(value, addr);
 57}
 58
 59static void vp_iowrite64_twopart(u64 val,
 60				 __le32 __iomem *lo, __le32 __iomem *hi)
 61{
 62	vp_iowrite32((u32)val, lo);
 63	vp_iowrite32(val >> 32, hi);
 64}
 65
 66static void __iomem *map_capability(struct pci_dev *dev, int off,
 67				    size_t minlen,
 68				    u32 align,
 69				    u32 start, u32 size,
 70				    size_t *len)
 71{
 72	u8 bar;
 73	u32 offset, length;
 74	void __iomem *p;
 75
 76	pci_read_config_byte(dev, off + offsetof(struct virtio_pci_cap,
 77						 bar),
 78			     &bar);
 79	pci_read_config_dword(dev, off + offsetof(struct virtio_pci_cap, offset),
 80			     &offset);
 81	pci_read_config_dword(dev, off + offsetof(struct virtio_pci_cap, length),
 82			      &length);
 83
 84	if (length <= start) {
 85		dev_err(&dev->dev,
 86			"virtio_pci: bad capability len %u (>%u expected)\n",
 87			length, start);
 88		return NULL;
 89	}
 90
 91	if (length - start < minlen) {
 92		dev_err(&dev->dev,
 93			"virtio_pci: bad capability len %u (>=%zu expected)\n",
 94			length, minlen);
 95		return NULL;
 96	}
 97
 98	length -= start;
 99
100	if (start + offset < offset) {
101		dev_err(&dev->dev,
102			"virtio_pci: map wrap-around %u+%u\n",
103			start, offset);
104		return NULL;
105	}
106
107	offset += start;
108
109	if (offset & (align - 1)) {
110		dev_err(&dev->dev,
111			"virtio_pci: offset %u not aligned to %u\n",
112			offset, align);
113		return NULL;
114	}
115
116	if (length > size)
117		length = size;
118
119	if (len)
120		*len = length;
121
122	if (minlen + offset < minlen ||
123	    minlen + offset > pci_resource_len(dev, bar)) {
124		dev_err(&dev->dev,
125			"virtio_pci: map virtio %zu@%u "
126			"out of range on bar %i length %lu\n",
127			minlen, offset,
128			bar, (unsigned long)pci_resource_len(dev, bar));
129		return NULL;
130	}
131
132	p = pci_iomap_range(dev, bar, offset, length);
133	if (!p)
134		dev_err(&dev->dev,
135			"virtio_pci: unable to map virtio %u@%u on bar %i\n",
136			length, offset, bar);
137	return p;
138}
139
140/* virtio config->get_features() implementation */
141static u64 vp_get_features(struct virtio_device *vdev)
142{
143	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
144	u64 features;
145
146	vp_iowrite32(0, &vp_dev->common->device_feature_select);
147	features = vp_ioread32(&vp_dev->common->device_feature);
148	vp_iowrite32(1, &vp_dev->common->device_feature_select);
149	features |= ((u64)vp_ioread32(&vp_dev->common->device_feature) << 32);
150
151	return features;
152}
153
154static void vp_transport_features(struct virtio_device *vdev, u64 features)
155{
156	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
157	struct pci_dev *pci_dev = vp_dev->pci_dev;
158
159	if ((features & BIT_ULL(VIRTIO_F_SR_IOV)) &&
160			pci_find_ext_capability(pci_dev, PCI_EXT_CAP_ID_SRIOV))
161		__virtio_set_bit(vdev, VIRTIO_F_SR_IOV);
 
 
 
162}
163
164/* virtio config->finalize_features() implementation */
165static int vp_finalize_features(struct virtio_device *vdev)
166{
167	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
168	u64 features = vdev->features;
169
170	/* Give virtio_ring a chance to accept features. */
171	vring_transport_features(vdev);
172
173	/* Give virtio_pci a chance to accept features. */
174	vp_transport_features(vdev, features);
175
176	if (!__virtio_test_bit(vdev, VIRTIO_F_VERSION_1)) {
177		dev_err(&vdev->dev, "virtio: device uses modern interface "
178			"but does not have VIRTIO_F_VERSION_1\n");
179		return -EINVAL;
180	}
181
182	vp_iowrite32(0, &vp_dev->common->guest_feature_select);
183	vp_iowrite32((u32)vdev->features, &vp_dev->common->guest_feature);
184	vp_iowrite32(1, &vp_dev->common->guest_feature_select);
185	vp_iowrite32(vdev->features >> 32, &vp_dev->common->guest_feature);
186
187	return 0;
188}
189
190/* virtio config->get() implementation */
191static void vp_get(struct virtio_device *vdev, unsigned offset,
192		   void *buf, unsigned len)
193{
194	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
 
 
195	u8 b;
196	__le16 w;
197	__le32 l;
198
199	BUG_ON(offset + len > vp_dev->device_len);
200
201	switch (len) {
202	case 1:
203		b = ioread8(vp_dev->device + offset);
204		memcpy(buf, &b, sizeof b);
205		break;
206	case 2:
207		w = cpu_to_le16(ioread16(vp_dev->device + offset));
208		memcpy(buf, &w, sizeof w);
209		break;
210	case 4:
211		l = cpu_to_le32(ioread32(vp_dev->device + offset));
212		memcpy(buf, &l, sizeof l);
213		break;
214	case 8:
215		l = cpu_to_le32(ioread32(vp_dev->device + offset));
216		memcpy(buf, &l, sizeof l);
217		l = cpu_to_le32(ioread32(vp_dev->device + offset + sizeof l));
218		memcpy(buf + sizeof l, &l, sizeof l);
219		break;
220	default:
221		BUG();
222	}
223}
224
225/* the config->set() implementation.  it's symmetric to the config->get()
226 * implementation */
227static void vp_set(struct virtio_device *vdev, unsigned offset,
228		   const void *buf, unsigned len)
229{
230	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
 
 
231	u8 b;
232	__le16 w;
233	__le32 l;
234
235	BUG_ON(offset + len > vp_dev->device_len);
236
237	switch (len) {
238	case 1:
239		memcpy(&b, buf, sizeof b);
240		iowrite8(b, vp_dev->device + offset);
241		break;
242	case 2:
243		memcpy(&w, buf, sizeof w);
244		iowrite16(le16_to_cpu(w), vp_dev->device + offset);
245		break;
246	case 4:
247		memcpy(&l, buf, sizeof l);
248		iowrite32(le32_to_cpu(l), vp_dev->device + offset);
249		break;
250	case 8:
251		memcpy(&l, buf, sizeof l);
252		iowrite32(le32_to_cpu(l), vp_dev->device + offset);
253		memcpy(&l, buf + sizeof l, sizeof l);
254		iowrite32(le32_to_cpu(l), vp_dev->device + offset + sizeof l);
255		break;
256	default:
257		BUG();
258	}
259}
260
261static u32 vp_generation(struct virtio_device *vdev)
262{
263	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
264	return vp_ioread8(&vp_dev->common->config_generation);
 
265}
266
267/* config->{get,set}_status() implementations */
268static u8 vp_get_status(struct virtio_device *vdev)
269{
270	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
271	return vp_ioread8(&vp_dev->common->device_status);
 
272}
273
274static void vp_set_status(struct virtio_device *vdev, u8 status)
275{
276	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
 
277	/* We should never be setting status to 0. */
278	BUG_ON(status == 0);
279	vp_iowrite8(status, &vp_dev->common->device_status);
280}
281
282static void vp_reset(struct virtio_device *vdev)
283{
284	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
 
 
285	/* 0 status means a reset. */
286	vp_iowrite8(0, &vp_dev->common->device_status);
287	/* After writing 0 to device_status, the driver MUST wait for a read of
288	 * device_status to return 0 before reinitializing the device.
289	 * This will flush out the status write, and flush in device writes,
290	 * including MSI-X interrupts, if any.
291	 */
292	while (vp_ioread8(&vp_dev->common->device_status))
293		msleep(1);
294	/* Flush pending VQ/configuration callbacks. */
295	vp_synchronize_vectors(vdev);
296}
297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298static u16 vp_config_vector(struct virtio_pci_device *vp_dev, u16 vector)
299{
300	/* Setup the vector used for configuration events */
301	vp_iowrite16(vector, &vp_dev->common->msix_config);
302	/* Verify we had enough resources to assign the vector */
303	/* Will also flush the write out to device */
304	return vp_ioread16(&vp_dev->common->msix_config);
305}
306
307static struct virtqueue *setup_vq(struct virtio_pci_device *vp_dev,
308				  struct virtio_pci_vq_info *info,
309				  unsigned index,
310				  void (*callback)(struct virtqueue *vq),
311				  const char *name,
312				  bool ctx,
313				  u16 msix_vec)
314{
315	struct virtio_pci_common_cfg __iomem *cfg = vp_dev->common;
 
316	struct virtqueue *vq;
317	u16 num, off;
318	int err;
319
320	if (index >= vp_ioread16(&cfg->num_queues))
321		return ERR_PTR(-ENOENT);
322
323	/* Select the queue we're interested in */
324	vp_iowrite16(index, &cfg->queue_select);
325
326	/* Check if queue is either not available or already active. */
327	num = vp_ioread16(&cfg->queue_size);
328	if (!num || vp_ioread16(&cfg->queue_enable))
329		return ERR_PTR(-ENOENT);
330
331	if (num & (num - 1)) {
332		dev_warn(&vp_dev->pci_dev->dev, "bad queue size %u", num);
333		return ERR_PTR(-EINVAL);
334	}
335
336	/* get offset of notification word for this vq */
337	off = vp_ioread16(&cfg->queue_notify_off);
338
339	info->msix_vector = msix_vec;
340
341	/* create the vring */
342	vq = vring_create_virtqueue(index, num,
343				    SMP_CACHE_BYTES, &vp_dev->vdev,
344				    true, true, ctx,
345				    vp_notify, callback, name);
346	if (!vq)
347		return ERR_PTR(-ENOMEM);
348
349	/* activate the queue */
350	vp_iowrite16(virtqueue_get_vring_size(vq), &cfg->queue_size);
351	vp_iowrite64_twopart(virtqueue_get_desc_addr(vq),
352			     &cfg->queue_desc_lo, &cfg->queue_desc_hi);
353	vp_iowrite64_twopart(virtqueue_get_avail_addr(vq),
354			     &cfg->queue_avail_lo, &cfg->queue_avail_hi);
355	vp_iowrite64_twopart(virtqueue_get_used_addr(vq),
356			     &cfg->queue_used_lo, &cfg->queue_used_hi);
357
358	if (vp_dev->notify_base) {
359		/* offset should not wrap */
360		if ((u64)off * vp_dev->notify_offset_multiplier + 2
361		    > vp_dev->notify_len) {
362			dev_warn(&vp_dev->pci_dev->dev,
363				 "bad notification offset %u (x %u) "
364				 "for queue %u > %zd",
365				 off, vp_dev->notify_offset_multiplier,
366				 index, vp_dev->notify_len);
367			err = -EINVAL;
368			goto err_map_notify;
369		}
370		vq->priv = (void __force *)vp_dev->notify_base +
371			off * vp_dev->notify_offset_multiplier;
372	} else {
373		vq->priv = (void __force *)map_capability(vp_dev->pci_dev,
374					  vp_dev->notify_map_cap, 2, 2,
375					  off * vp_dev->notify_offset_multiplier, 2,
376					  NULL);
377	}
378
 
379	if (!vq->priv) {
380		err = -ENOMEM;
381		goto err_map_notify;
382	}
383
384	if (msix_vec != VIRTIO_MSI_NO_VECTOR) {
385		vp_iowrite16(msix_vec, &cfg->queue_msix_vector);
386		msix_vec = vp_ioread16(&cfg->queue_msix_vector);
387		if (msix_vec == VIRTIO_MSI_NO_VECTOR) {
388			err = -EBUSY;
389			goto err_assign_vector;
390		}
391	}
392
393	return vq;
394
395err_assign_vector:
396	if (!vp_dev->notify_base)
397		pci_iounmap(vp_dev->pci_dev, (void __iomem __force *)vq->priv);
398err_map_notify:
399	vring_del_virtqueue(vq);
400	return ERR_PTR(err);
401}
402
403static int vp_modern_find_vqs(struct virtio_device *vdev, unsigned nvqs,
404			      struct virtqueue *vqs[],
405			      vq_callback_t *callbacks[],
406			      const char * const names[], const bool *ctx,
407			      struct irq_affinity *desc)
408{
409	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
410	struct virtqueue *vq;
411	int rc = vp_find_vqs(vdev, nvqs, vqs, callbacks, names, ctx, desc);
412
413	if (rc)
414		return rc;
415
416	/* Select and activate all queues. Has to be done last: once we do
417	 * this, there's no way to go back except reset.
418	 */
419	list_for_each_entry(vq, &vdev->vqs, list) {
420		vp_iowrite16(vq->index, &vp_dev->common->queue_select);
421		vp_iowrite16(1, &vp_dev->common->queue_enable);
422	}
423
424	return 0;
425}
426
427static void del_vq(struct virtio_pci_vq_info *info)
428{
429	struct virtqueue *vq = info->vq;
430	struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
431
432	vp_iowrite16(vq->index, &vp_dev->common->queue_select);
 
 
 
 
433
434	if (vp_dev->msix_enabled) {
435		vp_iowrite16(VIRTIO_MSI_NO_VECTOR,
436			     &vp_dev->common->queue_msix_vector);
437		/* Flush the write out to device */
438		vp_ioread16(&vp_dev->common->queue_msix_vector);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
439	}
 
 
440
441	if (!vp_dev->notify_base)
442		pci_iounmap(vp_dev->pci_dev, (void __force __iomem *)vq->priv);
 
 
 
 
 
 
 
443
444	vring_del_virtqueue(vq);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
445}
446
447static const struct virtio_config_ops virtio_pci_config_nodev_ops = {
448	.get		= NULL,
449	.set		= NULL,
450	.generation	= vp_generation,
451	.get_status	= vp_get_status,
452	.set_status	= vp_set_status,
453	.reset		= vp_reset,
454	.find_vqs	= vp_modern_find_vqs,
455	.del_vqs	= vp_del_vqs,
 
456	.get_features	= vp_get_features,
457	.finalize_features = vp_finalize_features,
458	.bus_name	= vp_bus_name,
459	.set_vq_affinity = vp_set_vq_affinity,
460	.get_vq_affinity = vp_get_vq_affinity,
 
 
 
461};
462
463static const struct virtio_config_ops virtio_pci_config_ops = {
464	.get		= vp_get,
465	.set		= vp_set,
466	.generation	= vp_generation,
467	.get_status	= vp_get_status,
468	.set_status	= vp_set_status,
469	.reset		= vp_reset,
470	.find_vqs	= vp_modern_find_vqs,
471	.del_vqs	= vp_del_vqs,
 
472	.get_features	= vp_get_features,
473	.finalize_features = vp_finalize_features,
474	.bus_name	= vp_bus_name,
475	.set_vq_affinity = vp_set_vq_affinity,
476	.get_vq_affinity = vp_get_vq_affinity,
 
 
 
477};
478
479/**
480 * virtio_pci_find_capability - walk capabilities to find device info.
481 * @dev: the pci device
482 * @cfg_type: the VIRTIO_PCI_CAP_* value we seek
483 * @ioresource_types: IORESOURCE_MEM and/or IORESOURCE_IO.
484 * @bars: the bitmask of BARs
485 *
486 * Returns offset of the capability, or 0.
487 */
488static inline int virtio_pci_find_capability(struct pci_dev *dev, u8 cfg_type,
489					     u32 ioresource_types, int *bars)
490{
491	int pos;
492
493	for (pos = pci_find_capability(dev, PCI_CAP_ID_VNDR);
494	     pos > 0;
495	     pos = pci_find_next_capability(dev, pos, PCI_CAP_ID_VNDR)) {
496		u8 type, bar;
497		pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
498							 cfg_type),
499				     &type);
500		pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
501							 bar),
502				     &bar);
503
504		/* Ignore structures with reserved BAR values */
505		if (bar > 0x5)
506			continue;
507
508		if (type == cfg_type) {
509			if (pci_resource_len(dev, bar) &&
510			    pci_resource_flags(dev, bar) & ioresource_types) {
511				*bars |= (1 << bar);
512				return pos;
513			}
514		}
515	}
516	return 0;
517}
518
519/* This is part of the ABI.  Don't screw with it. */
520static inline void check_offsets(void)
521{
522	/* Note: disk space was harmed in compilation of this function. */
523	BUILD_BUG_ON(VIRTIO_PCI_CAP_VNDR !=
524		     offsetof(struct virtio_pci_cap, cap_vndr));
525	BUILD_BUG_ON(VIRTIO_PCI_CAP_NEXT !=
526		     offsetof(struct virtio_pci_cap, cap_next));
527	BUILD_BUG_ON(VIRTIO_PCI_CAP_LEN !=
528		     offsetof(struct virtio_pci_cap, cap_len));
529	BUILD_BUG_ON(VIRTIO_PCI_CAP_CFG_TYPE !=
530		     offsetof(struct virtio_pci_cap, cfg_type));
531	BUILD_BUG_ON(VIRTIO_PCI_CAP_BAR !=
532		     offsetof(struct virtio_pci_cap, bar));
533	BUILD_BUG_ON(VIRTIO_PCI_CAP_OFFSET !=
534		     offsetof(struct virtio_pci_cap, offset));
535	BUILD_BUG_ON(VIRTIO_PCI_CAP_LENGTH !=
536		     offsetof(struct virtio_pci_cap, length));
537	BUILD_BUG_ON(VIRTIO_PCI_NOTIFY_CAP_MULT !=
538		     offsetof(struct virtio_pci_notify_cap,
539			      notify_off_multiplier));
540	BUILD_BUG_ON(VIRTIO_PCI_COMMON_DFSELECT !=
541		     offsetof(struct virtio_pci_common_cfg,
542			      device_feature_select));
543	BUILD_BUG_ON(VIRTIO_PCI_COMMON_DF !=
544		     offsetof(struct virtio_pci_common_cfg, device_feature));
545	BUILD_BUG_ON(VIRTIO_PCI_COMMON_GFSELECT !=
546		     offsetof(struct virtio_pci_common_cfg,
547			      guest_feature_select));
548	BUILD_BUG_ON(VIRTIO_PCI_COMMON_GF !=
549		     offsetof(struct virtio_pci_common_cfg, guest_feature));
550	BUILD_BUG_ON(VIRTIO_PCI_COMMON_MSIX !=
551		     offsetof(struct virtio_pci_common_cfg, msix_config));
552	BUILD_BUG_ON(VIRTIO_PCI_COMMON_NUMQ !=
553		     offsetof(struct virtio_pci_common_cfg, num_queues));
554	BUILD_BUG_ON(VIRTIO_PCI_COMMON_STATUS !=
555		     offsetof(struct virtio_pci_common_cfg, device_status));
556	BUILD_BUG_ON(VIRTIO_PCI_COMMON_CFGGENERATION !=
557		     offsetof(struct virtio_pci_common_cfg, config_generation));
558	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_SELECT !=
559		     offsetof(struct virtio_pci_common_cfg, queue_select));
560	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_SIZE !=
561		     offsetof(struct virtio_pci_common_cfg, queue_size));
562	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_MSIX !=
563		     offsetof(struct virtio_pci_common_cfg, queue_msix_vector));
564	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_ENABLE !=
565		     offsetof(struct virtio_pci_common_cfg, queue_enable));
566	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_NOFF !=
567		     offsetof(struct virtio_pci_common_cfg, queue_notify_off));
568	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_DESCLO !=
569		     offsetof(struct virtio_pci_common_cfg, queue_desc_lo));
570	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_DESCHI !=
571		     offsetof(struct virtio_pci_common_cfg, queue_desc_hi));
572	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_AVAILLO !=
573		     offsetof(struct virtio_pci_common_cfg, queue_avail_lo));
574	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_AVAILHI !=
575		     offsetof(struct virtio_pci_common_cfg, queue_avail_hi));
576	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_USEDLO !=
577		     offsetof(struct virtio_pci_common_cfg, queue_used_lo));
578	BUILD_BUG_ON(VIRTIO_PCI_COMMON_Q_USEDHI !=
579		     offsetof(struct virtio_pci_common_cfg, queue_used_hi));
580}
581
582/* the PCI probing function */
583int virtio_pci_modern_probe(struct virtio_pci_device *vp_dev)
584{
 
585	struct pci_dev *pci_dev = vp_dev->pci_dev;
586	int err, common, isr, notify, device;
587	u32 notify_length;
588	u32 notify_offset;
589
590	check_offsets();
591
592	/* We only own devices >= 0x1000 and <= 0x107f: leave the rest. */
593	if (pci_dev->device < 0x1000 || pci_dev->device > 0x107f)
594		return -ENODEV;
595
596	if (pci_dev->device < 0x1040) {
597		/* Transitional devices: use the PCI subsystem device id as
598		 * virtio device id, same as legacy driver always did.
599		 */
600		vp_dev->vdev.id.device = pci_dev->subsystem_device;
601	} else {
602		/* Modern devices: simply use PCI device id, but start from 0x1040. */
603		vp_dev->vdev.id.device = pci_dev->device - 0x1040;
604	}
605	vp_dev->vdev.id.vendor = pci_dev->subsystem_vendor;
606
607	/* check for a common config: if not, use legacy mode (bar 0). */
608	common = virtio_pci_find_capability(pci_dev, VIRTIO_PCI_CAP_COMMON_CFG,
609					    IORESOURCE_IO | IORESOURCE_MEM,
610					    &vp_dev->modern_bars);
611	if (!common) {
612		dev_info(&pci_dev->dev,
613			 "virtio_pci: leaving for legacy driver\n");
614		return -ENODEV;
615	}
616
617	/* If common is there, these should be too... */
618	isr = virtio_pci_find_capability(pci_dev, VIRTIO_PCI_CAP_ISR_CFG,
619					 IORESOURCE_IO | IORESOURCE_MEM,
620					 &vp_dev->modern_bars);
621	notify = virtio_pci_find_capability(pci_dev, VIRTIO_PCI_CAP_NOTIFY_CFG,
622					    IORESOURCE_IO | IORESOURCE_MEM,
623					    &vp_dev->modern_bars);
624	if (!isr || !notify) {
625		dev_err(&pci_dev->dev,
626			"virtio_pci: missing capabilities %i/%i/%i\n",
627			common, isr, notify);
628		return -EINVAL;
629	}
630
631	err = dma_set_mask_and_coherent(&pci_dev->dev, DMA_BIT_MASK(64));
632	if (err)
633		err = dma_set_mask_and_coherent(&pci_dev->dev,
634						DMA_BIT_MASK(32));
635	if (err)
636		dev_warn(&pci_dev->dev, "Failed to enable 64-bit or 32-bit DMA.  Trying to continue, but this might not work.\n");
637
638	/* Device capability is only mandatory for devices that have
639	 * device-specific configuration.
640	 */
641	device = virtio_pci_find_capability(pci_dev, VIRTIO_PCI_CAP_DEVICE_CFG,
642					    IORESOURCE_IO | IORESOURCE_MEM,
643					    &vp_dev->modern_bars);
644
645	err = pci_request_selected_regions(pci_dev, vp_dev->modern_bars,
646					   "virtio-pci-modern");
647	if (err)
648		return err;
649
650	err = -EINVAL;
651	vp_dev->common = map_capability(pci_dev, common,
652					sizeof(struct virtio_pci_common_cfg), 4,
653					0, sizeof(struct virtio_pci_common_cfg),
654					NULL);
655	if (!vp_dev->common)
656		goto err_map_common;
657	vp_dev->isr = map_capability(pci_dev, isr, sizeof(u8), 1,
658				     0, 1,
659				     NULL);
660	if (!vp_dev->isr)
661		goto err_map_isr;
662
663	/* Read notify_off_multiplier from config space. */
664	pci_read_config_dword(pci_dev,
665			      notify + offsetof(struct virtio_pci_notify_cap,
666						notify_off_multiplier),
667			      &vp_dev->notify_offset_multiplier);
668	/* Read notify length and offset from config space. */
669	pci_read_config_dword(pci_dev,
670			      notify + offsetof(struct virtio_pci_notify_cap,
671						cap.length),
672			      &notify_length);
673
674	pci_read_config_dword(pci_dev,
675			      notify + offsetof(struct virtio_pci_notify_cap,
676						cap.offset),
677			      &notify_offset);
678
679	/* We don't know how many VQs we'll map, ahead of the time.
680	 * If notify length is small, map it all now.
681	 * Otherwise, map each VQ individually later.
682	 */
683	if ((u64)notify_length + (notify_offset % PAGE_SIZE) <= PAGE_SIZE) {
684		vp_dev->notify_base = map_capability(pci_dev, notify, 2, 2,
685						     0, notify_length,
686						     &vp_dev->notify_len);
687		if (!vp_dev->notify_base)
688			goto err_map_notify;
689	} else {
690		vp_dev->notify_map_cap = notify;
691	}
692
693	/* Again, we don't know how much we should map, but PAGE_SIZE
694	 * is more than enough for all existing devices.
695	 */
696	if (device) {
697		vp_dev->device = map_capability(pci_dev, device, 0, 4,
698						0, PAGE_SIZE,
699						&vp_dev->device_len);
700		if (!vp_dev->device)
701			goto err_map_device;
702
703		vp_dev->vdev.config = &virtio_pci_config_ops;
704	} else {
705		vp_dev->vdev.config = &virtio_pci_config_nodev_ops;
706	}
707
708	vp_dev->config_vector = vp_config_vector;
709	vp_dev->setup_vq = setup_vq;
710	vp_dev->del_vq = del_vq;
 
 
711
712	return 0;
713
714err_map_device:
715	if (vp_dev->notify_base)
716		pci_iounmap(pci_dev, vp_dev->notify_base);
717err_map_notify:
718	pci_iounmap(pci_dev, vp_dev->isr);
719err_map_isr:
720	pci_iounmap(pci_dev, vp_dev->common);
721err_map_common:
722	return err;
723}
724
725void virtio_pci_modern_remove(struct virtio_pci_device *vp_dev)
726{
727	struct pci_dev *pci_dev = vp_dev->pci_dev;
728
729	if (vp_dev->device)
730		pci_iounmap(pci_dev, vp_dev->device);
731	if (vp_dev->notify_base)
732		pci_iounmap(pci_dev, vp_dev->notify_base);
733	pci_iounmap(pci_dev, vp_dev->isr);
734	pci_iounmap(pci_dev, vp_dev->common);
735	pci_release_selected_regions(pci_dev, vp_dev->modern_bars);
736}
v6.2
  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	if (features & BIT_ULL(VIRTIO_F_RING_RESET))
 39		__virtio_set_bit(vdev, VIRTIO_F_RING_RESET);
 40}
 41
 42/* virtio config->finalize_features() implementation */
 43static int vp_finalize_features(struct virtio_device *vdev)
 44{
 45	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
 46	u64 features = vdev->features;
 47
 48	/* Give virtio_ring a chance to accept features. */
 49	vring_transport_features(vdev);
 50
 51	/* Give virtio_pci a chance to accept features. */
 52	vp_transport_features(vdev, features);
 53
 54	if (!__virtio_test_bit(vdev, VIRTIO_F_VERSION_1)) {
 55		dev_err(&vdev->dev, "virtio: device uses modern interface "
 56			"but does not have VIRTIO_F_VERSION_1\n");
 57		return -EINVAL;
 58	}
 59
 60	vp_modern_set_features(&vp_dev->mdev, vdev->features);
 
 
 
 61
 62	return 0;
 63}
 64
 65/* virtio config->get() implementation */
 66static void vp_get(struct virtio_device *vdev, unsigned int offset,
 67		   void *buf, unsigned int len)
 68{
 69	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
 70	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
 71	void __iomem *device = mdev->device;
 72	u8 b;
 73	__le16 w;
 74	__le32 l;
 75
 76	BUG_ON(offset + len > mdev->device_len);
 77
 78	switch (len) {
 79	case 1:
 80		b = ioread8(device + offset);
 81		memcpy(buf, &b, sizeof b);
 82		break;
 83	case 2:
 84		w = cpu_to_le16(ioread16(device + offset));
 85		memcpy(buf, &w, sizeof w);
 86		break;
 87	case 4:
 88		l = cpu_to_le32(ioread32(device + offset));
 89		memcpy(buf, &l, sizeof l);
 90		break;
 91	case 8:
 92		l = cpu_to_le32(ioread32(device + offset));
 93		memcpy(buf, &l, sizeof l);
 94		l = cpu_to_le32(ioread32(device + offset + sizeof l));
 95		memcpy(buf + sizeof l, &l, sizeof l);
 96		break;
 97	default:
 98		BUG();
 99	}
100}
101
102/* the config->set() implementation.  it's symmetric to the config->get()
103 * implementation */
104static void vp_set(struct virtio_device *vdev, unsigned int offset,
105		   const void *buf, unsigned int len)
106{
107	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
108	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
109	void __iomem *device = mdev->device;
110	u8 b;
111	__le16 w;
112	__le32 l;
113
114	BUG_ON(offset + len > mdev->device_len);
115
116	switch (len) {
117	case 1:
118		memcpy(&b, buf, sizeof b);
119		iowrite8(b, device + offset);
120		break;
121	case 2:
122		memcpy(&w, buf, sizeof w);
123		iowrite16(le16_to_cpu(w), device + offset);
124		break;
125	case 4:
126		memcpy(&l, buf, sizeof l);
127		iowrite32(le32_to_cpu(l), device + offset);
128		break;
129	case 8:
130		memcpy(&l, buf, sizeof l);
131		iowrite32(le32_to_cpu(l), device + offset);
132		memcpy(&l, buf + sizeof l, sizeof l);
133		iowrite32(le32_to_cpu(l), device + offset + sizeof l);
134		break;
135	default:
136		BUG();
137	}
138}
139
140static u32 vp_generation(struct virtio_device *vdev)
141{
142	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
143
144	return vp_modern_generation(&vp_dev->mdev);
145}
146
147/* config->{get,set}_status() implementations */
148static u8 vp_get_status(struct virtio_device *vdev)
149{
150	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
151
152	return vp_modern_get_status(&vp_dev->mdev);
153}
154
155static void vp_set_status(struct virtio_device *vdev, u8 status)
156{
157	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
158
159	/* We should never be setting status to 0. */
160	BUG_ON(status == 0);
161	vp_modern_set_status(&vp_dev->mdev, status);
162}
163
164static void vp_reset(struct virtio_device *vdev)
165{
166	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
167	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
168
169	/* 0 status means a reset. */
170	vp_modern_set_status(mdev, 0);
171	/* After writing 0 to device_status, the driver MUST wait for a read of
172	 * device_status to return 0 before reinitializing the device.
173	 * This will flush out the status write, and flush in device writes,
174	 * including MSI-X interrupts, if any.
175	 */
176	while (vp_modern_get_status(mdev))
177		msleep(1);
178	/* Flush pending VQ/configuration callbacks. */
179	vp_synchronize_vectors(vdev);
180}
181
182static int vp_active_vq(struct virtqueue *vq, u16 msix_vec)
183{
184	struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
185	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
186	unsigned long index;
187
188	index = vq->index;
189
190	/* activate the queue */
191	vp_modern_set_queue_size(mdev, index, virtqueue_get_vring_size(vq));
192	vp_modern_queue_address(mdev, index, virtqueue_get_desc_addr(vq),
193				virtqueue_get_avail_addr(vq),
194				virtqueue_get_used_addr(vq));
195
196	if (msix_vec != VIRTIO_MSI_NO_VECTOR) {
197		msix_vec = vp_modern_queue_vector(mdev, index, msix_vec);
198		if (msix_vec == VIRTIO_MSI_NO_VECTOR)
199			return -EBUSY;
200	}
201
202	return 0;
203}
204
205static int vp_modern_disable_vq_and_reset(struct virtqueue *vq)
206{
207	struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
208	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
209	struct virtio_pci_vq_info *info;
210	unsigned long flags;
211
212	if (!virtio_has_feature(vq->vdev, VIRTIO_F_RING_RESET))
213		return -ENOENT;
214
215	vp_modern_set_queue_reset(mdev, vq->index);
216
217	info = vp_dev->vqs[vq->index];
218
219	/* delete vq from irq handler */
220	spin_lock_irqsave(&vp_dev->lock, flags);
221	list_del(&info->node);
222	spin_unlock_irqrestore(&vp_dev->lock, flags);
223
224	INIT_LIST_HEAD(&info->node);
225
226#ifdef CONFIG_VIRTIO_HARDEN_NOTIFICATION
227	__virtqueue_break(vq);
228#endif
229
230	/* For the case where vq has an exclusive irq, call synchronize_irq() to
231	 * wait for completion.
232	 *
233	 * note: We can't use disable_irq() since it conflicts with the affinity
234	 * managed IRQ that is used by some drivers.
235	 */
236	if (vp_dev->per_vq_vectors && info->msix_vector != VIRTIO_MSI_NO_VECTOR)
237		synchronize_irq(pci_irq_vector(vp_dev->pci_dev, info->msix_vector));
238
239	vq->reset = true;
240
241	return 0;
242}
243
244static int vp_modern_enable_vq_after_reset(struct virtqueue *vq)
245{
246	struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
247	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
248	struct virtio_pci_vq_info *info;
249	unsigned long flags, index;
250	int err;
251
252	if (!vq->reset)
253		return -EBUSY;
254
255	index = vq->index;
256	info = vp_dev->vqs[index];
257
258	if (vp_modern_get_queue_reset(mdev, index))
259		return -EBUSY;
260
261	if (vp_modern_get_queue_enable(mdev, index))
262		return -EBUSY;
263
264	err = vp_active_vq(vq, info->msix_vector);
265	if (err)
266		return err;
267
268	if (vq->callback) {
269		spin_lock_irqsave(&vp_dev->lock, flags);
270		list_add(&info->node, &vp_dev->virtqueues);
271		spin_unlock_irqrestore(&vp_dev->lock, flags);
272	} else {
273		INIT_LIST_HEAD(&info->node);
274	}
275
276#ifdef CONFIG_VIRTIO_HARDEN_NOTIFICATION
277	__virtqueue_unbreak(vq);
278#endif
279
280	vp_modern_set_queue_enable(&vp_dev->mdev, index, true);
281	vq->reset = false;
282
283	return 0;
284}
285
286static u16 vp_config_vector(struct virtio_pci_device *vp_dev, u16 vector)
287{
288	return vp_modern_config_vector(&vp_dev->mdev, vector);
 
 
 
 
289}
290
291static struct virtqueue *setup_vq(struct virtio_pci_device *vp_dev,
292				  struct virtio_pci_vq_info *info,
293				  unsigned int index,
294				  void (*callback)(struct virtqueue *vq),
295				  const char *name,
296				  bool ctx,
297				  u16 msix_vec)
298{
299
300	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
301	struct virtqueue *vq;
302	u16 num;
303	int err;
304
305	if (index >= vp_modern_get_num_queues(mdev))
306		return ERR_PTR(-EINVAL);
 
 
 
307
308	/* Check if queue is either not available or already active. */
309	num = vp_modern_get_queue_size(mdev, index);
310	if (!num || vp_modern_get_queue_enable(mdev, index))
311		return ERR_PTR(-ENOENT);
312
313	if (!is_power_of_2(num)) {
314		dev_warn(&vp_dev->pci_dev->dev, "bad queue size %u", num);
315		return ERR_PTR(-EINVAL);
316	}
317
 
 
 
318	info->msix_vector = msix_vec;
319
320	/* create the vring */
321	vq = vring_create_virtqueue(index, num,
322				    SMP_CACHE_BYTES, &vp_dev->vdev,
323				    true, true, ctx,
324				    vp_notify, callback, name);
325	if (!vq)
326		return ERR_PTR(-ENOMEM);
327
328	vq->num_max = num;
329
330	err = vp_active_vq(vq, msix_vec);
331	if (err)
332		goto err;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
333
334	vq->priv = (void __force *)vp_modern_map_vq_notify(mdev, index, NULL);
335	if (!vq->priv) {
336		err = -ENOMEM;
337		goto err;
 
 
 
 
 
 
 
 
 
338	}
339
340	return vq;
341
342err:
 
 
 
343	vring_del_virtqueue(vq);
344	return ERR_PTR(err);
345}
346
347static int vp_modern_find_vqs(struct virtio_device *vdev, unsigned int nvqs,
348			      struct virtqueue *vqs[],
349			      vq_callback_t *callbacks[],
350			      const char * const names[], const bool *ctx,
351			      struct irq_affinity *desc)
352{
353	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
354	struct virtqueue *vq;
355	int rc = vp_find_vqs(vdev, nvqs, vqs, callbacks, names, ctx, desc);
356
357	if (rc)
358		return rc;
359
360	/* Select and activate all queues. Has to be done last: once we do
361	 * this, there's no way to go back except reset.
362	 */
363	list_for_each_entry(vq, &vdev->vqs, list)
364		vp_modern_set_queue_enable(&vp_dev->mdev, vq->index, true);
 
 
365
366	return 0;
367}
368
369static void del_vq(struct virtio_pci_vq_info *info)
370{
371	struct virtqueue *vq = info->vq;
372	struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
373	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
374
375	if (vp_dev->msix_enabled)
376		vp_modern_queue_vector(mdev, vq->index,
377				       VIRTIO_MSI_NO_VECTOR);
378
379	if (!mdev->notify_base)
380		pci_iounmap(mdev->pci_dev, (void __force __iomem *)vq->priv);
381
382	vring_del_virtqueue(vq);
383}
384
385static int virtio_pci_find_shm_cap(struct pci_dev *dev, u8 required_id,
386				   u8 *bar, u64 *offset, u64 *len)
387{
388	int pos;
389
390	for (pos = pci_find_capability(dev, PCI_CAP_ID_VNDR); pos > 0;
391	     pos = pci_find_next_capability(dev, pos, PCI_CAP_ID_VNDR)) {
392		u8 type, cap_len, id, res_bar;
393		u32 tmp32;
394		u64 res_offset, res_length;
395
396		pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
397							 cfg_type), &type);
398		if (type != VIRTIO_PCI_CAP_SHARED_MEMORY_CFG)
399			continue;
400
401		pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
402							 cap_len), &cap_len);
403		if (cap_len != sizeof(struct virtio_pci_cap64)) {
404			dev_err(&dev->dev, "%s: shm cap with bad size offset:"
405				" %d size: %d\n", __func__, pos, cap_len);
406			continue;
407		}
408
409		pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
410							 id), &id);
411		if (id != required_id)
412			continue;
413
414		pci_read_config_byte(dev, pos + offsetof(struct virtio_pci_cap,
415							 bar), &res_bar);
416		if (res_bar >= PCI_STD_NUM_BARS)
417			continue;
418
419		/* Type and ID match, and the BAR value isn't reserved.
420		 * Looks good.
421		 */
422
423		/* Read the lower 32bit of length and offset */
424		pci_read_config_dword(dev, pos + offsetof(struct virtio_pci_cap,
425							  offset), &tmp32);
426		res_offset = tmp32;
427		pci_read_config_dword(dev, pos + offsetof(struct virtio_pci_cap,
428							  length), &tmp32);
429		res_length = tmp32;
430
431		/* and now the top half */
432		pci_read_config_dword(dev,
433				      pos + offsetof(struct virtio_pci_cap64,
434						     offset_hi), &tmp32);
435		res_offset |= ((u64)tmp32) << 32;
436		pci_read_config_dword(dev,
437				      pos + offsetof(struct virtio_pci_cap64,
438						     length_hi), &tmp32);
439		res_length |= ((u64)tmp32) << 32;
440
441		*bar = res_bar;
442		*offset = res_offset;
443		*len = res_length;
444
445		return pos;
446	}
447	return 0;
448}
449
450static bool vp_get_shm_region(struct virtio_device *vdev,
451			      struct virtio_shm_region *region, u8 id)
452{
453	struct virtio_pci_device *vp_dev = to_vp_device(vdev);
454	struct pci_dev *pci_dev = vp_dev->pci_dev;
455	u8 bar;
456	u64 offset, len;
457	phys_addr_t phys_addr;
458	size_t bar_len;
459
460	if (!virtio_pci_find_shm_cap(pci_dev, id, &bar, &offset, &len))
461		return false;
462
463	phys_addr = pci_resource_start(pci_dev, bar);
464	bar_len = pci_resource_len(pci_dev, bar);
465
466	if ((offset + len) < offset) {
467		dev_err(&pci_dev->dev, "%s: cap offset+len overflow detected\n",
468			__func__);
469		return false;
470	}
471
472	if (offset + len > bar_len) {
473		dev_err(&pci_dev->dev, "%s: bar shorter than cap offset+len\n",
474			__func__);
475		return false;
476	}
477
478	region->len = len;
479	region->addr = (u64) phys_addr + offset;
480
481	return true;
482}
483
484static const struct virtio_config_ops virtio_pci_config_nodev_ops = {
485	.get		= NULL,
486	.set		= NULL,
487	.generation	= vp_generation,
488	.get_status	= vp_get_status,
489	.set_status	= vp_set_status,
490	.reset		= vp_reset,
491	.find_vqs	= vp_modern_find_vqs,
492	.del_vqs	= vp_del_vqs,
493	.synchronize_cbs = vp_synchronize_vectors,
494	.get_features	= vp_get_features,
495	.finalize_features = vp_finalize_features,
496	.bus_name	= vp_bus_name,
497	.set_vq_affinity = vp_set_vq_affinity,
498	.get_vq_affinity = vp_get_vq_affinity,
499	.get_shm_region  = vp_get_shm_region,
500	.disable_vq_and_reset = vp_modern_disable_vq_and_reset,
501	.enable_vq_after_reset = vp_modern_enable_vq_after_reset,
502};
503
504static const struct virtio_config_ops virtio_pci_config_ops = {
505	.get		= vp_get,
506	.set		= vp_set,
507	.generation	= vp_generation,
508	.get_status	= vp_get_status,
509	.set_status	= vp_set_status,
510	.reset		= vp_reset,
511	.find_vqs	= vp_modern_find_vqs,
512	.del_vqs	= vp_del_vqs,
513	.synchronize_cbs = vp_synchronize_vectors,
514	.get_features	= vp_get_features,
515	.finalize_features = vp_finalize_features,
516	.bus_name	= vp_bus_name,
517	.set_vq_affinity = vp_set_vq_affinity,
518	.get_vq_affinity = vp_get_vq_affinity,
519	.get_shm_region  = vp_get_shm_region,
520	.disable_vq_and_reset = vp_modern_disable_vq_and_reset,
521	.enable_vq_after_reset = vp_modern_enable_vq_after_reset,
522};
523
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524/* the PCI probing function */
525int virtio_pci_modern_probe(struct virtio_pci_device *vp_dev)
526{
527	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
528	struct pci_dev *pci_dev = vp_dev->pci_dev;
529	int err;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
531	mdev->pci_dev = pci_dev;
 
 
 
 
 
 
 
 
 
 
 
 
532
533	err = vp_modern_probe(mdev);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
534	if (err)
535		return err;
536
537	if (mdev->device)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
538		vp_dev->vdev.config = &virtio_pci_config_ops;
539	else
540		vp_dev->vdev.config = &virtio_pci_config_nodev_ops;
 
541
542	vp_dev->config_vector = vp_config_vector;
543	vp_dev->setup_vq = setup_vq;
544	vp_dev->del_vq = del_vq;
545	vp_dev->isr = mdev->isr;
546	vp_dev->vdev.id = mdev->id;
547
548	return 0;
 
 
 
 
 
 
 
 
 
 
549}
550
551void virtio_pci_modern_remove(struct virtio_pci_device *vp_dev)
552{
553	struct virtio_pci_modern_device *mdev = &vp_dev->mdev;
554
555	vp_modern_remove(mdev);
 
 
 
 
 
 
556}