1 #ifndef _LINUX_VIRTIO_RING_H
2 #define _LINUX_VIRTIO_RING_H
4 #include <asm/barrier.h>
5 #include <linux/irqreturn.h>
6 #include <uapi/linux/virtio_ring.h>
9 * Barriers in virtio are tricky. Non-SMP virtio guests can't assume
10 * they're not on an SMP host system, so they need to assume real
11 * barriers. Non-SMP virtio hosts could skip the barriers, but does
14 * For virtio_pci on SMP, we don't need to order with respect to MMIO
15 * accesses through relaxed memory I/O windows, so virt_mb() et al are
18 * For using virtio to talk to real devices (eg. other heterogeneous
19 * CPUs) we do need real barriers. In theory, we could be using both
20 * kinds of virtio, so it's a runtime decision, and the branch is
21 * 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_store_mb(bool weak_barriers
,
49 __virtio16
*p
, __virtio16 v
)
63 * Creates a virtqueue and allocates the descriptor ring. If
64 * may_reduce_num is set, then this may allocate a smaller ring than
65 * expected. The caller should query virtqueue_get_ring_size to learn
66 * the actual size of the ring.
68 struct virtqueue
*vring_create_virtqueue(unsigned int index
,
70 unsigned int vring_align
,
71 struct virtio_device
*vdev
,
75 bool (*notify
)(struct virtqueue
*vq
),
76 void (*callback
)(struct virtqueue
*vq
),
79 /* Creates a virtqueue with a custom layout. */
80 struct virtqueue
*__vring_new_virtqueue(unsigned int index
,
82 struct virtio_device
*vdev
,
85 bool (*notify
)(struct virtqueue
*),
86 void (*callback
)(struct virtqueue
*),
90 * Creates a virtqueue with a standard layout but a caller-allocated
93 struct virtqueue
*vring_new_virtqueue(unsigned int index
,
95 unsigned int vring_align
,
96 struct virtio_device
*vdev
,
100 bool (*notify
)(struct virtqueue
*vq
),
101 void (*callback
)(struct virtqueue
*vq
),
105 * Destroys a virtqueue. If created with vring_create_virtqueue, this
106 * also frees the ring.
108 void vring_del_virtqueue(struct virtqueue
*vq
);
110 /* Filter out transport-specific feature bits. */
111 void vring_transport_features(struct virtio_device
*vdev
);
113 irqreturn_t
vring_interrupt(int irq
, void *_vq
);
114 #endif /* _LINUX_VIRTIO_RING_H */