1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_VIRTIO_RING_H
3 #define _LINUX_VIRTIO_RING_H
5 #include <asm/barrier.h>
6 #include <linux/irqreturn.h>
7 #include <uapi/linux/virtio_ring.h>
10 * Barriers in virtio are tricky. Non-SMP virtio guests can't assume
11 * they're not on an SMP host system, so they need to assume real
12 * barriers. Non-SMP virtio hosts could skip the barriers, but does
15 * For virtio_pci on SMP, we don't need to order with respect to MMIO
16 * accesses through relaxed memory I/O windows, so virt_mb() et al are
19 * For using virtio to talk to real devices (eg. other heterogeneous
20 * CPUs) we do need real barriers. In theory, we could be using both
21 * kinds of virtio, so it's a runtime decision, and the branch is
22 * actually quite cheap.
25 static inline void virtio_mb(bool weak_barriers)
33 static inline void virtio_rmb(bool weak_barriers)
41 static inline void virtio_wmb(bool weak_barriers)
49 #define virtio_store_mb(weak_barriers, p, v) \
51 if (weak_barriers) { \
52 virt_store_mb(*p, v); \
64 * Creates a virtqueue and allocates the descriptor ring. If
65 * may_reduce_num is set, then this may allocate a smaller ring than
66 * expected. The caller should query virtqueue_get_vring_size to learn
67 * the actual size of the ring.
69 struct virtqueue *vring_create_virtqueue(unsigned int index,
71 unsigned int vring_align,
72 struct virtio_device *vdev,
76 bool (*notify)(struct virtqueue *vq),
77 void (*callback)(struct virtqueue *vq),
81 * Creates a virtqueue and allocates the descriptor ring with per
82 * virtqueue DMA device.
84 struct virtqueue *vring_create_virtqueue_dma(unsigned int index,
86 unsigned int vring_align,
87 struct virtio_device *vdev,
91 bool (*notify)(struct virtqueue *vq),
92 void (*callback)(struct virtqueue *vq),
94 struct device *dma_dev);
97 * Creates a virtqueue with a standard layout but a caller-allocated
100 struct virtqueue *vring_new_virtqueue(unsigned int index,
102 unsigned int vring_align,
103 struct virtio_device *vdev,
107 bool (*notify)(struct virtqueue *vq),
108 void (*callback)(struct virtqueue *vq),
112 * Destroys a virtqueue. If created with vring_create_virtqueue, this
113 * also frees the ring.
115 void vring_del_virtqueue(struct virtqueue *vq);
117 /* Filter out transport-specific feature bits. */
118 void vring_transport_features(struct virtio_device *vdev);
120 irqreturn_t vring_interrupt(int irq, void *_vq);
122 u32 vring_notification_data(struct virtqueue *_vq);
123 #endif /* _LINUX_VIRTIO_RING_H */