ipvs: zero usvc and udest
[linux-2.6/mini2440.git] / drivers / virtio / virtio_ring.c
blob0ffff9ed4eb08c5d42e319b74d7f9d339b3568b2
1 /* Virtio ring implementation.
3 * Copyright 2007 Rusty Russell IBM Corporation
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.
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.
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
19 #include <linux/virtio.h>
20 #include <linux/virtio_ring.h>
21 #include <linux/virtio_config.h>
22 #include <linux/device.h>
24 #ifdef DEBUG
25 /* For development, we want to crash whenever the ring is screwed. */
26 #define BAD_RING(_vq, fmt, args...) \
27 do { \
28 dev_err(&(_vq)->vq.vdev->dev, \
29 "%s:"fmt, (_vq)->vq.name, ##args); \
30 BUG(); \
31 } while (0)
32 /* Caller is supposed to guarantee no reentry. */
33 #define START_USE(_vq) \
34 do { \
35 if ((_vq)->in_use) \
36 panic("%s:in_use = %i\n", \
37 (_vq)->vq.name, (_vq)->in_use); \
38 (_vq)->in_use = __LINE__; \
39 mb(); \
40 } while (0)
41 #define END_USE(_vq) \
42 do { BUG_ON(!(_vq)->in_use); (_vq)->in_use = 0; mb(); } while(0)
43 #else
44 #define BAD_RING(_vq, fmt, args...) \
45 do { \
46 dev_err(&_vq->vq.vdev->dev, \
47 "%s:"fmt, (_vq)->vq.name, ##args); \
48 (_vq)->broken = true; \
49 } while (0)
50 #define START_USE(vq)
51 #define END_USE(vq)
52 #endif
54 struct vring_virtqueue
56 struct virtqueue vq;
58 /* Actual memory layout for this queue */
59 struct vring vring;
61 /* Other side has made a mess, don't try any more. */
62 bool broken;
64 /* Host supports indirect buffers */
65 bool indirect;
67 /* Number of free buffers */
68 unsigned int num_free;
69 /* Head of free buffer list. */
70 unsigned int free_head;
71 /* Number we've added since last sync. */
72 unsigned int num_added;
74 /* Last used index we've seen. */
75 u16 last_used_idx;
77 /* How to notify other side. FIXME: commonalize hcalls! */
78 void (*notify)(struct virtqueue *vq);
80 #ifdef DEBUG
81 /* They're supposed to lock for us. */
82 unsigned int in_use;
83 #endif
85 /* Tokens for callbacks. */
86 void *data[];
89 #define to_vvq(_vq) container_of(_vq, struct vring_virtqueue, vq)
91 /* Set up an indirect table of descriptors and add it to the queue. */
92 static int vring_add_indirect(struct vring_virtqueue *vq,
93 struct scatterlist sg[],
94 unsigned int out,
95 unsigned int in)
97 struct vring_desc *desc;
98 unsigned head;
99 int i;
101 desc = kmalloc((out + in) * sizeof(struct vring_desc), GFP_ATOMIC);
102 if (!desc)
103 return vq->vring.num;
105 /* Transfer entries from the sg list into the indirect page */
106 for (i = 0; i < out; i++) {
107 desc[i].flags = VRING_DESC_F_NEXT;
108 desc[i].addr = sg_phys(sg);
109 desc[i].len = sg->length;
110 desc[i].next = i+1;
111 sg++;
113 for (; i < (out + in); i++) {
114 desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE;
115 desc[i].addr = sg_phys(sg);
116 desc[i].len = sg->length;
117 desc[i].next = i+1;
118 sg++;
121 /* Last one doesn't continue. */
122 desc[i-1].flags &= ~VRING_DESC_F_NEXT;
123 desc[i-1].next = 0;
125 /* We're about to use a buffer */
126 vq->num_free--;
128 /* Use a single buffer which doesn't continue */
129 head = vq->free_head;
130 vq->vring.desc[head].flags = VRING_DESC_F_INDIRECT;
131 vq->vring.desc[head].addr = virt_to_phys(desc);
132 vq->vring.desc[head].len = i * sizeof(struct vring_desc);
134 /* Update free pointer */
135 vq->free_head = vq->vring.desc[head].next;
137 return head;
140 static int vring_add_buf(struct virtqueue *_vq,
141 struct scatterlist sg[],
142 unsigned int out,
143 unsigned int in,
144 void *data)
146 struct vring_virtqueue *vq = to_vvq(_vq);
147 unsigned int i, avail, head, uninitialized_var(prev);
149 START_USE(vq);
151 BUG_ON(data == NULL);
153 /* If the host supports indirect descriptor tables, and we have multiple
154 * buffers, then go indirect. FIXME: tune this threshold */
155 if (vq->indirect && (out + in) > 1 && vq->num_free) {
156 head = vring_add_indirect(vq, sg, out, in);
157 if (head != vq->vring.num)
158 goto add_head;
161 BUG_ON(out + in > vq->vring.num);
162 BUG_ON(out + in == 0);
164 if (vq->num_free < out + in) {
165 pr_debug("Can't add buf len %i - avail = %i\n",
166 out + in, vq->num_free);
167 /* FIXME: for historical reasons, we force a notify here if
168 * there are outgoing parts to the buffer. Presumably the
169 * host should service the ring ASAP. */
170 if (out)
171 vq->notify(&vq->vq);
172 END_USE(vq);
173 return -ENOSPC;
176 /* We're about to use some buffers from the free list. */
177 vq->num_free -= out + in;
179 head = vq->free_head;
180 for (i = vq->free_head; out; i = vq->vring.desc[i].next, out--) {
181 vq->vring.desc[i].flags = VRING_DESC_F_NEXT;
182 vq->vring.desc[i].addr = sg_phys(sg);
183 vq->vring.desc[i].len = sg->length;
184 prev = i;
185 sg++;
187 for (; in; i = vq->vring.desc[i].next, in--) {
188 vq->vring.desc[i].flags = VRING_DESC_F_NEXT|VRING_DESC_F_WRITE;
189 vq->vring.desc[i].addr = sg_phys(sg);
190 vq->vring.desc[i].len = sg->length;
191 prev = i;
192 sg++;
194 /* Last one doesn't continue. */
195 vq->vring.desc[prev].flags &= ~VRING_DESC_F_NEXT;
197 /* Update free pointer */
198 vq->free_head = i;
200 add_head:
201 /* Set token. */
202 vq->data[head] = data;
204 /* Put entry in available array (but don't update avail->idx until they
205 * do sync). FIXME: avoid modulus here? */
206 avail = (vq->vring.avail->idx + vq->num_added++) % vq->vring.num;
207 vq->vring.avail->ring[avail] = head;
209 pr_debug("Added buffer head %i to %p\n", head, vq);
210 END_USE(vq);
211 return 0;
214 static void vring_kick(struct virtqueue *_vq)
216 struct vring_virtqueue *vq = to_vvq(_vq);
217 START_USE(vq);
218 /* Descriptors and available array need to be set before we expose the
219 * new available array entries. */
220 wmb();
222 vq->vring.avail->idx += vq->num_added;
223 vq->num_added = 0;
225 /* Need to update avail index before checking if we should notify */
226 mb();
228 if (!(vq->vring.used->flags & VRING_USED_F_NO_NOTIFY))
229 /* Prod other side to tell it about changes. */
230 vq->notify(&vq->vq);
232 END_USE(vq);
235 static void detach_buf(struct vring_virtqueue *vq, unsigned int head)
237 unsigned int i;
239 /* Clear data ptr. */
240 vq->data[head] = NULL;
242 /* Put back on free list: find end */
243 i = head;
245 /* Free the indirect table */
246 if (vq->vring.desc[i].flags & VRING_DESC_F_INDIRECT)
247 kfree(phys_to_virt(vq->vring.desc[i].addr));
249 while (vq->vring.desc[i].flags & VRING_DESC_F_NEXT) {
250 i = vq->vring.desc[i].next;
251 vq->num_free++;
254 vq->vring.desc[i].next = vq->free_head;
255 vq->free_head = head;
256 /* Plus final descriptor */
257 vq->num_free++;
260 static inline bool more_used(const struct vring_virtqueue *vq)
262 return vq->last_used_idx != vq->vring.used->idx;
265 static void *vring_get_buf(struct virtqueue *_vq, unsigned int *len)
267 struct vring_virtqueue *vq = to_vvq(_vq);
268 void *ret;
269 unsigned int i;
271 START_USE(vq);
273 if (unlikely(vq->broken)) {
274 END_USE(vq);
275 return NULL;
278 if (!more_used(vq)) {
279 pr_debug("No more buffers in queue\n");
280 END_USE(vq);
281 return NULL;
284 /* Only get used array entries after they have been exposed by host. */
285 rmb();
287 i = vq->vring.used->ring[vq->last_used_idx%vq->vring.num].id;
288 *len = vq->vring.used->ring[vq->last_used_idx%vq->vring.num].len;
290 if (unlikely(i >= vq->vring.num)) {
291 BAD_RING(vq, "id %u out of range\n", i);
292 return NULL;
294 if (unlikely(!vq->data[i])) {
295 BAD_RING(vq, "id %u is not a head!\n", i);
296 return NULL;
299 /* detach_buf clears data, so grab it now. */
300 ret = vq->data[i];
301 detach_buf(vq, i);
302 vq->last_used_idx++;
303 END_USE(vq);
304 return ret;
307 static void vring_disable_cb(struct virtqueue *_vq)
309 struct vring_virtqueue *vq = to_vvq(_vq);
311 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
314 static bool vring_enable_cb(struct virtqueue *_vq)
316 struct vring_virtqueue *vq = to_vvq(_vq);
318 START_USE(vq);
320 /* We optimistically turn back on interrupts, then check if there was
321 * more to do. */
322 vq->vring.avail->flags &= ~VRING_AVAIL_F_NO_INTERRUPT;
323 mb();
324 if (unlikely(more_used(vq))) {
325 END_USE(vq);
326 return false;
329 END_USE(vq);
330 return true;
333 irqreturn_t vring_interrupt(int irq, void *_vq)
335 struct vring_virtqueue *vq = to_vvq(_vq);
337 if (!more_used(vq)) {
338 pr_debug("virtqueue interrupt with no work for %p\n", vq);
339 return IRQ_NONE;
342 if (unlikely(vq->broken))
343 return IRQ_HANDLED;
345 pr_debug("virtqueue callback for %p (%p)\n", vq, vq->vq.callback);
346 if (vq->vq.callback)
347 vq->vq.callback(&vq->vq);
349 return IRQ_HANDLED;
351 EXPORT_SYMBOL_GPL(vring_interrupt);
353 static struct virtqueue_ops vring_vq_ops = {
354 .add_buf = vring_add_buf,
355 .get_buf = vring_get_buf,
356 .kick = vring_kick,
357 .disable_cb = vring_disable_cb,
358 .enable_cb = vring_enable_cb,
361 struct virtqueue *vring_new_virtqueue(unsigned int num,
362 unsigned int vring_align,
363 struct virtio_device *vdev,
364 void *pages,
365 void (*notify)(struct virtqueue *),
366 void (*callback)(struct virtqueue *),
367 const char *name)
369 struct vring_virtqueue *vq;
370 unsigned int i;
372 /* We assume num is a power of 2. */
373 if (num & (num - 1)) {
374 dev_warn(&vdev->dev, "Bad virtqueue length %u\n", num);
375 return NULL;
378 vq = kmalloc(sizeof(*vq) + sizeof(void *)*num, GFP_KERNEL);
379 if (!vq)
380 return NULL;
382 vring_init(&vq->vring, num, pages, vring_align);
383 vq->vq.callback = callback;
384 vq->vq.vdev = vdev;
385 vq->vq.vq_ops = &vring_vq_ops;
386 vq->vq.name = name;
387 vq->notify = notify;
388 vq->broken = false;
389 vq->last_used_idx = 0;
390 vq->num_added = 0;
391 list_add_tail(&vq->vq.list, &vdev->vqs);
392 #ifdef DEBUG
393 vq->in_use = false;
394 #endif
396 vq->indirect = virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC);
398 /* No callback? Tell other side not to bother us. */
399 if (!callback)
400 vq->vring.avail->flags |= VRING_AVAIL_F_NO_INTERRUPT;
402 /* Put everything in free lists. */
403 vq->num_free = num;
404 vq->free_head = 0;
405 for (i = 0; i < num-1; i++)
406 vq->vring.desc[i].next = i+1;
408 return &vq->vq;
410 EXPORT_SYMBOL_GPL(vring_new_virtqueue);
412 void vring_del_virtqueue(struct virtqueue *vq)
414 list_del(&vq->list);
415 kfree(to_vvq(vq));
417 EXPORT_SYMBOL_GPL(vring_del_virtqueue);
419 /* Manipulates transport-specific feature bits. */
420 void vring_transport_features(struct virtio_device *vdev)
422 unsigned int i;
424 for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++) {
425 switch (i) {
426 case VIRTIO_RING_F_INDIRECT_DESC:
427 break;
428 default:
429 /* We don't understand this bit. */
430 clear_bit(i, vdev->features);
434 EXPORT_SYMBOL_GPL(vring_transport_features);
436 MODULE_LICENSE("GPL");