1 #ifndef _LINUX_VIRTIO_RING_H
2 #define _LINUX_VIRTIO_RING_H
4 #include <linux/irqreturn.h>
5 #include <uapi/linux/virtio_ring.h>
8 * Barriers in virtio are tricky. Non-SMP virtio guests can't assume
9 * they're not on an SMP host system, so they need to assume real
10 * barriers. Non-SMP virtio hosts could skip the barriers, but does
13 * For virtio_pci on SMP, we don't need to order with respect to MMIO
14 * accesses through relaxed memory I/O windows, so smp_mb() et al are
17 * For using virtio to talk to real devices (eg. other heterogeneous
18 * CPUs) we do need real barriers. In theory, we could be using both
19 * kinds of virtio, so it's a runtime decision, and the branch is
20 * actually quite cheap.
24 static inline void virtio_mb(bool weak_barriers)
32 static inline void virtio_rmb(bool weak_barriers)
40 static inline void virtio_wmb(bool weak_barriers)
48 static inline void virtio_mb(bool weak_barriers)
53 static inline void virtio_rmb(bool weak_barriers)
58 static inline void virtio_wmb(bool weak_barriers)
67 struct virtqueue *vring_new_virtqueue(unsigned int index,
69 unsigned int vring_align,
70 struct virtio_device *vdev,
73 void (*notify)(struct virtqueue *vq),
74 void (*callback)(struct virtqueue *vq),
76 void vring_del_virtqueue(struct virtqueue *vq);
77 /* Filter out transport-specific feature bits. */
78 void vring_transport_features(struct virtio_device *vdev);
80 irqreturn_t vring_interrupt(int irq, void *_vq);
81 #endif /* _LINUX_VIRTIO_RING_H */