Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 2 | #ifndef _LINUX_VIRTIO_RING_H |
| 3 | #define _LINUX_VIRTIO_RING_H |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 4 | |
Michael S. Tsirkin | c5610a5d | 2013-07-08 11:31:06 +0930 | [diff] [blame] | 5 | #include <asm/barrier.h> |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 6 | #include <linux/irqreturn.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 7 | #include <uapi/linux/virtio_ring.h> |
| 8 | |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 9 | /* |
| 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 |
| 13 | * anyone care? |
| 14 | * |
| 15 | * For virtio_pci on SMP, we don't need to order with respect to MMIO |
Michael S. Tsirkin | a6596127 | 2015-12-27 17:55:35 +0200 | [diff] [blame] | 16 | * accesses through relaxed memory I/O windows, so virt_mb() et al are |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 17 | * sufficient. |
| 18 | * |
| 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. |
| 23 | */ |
| 24 | |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 25 | static inline void virtio_mb(bool weak_barriers) |
| 26 | { |
| 27 | if (weak_barriers) |
Michael S. Tsirkin | a6596127 | 2015-12-27 17:55:35 +0200 | [diff] [blame] | 28 | virt_mb(); |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 29 | else |
| 30 | mb(); |
| 31 | } |
| 32 | |
| 33 | static inline void virtio_rmb(bool weak_barriers) |
| 34 | { |
| 35 | if (weak_barriers) |
Michael S. Tsirkin | a6596127 | 2015-12-27 17:55:35 +0200 | [diff] [blame] | 36 | virt_rmb(); |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 37 | else |
Michael S. Tsirkin | 55e49dc | 2018-04-19 20:29:41 +0300 | [diff] [blame] | 38 | dma_rmb(); |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | static inline void virtio_wmb(bool weak_barriers) |
| 42 | { |
| 43 | if (weak_barriers) |
Michael S. Tsirkin | a6596127 | 2015-12-27 17:55:35 +0200 | [diff] [blame] | 44 | virt_wmb(); |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 45 | else |
Michael S. Tsirkin | 55e49dc | 2018-04-19 20:29:41 +0300 | [diff] [blame] | 46 | dma_wmb(); |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 47 | } |
Rusty Russell | a9a0fef | 2013-03-18 13:22:19 +1030 | [diff] [blame] | 48 | |
Michael S. Tsirkin | 788e5b3 | 2015-12-17 12:20:39 +0200 | [diff] [blame] | 49 | static inline void virtio_store_mb(bool weak_barriers, |
| 50 | __virtio16 *p, __virtio16 v) |
| 51 | { |
| 52 | if (weak_barriers) { |
| 53 | virt_store_mb(*p, v); |
| 54 | } else { |
| 55 | WRITE_ONCE(*p, v); |
| 56 | mb(); |
| 57 | } |
| 58 | } |
| 59 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 60 | struct virtio_device; |
| 61 | struct virtqueue; |
| 62 | |
Andy Lutomirski | 2a2d138 | 2016-02-02 21:46:37 -0800 | [diff] [blame] | 63 | /* |
| 64 | * Creates a virtqueue and allocates the descriptor ring. If |
| 65 | * may_reduce_num is set, then this may allocate a smaller ring than |
Cornelia Huck | cf94db2 | 2019-04-08 14:33:22 +0200 | [diff] [blame] | 66 | * expected. The caller should query virtqueue_get_vring_size to learn |
Andy Lutomirski | 2a2d138 | 2016-02-02 21:46:37 -0800 | [diff] [blame] | 67 | * the actual size of the ring. |
| 68 | */ |
| 69 | struct virtqueue *vring_create_virtqueue(unsigned int index, |
| 70 | unsigned int num, |
| 71 | unsigned int vring_align, |
| 72 | struct virtio_device *vdev, |
| 73 | bool weak_barriers, |
| 74 | bool may_reduce_num, |
Michael S. Tsirkin | f94682d | 2017-03-06 18:32:29 +0200 | [diff] [blame] | 75 | bool ctx, |
Andy Lutomirski | 2a2d138 | 2016-02-02 21:46:37 -0800 | [diff] [blame] | 76 | bool (*notify)(struct virtqueue *vq), |
| 77 | void (*callback)(struct virtqueue *vq), |
| 78 | const char *name); |
| 79 | |
| 80 | /* Creates a virtqueue with a custom layout. */ |
| 81 | struct virtqueue *__vring_new_virtqueue(unsigned int index, |
| 82 | struct vring vring, |
| 83 | struct virtio_device *vdev, |
| 84 | bool weak_barriers, |
Michael S. Tsirkin | f94682d | 2017-03-06 18:32:29 +0200 | [diff] [blame] | 85 | bool ctx, |
Andy Lutomirski | 2a2d138 | 2016-02-02 21:46:37 -0800 | [diff] [blame] | 86 | bool (*notify)(struct virtqueue *), |
| 87 | void (*callback)(struct virtqueue *), |
| 88 | const char *name); |
| 89 | |
| 90 | /* |
| 91 | * Creates a virtqueue with a standard layout but a caller-allocated |
| 92 | * ring. |
| 93 | */ |
Jason Wang | 17bb6d4 | 2012-08-28 13:54:13 +0200 | [diff] [blame] | 94 | struct virtqueue *vring_new_virtqueue(unsigned int index, |
| 95 | unsigned int num, |
Rusty Russell | 87c7d57 | 2008-12-30 09:26:03 -0600 | [diff] [blame] | 96 | unsigned int vring_align, |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 97 | struct virtio_device *vdev, |
Rusty Russell | 7b21e34 | 2012-01-12 15:44:42 +1030 | [diff] [blame] | 98 | bool weak_barriers, |
Michael S. Tsirkin | f94682d | 2017-03-06 18:32:29 +0200 | [diff] [blame] | 99 | bool ctx, |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 100 | void *pages, |
Heinz Graalfs | 46f9c2b | 2013-10-29 09:38:50 +1030 | [diff] [blame] | 101 | bool (*notify)(struct virtqueue *vq), |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 102 | void (*callback)(struct virtqueue *vq), |
| 103 | const char *name); |
Andy Lutomirski | 2a2d138 | 2016-02-02 21:46:37 -0800 | [diff] [blame] | 104 | |
| 105 | /* |
| 106 | * Destroys a virtqueue. If created with vring_create_virtqueue, this |
| 107 | * also frees the ring. |
| 108 | */ |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 109 | void vring_del_virtqueue(struct virtqueue *vq); |
Andy Lutomirski | 2a2d138 | 2016-02-02 21:46:37 -0800 | [diff] [blame] | 110 | |
Rusty Russell | e34f872 | 2008-07-25 12:06:13 -0500 | [diff] [blame] | 111 | /* Filter out transport-specific feature bits. */ |
| 112 | void vring_transport_features(struct virtio_device *vdev); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 113 | |
| 114 | irqreturn_t vring_interrupt(int irq, void *_vq); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 115 | #endif /* _LINUX_VIRTIO_RING_H */ |