Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 1 | /* Virtio ring implementation. |
| 2 | * |
| 3 | * Copyright 2007 Rusty Russell IBM Corporation |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 18 | */ |
| 19 | #include <linux/virtio.h> |
| 20 | #include <linux/virtio_ring.h> |
Rusty Russell | e34f872 | 2008-07-25 12:06:13 -0500 | [diff] [blame] | 21 | #include <linux/virtio_config.h> |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 22 | #include <linux/device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/slab.h> |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 24 | |
Michael S. Tsirkin | d57ed95 | 2010-01-28 00:42:23 +0200 | [diff] [blame] | 25 | /* virtio guest is communicating with a virtual "device" that actually runs on |
| 26 | * a host processor. Memory barriers are used to control SMP effects. */ |
| 27 | #ifdef CONFIG_SMP |
| 28 | /* Where possible, use SMP barriers which are more lightweight than mandatory |
| 29 | * barriers, because mandatory barriers control MMIO effects on accesses |
| 30 | * through relaxed memory I/O windows (which virtio does not use). */ |
| 31 | #define virtio_mb() smp_mb() |
| 32 | #define virtio_rmb() smp_rmb() |
| 33 | #define virtio_wmb() smp_wmb() |
| 34 | #else |
| 35 | /* We must force memory ordering even if guest is UP since host could be |
| 36 | * running on another CPU, but SMP barriers are defined to barrier() in that |
| 37 | * configuration. So fall back to mandatory barriers instead. */ |
| 38 | #define virtio_mb() mb() |
| 39 | #define virtio_rmb() rmb() |
| 40 | #define virtio_wmb() wmb() |
| 41 | #endif |
| 42 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 43 | #ifdef DEBUG |
| 44 | /* For development, we want to crash whenever the ring is screwed. */ |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 45 | #define BAD_RING(_vq, fmt, args...) \ |
| 46 | do { \ |
| 47 | dev_err(&(_vq)->vq.vdev->dev, \ |
| 48 | "%s:"fmt, (_vq)->vq.name, ##args); \ |
| 49 | BUG(); \ |
| 50 | } while (0) |
Rusty Russell | c5f841f | 2009-03-30 21:55:22 -0600 | [diff] [blame] | 51 | /* Caller is supposed to guarantee no reentry. */ |
| 52 | #define START_USE(_vq) \ |
| 53 | do { \ |
| 54 | if ((_vq)->in_use) \ |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 55 | panic("%s:in_use = %i\n", \ |
| 56 | (_vq)->vq.name, (_vq)->in_use); \ |
Rusty Russell | c5f841f | 2009-03-30 21:55:22 -0600 | [diff] [blame] | 57 | (_vq)->in_use = __LINE__; \ |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 58 | } while (0) |
Roel Kluin | 3a35ce7 | 2009-01-22 16:42:57 +0100 | [diff] [blame] | 59 | #define END_USE(_vq) \ |
Rusty Russell | 97a545a | 2010-02-24 14:22:22 -0600 | [diff] [blame] | 60 | do { BUG_ON(!(_vq)->in_use); (_vq)->in_use = 0; } while(0) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 61 | #else |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 62 | #define BAD_RING(_vq, fmt, args...) \ |
| 63 | do { \ |
| 64 | dev_err(&_vq->vq.vdev->dev, \ |
| 65 | "%s:"fmt, (_vq)->vq.name, ##args); \ |
| 66 | (_vq)->broken = true; \ |
| 67 | } while (0) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 68 | #define START_USE(vq) |
| 69 | #define END_USE(vq) |
| 70 | #endif |
| 71 | |
| 72 | struct vring_virtqueue |
| 73 | { |
| 74 | struct virtqueue vq; |
| 75 | |
| 76 | /* Actual memory layout for this queue */ |
| 77 | struct vring vring; |
| 78 | |
| 79 | /* Other side has made a mess, don't try any more. */ |
| 80 | bool broken; |
| 81 | |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 82 | /* Host supports indirect buffers */ |
| 83 | bool indirect; |
| 84 | |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 85 | /* Host publishes avail event idx */ |
| 86 | bool event; |
| 87 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 88 | /* Number of free buffers */ |
| 89 | unsigned int num_free; |
| 90 | /* Head of free buffer list. */ |
| 91 | unsigned int free_head; |
| 92 | /* Number we've added since last sync. */ |
| 93 | unsigned int num_added; |
| 94 | |
| 95 | /* Last used index we've seen. */ |
Anthony Liguori | 1bc4953 | 2007-11-07 15:49:24 -0600 | [diff] [blame] | 96 | u16 last_used_idx; |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 97 | |
| 98 | /* How to notify other side. FIXME: commonalize hcalls! */ |
| 99 | void (*notify)(struct virtqueue *vq); |
| 100 | |
| 101 | #ifdef DEBUG |
| 102 | /* They're supposed to lock for us. */ |
| 103 | unsigned int in_use; |
| 104 | #endif |
| 105 | |
| 106 | /* Tokens for callbacks. */ |
| 107 | void *data[]; |
| 108 | }; |
| 109 | |
| 110 | #define to_vvq(_vq) container_of(_vq, struct vring_virtqueue, vq) |
| 111 | |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 112 | /* Set up an indirect table of descriptors and add it to the queue. */ |
| 113 | static int vring_add_indirect(struct vring_virtqueue *vq, |
| 114 | struct scatterlist sg[], |
| 115 | unsigned int out, |
Michael S. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 116 | unsigned int in, |
| 117 | gfp_t gfp) |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 118 | { |
| 119 | struct vring_desc *desc; |
| 120 | unsigned head; |
| 121 | int i; |
| 122 | |
Michael S. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 123 | desc = kmalloc((out + in) * sizeof(struct vring_desc), gfp); |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 124 | if (!desc) |
Michael S. Tsirkin | 686d363 | 2010-06-10 18:16:11 +0300 | [diff] [blame] | 125 | return -ENOMEM; |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 126 | |
| 127 | /* Transfer entries from the sg list into the indirect page */ |
| 128 | for (i = 0; i < out; i++) { |
| 129 | desc[i].flags = VRING_DESC_F_NEXT; |
| 130 | desc[i].addr = sg_phys(sg); |
| 131 | desc[i].len = sg->length; |
| 132 | desc[i].next = i+1; |
| 133 | sg++; |
| 134 | } |
| 135 | for (; i < (out + in); i++) { |
| 136 | desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE; |
| 137 | desc[i].addr = sg_phys(sg); |
| 138 | desc[i].len = sg->length; |
| 139 | desc[i].next = i+1; |
| 140 | sg++; |
| 141 | } |
| 142 | |
| 143 | /* Last one doesn't continue. */ |
| 144 | desc[i-1].flags &= ~VRING_DESC_F_NEXT; |
| 145 | desc[i-1].next = 0; |
| 146 | |
| 147 | /* We're about to use a buffer */ |
| 148 | vq->num_free--; |
| 149 | |
| 150 | /* Use a single buffer which doesn't continue */ |
| 151 | head = vq->free_head; |
| 152 | vq->vring.desc[head].flags = VRING_DESC_F_INDIRECT; |
| 153 | vq->vring.desc[head].addr = virt_to_phys(desc); |
| 154 | vq->vring.desc[head].len = i * sizeof(struct vring_desc); |
| 155 | |
| 156 | /* Update free pointer */ |
| 157 | vq->free_head = vq->vring.desc[head].next; |
| 158 | |
| 159 | return head; |
| 160 | } |
| 161 | |
Michael S. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 162 | int virtqueue_add_buf_gfp(struct virtqueue *_vq, |
| 163 | struct scatterlist sg[], |
| 164 | unsigned int out, |
| 165 | unsigned int in, |
| 166 | void *data, |
| 167 | gfp_t gfp) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 168 | { |
| 169 | struct vring_virtqueue *vq = to_vvq(_vq); |
Michael S. Tsirkin | 1fe9b6f | 2010-07-26 16:55:30 +0930 | [diff] [blame] | 170 | unsigned int i, avail, uninitialized_var(prev); |
| 171 | int head; |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 172 | |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 173 | START_USE(vq); |
| 174 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 175 | BUG_ON(data == NULL); |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 176 | |
| 177 | /* If the host supports indirect descriptor tables, and we have multiple |
| 178 | * buffers, then go indirect. FIXME: tune this threshold */ |
| 179 | if (vq->indirect && (out + in) > 1 && vq->num_free) { |
Michael S. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 180 | head = vring_add_indirect(vq, sg, out, in, gfp); |
Michael S. Tsirkin | 1fe9b6f | 2010-07-26 16:55:30 +0930 | [diff] [blame] | 181 | if (likely(head >= 0)) |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 182 | goto add_head; |
| 183 | } |
| 184 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 185 | BUG_ON(out + in > vq->vring.num); |
| 186 | BUG_ON(out + in == 0); |
| 187 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 188 | if (vq->num_free < out + in) { |
| 189 | pr_debug("Can't add buf len %i - avail = %i\n", |
| 190 | out + in, vq->num_free); |
Rusty Russell | 44653ea | 2008-07-25 12:06:04 -0500 | [diff] [blame] | 191 | /* FIXME: for historical reasons, we force a notify here if |
| 192 | * there are outgoing parts to the buffer. Presumably the |
| 193 | * host should service the ring ASAP. */ |
| 194 | if (out) |
| 195 | vq->notify(&vq->vq); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 196 | END_USE(vq); |
| 197 | return -ENOSPC; |
| 198 | } |
| 199 | |
| 200 | /* We're about to use some buffers from the free list. */ |
| 201 | vq->num_free -= out + in; |
| 202 | |
| 203 | head = vq->free_head; |
| 204 | for (i = vq->free_head; out; i = vq->vring.desc[i].next, out--) { |
| 205 | vq->vring.desc[i].flags = VRING_DESC_F_NEXT; |
Rusty Russell | 15f9c89 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 206 | vq->vring.desc[i].addr = sg_phys(sg); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 207 | vq->vring.desc[i].len = sg->length; |
| 208 | prev = i; |
| 209 | sg++; |
| 210 | } |
| 211 | for (; in; i = vq->vring.desc[i].next, in--) { |
| 212 | vq->vring.desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE; |
Rusty Russell | 15f9c89 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 213 | vq->vring.desc[i].addr = sg_phys(sg); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 214 | vq->vring.desc[i].len = sg->length; |
| 215 | prev = i; |
| 216 | sg++; |
| 217 | } |
| 218 | /* Last one doesn't continue. */ |
| 219 | vq->vring.desc[prev].flags &= ~VRING_DESC_F_NEXT; |
| 220 | |
| 221 | /* Update free pointer */ |
| 222 | vq->free_head = i; |
| 223 | |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 224 | add_head: |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 225 | /* Set token. */ |
| 226 | vq->data[head] = data; |
| 227 | |
| 228 | /* Put entry in available array (but don't update avail->idx until they |
| 229 | * do sync). FIXME: avoid modulus here? */ |
| 230 | avail = (vq->vring.avail->idx + vq->num_added++) % vq->vring.num; |
| 231 | vq->vring.avail->ring[avail] = head; |
| 232 | |
| 233 | pr_debug("Added buffer head %i to %p\n", head, vq); |
| 234 | END_USE(vq); |
Rusty Russell | 3c1b27d | 2009-09-23 22:26:31 -0600 | [diff] [blame] | 235 | |
Rusty Russell | 3c1b27d | 2009-09-23 22:26:31 -0600 | [diff] [blame] | 236 | return vq->num_free; |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 237 | } |
Michael S. Tsirkin | bbd603e | 2010-04-29 17:26:37 +0300 | [diff] [blame] | 238 | EXPORT_SYMBOL_GPL(virtqueue_add_buf_gfp); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 239 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 240 | void virtqueue_kick(struct virtqueue *_vq) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 241 | { |
| 242 | struct vring_virtqueue *vq = to_vvq(_vq); |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 243 | u16 new, old; |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 244 | START_USE(vq); |
| 245 | /* Descriptors and available array need to be set before we expose the |
| 246 | * new available array entries. */ |
Michael S. Tsirkin | d57ed95 | 2010-01-28 00:42:23 +0200 | [diff] [blame] | 247 | virtio_wmb(); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 248 | |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 249 | old = vq->vring.avail->idx; |
| 250 | new = vq->vring.avail->idx = old + vq->num_added; |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 251 | vq->num_added = 0; |
| 252 | |
| 253 | /* Need to update avail index before checking if we should notify */ |
Michael S. Tsirkin | d57ed95 | 2010-01-28 00:42:23 +0200 | [diff] [blame] | 254 | virtio_mb(); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 255 | |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 256 | if (vq->event ? |
| 257 | vring_need_event(vring_avail_event(&vq->vring), new, old) : |
| 258 | !(vq->vring.used->flags & VRING_USED_F_NO_NOTIFY)) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 259 | /* Prod other side to tell it about changes. */ |
| 260 | vq->notify(&vq->vq); |
| 261 | |
| 262 | END_USE(vq); |
| 263 | } |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 264 | EXPORT_SYMBOL_GPL(virtqueue_kick); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 265 | |
| 266 | static void detach_buf(struct vring_virtqueue *vq, unsigned int head) |
| 267 | { |
| 268 | unsigned int i; |
| 269 | |
| 270 | /* Clear data ptr. */ |
| 271 | vq->data[head] = NULL; |
| 272 | |
| 273 | /* Put back on free list: find end */ |
| 274 | i = head; |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 275 | |
| 276 | /* Free the indirect table */ |
| 277 | if (vq->vring.desc[i].flags & VRING_DESC_F_INDIRECT) |
| 278 | kfree(phys_to_virt(vq->vring.desc[i].addr)); |
| 279 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 280 | while (vq->vring.desc[i].flags & VRING_DESC_F_NEXT) { |
| 281 | i = vq->vring.desc[i].next; |
| 282 | vq->num_free++; |
| 283 | } |
| 284 | |
| 285 | vq->vring.desc[i].next = vq->free_head; |
| 286 | vq->free_head = head; |
| 287 | /* Plus final descriptor */ |
| 288 | vq->num_free++; |
| 289 | } |
| 290 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 291 | static inline bool more_used(const struct vring_virtqueue *vq) |
| 292 | { |
| 293 | return vq->last_used_idx != vq->vring.used->idx; |
| 294 | } |
| 295 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 296 | void *virtqueue_get_buf(struct virtqueue *_vq, unsigned int *len) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 297 | { |
| 298 | struct vring_virtqueue *vq = to_vvq(_vq); |
| 299 | void *ret; |
| 300 | unsigned int i; |
| 301 | |
| 302 | START_USE(vq); |
| 303 | |
Rusty Russell | 5ef8275 | 2008-05-02 21:50:43 -0500 | [diff] [blame] | 304 | if (unlikely(vq->broken)) { |
| 305 | END_USE(vq); |
| 306 | return NULL; |
| 307 | } |
| 308 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 309 | if (!more_used(vq)) { |
| 310 | pr_debug("No more buffers in queue\n"); |
| 311 | END_USE(vq); |
| 312 | return NULL; |
| 313 | } |
| 314 | |
Michael S. Tsirkin | 2d61ba9 | 2009-10-25 15:28:53 +0200 | [diff] [blame] | 315 | /* Only get used array entries after they have been exposed by host. */ |
Michael S. Tsirkin | d57ed95 | 2010-01-28 00:42:23 +0200 | [diff] [blame] | 316 | virtio_rmb(); |
Michael S. Tsirkin | 2d61ba9 | 2009-10-25 15:28:53 +0200 | [diff] [blame] | 317 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 318 | i = vq->vring.used->ring[vq->last_used_idx%vq->vring.num].id; |
| 319 | *len = vq->vring.used->ring[vq->last_used_idx%vq->vring.num].len; |
| 320 | |
| 321 | if (unlikely(i >= vq->vring.num)) { |
| 322 | BAD_RING(vq, "id %u out of range\n", i); |
| 323 | return NULL; |
| 324 | } |
| 325 | if (unlikely(!vq->data[i])) { |
| 326 | BAD_RING(vq, "id %u is not a head!\n", i); |
| 327 | return NULL; |
| 328 | } |
| 329 | |
| 330 | /* detach_buf clears data, so grab it now. */ |
| 331 | ret = vq->data[i]; |
| 332 | detach_buf(vq, i); |
| 333 | vq->last_used_idx++; |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 334 | /* If we expect an interrupt for the next entry, tell host |
| 335 | * by writing event index and flush out the write before |
| 336 | * the read in the next get_buf call. */ |
| 337 | if (!(vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)) { |
| 338 | vring_used_event(&vq->vring) = vq->last_used_idx; |
| 339 | virtio_mb(); |
| 340 | } |
| 341 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 342 | END_USE(vq); |
| 343 | return ret; |
| 344 | } |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 345 | EXPORT_SYMBOL_GPL(virtqueue_get_buf); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 346 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 347 | void virtqueue_disable_cb(struct virtqueue *_vq) |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 348 | { |
| 349 | struct vring_virtqueue *vq = to_vvq(_vq); |
| 350 | |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 351 | vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT; |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 352 | } |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 353 | EXPORT_SYMBOL_GPL(virtqueue_disable_cb); |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 354 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 355 | bool virtqueue_enable_cb(struct virtqueue *_vq) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 356 | { |
| 357 | struct vring_virtqueue *vq = to_vvq(_vq); |
| 358 | |
| 359 | START_USE(vq); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 360 | |
| 361 | /* We optimistically turn back on interrupts, then check if there was |
| 362 | * more to do. */ |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 363 | /* Depending on the VIRTIO_RING_F_EVENT_IDX feature, we need to |
| 364 | * either clear the flags bit or point the event index at the next |
| 365 | * entry. Always do both to keep code simple. */ |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 366 | vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT; |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 367 | vring_used_event(&vq->vring) = vq->last_used_idx; |
Michael S. Tsirkin | d57ed95 | 2010-01-28 00:42:23 +0200 | [diff] [blame] | 368 | virtio_mb(); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 369 | if (unlikely(more_used(vq))) { |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 370 | END_USE(vq); |
| 371 | return false; |
| 372 | } |
| 373 | |
| 374 | END_USE(vq); |
| 375 | return true; |
| 376 | } |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 377 | EXPORT_SYMBOL_GPL(virtqueue_enable_cb); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 378 | |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 379 | void *virtqueue_detach_unused_buf(struct virtqueue *_vq) |
Shirley Ma | c021eac | 2010-01-18 19:15:23 +0530 | [diff] [blame] | 380 | { |
| 381 | struct vring_virtqueue *vq = to_vvq(_vq); |
| 382 | unsigned int i; |
| 383 | void *buf; |
| 384 | |
| 385 | START_USE(vq); |
| 386 | |
| 387 | for (i = 0; i < vq->vring.num; i++) { |
| 388 | if (!vq->data[i]) |
| 389 | continue; |
| 390 | /* detach_buf clears data, so grab it now. */ |
| 391 | buf = vq->data[i]; |
| 392 | detach_buf(vq, i); |
Amit Shah | b3258ff | 2011-03-16 19:12:10 +0530 | [diff] [blame] | 393 | vq->vring.avail->idx--; |
Shirley Ma | c021eac | 2010-01-18 19:15:23 +0530 | [diff] [blame] | 394 | END_USE(vq); |
| 395 | return buf; |
| 396 | } |
| 397 | /* That should have freed everything. */ |
| 398 | BUG_ON(vq->num_free != vq->vring.num); |
| 399 | |
| 400 | END_USE(vq); |
| 401 | return NULL; |
| 402 | } |
Michael S. Tsirkin | 7c5e9ed | 2010-04-12 16:19:07 +0300 | [diff] [blame] | 403 | EXPORT_SYMBOL_GPL(virtqueue_detach_unused_buf); |
Shirley Ma | c021eac | 2010-01-18 19:15:23 +0530 | [diff] [blame] | 404 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 405 | irqreturn_t vring_interrupt(int irq, void *_vq) |
| 406 | { |
| 407 | struct vring_virtqueue *vq = to_vvq(_vq); |
| 408 | |
| 409 | if (!more_used(vq)) { |
| 410 | pr_debug("virtqueue interrupt with no work for %p\n", vq); |
| 411 | return IRQ_NONE; |
| 412 | } |
| 413 | |
| 414 | if (unlikely(vq->broken)) |
| 415 | return IRQ_HANDLED; |
| 416 | |
| 417 | pr_debug("virtqueue callback for %p (%p)\n", vq, vq->vq.callback); |
Rusty Russell | 18445c4 | 2008-02-04 23:49:57 -0500 | [diff] [blame] | 418 | if (vq->vq.callback) |
| 419 | vq->vq.callback(&vq->vq); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 420 | |
| 421 | return IRQ_HANDLED; |
| 422 | } |
Rusty Russell | c6fd470 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 423 | EXPORT_SYMBOL_GPL(vring_interrupt); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 424 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 425 | struct virtqueue *vring_new_virtqueue(unsigned int num, |
Rusty Russell | 87c7d57 | 2008-12-30 09:26:03 -0600 | [diff] [blame] | 426 | unsigned int vring_align, |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 427 | struct virtio_device *vdev, |
| 428 | void *pages, |
| 429 | void (*notify)(struct virtqueue *), |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 430 | void (*callback)(struct virtqueue *), |
| 431 | const char *name) |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 432 | { |
| 433 | struct vring_virtqueue *vq; |
| 434 | unsigned int i; |
| 435 | |
Rusty Russell | 42b36cc | 2007-11-12 13:39:18 +1100 | [diff] [blame] | 436 | /* We assume num is a power of 2. */ |
| 437 | if (num & (num - 1)) { |
| 438 | dev_warn(&vdev->dev, "Bad virtqueue length %u\n", num); |
| 439 | return NULL; |
| 440 | } |
| 441 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 442 | vq = kmalloc(sizeof(*vq) + sizeof(void *)*num, GFP_KERNEL); |
| 443 | if (!vq) |
| 444 | return NULL; |
| 445 | |
Rusty Russell | 87c7d57 | 2008-12-30 09:26:03 -0600 | [diff] [blame] | 446 | vring_init(&vq->vring, num, pages, vring_align); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 447 | vq->vq.callback = callback; |
| 448 | vq->vq.vdev = vdev; |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 449 | vq->vq.name = name; |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 450 | vq->notify = notify; |
| 451 | vq->broken = false; |
| 452 | vq->last_used_idx = 0; |
| 453 | vq->num_added = 0; |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 454 | list_add_tail(&vq->vq.list, &vdev->vqs); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 455 | #ifdef DEBUG |
| 456 | vq->in_use = false; |
| 457 | #endif |
| 458 | |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 459 | vq->indirect = virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC); |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 460 | vq->event = virtio_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX); |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 461 | |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 462 | /* No callback? Tell other side not to bother us. */ |
| 463 | if (!callback) |
| 464 | vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT; |
| 465 | |
| 466 | /* Put everything in free lists. */ |
| 467 | vq->num_free = num; |
| 468 | vq->free_head = 0; |
Amit Shah | 3b87062 | 2010-02-12 10:32:14 +0530 | [diff] [blame] | 469 | for (i = 0; i < num-1; i++) { |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 470 | vq->vring.desc[i].next = i+1; |
Amit Shah | 3b87062 | 2010-02-12 10:32:14 +0530 | [diff] [blame] | 471 | vq->data[i] = NULL; |
| 472 | } |
| 473 | vq->data[i] = NULL; |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 474 | |
| 475 | return &vq->vq; |
| 476 | } |
Rusty Russell | c6fd470 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 477 | EXPORT_SYMBOL_GPL(vring_new_virtqueue); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 478 | |
| 479 | void vring_del_virtqueue(struct virtqueue *vq) |
| 480 | { |
Rusty Russell | 9499f5e | 2009-06-12 22:16:35 -0600 | [diff] [blame] | 481 | list_del(&vq->list); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 482 | kfree(to_vvq(vq)); |
| 483 | } |
Rusty Russell | c6fd470 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 484 | EXPORT_SYMBOL_GPL(vring_del_virtqueue); |
Rusty Russell | 0a8a69d | 2007-10-22 11:03:40 +1000 | [diff] [blame] | 485 | |
Rusty Russell | e34f872 | 2008-07-25 12:06:13 -0500 | [diff] [blame] | 486 | /* Manipulates transport-specific feature bits. */ |
| 487 | void vring_transport_features(struct virtio_device *vdev) |
| 488 | { |
| 489 | unsigned int i; |
| 490 | |
| 491 | for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++) { |
| 492 | switch (i) { |
Mark McLoughlin | 9fa29b9d | 2009-05-11 18:11:45 +0100 | [diff] [blame] | 493 | case VIRTIO_RING_F_INDIRECT_DESC: |
| 494 | break; |
Michael S. Tsirkin | a5c262c | 2011-05-20 02:10:44 +0300 | [diff] [blame^] | 495 | case VIRTIO_RING_F_EVENT_IDX: |
| 496 | break; |
Rusty Russell | e34f872 | 2008-07-25 12:06:13 -0500 | [diff] [blame] | 497 | default: |
| 498 | /* We don't understand this bit. */ |
| 499 | clear_bit(i, vdev->features); |
| 500 | } |
| 501 | } |
| 502 | } |
| 503 | EXPORT_SYMBOL_GPL(vring_transport_features); |
| 504 | |
Rusty Russell | c6fd470 | 2008-02-04 23:50:05 -0500 | [diff] [blame] | 505 | MODULE_LICENSE("GPL"); |