blob: e639584b2dbd1c24e36017db1978009b73f8e33f [file] [log] [blame]
Rusty Russell0a8a69d2007-10-22 11:03:40 +10001/* 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 Russelle34f8722008-07-25 12:06:13 -050021#include <linux/virtio_config.h>
Rusty Russell0a8a69d2007-10-22 11:03:40 +100022#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerb5a2c4f2011-07-03 16:20:30 -040024#include <linux/module.h>
Rusty Russelle93300b2012-01-12 15:44:43 +103025#include <linux/hrtimer.h>
Rusty Russell0a8a69d2007-10-22 11:03:40 +100026
Michael S. Tsirkind57ed952010-01-28 00:42:23 +020027/* virtio guest is communicating with a virtual "device" that actually runs on
28 * a host processor. Memory barriers are used to control SMP effects. */
29#ifdef CONFIG_SMP
30/* Where possible, use SMP barriers which are more lightweight than mandatory
31 * barriers, because mandatory barriers control MMIO effects on accesses
Rusty Russell7b21e342012-01-12 15:44:42 +103032 * through relaxed memory I/O windows (which virtio-pci does not use). */
33#define virtio_mb(vq) \
34 do { if ((vq)->weak_barriers) smp_mb(); else mb(); } while(0)
35#define virtio_rmb(vq) \
36 do { if ((vq)->weak_barriers) smp_rmb(); else rmb(); } while(0)
37#define virtio_wmb(vq) \
Jason Wang4dbc5d92012-01-20 16:16:59 +080038 do { if ((vq)->weak_barriers) smp_wmb(); else wmb(); } while(0)
Michael S. Tsirkind57ed952010-01-28 00:42:23 +020039#else
40/* We must force memory ordering even if guest is UP since host could be
41 * running on another CPU, but SMP barriers are defined to barrier() in that
42 * configuration. So fall back to mandatory barriers instead. */
Rusty Russell7b21e342012-01-12 15:44:42 +103043#define virtio_mb(vq) mb()
44#define virtio_rmb(vq) rmb()
45#define virtio_wmb(vq) wmb()
Michael S. Tsirkind57ed952010-01-28 00:42:23 +020046#endif
47
Rusty Russell0a8a69d2007-10-22 11:03:40 +100048#ifdef DEBUG
49/* For development, we want to crash whenever the ring is screwed. */
Rusty Russell9499f5e2009-06-12 22:16:35 -060050#define BAD_RING(_vq, fmt, args...) \
51 do { \
52 dev_err(&(_vq)->vq.vdev->dev, \
53 "%s:"fmt, (_vq)->vq.name, ##args); \
54 BUG(); \
55 } while (0)
Rusty Russellc5f841f2009-03-30 21:55:22 -060056/* Caller is supposed to guarantee no reentry. */
57#define START_USE(_vq) \
58 do { \
59 if ((_vq)->in_use) \
Rusty Russell9499f5e2009-06-12 22:16:35 -060060 panic("%s:in_use = %i\n", \
61 (_vq)->vq.name, (_vq)->in_use); \
Rusty Russellc5f841f2009-03-30 21:55:22 -060062 (_vq)->in_use = __LINE__; \
Rusty Russell9499f5e2009-06-12 22:16:35 -060063 } while (0)
Roel Kluin3a35ce72009-01-22 16:42:57 +010064#define END_USE(_vq) \
Rusty Russell97a545a2010-02-24 14:22:22 -060065 do { BUG_ON(!(_vq)->in_use); (_vq)->in_use = 0; } while(0)
Rusty Russell0a8a69d2007-10-22 11:03:40 +100066#else
Rusty Russell9499f5e2009-06-12 22:16:35 -060067#define BAD_RING(_vq, fmt, args...) \
68 do { \
69 dev_err(&_vq->vq.vdev->dev, \
70 "%s:"fmt, (_vq)->vq.name, ##args); \
71 (_vq)->broken = true; \
72 } while (0)
Rusty Russell0a8a69d2007-10-22 11:03:40 +100073#define START_USE(vq)
74#define END_USE(vq)
75#endif
76
77struct vring_virtqueue
78{
79 struct virtqueue vq;
80
81 /* Actual memory layout for this queue */
82 struct vring vring;
83
Rusty Russell7b21e342012-01-12 15:44:42 +103084 /* Can we use weak barriers? */
85 bool weak_barriers;
86
Rusty Russell0a8a69d2007-10-22 11:03:40 +100087 /* Other side has made a mess, don't try any more. */
88 bool broken;
89
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +010090 /* Host supports indirect buffers */
91 bool indirect;
92
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +030093 /* Host publishes avail event idx */
94 bool event;
95
Rusty Russell0a8a69d2007-10-22 11:03:40 +100096 /* Number of free buffers */
97 unsigned int num_free;
98 /* Head of free buffer list. */
99 unsigned int free_head;
100 /* Number we've added since last sync. */
101 unsigned int num_added;
102
103 /* Last used index we've seen. */
Anthony Liguori1bc49532007-11-07 15:49:24 -0600104 u16 last_used_idx;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000105
106 /* How to notify other side. FIXME: commonalize hcalls! */
107 void (*notify)(struct virtqueue *vq);
108
Jason Wang17bb6d42012-08-28 13:54:13 +0200109 /* Index of the queue */
110 int queue_index;
111
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000112#ifdef DEBUG
113 /* They're supposed to lock for us. */
114 unsigned int in_use;
Rusty Russelle93300b2012-01-12 15:44:43 +1030115
116 /* Figure out if their kicks are too delayed. */
117 bool last_add_time_valid;
118 ktime_t last_add_time;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000119#endif
120
121 /* Tokens for callbacks. */
122 void *data[];
123};
124
125#define to_vvq(_vq) container_of(_vq, struct vring_virtqueue, vq)
126
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100127/* Set up an indirect table of descriptors and add it to the queue. */
128static int vring_add_indirect(struct vring_virtqueue *vq,
129 struct scatterlist sg[],
130 unsigned int out,
Michael S. Tsirkinbbd603e2010-04-29 17:26:37 +0300131 unsigned int in,
132 gfp_t gfp)
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100133{
134 struct vring_desc *desc;
135 unsigned head;
136 int i;
137
Michael S. Tsirkinbbd603e2010-04-29 17:26:37 +0300138 desc = kmalloc((out + in) * sizeof(struct vring_desc), gfp);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100139 if (!desc)
Michael S. Tsirkin686d3632010-06-10 18:16:11 +0300140 return -ENOMEM;
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100141
142 /* Transfer entries from the sg list into the indirect page */
143 for (i = 0; i < out; i++) {
144 desc[i].flags = VRING_DESC_F_NEXT;
145 desc[i].addr = sg_phys(sg);
146 desc[i].len = sg->length;
147 desc[i].next = i+1;
148 sg++;
149 }
150 for (; i < (out + in); i++) {
151 desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE;
152 desc[i].addr = sg_phys(sg);
153 desc[i].len = sg->length;
154 desc[i].next = i+1;
155 sg++;
156 }
157
158 /* Last one doesn't continue. */
159 desc[i-1].flags &= ~VRING_DESC_F_NEXT;
160 desc[i-1].next = 0;
161
162 /* We're about to use a buffer */
163 vq->num_free--;
164
165 /* Use a single buffer which doesn't continue */
166 head = vq->free_head;
167 vq->vring.desc[head].flags = VRING_DESC_F_INDIRECT;
168 vq->vring.desc[head].addr = virt_to_phys(desc);
169 vq->vring.desc[head].len = i * sizeof(struct vring_desc);
170
171 /* Update free pointer */
172 vq->free_head = vq->vring.desc[head].next;
173
174 return head;
175}
176
Jason Wang17bb6d42012-08-28 13:54:13 +0200177int virtqueue_get_queue_index(struct virtqueue *_vq)
178{
179 struct vring_virtqueue *vq = to_vvq(_vq);
180 return vq->queue_index;
181}
182EXPORT_SYMBOL_GPL(virtqueue_get_queue_index);
183
Rusty Russell5dfc1762012-01-12 15:44:42 +1030184/**
Rusty Russellf96fde42012-01-12 15:44:42 +1030185 * virtqueue_add_buf - expose buffer to other end
Rusty Russell5dfc1762012-01-12 15:44:42 +1030186 * @vq: the struct virtqueue we're talking about.
187 * @sg: the description of the buffer(s).
188 * @out_num: the number of sg readable by other side
189 * @in_num: the number of sg which are writable (after readable ones)
190 * @data: the token identifying the buffer.
191 * @gfp: how to do memory allocations (if necessary).
192 *
193 * Caller must ensure we don't call this with other virtqueue operations
194 * at the same time (except where noted).
195 *
196 * Returns remaining capacity of queue or a negative error
197 * (ie. ENOSPC). Note that it only really makes sense to treat all
198 * positive return values as "available": indirect buffers mean that
199 * we can put an entire sg[] array inside a single queue entry.
200 */
Rusty Russellf96fde42012-01-12 15:44:42 +1030201int virtqueue_add_buf(struct virtqueue *_vq,
202 struct scatterlist sg[],
203 unsigned int out,
204 unsigned int in,
205 void *data,
206 gfp_t gfp)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000207{
208 struct vring_virtqueue *vq = to_vvq(_vq);
Michael S. Tsirkin1fe9b6f2010-07-26 16:55:30 +0930209 unsigned int i, avail, uninitialized_var(prev);
210 int head;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000211
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100212 START_USE(vq);
213
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000214 BUG_ON(data == NULL);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100215
Rusty Russelle93300b2012-01-12 15:44:43 +1030216#ifdef DEBUG
217 {
218 ktime_t now = ktime_get();
219
220 /* No kick or get, with .1 second between? Warn. */
221 if (vq->last_add_time_valid)
222 WARN_ON(ktime_to_ms(ktime_sub(now, vq->last_add_time))
223 > 100);
224 vq->last_add_time = now;
225 vq->last_add_time_valid = true;
226 }
227#endif
228
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100229 /* If the host supports indirect descriptor tables, and we have multiple
230 * buffers, then go indirect. FIXME: tune this threshold */
231 if (vq->indirect && (out + in) > 1 && vq->num_free) {
Michael S. Tsirkinbbd603e2010-04-29 17:26:37 +0300232 head = vring_add_indirect(vq, sg, out, in, gfp);
Michael S. Tsirkin1fe9b6f2010-07-26 16:55:30 +0930233 if (likely(head >= 0))
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100234 goto add_head;
235 }
236
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000237 BUG_ON(out + in > vq->vring.num);
238 BUG_ON(out + in == 0);
239
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000240 if (vq->num_free < out + in) {
241 pr_debug("Can't add buf len %i - avail = %i\n",
242 out + in, vq->num_free);
Rusty Russell44653ea2008-07-25 12:06:04 -0500243 /* FIXME: for historical reasons, we force a notify here if
244 * there are outgoing parts to the buffer. Presumably the
245 * host should service the ring ASAP. */
246 if (out)
247 vq->notify(&vq->vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000248 END_USE(vq);
249 return -ENOSPC;
250 }
251
252 /* We're about to use some buffers from the free list. */
253 vq->num_free -= out + in;
254
255 head = vq->free_head;
256 for (i = vq->free_head; out; i = vq->vring.desc[i].next, out--) {
257 vq->vring.desc[i].flags = VRING_DESC_F_NEXT;
Rusty Russell15f9c892008-02-04 23:50:05 -0500258 vq->vring.desc[i].addr = sg_phys(sg);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000259 vq->vring.desc[i].len = sg->length;
260 prev = i;
261 sg++;
262 }
263 for (; in; i = vq->vring.desc[i].next, in--) {
264 vq->vring.desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE;
Rusty Russell15f9c892008-02-04 23:50:05 -0500265 vq->vring.desc[i].addr = sg_phys(sg);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000266 vq->vring.desc[i].len = sg->length;
267 prev = i;
268 sg++;
269 }
270 /* Last one doesn't continue. */
271 vq->vring.desc[prev].flags &= ~VRING_DESC_F_NEXT;
272
273 /* Update free pointer */
274 vq->free_head = i;
275
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100276add_head:
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000277 /* Set token. */
278 vq->data[head] = data;
279
280 /* Put entry in available array (but don't update avail->idx until they
Rusty Russell3b720b82012-01-12 15:44:43 +1030281 * do sync). */
Rusty Russellee7cd892012-01-12 15:44:43 +1030282 avail = (vq->vring.avail->idx & (vq->vring.num-1));
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000283 vq->vring.avail->ring[avail] = head;
284
Rusty Russellee7cd892012-01-12 15:44:43 +1030285 /* Descriptors and available array need to be set before we expose the
286 * new available array entries. */
287 virtio_wmb(vq);
288 vq->vring.avail->idx++;
289 vq->num_added++;
290
291 /* This is very unlikely, but theoretically possible. Kick
292 * just in case. */
293 if (unlikely(vq->num_added == (1 << 16) - 1))
294 virtqueue_kick(_vq);
295
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000296 pr_debug("Added buffer head %i to %p\n", head, vq);
297 END_USE(vq);
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600298
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600299 return vq->num_free;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000300}
Rusty Russellf96fde42012-01-12 15:44:42 +1030301EXPORT_SYMBOL_GPL(virtqueue_add_buf);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000302
Rusty Russell5dfc1762012-01-12 15:44:42 +1030303/**
Rusty Russell41f03772012-01-12 15:44:43 +1030304 * virtqueue_kick_prepare - first half of split virtqueue_kick call.
Rusty Russell5dfc1762012-01-12 15:44:42 +1030305 * @vq: the struct virtqueue
306 *
Rusty Russell41f03772012-01-12 15:44:43 +1030307 * Instead of virtqueue_kick(), you can do:
308 * if (virtqueue_kick_prepare(vq))
309 * virtqueue_notify(vq);
Rusty Russell5dfc1762012-01-12 15:44:42 +1030310 *
Rusty Russell41f03772012-01-12 15:44:43 +1030311 * This is sometimes useful because the virtqueue_kick_prepare() needs
312 * to be serialized, but the actual virtqueue_notify() call does not.
Rusty Russell5dfc1762012-01-12 15:44:42 +1030313 */
Rusty Russell41f03772012-01-12 15:44:43 +1030314bool virtqueue_kick_prepare(struct virtqueue *_vq)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000315{
316 struct vring_virtqueue *vq = to_vvq(_vq);
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300317 u16 new, old;
Rusty Russell41f03772012-01-12 15:44:43 +1030318 bool needs_kick;
319
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000320 START_USE(vq);
Jason Wanga72caae2012-01-20 16:17:08 +0800321 /* We need to expose available array entries before checking avail
322 * event. */
323 virtio_mb(vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000324
Rusty Russellee7cd892012-01-12 15:44:43 +1030325 old = vq->vring.avail->idx - vq->num_added;
326 new = vq->vring.avail->idx;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000327 vq->num_added = 0;
328
Rusty Russelle93300b2012-01-12 15:44:43 +1030329#ifdef DEBUG
330 if (vq->last_add_time_valid) {
331 WARN_ON(ktime_to_ms(ktime_sub(ktime_get(),
332 vq->last_add_time)) > 100);
333 }
334 vq->last_add_time_valid = false;
335#endif
336
Rusty Russell41f03772012-01-12 15:44:43 +1030337 if (vq->event) {
338 needs_kick = vring_need_event(vring_avail_event(&vq->vring),
339 new, old);
340 } else {
341 needs_kick = !(vq->vring.used->flags & VRING_USED_F_NO_NOTIFY);
342 }
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000343 END_USE(vq);
Rusty Russell41f03772012-01-12 15:44:43 +1030344 return needs_kick;
345}
346EXPORT_SYMBOL_GPL(virtqueue_kick_prepare);
347
348/**
349 * virtqueue_notify - second half of split virtqueue_kick call.
350 * @vq: the struct virtqueue
351 *
352 * This does not need to be serialized.
353 */
354void virtqueue_notify(struct virtqueue *_vq)
355{
356 struct vring_virtqueue *vq = to_vvq(_vq);
357
358 /* Prod other side to tell it about changes. */
359 vq->notify(_vq);
360}
361EXPORT_SYMBOL_GPL(virtqueue_notify);
362
363/**
364 * virtqueue_kick - update after add_buf
365 * @vq: the struct virtqueue
366 *
367 * After one or more virtqueue_add_buf calls, invoke this to kick
368 * the other side.
369 *
370 * Caller must ensure we don't call this with other virtqueue
371 * operations at the same time (except where noted).
372 */
373void virtqueue_kick(struct virtqueue *vq)
374{
375 if (virtqueue_kick_prepare(vq))
376 virtqueue_notify(vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000377}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300378EXPORT_SYMBOL_GPL(virtqueue_kick);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000379
380static void detach_buf(struct vring_virtqueue *vq, unsigned int head)
381{
382 unsigned int i;
383
384 /* Clear data ptr. */
385 vq->data[head] = NULL;
386
387 /* Put back on free list: find end */
388 i = head;
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100389
390 /* Free the indirect table */
391 if (vq->vring.desc[i].flags & VRING_DESC_F_INDIRECT)
392 kfree(phys_to_virt(vq->vring.desc[i].addr));
393
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000394 while (vq->vring.desc[i].flags & VRING_DESC_F_NEXT) {
395 i = vq->vring.desc[i].next;
396 vq->num_free++;
397 }
398
399 vq->vring.desc[i].next = vq->free_head;
400 vq->free_head = head;
401 /* Plus final descriptor */
402 vq->num_free++;
403}
404
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000405static inline bool more_used(const struct vring_virtqueue *vq)
406{
407 return vq->last_used_idx != vq->vring.used->idx;
408}
409
Rusty Russell5dfc1762012-01-12 15:44:42 +1030410/**
411 * virtqueue_get_buf - get the next used buffer
412 * @vq: the struct virtqueue we're talking about.
413 * @len: the length written into the buffer
414 *
415 * If the driver wrote data into the buffer, @len will be set to the
416 * amount written. This means you don't need to clear the buffer
417 * beforehand to ensure there's no data leakage in the case of short
418 * writes.
419 *
420 * Caller must ensure we don't call this with other virtqueue
421 * operations at the same time (except where noted).
422 *
423 * Returns NULL if there are no used buffers, or the "data" token
Rusty Russellf96fde42012-01-12 15:44:42 +1030424 * handed to virtqueue_add_buf().
Rusty Russell5dfc1762012-01-12 15:44:42 +1030425 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300426void *virtqueue_get_buf(struct virtqueue *_vq, unsigned int *len)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000427{
428 struct vring_virtqueue *vq = to_vvq(_vq);
429 void *ret;
430 unsigned int i;
Rusty Russell3b720b82012-01-12 15:44:43 +1030431 u16 last_used;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000432
433 START_USE(vq);
434
Rusty Russell5ef82752008-05-02 21:50:43 -0500435 if (unlikely(vq->broken)) {
436 END_USE(vq);
437 return NULL;
438 }
439
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000440 if (!more_used(vq)) {
441 pr_debug("No more buffers in queue\n");
442 END_USE(vq);
443 return NULL;
444 }
445
Michael S. Tsirkin2d61ba92009-10-25 15:28:53 +0200446 /* Only get used array entries after they have been exposed by host. */
Rusty Russell7b21e342012-01-12 15:44:42 +1030447 virtio_rmb(vq);
Michael S. Tsirkin2d61ba92009-10-25 15:28:53 +0200448
Rusty Russell3b720b82012-01-12 15:44:43 +1030449 last_used = (vq->last_used_idx & (vq->vring.num - 1));
450 i = vq->vring.used->ring[last_used].id;
451 *len = vq->vring.used->ring[last_used].len;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000452
453 if (unlikely(i >= vq->vring.num)) {
454 BAD_RING(vq, "id %u out of range\n", i);
455 return NULL;
456 }
457 if (unlikely(!vq->data[i])) {
458 BAD_RING(vq, "id %u is not a head!\n", i);
459 return NULL;
460 }
461
462 /* detach_buf clears data, so grab it now. */
463 ret = vq->data[i];
464 detach_buf(vq, i);
465 vq->last_used_idx++;
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300466 /* If we expect an interrupt for the next entry, tell host
467 * by writing event index and flush out the write before
468 * the read in the next get_buf call. */
469 if (!(vq->vring.avail->flags & VRING_AVAIL_F_NO_INTERRUPT)) {
470 vring_used_event(&vq->vring) = vq->last_used_idx;
Rusty Russell7b21e342012-01-12 15:44:42 +1030471 virtio_mb(vq);
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300472 }
473
Rusty Russelle93300b2012-01-12 15:44:43 +1030474#ifdef DEBUG
475 vq->last_add_time_valid = false;
476#endif
477
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000478 END_USE(vq);
479 return ret;
480}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300481EXPORT_SYMBOL_GPL(virtqueue_get_buf);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000482
Rusty Russell5dfc1762012-01-12 15:44:42 +1030483/**
484 * virtqueue_disable_cb - disable callbacks
485 * @vq: the struct virtqueue we're talking about.
486 *
487 * Note that this is not necessarily synchronous, hence unreliable and only
488 * useful as an optimization.
489 *
490 * Unlike other operations, this need not be serialized.
491 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300492void virtqueue_disable_cb(struct virtqueue *_vq)
Rusty Russell18445c42008-02-04 23:49:57 -0500493{
494 struct vring_virtqueue *vq = to_vvq(_vq);
495
Rusty Russell18445c42008-02-04 23:49:57 -0500496 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
Rusty Russell18445c42008-02-04 23:49:57 -0500497}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300498EXPORT_SYMBOL_GPL(virtqueue_disable_cb);
Rusty Russell18445c42008-02-04 23:49:57 -0500499
Rusty Russell5dfc1762012-01-12 15:44:42 +1030500/**
501 * virtqueue_enable_cb - restart callbacks after disable_cb.
502 * @vq: the struct virtqueue we're talking about.
503 *
504 * This re-enables callbacks; it returns "false" if there are pending
505 * buffers in the queue, to detect a possible race between the driver
506 * checking for more work, and enabling callbacks.
507 *
508 * Caller must ensure we don't call this with other virtqueue
509 * operations at the same time (except where noted).
510 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300511bool virtqueue_enable_cb(struct virtqueue *_vq)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000512{
513 struct vring_virtqueue *vq = to_vvq(_vq);
514
515 START_USE(vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000516
517 /* We optimistically turn back on interrupts, then check if there was
518 * more to do. */
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300519 /* Depending on the VIRTIO_RING_F_EVENT_IDX feature, we need to
520 * either clear the flags bit or point the event index at the next
521 * entry. Always do both to keep code simple. */
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000522 vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT;
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300523 vring_used_event(&vq->vring) = vq->last_used_idx;
Rusty Russell7b21e342012-01-12 15:44:42 +1030524 virtio_mb(vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000525 if (unlikely(more_used(vq))) {
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000526 END_USE(vq);
527 return false;
528 }
529
530 END_USE(vq);
531 return true;
532}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300533EXPORT_SYMBOL_GPL(virtqueue_enable_cb);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000534
Rusty Russell5dfc1762012-01-12 15:44:42 +1030535/**
536 * virtqueue_enable_cb_delayed - restart callbacks after disable_cb.
537 * @vq: the struct virtqueue we're talking about.
538 *
539 * This re-enables callbacks but hints to the other side to delay
540 * interrupts until most of the available buffers have been processed;
541 * it returns "false" if there are many pending buffers in the queue,
542 * to detect a possible race between the driver checking for more work,
543 * and enabling callbacks.
544 *
545 * Caller must ensure we don't call this with other virtqueue
546 * operations at the same time (except where noted).
547 */
Michael S. Tsirkin7ab358c2011-05-20 02:11:14 +0300548bool virtqueue_enable_cb_delayed(struct virtqueue *_vq)
549{
550 struct vring_virtqueue *vq = to_vvq(_vq);
551 u16 bufs;
552
553 START_USE(vq);
554
555 /* We optimistically turn back on interrupts, then check if there was
556 * more to do. */
557 /* Depending on the VIRTIO_RING_F_USED_EVENT_IDX feature, we need to
558 * either clear the flags bit or point the event index at the next
559 * entry. Always do both to keep code simple. */
560 vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT;
561 /* TODO: tune this threshold */
562 bufs = (u16)(vq->vring.avail->idx - vq->last_used_idx) * 3 / 4;
563 vring_used_event(&vq->vring) = vq->last_used_idx + bufs;
Rusty Russell7b21e342012-01-12 15:44:42 +1030564 virtio_mb(vq);
Michael S. Tsirkin7ab358c2011-05-20 02:11:14 +0300565 if (unlikely((u16)(vq->vring.used->idx - vq->last_used_idx) > bufs)) {
566 END_USE(vq);
567 return false;
568 }
569
570 END_USE(vq);
571 return true;
572}
573EXPORT_SYMBOL_GPL(virtqueue_enable_cb_delayed);
574
Rusty Russell5dfc1762012-01-12 15:44:42 +1030575/**
576 * virtqueue_detach_unused_buf - detach first unused buffer
577 * @vq: the struct virtqueue we're talking about.
578 *
Rusty Russellf96fde42012-01-12 15:44:42 +1030579 * Returns NULL or the "data" token handed to virtqueue_add_buf().
Rusty Russell5dfc1762012-01-12 15:44:42 +1030580 * This is not valid on an active queue; it is useful only for device
581 * shutdown.
582 */
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300583void *virtqueue_detach_unused_buf(struct virtqueue *_vq)
Shirley Mac021eac2010-01-18 19:15:23 +0530584{
585 struct vring_virtqueue *vq = to_vvq(_vq);
586 unsigned int i;
587 void *buf;
588
589 START_USE(vq);
590
591 for (i = 0; i < vq->vring.num; i++) {
592 if (!vq->data[i])
593 continue;
594 /* detach_buf clears data, so grab it now. */
595 buf = vq->data[i];
596 detach_buf(vq, i);
Amit Shahb3258ff2011-03-16 19:12:10 +0530597 vq->vring.avail->idx--;
Shirley Mac021eac2010-01-18 19:15:23 +0530598 END_USE(vq);
599 return buf;
600 }
601 /* That should have freed everything. */
602 BUG_ON(vq->num_free != vq->vring.num);
603
604 END_USE(vq);
605 return NULL;
606}
Michael S. Tsirkin7c5e9ed2010-04-12 16:19:07 +0300607EXPORT_SYMBOL_GPL(virtqueue_detach_unused_buf);
Shirley Mac021eac2010-01-18 19:15:23 +0530608
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000609irqreturn_t vring_interrupt(int irq, void *_vq)
610{
611 struct vring_virtqueue *vq = to_vvq(_vq);
612
613 if (!more_used(vq)) {
614 pr_debug("virtqueue interrupt with no work for %p\n", vq);
615 return IRQ_NONE;
616 }
617
618 if (unlikely(vq->broken))
619 return IRQ_HANDLED;
620
621 pr_debug("virtqueue callback for %p (%p)\n", vq, vq->vq.callback);
Rusty Russell18445c42008-02-04 23:49:57 -0500622 if (vq->vq.callback)
623 vq->vq.callback(&vq->vq);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000624
625 return IRQ_HANDLED;
626}
Rusty Russellc6fd4702008-02-04 23:50:05 -0500627EXPORT_SYMBOL_GPL(vring_interrupt);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000628
Jason Wang17bb6d42012-08-28 13:54:13 +0200629struct virtqueue *vring_new_virtqueue(unsigned int index,
630 unsigned int num,
Rusty Russell87c7d572008-12-30 09:26:03 -0600631 unsigned int vring_align,
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000632 struct virtio_device *vdev,
Rusty Russell7b21e342012-01-12 15:44:42 +1030633 bool weak_barriers,
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000634 void *pages,
635 void (*notify)(struct virtqueue *),
Rusty Russell9499f5e2009-06-12 22:16:35 -0600636 void (*callback)(struct virtqueue *),
637 const char *name)
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000638{
639 struct vring_virtqueue *vq;
640 unsigned int i;
641
Rusty Russell42b36cc2007-11-12 13:39:18 +1100642 /* We assume num is a power of 2. */
643 if (num & (num - 1)) {
644 dev_warn(&vdev->dev, "Bad virtqueue length %u\n", num);
645 return NULL;
646 }
647
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000648 vq = kmalloc(sizeof(*vq) + sizeof(void *)*num, GFP_KERNEL);
649 if (!vq)
650 return NULL;
651
Rusty Russell87c7d572008-12-30 09:26:03 -0600652 vring_init(&vq->vring, num, pages, vring_align);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000653 vq->vq.callback = callback;
654 vq->vq.vdev = vdev;
Rusty Russell9499f5e2009-06-12 22:16:35 -0600655 vq->vq.name = name;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000656 vq->notify = notify;
Rusty Russell7b21e342012-01-12 15:44:42 +1030657 vq->weak_barriers = weak_barriers;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000658 vq->broken = false;
659 vq->last_used_idx = 0;
660 vq->num_added = 0;
Jason Wang17bb6d42012-08-28 13:54:13 +0200661 vq->queue_index = index;
Rusty Russell9499f5e2009-06-12 22:16:35 -0600662 list_add_tail(&vq->vq.list, &vdev->vqs);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000663#ifdef DEBUG
664 vq->in_use = false;
Rusty Russelle93300b2012-01-12 15:44:43 +1030665 vq->last_add_time_valid = false;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000666#endif
667
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100668 vq->indirect = virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC);
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300669 vq->event = virtio_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX);
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100670
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000671 /* No callback? Tell other side not to bother us. */
672 if (!callback)
673 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
674
675 /* Put everything in free lists. */
676 vq->num_free = num;
677 vq->free_head = 0;
Amit Shah3b870622010-02-12 10:32:14 +0530678 for (i = 0; i < num-1; i++) {
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000679 vq->vring.desc[i].next = i+1;
Amit Shah3b870622010-02-12 10:32:14 +0530680 vq->data[i] = NULL;
681 }
682 vq->data[i] = NULL;
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000683
684 return &vq->vq;
685}
Rusty Russellc6fd4702008-02-04 23:50:05 -0500686EXPORT_SYMBOL_GPL(vring_new_virtqueue);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000687
688void vring_del_virtqueue(struct virtqueue *vq)
689{
Rusty Russell9499f5e2009-06-12 22:16:35 -0600690 list_del(&vq->list);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000691 kfree(to_vvq(vq));
692}
Rusty Russellc6fd4702008-02-04 23:50:05 -0500693EXPORT_SYMBOL_GPL(vring_del_virtqueue);
Rusty Russell0a8a69d2007-10-22 11:03:40 +1000694
Rusty Russelle34f8722008-07-25 12:06:13 -0500695/* Manipulates transport-specific feature bits. */
696void vring_transport_features(struct virtio_device *vdev)
697{
698 unsigned int i;
699
700 for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++) {
701 switch (i) {
Mark McLoughlin9fa29b9d2009-05-11 18:11:45 +0100702 case VIRTIO_RING_F_INDIRECT_DESC:
703 break;
Michael S. Tsirkina5c262c2011-05-20 02:10:44 +0300704 case VIRTIO_RING_F_EVENT_IDX:
705 break;
Rusty Russelle34f8722008-07-25 12:06:13 -0500706 default:
707 /* We don't understand this bit. */
708 clear_bit(i, vdev->features);
709 }
710 }
711}
712EXPORT_SYMBOL_GPL(vring_transport_features);
713
Rusty Russell5dfc1762012-01-12 15:44:42 +1030714/**
715 * virtqueue_get_vring_size - return the size of the virtqueue's vring
716 * @vq: the struct virtqueue containing the vring of interest.
717 *
718 * Returns the size of the vring. This is mainly used for boasting to
719 * userspace. Unlike other operations, this need not be serialized.
720 */
Rick Jones8f9f4662011-10-19 08:10:59 +0000721unsigned int virtqueue_get_vring_size(struct virtqueue *_vq)
722{
723
724 struct vring_virtqueue *vq = to_vvq(_vq);
725
726 return vq->vring.num;
727}
728EXPORT_SYMBOL_GPL(virtqueue_get_vring_size);
729
Rusty Russellc6fd4702008-02-04 23:50:05 -0500730MODULE_LICENSE("GPL");