blob: ca3ad41c2c82ad14615d402712d2b50d1e094272 [file] [log] [blame]
Rusty Russell0a8a69d2007-10-22 11:03:40 +10001#ifndef _LINUX_VIRTIO_RING_H
2#define _LINUX_VIRTIO_RING_H
Rusty Russell0a8a69d2007-10-22 11:03:40 +10003
Rusty Russell0a8a69d2007-10-22 11:03:40 +10004#include <linux/irqreturn.h>
David Howells607ca462012-10-13 10:46:48 +01005#include <uapi/linux/virtio_ring.h>
6
Rusty Russella9a0fef2013-03-18 13:22:19 +10307/*
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
11 * anyone care?
12 *
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
15 * sufficient.
16 *
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.
21 */
22
23#ifdef CONFIG_SMP
24static inline void virtio_mb(bool weak_barriers)
25{
26 if (weak_barriers)
27 smp_mb();
28 else
29 mb();
30}
31
32static inline void virtio_rmb(bool weak_barriers)
33{
34 if (weak_barriers)
35 smp_rmb();
36 else
37 rmb();
38}
39
40static inline void virtio_wmb(bool weak_barriers)
41{
42 if (weak_barriers)
43 smp_wmb();
44 else
45 wmb();
46}
47#else
48static inline void virtio_mb(bool weak_barriers)
49{
50 mb();
51}
52
53static inline void virtio_rmb(bool weak_barriers)
54{
55 rmb();
56}
57
58static inline void virtio_wmb(bool weak_barriers)
59{
60 wmb();
61}
62#endif
63
Rusty Russell0a8a69d2007-10-22 11:03:40 +100064struct virtio_device;
65struct virtqueue;
66
Jason Wang17bb6d42012-08-28 13:54:13 +020067struct virtqueue *vring_new_virtqueue(unsigned int index,
68 unsigned int num,
Rusty Russell87c7d572008-12-30 09:26:03 -060069 unsigned int vring_align,
Rusty Russell0a8a69d2007-10-22 11:03:40 +100070 struct virtio_device *vdev,
Rusty Russell7b21e342012-01-12 15:44:42 +103071 bool weak_barriers,
Rusty Russell0a8a69d2007-10-22 11:03:40 +100072 void *pages,
73 void (*notify)(struct virtqueue *vq),
Rusty Russell9499f5e2009-06-12 22:16:35 -060074 void (*callback)(struct virtqueue *vq),
75 const char *name);
Rusty Russell0a8a69d2007-10-22 11:03:40 +100076void vring_del_virtqueue(struct virtqueue *vq);
Rusty Russelle34f8722008-07-25 12:06:13 -050077/* Filter out transport-specific feature bits. */
78void vring_transport_features(struct virtio_device *vdev);
Rusty Russell0a8a69d2007-10-22 11:03:40 +100079
80irqreturn_t vring_interrupt(int irq, void *_vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +100081#endif /* _LINUX_VIRTIO_RING_H */