Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 1 | #ifndef _LINUX_VIRTIO_RING_H |
| 2 | #define _LINUX_VIRTIO_RING_H |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 3 | |
Michael S. Tsirkin | c5610a5d | 2013-07-08 11:31:06 +0930 | [diff] [blame] | 4 | #include <asm/barrier.h> |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 5 | #include <linux/irqreturn.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 6 | #include <uapi/linux/virtio_ring.h> |
| 7 | |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 8 | /* |
| 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 |
| 12 | * anyone care? |
| 13 | * |
| 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 smp_mb() et al are |
| 16 | * sufficient. |
| 17 | * |
| 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. |
| 22 | */ |
| 23 | |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 24 | static inline void virtio_mb(bool weak_barriers) |
| 25 | { |
Alexander Duyck | 9e1a27e | 2015-04-13 21:03:49 +0930 | [diff] [blame] | 26 | #ifdef CONFIG_SMP |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 27 | if (weak_barriers) |
| 28 | smp_mb(); |
| 29 | else |
Alexander Duyck | 9e1a27e | 2015-04-13 21:03:49 +0930 | [diff] [blame] | 30 | #endif |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 31 | mb(); |
| 32 | } |
| 33 | |
| 34 | static inline void virtio_rmb(bool weak_barriers) |
| 35 | { |
| 36 | if (weak_barriers) |
Alexander Duyck | 9e1a27e | 2015-04-13 21:03:49 +0930 | [diff] [blame] | 37 | dma_rmb(); |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 38 | else |
| 39 | rmb(); |
| 40 | } |
| 41 | |
| 42 | static inline void virtio_wmb(bool weak_barriers) |
| 43 | { |
| 44 | if (weak_barriers) |
Alexander Duyck | 9e1a27e | 2015-04-13 21:03:49 +0930 | [diff] [blame] | 45 | dma_wmb(); |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 46 | else |
| 47 | wmb(); |
| 48 | } |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 49 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 50 | struct virtio_device; |
| 51 | struct virtqueue; |
| 52 | |
Jason Wang | 17bb6d4 | 2012-08-28 13:54:13 +0200 | [diff] [blame] | 53 | struct virtqueue *vring_new_virtqueue(unsigned int index, |
| 54 | unsigned int num, |
Rusty Russell | 87c7d57 | 2008-12-30 09:26:03 -0600 | [diff] [blame] | 55 | unsigned int vring_align, |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 56 | struct virtio_device *vdev, |
Rusty Russell | 7b21e34 | 2012-01-12 15:44:42 +1030 | [diff] [blame] | 57 | bool weak_barriers, |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 58 | void *pages, |
Heinz Graalfs | 46f9c2b | 2013-10-29 09:38:50 +1030 | [diff] [blame] | 59 | bool (*notify)(struct virtqueue *vq), |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 60 | void (*callback)(struct virtqueue *vq), |
| 61 | const char *name); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 62 | void vring_del_virtqueue(struct virtqueue *vq); |
Rusty Russell | e34f872 | 2008-07-25 12:06:13 -0500 | [diff] [blame] | 63 | /* Filter out transport-specific feature bits. */ |
| 64 | void vring_transport_features(struct virtio_device *vdev); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 65 | |
| 66 | irqreturn_t vring_interrupt(int irq, void *_vq); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 67 | #endif /* _LINUX_VIRTIO_RING_H */ |