virtio: Replace unsigned with unsigned int
[linux-block.git] / drivers / virtio / virtio_ring.c
CommitLineData
fd534e9b 1// SPDX-License-Identifier: GPL-2.0-or-later
0a8a69dd
RR
2/* Virtio ring implementation.
3 *
4 * Copyright 2007 Rusty Russell IBM Corporation
0a8a69dd
RR
5 */
6#include <linux/virtio.h>
7#include <linux/virtio_ring.h>
e34f8725 8#include <linux/virtio_config.h>
0a8a69dd 9#include <linux/device.h>
5a0e3ad6 10#include <linux/slab.h>
b5a2c4f1 11#include <linux/module.h>
e93300b1 12#include <linux/hrtimer.h>
780bc790 13#include <linux/dma-mapping.h>
f8ce7263 14#include <linux/spinlock.h>
78fe3987 15#include <xen/xen.h>
0a8a69dd
RR
16
17#ifdef DEBUG
18/* For development, we want to crash whenever the ring is screwed. */
9499f5e7
RR
19#define BAD_RING(_vq, fmt, args...) \
20 do { \
21 dev_err(&(_vq)->vq.vdev->dev, \
22 "%s:"fmt, (_vq)->vq.name, ##args); \
23 BUG(); \
24 } while (0)
c5f841f1
RR
25/* Caller is supposed to guarantee no reentry. */
26#define START_USE(_vq) \
27 do { \
28 if ((_vq)->in_use) \
9499f5e7
RR
29 panic("%s:in_use = %i\n", \
30 (_vq)->vq.name, (_vq)->in_use); \
c5f841f1 31 (_vq)->in_use = __LINE__; \
9499f5e7 32 } while (0)
3a35ce7d 33#define END_USE(_vq) \
97a545ab 34 do { BUG_ON(!(_vq)->in_use); (_vq)->in_use = 0; } while(0)
4d6a105e
TB
35#define LAST_ADD_TIME_UPDATE(_vq) \
36 do { \
37 ktime_t now = ktime_get(); \
38 \
39 /* No kick or get, with .1 second between? Warn. */ \
40 if ((_vq)->last_add_time_valid) \
41 WARN_ON(ktime_to_ms(ktime_sub(now, \
42 (_vq)->last_add_time)) > 100); \
43 (_vq)->last_add_time = now; \
44 (_vq)->last_add_time_valid = true; \
45 } while (0)
46#define LAST_ADD_TIME_CHECK(_vq) \
47 do { \
48 if ((_vq)->last_add_time_valid) { \
49 WARN_ON(ktime_to_ms(ktime_sub(ktime_get(), \
50 (_vq)->last_add_time)) > 100); \
51 } \
52 } while (0)
53#define LAST_ADD_TIME_INVALID(_vq) \
54 ((_vq)->last_add_time_valid = false)
0a8a69dd 55#else
9499f5e7
RR
56#define BAD_RING(_vq, fmt, args...) \
57 do { \
58 dev_err(&_vq->vq.vdev->dev, \
59 "%s:"fmt, (_vq)->vq.name, ##args); \
60 (_vq)->broken = true; \
61 } while (0)
0a8a69dd
RR
62#define START_USE(vq)
63#define END_USE(vq)
4d6a105e
TB
64#define LAST_ADD_TIME_UPDATE(vq)
65#define LAST_ADD_TIME_CHECK(vq)
66#define LAST_ADD_TIME_INVALID(vq)
0a8a69dd
RR
67#endif
68
cbeedb72 69struct vring_desc_state_split {
780bc790
AL
70 void *data; /* Data for callback. */
71 struct vring_desc *indir_desc; /* Indirect descriptor, if any. */
72};
73
1ce9e605
TB
74struct vring_desc_state_packed {
75 void *data; /* Data for callback. */
76 struct vring_packed_desc *indir_desc; /* Indirect descriptor, if any. */
77 u16 num; /* Descriptor list length. */
1ce9e605
TB
78 u16 last; /* The last desc state in a list. */
79};
80
1f28750f 81struct vring_desc_extra {
ef5c366f
JW
82 dma_addr_t addr; /* Descriptor DMA addr. */
83 u32 len; /* Descriptor length. */
1ce9e605 84 u16 flags; /* Descriptor flags. */
aeef9b47 85 u16 next; /* The next desc state in a list. */
1ce9e605
TB
86};
87
43b4f721 88struct vring_virtqueue {
0a8a69dd
RR
89 struct virtqueue vq;
90
1ce9e605
TB
91 /* Is this a packed ring? */
92 bool packed_ring;
93
fb3fba6b
TB
94 /* Is DMA API used? */
95 bool use_dma_api;
96
7b21e34f
RR
97 /* Can we use weak barriers? */
98 bool weak_barriers;
99
0a8a69dd
RR
100 /* Other side has made a mess, don't try any more. */
101 bool broken;
102
9fa29b9d
MM
103 /* Host supports indirect buffers */
104 bool indirect;
105
a5c262c5
MT
106 /* Host publishes avail event idx */
107 bool event;
108
0a8a69dd
RR
109 /* Head of free buffer list. */
110 unsigned int free_head;
111 /* Number we've added since last sync. */
112 unsigned int num_added;
113
114 /* Last used index we've seen. */
1bc4953e 115 u16 last_used_idx;
0a8a69dd 116
8d622d21
MT
117 /* Hint for event idx: already triggered no need to disable. */
118 bool event_triggered;
119
1ce9e605
TB
120 union {
121 /* Available for split ring */
122 struct {
123 /* Actual memory layout for this queue. */
124 struct vring vring;
125
126 /* Last written value to avail->flags */
127 u16 avail_flags_shadow;
f277ec42 128
1ce9e605
TB
129 /*
130 * Last written value to avail->idx in
131 * guest byte order.
132 */
133 u16 avail_idx_shadow;
134
135 /* Per-descriptor state. */
136 struct vring_desc_state_split *desc_state;
72b5e895 137 struct vring_desc_extra *desc_extra;
1ce9e605
TB
138
139 /* DMA address and size information */
140 dma_addr_t queue_dma_addr;
141 size_t queue_size_in_bytes;
142 } split;
e593bf97 143
1ce9e605
TB
144 /* Available for packed ring */
145 struct {
146 /* Actual memory layout for this queue. */
9c0644ee
MT
147 struct {
148 unsigned int num;
149 struct vring_packed_desc *desc;
150 struct vring_packed_desc_event *driver;
151 struct vring_packed_desc_event *device;
152 } vring;
cbeedb72 153
1ce9e605
TB
154 /* Driver ring wrap counter. */
155 bool avail_wrap_counter;
d79dca75 156
1ce9e605
TB
157 /* Device ring wrap counter. */
158 bool used_wrap_counter;
159
160 /* Avail used flags. */
161 u16 avail_used_flags;
162
163 /* Index of the next avail descriptor. */
164 u16 next_avail_idx;
165
166 /*
167 * Last written value to driver->flags in
168 * guest byte order.
169 */
170 u16 event_flags_shadow;
171
172 /* Per-descriptor state. */
173 struct vring_desc_state_packed *desc_state;
1f28750f 174 struct vring_desc_extra *desc_extra;
1ce9e605
TB
175
176 /* DMA address and size information */
177 dma_addr_t ring_dma_addr;
178 dma_addr_t driver_event_dma_addr;
179 dma_addr_t device_event_dma_addr;
180 size_t ring_size_in_bytes;
181 size_t event_size_in_bytes;
182 } packed;
183 };
f277ec42 184
0a8a69dd 185 /* How to notify other side. FIXME: commonalize hcalls! */
46f9c2b9 186 bool (*notify)(struct virtqueue *vq);
0a8a69dd 187
2a2d1382
AL
188 /* DMA, allocation, and size information */
189 bool we_own_ring;
2a2d1382 190
0a8a69dd
RR
191#ifdef DEBUG
192 /* They're supposed to lock for us. */
193 unsigned int in_use;
e93300b1
RR
194
195 /* Figure out if their kicks are too delayed. */
196 bool last_add_time_valid;
197 ktime_t last_add_time;
0a8a69dd 198#endif
0a8a69dd
RR
199};
200
e6f633e5
TB
201
202/*
203 * Helpers.
204 */
205
0a8a69dd
RR
206#define to_vvq(_vq) container_of(_vq, struct vring_virtqueue, vq)
207
35c51e09 208static inline bool virtqueue_use_indirect(struct vring_virtqueue *vq,
2f18c2d1
TB
209 unsigned int total_sg)
210{
2f18c2d1
TB
211 /*
212 * If the host supports indirect descriptor tables, and we have multiple
213 * buffers, then go indirect. FIXME: tune this threshold
214 */
215 return (vq->indirect && total_sg > 1 && vq->vq.num_free);
216}
217
d26c96c8 218/*
1a937693
MT
219 * Modern virtio devices have feature bits to specify whether they need a
220 * quirk and bypass the IOMMU. If not there, just use the DMA API.
221 *
222 * If there, the interaction between virtio and DMA API is messy.
d26c96c8
AL
223 *
224 * On most systems with virtio, physical addresses match bus addresses,
225 * and it doesn't particularly matter whether we use the DMA API.
226 *
227 * On some systems, including Xen and any system with a physical device
228 * that speaks virtio behind a physical IOMMU, we must use the DMA API
229 * for virtio DMA to work at all.
230 *
231 * On other systems, including SPARC and PPC64, virtio-pci devices are
232 * enumerated as though they are behind an IOMMU, but the virtio host
233 * ignores the IOMMU, so we must either pretend that the IOMMU isn't
234 * there or somehow map everything as the identity.
235 *
236 * For the time being, we preserve historic behavior and bypass the DMA
237 * API.
1a937693
MT
238 *
239 * TODO: install a per-device DMA ops structure that does the right thing
240 * taking into account all the above quirks, and use the DMA API
241 * unconditionally on data path.
d26c96c8
AL
242 */
243
244static bool vring_use_dma_api(struct virtio_device *vdev)
245{
24b6842a 246 if (!virtio_has_dma_quirk(vdev))
1a937693
MT
247 return true;
248
249 /* Otherwise, we are left to guess. */
78fe3987
AL
250 /*
251 * In theory, it's possible to have a buggy QEMU-supposed
252 * emulated Q35 IOMMU and Xen enabled at the same time. On
253 * such a configuration, virtio has never worked and will
254 * not work without an even larger kludge. Instead, enable
255 * the DMA API if we're a Xen guest, which at least allows
256 * all of the sensible Xen configurations to work correctly.
257 */
258 if (xen_domain())
259 return true;
260
d26c96c8
AL
261 return false;
262}
263
e6d6dd6c
JR
264size_t virtio_max_dma_size(struct virtio_device *vdev)
265{
266 size_t max_segment_size = SIZE_MAX;
267
268 if (vring_use_dma_api(vdev))
817fc978 269 max_segment_size = dma_max_mapping_size(vdev->dev.parent);
e6d6dd6c
JR
270
271 return max_segment_size;
272}
273EXPORT_SYMBOL_GPL(virtio_max_dma_size);
274
d79dca75
TB
275static void *vring_alloc_queue(struct virtio_device *vdev, size_t size,
276 dma_addr_t *dma_handle, gfp_t flag)
277{
278 if (vring_use_dma_api(vdev)) {
279 return dma_alloc_coherent(vdev->dev.parent, size,
280 dma_handle, flag);
281 } else {
282 void *queue = alloc_pages_exact(PAGE_ALIGN(size), flag);
283
284 if (queue) {
285 phys_addr_t phys_addr = virt_to_phys(queue);
286 *dma_handle = (dma_addr_t)phys_addr;
287
288 /*
289 * Sanity check: make sure we dind't truncate
290 * the address. The only arches I can find that
291 * have 64-bit phys_addr_t but 32-bit dma_addr_t
292 * are certain non-highmem MIPS and x86
293 * configurations, but these configurations
294 * should never allocate physical pages above 32
295 * bits, so this is fine. Just in case, throw a
296 * warning and abort if we end up with an
297 * unrepresentable address.
298 */
299 if (WARN_ON_ONCE(*dma_handle != phys_addr)) {
300 free_pages_exact(queue, PAGE_ALIGN(size));
301 return NULL;
302 }
303 }
304 return queue;
305 }
306}
307
308static void vring_free_queue(struct virtio_device *vdev, size_t size,
309 void *queue, dma_addr_t dma_handle)
310{
311 if (vring_use_dma_api(vdev))
312 dma_free_coherent(vdev->dev.parent, size, queue, dma_handle);
313 else
314 free_pages_exact(queue, PAGE_ALIGN(size));
315}
316
780bc790
AL
317/*
318 * The DMA ops on various arches are rather gnarly right now, and
319 * making all of the arch DMA ops work on the vring device itself
320 * is a mess. For now, we use the parent device for DMA ops.
321 */
75bfa81b 322static inline struct device *vring_dma_dev(const struct vring_virtqueue *vq)
780bc790
AL
323{
324 return vq->vq.vdev->dev.parent;
325}
326
327/* Map one sg entry. */
328static dma_addr_t vring_map_one_sg(const struct vring_virtqueue *vq,
329 struct scatterlist *sg,
330 enum dma_data_direction direction)
331{
fb3fba6b 332 if (!vq->use_dma_api)
780bc790
AL
333 return (dma_addr_t)sg_phys(sg);
334
335 /*
336 * We can't use dma_map_sg, because we don't use scatterlists in
337 * the way it expects (we don't guarantee that the scatterlist
338 * will exist for the lifetime of the mapping).
339 */
340 return dma_map_page(vring_dma_dev(vq),
341 sg_page(sg), sg->offset, sg->length,
342 direction);
343}
344
345static dma_addr_t vring_map_single(const struct vring_virtqueue *vq,
346 void *cpu_addr, size_t size,
347 enum dma_data_direction direction)
348{
fb3fba6b 349 if (!vq->use_dma_api)
780bc790
AL
350 return (dma_addr_t)virt_to_phys(cpu_addr);
351
352 return dma_map_single(vring_dma_dev(vq),
353 cpu_addr, size, direction);
354}
355
e6f633e5
TB
356static int vring_mapping_error(const struct vring_virtqueue *vq,
357 dma_addr_t addr)
358{
fb3fba6b 359 if (!vq->use_dma_api)
e6f633e5
TB
360 return 0;
361
362 return dma_mapping_error(vring_dma_dev(vq), addr);
363}
364
365
366/*
367 * Split ring specific functions - *_split().
368 */
369
72b5e895
JW
370static void vring_unmap_one_split_indirect(const struct vring_virtqueue *vq,
371 struct vring_desc *desc)
780bc790
AL
372{
373 u16 flags;
374
fb3fba6b 375 if (!vq->use_dma_api)
780bc790
AL
376 return;
377
378 flags = virtio16_to_cpu(vq->vq.vdev, desc->flags);
379
b4282ebc
XZ
380 dma_unmap_page(vring_dma_dev(vq),
381 virtio64_to_cpu(vq->vq.vdev, desc->addr),
382 virtio32_to_cpu(vq->vq.vdev, desc->len),
383 (flags & VRING_DESC_F_WRITE) ?
384 DMA_FROM_DEVICE : DMA_TO_DEVICE);
780bc790
AL
385}
386
72b5e895
JW
387static unsigned int vring_unmap_one_split(const struct vring_virtqueue *vq,
388 unsigned int i)
389{
390 struct vring_desc_extra *extra = vq->split.desc_extra;
391 u16 flags;
392
393 if (!vq->use_dma_api)
394 goto out;
395
396 flags = extra[i].flags;
397
398 if (flags & VRING_DESC_F_INDIRECT) {
399 dma_unmap_single(vring_dma_dev(vq),
400 extra[i].addr,
401 extra[i].len,
402 (flags & VRING_DESC_F_WRITE) ?
403 DMA_FROM_DEVICE : DMA_TO_DEVICE);
404 } else {
405 dma_unmap_page(vring_dma_dev(vq),
406 extra[i].addr,
407 extra[i].len,
408 (flags & VRING_DESC_F_WRITE) ?
409 DMA_FROM_DEVICE : DMA_TO_DEVICE);
410 }
411
412out:
413 return extra[i].next;
414}
415
138fd251
TB
416static struct vring_desc *alloc_indirect_split(struct virtqueue *_vq,
417 unsigned int total_sg,
418 gfp_t gfp)
9fa29b9d
MM
419{
420 struct vring_desc *desc;
b25bd251 421 unsigned int i;
9fa29b9d 422
b92b1b89
WD
423 /*
424 * We require lowmem mappings for the descriptors because
425 * otherwise virt_to_phys will give us bogus addresses in the
426 * virtqueue.
427 */
82107539 428 gfp &= ~__GFP_HIGHMEM;
b92b1b89 429
6da2ec56 430 desc = kmalloc_array(total_sg, sizeof(struct vring_desc), gfp);
9fa29b9d 431 if (!desc)
b25bd251 432 return NULL;
9fa29b9d 433
b25bd251 434 for (i = 0; i < total_sg; i++)
00e6f3d9 435 desc[i].next = cpu_to_virtio16(_vq->vdev, i + 1);
b25bd251 436 return desc;
9fa29b9d
MM
437}
438
fe4c3862
JW
439static inline unsigned int virtqueue_add_desc_split(struct virtqueue *vq,
440 struct vring_desc *desc,
441 unsigned int i,
442 dma_addr_t addr,
443 unsigned int len,
72b5e895
JW
444 u16 flags,
445 bool indirect)
fe4c3862 446{
72b5e895
JW
447 struct vring_virtqueue *vring = to_vvq(vq);
448 struct vring_desc_extra *extra = vring->split.desc_extra;
449 u16 next;
450
fe4c3862
JW
451 desc[i].flags = cpu_to_virtio16(vq->vdev, flags);
452 desc[i].addr = cpu_to_virtio64(vq->vdev, addr);
453 desc[i].len = cpu_to_virtio32(vq->vdev, len);
454
72b5e895
JW
455 if (!indirect) {
456 next = extra[i].next;
457 desc[i].next = cpu_to_virtio16(vq->vdev, next);
458
459 extra[i].addr = addr;
460 extra[i].len = len;
461 extra[i].flags = flags;
462 } else
463 next = virtio16_to_cpu(vq->vdev, desc[i].next);
464
465 return next;
fe4c3862
JW
466}
467
138fd251
TB
468static inline int virtqueue_add_split(struct virtqueue *_vq,
469 struct scatterlist *sgs[],
470 unsigned int total_sg,
471 unsigned int out_sgs,
472 unsigned int in_sgs,
473 void *data,
474 void *ctx,
475 gfp_t gfp)
0a8a69dd
RR
476{
477 struct vring_virtqueue *vq = to_vvq(_vq);
13816c76 478 struct scatterlist *sg;
b25bd251 479 struct vring_desc *desc;
3f649ab7 480 unsigned int i, n, avail, descs_used, prev, err_idx;
1fe9b6fe 481 int head;
b25bd251 482 bool indirect;
0a8a69dd 483
9fa29b9d
MM
484 START_USE(vq);
485
0a8a69dd 486 BUG_ON(data == NULL);
5a08b04f 487 BUG_ON(ctx && vq->indirect);
9fa29b9d 488
70670444
RR
489 if (unlikely(vq->broken)) {
490 END_USE(vq);
491 return -EIO;
492 }
493
4d6a105e 494 LAST_ADD_TIME_UPDATE(vq);
e93300b1 495
b25bd251
RR
496 BUG_ON(total_sg == 0);
497
498 head = vq->free_head;
499
35c51e09 500 if (virtqueue_use_indirect(vq, total_sg))
138fd251 501 desc = alloc_indirect_split(_vq, total_sg, gfp);
44ed8089 502 else {
b25bd251 503 desc = NULL;
e593bf97 504 WARN_ON_ONCE(total_sg > vq->split.vring.num && !vq->indirect);
44ed8089 505 }
b25bd251
RR
506
507 if (desc) {
508 /* Use a single buffer which doesn't continue */
780bc790 509 indirect = true;
b25bd251
RR
510 /* Set up rest to use this indirect table. */
511 i = 0;
512 descs_used = 1;
b25bd251 513 } else {
780bc790 514 indirect = false;
e593bf97 515 desc = vq->split.vring.desc;
b25bd251
RR
516 i = head;
517 descs_used = total_sg;
9fa29b9d
MM
518 }
519
b4b4ff73 520 if (unlikely(vq->vq.num_free < descs_used)) {
0a8a69dd 521 pr_debug("Can't add buf len %i - avail = %i\n",
b25bd251 522 descs_used, vq->vq.num_free);
44653eae
RR
523 /* FIXME: for historical reasons, we force a notify here if
524 * there are outgoing parts to the buffer. Presumably the
525 * host should service the ring ASAP. */
13816c76 526 if (out_sgs)
44653eae 527 vq->notify(&vq->vq);
58625edf
WY
528 if (indirect)
529 kfree(desc);
0a8a69dd
RR
530 END_USE(vq);
531 return -ENOSPC;
532 }
533
13816c76 534 for (n = 0; n < out_sgs; n++) {
eeebf9b1 535 for (sg = sgs[n]; sg; sg = sg_next(sg)) {
780bc790
AL
536 dma_addr_t addr = vring_map_one_sg(vq, sg, DMA_TO_DEVICE);
537 if (vring_mapping_error(vq, addr))
538 goto unmap_release;
539
13816c76 540 prev = i;
72b5e895
JW
541 /* Note that we trust indirect descriptor
542 * table since it use stream DMA mapping.
543 */
fe4c3862 544 i = virtqueue_add_desc_split(_vq, desc, i, addr, sg->length,
72b5e895
JW
545 VRING_DESC_F_NEXT,
546 indirect);
13816c76 547 }
0a8a69dd 548 }
13816c76 549 for (; n < (out_sgs + in_sgs); n++) {
eeebf9b1 550 for (sg = sgs[n]; sg; sg = sg_next(sg)) {
780bc790
AL
551 dma_addr_t addr = vring_map_one_sg(vq, sg, DMA_FROM_DEVICE);
552 if (vring_mapping_error(vq, addr))
553 goto unmap_release;
554
13816c76 555 prev = i;
72b5e895
JW
556 /* Note that we trust indirect descriptor
557 * table since it use stream DMA mapping.
558 */
fe4c3862
JW
559 i = virtqueue_add_desc_split(_vq, desc, i, addr,
560 sg->length,
561 VRING_DESC_F_NEXT |
72b5e895
JW
562 VRING_DESC_F_WRITE,
563 indirect);
13816c76 564 }
0a8a69dd
RR
565 }
566 /* Last one doesn't continue. */
00e6f3d9 567 desc[prev].flags &= cpu_to_virtio16(_vq->vdev, ~VRING_DESC_F_NEXT);
72b5e895 568 if (!indirect && vq->use_dma_api)
890d3356 569 vq->split.desc_extra[prev & (vq->split.vring.num - 1)].flags &=
72b5e895 570 ~VRING_DESC_F_NEXT;
0a8a69dd 571
780bc790
AL
572 if (indirect) {
573 /* Now that the indirect table is filled in, map it. */
574 dma_addr_t addr = vring_map_single(
575 vq, desc, total_sg * sizeof(struct vring_desc),
576 DMA_TO_DEVICE);
577 if (vring_mapping_error(vq, addr))
578 goto unmap_release;
579
fe4c3862
JW
580 virtqueue_add_desc_split(_vq, vq->split.vring.desc,
581 head, addr,
582 total_sg * sizeof(struct vring_desc),
72b5e895
JW
583 VRING_DESC_F_INDIRECT,
584 false);
780bc790
AL
585 }
586
587 /* We're using some buffers from the free list. */
588 vq->vq.num_free -= descs_used;
589
0a8a69dd 590 /* Update free pointer */
b25bd251 591 if (indirect)
72b5e895 592 vq->free_head = vq->split.desc_extra[head].next;
b25bd251
RR
593 else
594 vq->free_head = i;
0a8a69dd 595
780bc790 596 /* Store token and indirect buffer state. */
cbeedb72 597 vq->split.desc_state[head].data = data;
780bc790 598 if (indirect)
cbeedb72 599 vq->split.desc_state[head].indir_desc = desc;
87646a34 600 else
cbeedb72 601 vq->split.desc_state[head].indir_desc = ctx;
0a8a69dd
RR
602
603 /* Put entry in available array (but don't update avail->idx until they
3b720b8c 604 * do sync). */
e593bf97
TB
605 avail = vq->split.avail_idx_shadow & (vq->split.vring.num - 1);
606 vq->split.vring.avail->ring[avail] = cpu_to_virtio16(_vq->vdev, head);
0a8a69dd 607
ee7cd898
RR
608 /* Descriptors and available array need to be set before we expose the
609 * new available array entries. */
a9a0fef7 610 virtio_wmb(vq->weak_barriers);
e593bf97
TB
611 vq->split.avail_idx_shadow++;
612 vq->split.vring.avail->idx = cpu_to_virtio16(_vq->vdev,
613 vq->split.avail_idx_shadow);
ee7cd898
RR
614 vq->num_added++;
615
5e05bf58
TH
616 pr_debug("Added buffer head %i to %p\n", head, vq);
617 END_USE(vq);
618
ee7cd898
RR
619 /* This is very unlikely, but theoretically possible. Kick
620 * just in case. */
621 if (unlikely(vq->num_added == (1 << 16) - 1))
622 virtqueue_kick(_vq);
623
98e8c6bc 624 return 0;
780bc790
AL
625
626unmap_release:
627 err_idx = i;
cf8f1696
ML
628
629 if (indirect)
630 i = 0;
631 else
632 i = head;
780bc790
AL
633
634 for (n = 0; n < total_sg; n++) {
635 if (i == err_idx)
636 break;
72b5e895
JW
637 if (indirect) {
638 vring_unmap_one_split_indirect(vq, &desc[i]);
639 i = virtio16_to_cpu(_vq->vdev, desc[i].next);
640 } else
641 i = vring_unmap_one_split(vq, i);
780bc790
AL
642 }
643
780bc790
AL
644 if (indirect)
645 kfree(desc);
646
3cc36f6e 647 END_USE(vq);
f7728002 648 return -ENOMEM;
0a8a69dd 649}
13816c76 650
138fd251 651static bool virtqueue_kick_prepare_split(struct virtqueue *_vq)
0a8a69dd
RR
652{
653 struct vring_virtqueue *vq = to_vvq(_vq);
a5c262c5 654 u16 new, old;
41f0377f
RR
655 bool needs_kick;
656
0a8a69dd 657 START_USE(vq);
a72caae2
JW
658 /* We need to expose available array entries before checking avail
659 * event. */
a9a0fef7 660 virtio_mb(vq->weak_barriers);
0a8a69dd 661
e593bf97
TB
662 old = vq->split.avail_idx_shadow - vq->num_added;
663 new = vq->split.avail_idx_shadow;
0a8a69dd
RR
664 vq->num_added = 0;
665
4d6a105e
TB
666 LAST_ADD_TIME_CHECK(vq);
667 LAST_ADD_TIME_INVALID(vq);
e93300b1 668
41f0377f 669 if (vq->event) {
e593bf97
TB
670 needs_kick = vring_need_event(virtio16_to_cpu(_vq->vdev,
671 vring_avail_event(&vq->split.vring)),
41f0377f
RR
672 new, old);
673 } else {
e593bf97
TB
674 needs_kick = !(vq->split.vring.used->flags &
675 cpu_to_virtio16(_vq->vdev,
676 VRING_USED_F_NO_NOTIFY));
41f0377f 677 }
0a8a69dd 678 END_USE(vq);
41f0377f
RR
679 return needs_kick;
680}
138fd251 681
138fd251
TB
682static void detach_buf_split(struct vring_virtqueue *vq, unsigned int head,
683 void **ctx)
0a8a69dd 684{
780bc790 685 unsigned int i, j;
c60923cb 686 __virtio16 nextflag = cpu_to_virtio16(vq->vq.vdev, VRING_DESC_F_NEXT);
0a8a69dd
RR
687
688 /* Clear data ptr. */
cbeedb72 689 vq->split.desc_state[head].data = NULL;
0a8a69dd 690
780bc790 691 /* Put back on free list: unmap first-level descriptors and find end */
0a8a69dd 692 i = head;
9fa29b9d 693
e593bf97 694 while (vq->split.vring.desc[i].flags & nextflag) {
72b5e895
JW
695 vring_unmap_one_split(vq, i);
696 i = vq->split.desc_extra[i].next;
06ca287d 697 vq->vq.num_free++;
0a8a69dd
RR
698 }
699
72b5e895
JW
700 vring_unmap_one_split(vq, i);
701 vq->split.desc_extra[i].next = vq->free_head;
0a8a69dd 702 vq->free_head = head;
780bc790 703
0a8a69dd 704 /* Plus final descriptor */
06ca287d 705 vq->vq.num_free++;
780bc790 706
5a08b04f 707 if (vq->indirect) {
cbeedb72
TB
708 struct vring_desc *indir_desc =
709 vq->split.desc_state[head].indir_desc;
5a08b04f
MT
710 u32 len;
711
712 /* Free the indirect table, if any, now that it's unmapped. */
713 if (!indir_desc)
714 return;
715
72b5e895 716 len = vq->split.desc_extra[head].len;
780bc790 717
72b5e895
JW
718 BUG_ON(!(vq->split.desc_extra[head].flags &
719 VRING_DESC_F_INDIRECT));
780bc790
AL
720 BUG_ON(len == 0 || len % sizeof(struct vring_desc));
721
722 for (j = 0; j < len / sizeof(struct vring_desc); j++)
72b5e895 723 vring_unmap_one_split_indirect(vq, &indir_desc[j]);
780bc790 724
5a08b04f 725 kfree(indir_desc);
cbeedb72 726 vq->split.desc_state[head].indir_desc = NULL;
5a08b04f 727 } else if (ctx) {
cbeedb72 728 *ctx = vq->split.desc_state[head].indir_desc;
780bc790 729 }
0a8a69dd
RR
730}
731
138fd251 732static inline bool more_used_split(const struct vring_virtqueue *vq)
0a8a69dd 733{
e593bf97
TB
734 return vq->last_used_idx != virtio16_to_cpu(vq->vq.vdev,
735 vq->split.vring.used->idx);
0a8a69dd
RR
736}
737
138fd251
TB
738static void *virtqueue_get_buf_ctx_split(struct virtqueue *_vq,
739 unsigned int *len,
740 void **ctx)
0a8a69dd
RR
741{
742 struct vring_virtqueue *vq = to_vvq(_vq);
743 void *ret;
744 unsigned int i;
3b720b8c 745 u16 last_used;
0a8a69dd
RR
746
747 START_USE(vq);
748
5ef82752
RR
749 if (unlikely(vq->broken)) {
750 END_USE(vq);
751 return NULL;
752 }
753
138fd251 754 if (!more_used_split(vq)) {
0a8a69dd
RR
755 pr_debug("No more buffers in queue\n");
756 END_USE(vq);
757 return NULL;
758 }
759
2d61ba95 760 /* Only get used array entries after they have been exposed by host. */
a9a0fef7 761 virtio_rmb(vq->weak_barriers);
2d61ba95 762
e593bf97
TB
763 last_used = (vq->last_used_idx & (vq->split.vring.num - 1));
764 i = virtio32_to_cpu(_vq->vdev,
765 vq->split.vring.used->ring[last_used].id);
766 *len = virtio32_to_cpu(_vq->vdev,
767 vq->split.vring.used->ring[last_used].len);
0a8a69dd 768
e593bf97 769 if (unlikely(i >= vq->split.vring.num)) {
0a8a69dd
RR
770 BAD_RING(vq, "id %u out of range\n", i);
771 return NULL;
772 }
cbeedb72 773 if (unlikely(!vq->split.desc_state[i].data)) {
0a8a69dd
RR
774 BAD_RING(vq, "id %u is not a head!\n", i);
775 return NULL;
776 }
777
138fd251 778 /* detach_buf_split clears data, so grab it now. */
cbeedb72 779 ret = vq->split.desc_state[i].data;
138fd251 780 detach_buf_split(vq, i, ctx);
0a8a69dd 781 vq->last_used_idx++;
a5c262c5
MT
782 /* If we expect an interrupt for the next entry, tell host
783 * by writing event index and flush out the write before
784 * the read in the next get_buf call. */
e593bf97 785 if (!(vq->split.avail_flags_shadow & VRING_AVAIL_F_NO_INTERRUPT))
788e5b3a 786 virtio_store_mb(vq->weak_barriers,
e593bf97 787 &vring_used_event(&vq->split.vring),
788e5b3a 788 cpu_to_virtio16(_vq->vdev, vq->last_used_idx));
a5c262c5 789
4d6a105e 790 LAST_ADD_TIME_INVALID(vq);
e93300b1 791
0a8a69dd
RR
792 END_USE(vq);
793 return ret;
794}
138fd251 795
138fd251 796static void virtqueue_disable_cb_split(struct virtqueue *_vq)
18445c4d
RR
797{
798 struct vring_virtqueue *vq = to_vvq(_vq);
799
e593bf97
TB
800 if (!(vq->split.avail_flags_shadow & VRING_AVAIL_F_NO_INTERRUPT)) {
801 vq->split.avail_flags_shadow |= VRING_AVAIL_F_NO_INTERRUPT;
8d622d21
MT
802 if (vq->event)
803 /* TODO: this is a hack. Figure out a cleaner value to write. */
804 vring_used_event(&vq->split.vring) = 0x0;
805 else
e593bf97
TB
806 vq->split.vring.avail->flags =
807 cpu_to_virtio16(_vq->vdev,
808 vq->split.avail_flags_shadow);
f277ec42 809 }
18445c4d
RR
810}
811
31532340 812static unsigned int virtqueue_enable_cb_prepare_split(struct virtqueue *_vq)
0a8a69dd
RR
813{
814 struct vring_virtqueue *vq = to_vvq(_vq);
cc229884 815 u16 last_used_idx;
0a8a69dd
RR
816
817 START_USE(vq);
0a8a69dd
RR
818
819 /* We optimistically turn back on interrupts, then check if there was
820 * more to do. */
a5c262c5
MT
821 /* Depending on the VIRTIO_RING_F_EVENT_IDX feature, we need to
822 * either clear the flags bit or point the event index at the next
823 * entry. Always do both to keep code simple. */
e593bf97
TB
824 if (vq->split.avail_flags_shadow & VRING_AVAIL_F_NO_INTERRUPT) {
825 vq->split.avail_flags_shadow &= ~VRING_AVAIL_F_NO_INTERRUPT;
0ea1e4a6 826 if (!vq->event)
e593bf97
TB
827 vq->split.vring.avail->flags =
828 cpu_to_virtio16(_vq->vdev,
829 vq->split.avail_flags_shadow);
f277ec42 830 }
e593bf97
TB
831 vring_used_event(&vq->split.vring) = cpu_to_virtio16(_vq->vdev,
832 last_used_idx = vq->last_used_idx);
cc229884
MT
833 END_USE(vq);
834 return last_used_idx;
835}
138fd251 836
31532340 837static bool virtqueue_poll_split(struct virtqueue *_vq, unsigned int last_used_idx)
138fd251
TB
838{
839 struct vring_virtqueue *vq = to_vvq(_vq);
840
841 return (u16)last_used_idx != virtio16_to_cpu(_vq->vdev,
e593bf97 842 vq->split.vring.used->idx);
138fd251
TB
843}
844
138fd251 845static bool virtqueue_enable_cb_delayed_split(struct virtqueue *_vq)
7ab358c2
MT
846{
847 struct vring_virtqueue *vq = to_vvq(_vq);
848 u16 bufs;
849
850 START_USE(vq);
851
852 /* We optimistically turn back on interrupts, then check if there was
853 * more to do. */
854 /* Depending on the VIRTIO_RING_F_USED_EVENT_IDX feature, we need to
855 * either clear the flags bit or point the event index at the next
0ea1e4a6 856 * entry. Always update the event index to keep code simple. */
e593bf97
TB
857 if (vq->split.avail_flags_shadow & VRING_AVAIL_F_NO_INTERRUPT) {
858 vq->split.avail_flags_shadow &= ~VRING_AVAIL_F_NO_INTERRUPT;
0ea1e4a6 859 if (!vq->event)
e593bf97
TB
860 vq->split.vring.avail->flags =
861 cpu_to_virtio16(_vq->vdev,
862 vq->split.avail_flags_shadow);
f277ec42 863 }
7ab358c2 864 /* TODO: tune this threshold */
e593bf97 865 bufs = (u16)(vq->split.avail_idx_shadow - vq->last_used_idx) * 3 / 4;
788e5b3a
MT
866
867 virtio_store_mb(vq->weak_barriers,
e593bf97 868 &vring_used_event(&vq->split.vring),
788e5b3a
MT
869 cpu_to_virtio16(_vq->vdev, vq->last_used_idx + bufs));
870
e593bf97
TB
871 if (unlikely((u16)(virtio16_to_cpu(_vq->vdev, vq->split.vring.used->idx)
872 - vq->last_used_idx) > bufs)) {
7ab358c2
MT
873 END_USE(vq);
874 return false;
875 }
876
877 END_USE(vq);
878 return true;
879}
7ab358c2 880
138fd251 881static void *virtqueue_detach_unused_buf_split(struct virtqueue *_vq)
c021eac4
SM
882{
883 struct vring_virtqueue *vq = to_vvq(_vq);
884 unsigned int i;
885 void *buf;
886
887 START_USE(vq);
888
e593bf97 889 for (i = 0; i < vq->split.vring.num; i++) {
cbeedb72 890 if (!vq->split.desc_state[i].data)
c021eac4 891 continue;
138fd251 892 /* detach_buf_split clears data, so grab it now. */
cbeedb72 893 buf = vq->split.desc_state[i].data;
138fd251 894 detach_buf_split(vq, i, NULL);
e593bf97
TB
895 vq->split.avail_idx_shadow--;
896 vq->split.vring.avail->idx = cpu_to_virtio16(_vq->vdev,
897 vq->split.avail_idx_shadow);
c021eac4
SM
898 END_USE(vq);
899 return buf;
900 }
901 /* That should have freed everything. */
e593bf97 902 BUG_ON(vq->vq.num_free != vq->split.vring.num);
c021eac4
SM
903
904 END_USE(vq);
905 return NULL;
906}
138fd251 907
d79dca75
TB
908static struct virtqueue *vring_create_virtqueue_split(
909 unsigned int index,
910 unsigned int num,
911 unsigned int vring_align,
912 struct virtio_device *vdev,
913 bool weak_barriers,
914 bool may_reduce_num,
915 bool context,
916 bool (*notify)(struct virtqueue *),
917 void (*callback)(struct virtqueue *),
918 const char *name)
919{
920 struct virtqueue *vq;
921 void *queue = NULL;
922 dma_addr_t dma_addr;
923 size_t queue_size_in_bytes;
924 struct vring vring;
925
926 /* We assume num is a power of 2. */
927 if (num & (num - 1)) {
928 dev_warn(&vdev->dev, "Bad virtqueue length %u\n", num);
929 return NULL;
930 }
931
932 /* TODO: allocate each queue chunk individually */
933 for (; num && vring_size(num, vring_align) > PAGE_SIZE; num /= 2) {
934 queue = vring_alloc_queue(vdev, vring_size(num, vring_align),
935 &dma_addr,
936 GFP_KERNEL|__GFP_NOWARN|__GFP_ZERO);
937 if (queue)
938 break;
cf94db21
CH
939 if (!may_reduce_num)
940 return NULL;
d79dca75
TB
941 }
942
943 if (!num)
944 return NULL;
945
946 if (!queue) {
947 /* Try to get a single page. You are my only hope! */
948 queue = vring_alloc_queue(vdev, vring_size(num, vring_align),
949 &dma_addr, GFP_KERNEL|__GFP_ZERO);
950 }
951 if (!queue)
952 return NULL;
953
954 queue_size_in_bytes = vring_size(num, vring_align);
955 vring_init(&vring, num, queue, vring_align);
956
957 vq = __vring_new_virtqueue(index, vring, vdev, weak_barriers, context,
958 notify, callback, name);
959 if (!vq) {
960 vring_free_queue(vdev, queue_size_in_bytes, queue,
961 dma_addr);
962 return NULL;
963 }
964
965 to_vvq(vq)->split.queue_dma_addr = dma_addr;
966 to_vvq(vq)->split.queue_size_in_bytes = queue_size_in_bytes;
967 to_vvq(vq)->we_own_ring = true;
968
969 return vq;
970}
971
e6f633e5 972
1ce9e605
TB
973/*
974 * Packed ring specific functions - *_packed().
975 */
976
d80dc15b
XZ
977static void vring_unmap_extra_packed(const struct vring_virtqueue *vq,
978 struct vring_desc_extra *extra)
1ce9e605
TB
979{
980 u16 flags;
981
982 if (!vq->use_dma_api)
983 return;
984
d80dc15b 985 flags = extra->flags;
1ce9e605
TB
986
987 if (flags & VRING_DESC_F_INDIRECT) {
988 dma_unmap_single(vring_dma_dev(vq),
d80dc15b 989 extra->addr, extra->len,
1ce9e605
TB
990 (flags & VRING_DESC_F_WRITE) ?
991 DMA_FROM_DEVICE : DMA_TO_DEVICE);
992 } else {
993 dma_unmap_page(vring_dma_dev(vq),
d80dc15b 994 extra->addr, extra->len,
1ce9e605
TB
995 (flags & VRING_DESC_F_WRITE) ?
996 DMA_FROM_DEVICE : DMA_TO_DEVICE);
997 }
998}
999
1000static void vring_unmap_desc_packed(const struct vring_virtqueue *vq,
1001 struct vring_packed_desc *desc)
1002{
1003 u16 flags;
1004
1005 if (!vq->use_dma_api)
1006 return;
1007
1008 flags = le16_to_cpu(desc->flags);
1009
920379a4
XZ
1010 dma_unmap_page(vring_dma_dev(vq),
1011 le64_to_cpu(desc->addr),
1012 le32_to_cpu(desc->len),
1013 (flags & VRING_DESC_F_WRITE) ?
1014 DMA_FROM_DEVICE : DMA_TO_DEVICE);
1ce9e605
TB
1015}
1016
1017static struct vring_packed_desc *alloc_indirect_packed(unsigned int total_sg,
1018 gfp_t gfp)
1019{
1020 struct vring_packed_desc *desc;
1021
1022 /*
1023 * We require lowmem mappings for the descriptors because
1024 * otherwise virt_to_phys will give us bogus addresses in the
1025 * virtqueue.
1026 */
1027 gfp &= ~__GFP_HIGHMEM;
1028
1029 desc = kmalloc_array(total_sg, sizeof(struct vring_packed_desc), gfp);
1030
1031 return desc;
1032}
1033
1034static int virtqueue_add_indirect_packed(struct vring_virtqueue *vq,
8d7670f3
XZ
1035 struct scatterlist *sgs[],
1036 unsigned int total_sg,
1037 unsigned int out_sgs,
1038 unsigned int in_sgs,
1039 void *data,
1040 gfp_t gfp)
1ce9e605
TB
1041{
1042 struct vring_packed_desc *desc;
1043 struct scatterlist *sg;
1044 unsigned int i, n, err_idx;
1045 u16 head, id;
1046 dma_addr_t addr;
1047
1048 head = vq->packed.next_avail_idx;
1049 desc = alloc_indirect_packed(total_sg, gfp);
fc6d70f4
XZ
1050 if (!desc)
1051 return -ENOMEM;
1ce9e605
TB
1052
1053 if (unlikely(vq->vq.num_free < 1)) {
1054 pr_debug("Can't add buf len 1 - avail = 0\n");
df0bfe75 1055 kfree(desc);
1ce9e605
TB
1056 END_USE(vq);
1057 return -ENOSPC;
1058 }
1059
1060 i = 0;
1061 id = vq->free_head;
1062 BUG_ON(id == vq->packed.vring.num);
1063
1064 for (n = 0; n < out_sgs + in_sgs; n++) {
1065 for (sg = sgs[n]; sg; sg = sg_next(sg)) {
1066 addr = vring_map_one_sg(vq, sg, n < out_sgs ?
1067 DMA_TO_DEVICE : DMA_FROM_DEVICE);
1068 if (vring_mapping_error(vq, addr))
1069 goto unmap_release;
1070
1071 desc[i].flags = cpu_to_le16(n < out_sgs ?
1072 0 : VRING_DESC_F_WRITE);
1073 desc[i].addr = cpu_to_le64(addr);
1074 desc[i].len = cpu_to_le32(sg->length);
1075 i++;
1076 }
1077 }
1078
1079 /* Now that the indirect table is filled in, map it. */
1080 addr = vring_map_single(vq, desc,
1081 total_sg * sizeof(struct vring_packed_desc),
1082 DMA_TO_DEVICE);
1083 if (vring_mapping_error(vq, addr))
1084 goto unmap_release;
1085
1086 vq->packed.vring.desc[head].addr = cpu_to_le64(addr);
1087 vq->packed.vring.desc[head].len = cpu_to_le32(total_sg *
1088 sizeof(struct vring_packed_desc));
1089 vq->packed.vring.desc[head].id = cpu_to_le16(id);
1090
1091 if (vq->use_dma_api) {
1092 vq->packed.desc_extra[id].addr = addr;
1093 vq->packed.desc_extra[id].len = total_sg *
1094 sizeof(struct vring_packed_desc);
1095 vq->packed.desc_extra[id].flags = VRING_DESC_F_INDIRECT |
1096 vq->packed.avail_used_flags;
1097 }
1098
1099 /*
1100 * A driver MUST NOT make the first descriptor in the list
1101 * available before all subsequent descriptors comprising
1102 * the list are made available.
1103 */
1104 virtio_wmb(vq->weak_barriers);
1105 vq->packed.vring.desc[head].flags = cpu_to_le16(VRING_DESC_F_INDIRECT |
1106 vq->packed.avail_used_flags);
1107
1108 /* We're using some buffers from the free list. */
1109 vq->vq.num_free -= 1;
1110
1111 /* Update free pointer */
1112 n = head + 1;
1113 if (n >= vq->packed.vring.num) {
1114 n = 0;
1115 vq->packed.avail_wrap_counter ^= 1;
1116 vq->packed.avail_used_flags ^=
1117 1 << VRING_PACKED_DESC_F_AVAIL |
1118 1 << VRING_PACKED_DESC_F_USED;
1119 }
1120 vq->packed.next_avail_idx = n;
aeef9b47 1121 vq->free_head = vq->packed.desc_extra[id].next;
1ce9e605
TB
1122
1123 /* Store token and indirect buffer state. */
1124 vq->packed.desc_state[id].num = 1;
1125 vq->packed.desc_state[id].data = data;
1126 vq->packed.desc_state[id].indir_desc = desc;
1127 vq->packed.desc_state[id].last = id;
1128
1129 vq->num_added += 1;
1130
1131 pr_debug("Added buffer head %i to %p\n", head, vq);
1132 END_USE(vq);
1133
1134 return 0;
1135
1136unmap_release:
1137 err_idx = i;
1138
1139 for (i = 0; i < err_idx; i++)
1140 vring_unmap_desc_packed(vq, &desc[i]);
1141
1142 kfree(desc);
1143
1144 END_USE(vq);
f7728002 1145 return -ENOMEM;
1ce9e605
TB
1146}
1147
1148static inline int virtqueue_add_packed(struct virtqueue *_vq,
1149 struct scatterlist *sgs[],
1150 unsigned int total_sg,
1151 unsigned int out_sgs,
1152 unsigned int in_sgs,
1153 void *data,
1154 void *ctx,
1155 gfp_t gfp)
1156{
1157 struct vring_virtqueue *vq = to_vvq(_vq);
1158 struct vring_packed_desc *desc;
1159 struct scatterlist *sg;
1160 unsigned int i, n, c, descs_used, err_idx;
3f649ab7
KC
1161 __le16 head_flags, flags;
1162 u16 head, id, prev, curr, avail_used_flags;
fc6d70f4 1163 int err;
1ce9e605
TB
1164
1165 START_USE(vq);
1166
1167 BUG_ON(data == NULL);
1168 BUG_ON(ctx && vq->indirect);
1169
1170 if (unlikely(vq->broken)) {
1171 END_USE(vq);
1172 return -EIO;
1173 }
1174
1175 LAST_ADD_TIME_UPDATE(vq);
1176
1177 BUG_ON(total_sg == 0);
1178
35c51e09 1179 if (virtqueue_use_indirect(vq, total_sg)) {
fc6d70f4
XZ
1180 err = virtqueue_add_indirect_packed(vq, sgs, total_sg, out_sgs,
1181 in_sgs, data, gfp);
1861ba62
MT
1182 if (err != -ENOMEM) {
1183 END_USE(vq);
fc6d70f4 1184 return err;
1861ba62 1185 }
fc6d70f4
XZ
1186
1187 /* fall back on direct */
1188 }
1ce9e605
TB
1189
1190 head = vq->packed.next_avail_idx;
1191 avail_used_flags = vq->packed.avail_used_flags;
1192
1193 WARN_ON_ONCE(total_sg > vq->packed.vring.num && !vq->indirect);
1194
1195 desc = vq->packed.vring.desc;
1196 i = head;
1197 descs_used = total_sg;
1198
1199 if (unlikely(vq->vq.num_free < descs_used)) {
1200 pr_debug("Can't add buf len %i - avail = %i\n",
1201 descs_used, vq->vq.num_free);
1202 END_USE(vq);
1203 return -ENOSPC;
1204 }
1205
1206 id = vq->free_head;
1207 BUG_ON(id == vq->packed.vring.num);
1208
1209 curr = id;
1210 c = 0;
1211 for (n = 0; n < out_sgs + in_sgs; n++) {
1212 for (sg = sgs[n]; sg; sg = sg_next(sg)) {
1213 dma_addr_t addr = vring_map_one_sg(vq, sg, n < out_sgs ?
1214 DMA_TO_DEVICE : DMA_FROM_DEVICE);
1215 if (vring_mapping_error(vq, addr))
1216 goto unmap_release;
1217
1218 flags = cpu_to_le16(vq->packed.avail_used_flags |
1219 (++c == total_sg ? 0 : VRING_DESC_F_NEXT) |
1220 (n < out_sgs ? 0 : VRING_DESC_F_WRITE));
1221 if (i == head)
1222 head_flags = flags;
1223 else
1224 desc[i].flags = flags;
1225
1226 desc[i].addr = cpu_to_le64(addr);
1227 desc[i].len = cpu_to_le32(sg->length);
1228 desc[i].id = cpu_to_le16(id);
1229
1230 if (unlikely(vq->use_dma_api)) {
1231 vq->packed.desc_extra[curr].addr = addr;
1232 vq->packed.desc_extra[curr].len = sg->length;
1233 vq->packed.desc_extra[curr].flags =
1234 le16_to_cpu(flags);
1235 }
1236 prev = curr;
aeef9b47 1237 curr = vq->packed.desc_extra[curr].next;
1ce9e605
TB
1238
1239 if ((unlikely(++i >= vq->packed.vring.num))) {
1240 i = 0;
1241 vq->packed.avail_used_flags ^=
1242 1 << VRING_PACKED_DESC_F_AVAIL |
1243 1 << VRING_PACKED_DESC_F_USED;
1244 }
1245 }
1246 }
1247
1248 if (i < head)
1249 vq->packed.avail_wrap_counter ^= 1;
1250
1251 /* We're using some buffers from the free list. */
1252 vq->vq.num_free -= descs_used;
1253
1254 /* Update free pointer */
1255 vq->packed.next_avail_idx = i;
1256 vq->free_head = curr;
1257
1258 /* Store token. */
1259 vq->packed.desc_state[id].num = descs_used;
1260 vq->packed.desc_state[id].data = data;
1261 vq->packed.desc_state[id].indir_desc = ctx;
1262 vq->packed.desc_state[id].last = prev;
1263
1264 /*
1265 * A driver MUST NOT make the first descriptor in the list
1266 * available before all subsequent descriptors comprising
1267 * the list are made available.
1268 */
1269 virtio_wmb(vq->weak_barriers);
1270 vq->packed.vring.desc[head].flags = head_flags;
1271 vq->num_added += descs_used;
1272
1273 pr_debug("Added buffer head %i to %p\n", head, vq);
1274 END_USE(vq);
1275
1276 return 0;
1277
1278unmap_release:
1279 err_idx = i;
1280 i = head;
44593865 1281 curr = vq->free_head;
1ce9e605
TB
1282
1283 vq->packed.avail_used_flags = avail_used_flags;
1284
1285 for (n = 0; n < total_sg; n++) {
1286 if (i == err_idx)
1287 break;
d80dc15b 1288 vring_unmap_extra_packed(vq, &vq->packed.desc_extra[curr]);
44593865 1289 curr = vq->packed.desc_extra[curr].next;
1ce9e605
TB
1290 i++;
1291 if (i >= vq->packed.vring.num)
1292 i = 0;
1293 }
1294
1295 END_USE(vq);
1296 return -EIO;
1297}
1298
1299static bool virtqueue_kick_prepare_packed(struct virtqueue *_vq)
1300{
1301 struct vring_virtqueue *vq = to_vvq(_vq);
f51f9826 1302 u16 new, old, off_wrap, flags, wrap_counter, event_idx;
1ce9e605
TB
1303 bool needs_kick;
1304 union {
1305 struct {
1306 __le16 off_wrap;
1307 __le16 flags;
1308 };
1309 u32 u32;
1310 } snapshot;
1311
1312 START_USE(vq);
1313
1314 /*
1315 * We need to expose the new flags value before checking notification
1316 * suppressions.
1317 */
1318 virtio_mb(vq->weak_barriers);
1319
f51f9826
TB
1320 old = vq->packed.next_avail_idx - vq->num_added;
1321 new = vq->packed.next_avail_idx;
1ce9e605
TB
1322 vq->num_added = 0;
1323
1324 snapshot.u32 = *(u32 *)vq->packed.vring.device;
1325 flags = le16_to_cpu(snapshot.flags);
1326
1327 LAST_ADD_TIME_CHECK(vq);
1328 LAST_ADD_TIME_INVALID(vq);
1329
f51f9826
TB
1330 if (flags != VRING_PACKED_EVENT_FLAG_DESC) {
1331 needs_kick = (flags != VRING_PACKED_EVENT_FLAG_DISABLE);
1332 goto out;
1333 }
1334
1335 off_wrap = le16_to_cpu(snapshot.off_wrap);
1336
1337 wrap_counter = off_wrap >> VRING_PACKED_EVENT_F_WRAP_CTR;
1338 event_idx = off_wrap & ~(1 << VRING_PACKED_EVENT_F_WRAP_CTR);
1339 if (wrap_counter != vq->packed.avail_wrap_counter)
1340 event_idx -= vq->packed.vring.num;
1341
1342 needs_kick = vring_need_event(event_idx, new, old);
1343out:
1ce9e605
TB
1344 END_USE(vq);
1345 return needs_kick;
1346}
1347
1348static void detach_buf_packed(struct vring_virtqueue *vq,
1349 unsigned int id, void **ctx)
1350{
1351 struct vring_desc_state_packed *state = NULL;
1352 struct vring_packed_desc *desc;
1353 unsigned int i, curr;
1354
1355 state = &vq->packed.desc_state[id];
1356
1357 /* Clear data ptr. */
1358 state->data = NULL;
1359
aeef9b47 1360 vq->packed.desc_extra[state->last].next = vq->free_head;
1ce9e605
TB
1361 vq->free_head = id;
1362 vq->vq.num_free += state->num;
1363
1364 if (unlikely(vq->use_dma_api)) {
1365 curr = id;
1366 for (i = 0; i < state->num; i++) {
d80dc15b
XZ
1367 vring_unmap_extra_packed(vq,
1368 &vq->packed.desc_extra[curr]);
aeef9b47 1369 curr = vq->packed.desc_extra[curr].next;
1ce9e605
TB
1370 }
1371 }
1372
1373 if (vq->indirect) {
1374 u32 len;
1375
1376 /* Free the indirect table, if any, now that it's unmapped. */
1377 desc = state->indir_desc;
1378 if (!desc)
1379 return;
1380
1381 if (vq->use_dma_api) {
1382 len = vq->packed.desc_extra[id].len;
1383 for (i = 0; i < len / sizeof(struct vring_packed_desc);
1384 i++)
1385 vring_unmap_desc_packed(vq, &desc[i]);
1386 }
1387 kfree(desc);
1388 state->indir_desc = NULL;
1389 } else if (ctx) {
1390 *ctx = state->indir_desc;
1391 }
1392}
1393
1394static inline bool is_used_desc_packed(const struct vring_virtqueue *vq,
1395 u16 idx, bool used_wrap_counter)
1396{
1397 bool avail, used;
1398 u16 flags;
1399
1400 flags = le16_to_cpu(vq->packed.vring.desc[idx].flags);
1401 avail = !!(flags & (1 << VRING_PACKED_DESC_F_AVAIL));
1402 used = !!(flags & (1 << VRING_PACKED_DESC_F_USED));
1403
1404 return avail == used && used == used_wrap_counter;
1405}
1406
1407static inline bool more_used_packed(const struct vring_virtqueue *vq)
1408{
1409 return is_used_desc_packed(vq, vq->last_used_idx,
1410 vq->packed.used_wrap_counter);
1411}
1412
1413static void *virtqueue_get_buf_ctx_packed(struct virtqueue *_vq,
1414 unsigned int *len,
1415 void **ctx)
1416{
1417 struct vring_virtqueue *vq = to_vvq(_vq);
1418 u16 last_used, id;
1419 void *ret;
1420
1421 START_USE(vq);
1422
1423 if (unlikely(vq->broken)) {
1424 END_USE(vq);
1425 return NULL;
1426 }
1427
1428 if (!more_used_packed(vq)) {
1429 pr_debug("No more buffers in queue\n");
1430 END_USE(vq);
1431 return NULL;
1432 }
1433
1434 /* Only get used elements after they have been exposed by host. */
1435 virtio_rmb(vq->weak_barriers);
1436
1437 last_used = vq->last_used_idx;
1438 id = le16_to_cpu(vq->packed.vring.desc[last_used].id);
1439 *len = le32_to_cpu(vq->packed.vring.desc[last_used].len);
1440
1441 if (unlikely(id >= vq->packed.vring.num)) {
1442 BAD_RING(vq, "id %u out of range\n", id);
1443 return NULL;
1444 }
1445 if (unlikely(!vq->packed.desc_state[id].data)) {
1446 BAD_RING(vq, "id %u is not a head!\n", id);
1447 return NULL;
1448 }
1449
1450 /* detach_buf_packed clears data, so grab it now. */
1451 ret = vq->packed.desc_state[id].data;
1452 detach_buf_packed(vq, id, ctx);
1453
1454 vq->last_used_idx += vq->packed.desc_state[id].num;
1455 if (unlikely(vq->last_used_idx >= vq->packed.vring.num)) {
1456 vq->last_used_idx -= vq->packed.vring.num;
1457 vq->packed.used_wrap_counter ^= 1;
1458 }
1459
f51f9826
TB
1460 /*
1461 * If we expect an interrupt for the next entry, tell host
1462 * by writing event index and flush out the write before
1463 * the read in the next get_buf call.
1464 */
1465 if (vq->packed.event_flags_shadow == VRING_PACKED_EVENT_FLAG_DESC)
1466 virtio_store_mb(vq->weak_barriers,
1467 &vq->packed.vring.driver->off_wrap,
1468 cpu_to_le16(vq->last_used_idx |
1469 (vq->packed.used_wrap_counter <<
1470 VRING_PACKED_EVENT_F_WRAP_CTR)));
1471
1ce9e605
TB
1472 LAST_ADD_TIME_INVALID(vq);
1473
1474 END_USE(vq);
1475 return ret;
1476}
1477
1478static void virtqueue_disable_cb_packed(struct virtqueue *_vq)
1479{
1480 struct vring_virtqueue *vq = to_vvq(_vq);
1481
1482 if (vq->packed.event_flags_shadow != VRING_PACKED_EVENT_FLAG_DISABLE) {
1483 vq->packed.event_flags_shadow = VRING_PACKED_EVENT_FLAG_DISABLE;
1484 vq->packed.vring.driver->flags =
1485 cpu_to_le16(vq->packed.event_flags_shadow);
1486 }
1487}
1488
31532340 1489static unsigned int virtqueue_enable_cb_prepare_packed(struct virtqueue *_vq)
1ce9e605
TB
1490{
1491 struct vring_virtqueue *vq = to_vvq(_vq);
1492
1493 START_USE(vq);
1494
1495 /*
1496 * We optimistically turn back on interrupts, then check if there was
1497 * more to do.
1498 */
1499
f51f9826
TB
1500 if (vq->event) {
1501 vq->packed.vring.driver->off_wrap =
1502 cpu_to_le16(vq->last_used_idx |
1503 (vq->packed.used_wrap_counter <<
1504 VRING_PACKED_EVENT_F_WRAP_CTR));
1505 /*
1506 * We need to update event offset and event wrap
1507 * counter first before updating event flags.
1508 */
1509 virtio_wmb(vq->weak_barriers);
1510 }
1511
1ce9e605 1512 if (vq->packed.event_flags_shadow == VRING_PACKED_EVENT_FLAG_DISABLE) {
f51f9826
TB
1513 vq->packed.event_flags_shadow = vq->event ?
1514 VRING_PACKED_EVENT_FLAG_DESC :
1515 VRING_PACKED_EVENT_FLAG_ENABLE;
1ce9e605
TB
1516 vq->packed.vring.driver->flags =
1517 cpu_to_le16(vq->packed.event_flags_shadow);
1518 }
1519
1520 END_USE(vq);
1521 return vq->last_used_idx | ((u16)vq->packed.used_wrap_counter <<
1522 VRING_PACKED_EVENT_F_WRAP_CTR);
1523}
1524
1525static bool virtqueue_poll_packed(struct virtqueue *_vq, u16 off_wrap)
1526{
1527 struct vring_virtqueue *vq = to_vvq(_vq);
1528 bool wrap_counter;
1529 u16 used_idx;
1530
1531 wrap_counter = off_wrap >> VRING_PACKED_EVENT_F_WRAP_CTR;
1532 used_idx = off_wrap & ~(1 << VRING_PACKED_EVENT_F_WRAP_CTR);
1533
1534 return is_used_desc_packed(vq, used_idx, wrap_counter);
1535}
1536
1537static bool virtqueue_enable_cb_delayed_packed(struct virtqueue *_vq)
1538{
1539 struct vring_virtqueue *vq = to_vvq(_vq);
1540 u16 used_idx, wrap_counter;
f51f9826 1541 u16 bufs;
1ce9e605
TB
1542
1543 START_USE(vq);
1544
1545 /*
1546 * We optimistically turn back on interrupts, then check if there was
1547 * more to do.
1548 */
1549
f51f9826
TB
1550 if (vq->event) {
1551 /* TODO: tune this threshold */
1552 bufs = (vq->packed.vring.num - vq->vq.num_free) * 3 / 4;
1553 wrap_counter = vq->packed.used_wrap_counter;
1554
1555 used_idx = vq->last_used_idx + bufs;
1556 if (used_idx >= vq->packed.vring.num) {
1557 used_idx -= vq->packed.vring.num;
1558 wrap_counter ^= 1;
1559 }
1560
1561 vq->packed.vring.driver->off_wrap = cpu_to_le16(used_idx |
1562 (wrap_counter << VRING_PACKED_EVENT_F_WRAP_CTR));
1563
1564 /*
1565 * We need to update event offset and event wrap
1566 * counter first before updating event flags.
1567 */
1568 virtio_wmb(vq->weak_barriers);
f51f9826 1569 }
1ce9e605
TB
1570
1571 if (vq->packed.event_flags_shadow == VRING_PACKED_EVENT_FLAG_DISABLE) {
f51f9826
TB
1572 vq->packed.event_flags_shadow = vq->event ?
1573 VRING_PACKED_EVENT_FLAG_DESC :
1574 VRING_PACKED_EVENT_FLAG_ENABLE;
1ce9e605
TB
1575 vq->packed.vring.driver->flags =
1576 cpu_to_le16(vq->packed.event_flags_shadow);
1577 }
1578
1579 /*
1580 * We need to update event suppression structure first
1581 * before re-checking for more used buffers.
1582 */
1583 virtio_mb(vq->weak_barriers);
1584
40ce7919
ML
1585 if (is_used_desc_packed(vq,
1586 vq->last_used_idx,
1587 vq->packed.used_wrap_counter)) {
1ce9e605
TB
1588 END_USE(vq);
1589 return false;
1590 }
1591
1592 END_USE(vq);
1593 return true;
1594}
1595
1596static void *virtqueue_detach_unused_buf_packed(struct virtqueue *_vq)
1597{
1598 struct vring_virtqueue *vq = to_vvq(_vq);
1599 unsigned int i;
1600 void *buf;
1601
1602 START_USE(vq);
1603
1604 for (i = 0; i < vq->packed.vring.num; i++) {
1605 if (!vq->packed.desc_state[i].data)
1606 continue;
1607 /* detach_buf clears data, so grab it now. */
1608 buf = vq->packed.desc_state[i].data;
1609 detach_buf_packed(vq, i, NULL);
1610 END_USE(vq);
1611 return buf;
1612 }
1613 /* That should have freed everything. */
1614 BUG_ON(vq->vq.num_free != vq->packed.vring.num);
1615
1616 END_USE(vq);
1617 return NULL;
1618}
1619
5a222421
JW
1620static struct vring_desc_extra *vring_alloc_desc_extra(struct vring_virtqueue *vq,
1621 unsigned int num)
1622{
1623 struct vring_desc_extra *desc_extra;
1624 unsigned int i;
1625
1626 desc_extra = kmalloc_array(num, sizeof(struct vring_desc_extra),
1627 GFP_KERNEL);
1628 if (!desc_extra)
1629 return NULL;
1630
1631 memset(desc_extra, 0, num * sizeof(struct vring_desc_extra));
1632
1633 for (i = 0; i < num - 1; i++)
1634 desc_extra[i].next = i + 1;
1635
1636 return desc_extra;
1637}
1638
1ce9e605
TB
1639static struct virtqueue *vring_create_virtqueue_packed(
1640 unsigned int index,
1641 unsigned int num,
1642 unsigned int vring_align,
1643 struct virtio_device *vdev,
1644 bool weak_barriers,
1645 bool may_reduce_num,
1646 bool context,
1647 bool (*notify)(struct virtqueue *),
1648 void (*callback)(struct virtqueue *),
1649 const char *name)
1650{
1651 struct vring_virtqueue *vq;
1652 struct vring_packed_desc *ring;
1653 struct vring_packed_desc_event *driver, *device;
1654 dma_addr_t ring_dma_addr, driver_event_dma_addr, device_event_dma_addr;
1655 size_t ring_size_in_bytes, event_size_in_bytes;
1ce9e605
TB
1656
1657 ring_size_in_bytes = num * sizeof(struct vring_packed_desc);
1658
1659 ring = vring_alloc_queue(vdev, ring_size_in_bytes,
1660 &ring_dma_addr,
1661 GFP_KERNEL|__GFP_NOWARN|__GFP_ZERO);
1662 if (!ring)
1663 goto err_ring;
1664
1665 event_size_in_bytes = sizeof(struct vring_packed_desc_event);
1666
1667 driver = vring_alloc_queue(vdev, event_size_in_bytes,
1668 &driver_event_dma_addr,
1669 GFP_KERNEL|__GFP_NOWARN|__GFP_ZERO);
1670 if (!driver)
1671 goto err_driver;
1672
1673 device = vring_alloc_queue(vdev, event_size_in_bytes,
1674 &device_event_dma_addr,
1675 GFP_KERNEL|__GFP_NOWARN|__GFP_ZERO);
1676 if (!device)
1677 goto err_device;
1678
1679 vq = kmalloc(sizeof(*vq), GFP_KERNEL);
1680 if (!vq)
1681 goto err_vq;
1682
1683 vq->vq.callback = callback;
1684 vq->vq.vdev = vdev;
1685 vq->vq.name = name;
1686 vq->vq.num_free = num;
1687 vq->vq.index = index;
1688 vq->we_own_ring = true;
1689 vq->notify = notify;
1690 vq->weak_barriers = weak_barriers;
1691 vq->broken = false;
1692 vq->last_used_idx = 0;
8d622d21 1693 vq->event_triggered = false;
1ce9e605
TB
1694 vq->num_added = 0;
1695 vq->packed_ring = true;
1696 vq->use_dma_api = vring_use_dma_api(vdev);
1ce9e605
TB
1697#ifdef DEBUG
1698 vq->in_use = false;
1699 vq->last_add_time_valid = false;
1700#endif
1701
1702 vq->indirect = virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC) &&
1703 !context;
1704 vq->event = virtio_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX);
1705
45383fb0
TB
1706 if (virtio_has_feature(vdev, VIRTIO_F_ORDER_PLATFORM))
1707 vq->weak_barriers = false;
1708
1ce9e605
TB
1709 vq->packed.ring_dma_addr = ring_dma_addr;
1710 vq->packed.driver_event_dma_addr = driver_event_dma_addr;
1711 vq->packed.device_event_dma_addr = device_event_dma_addr;
1712
1713 vq->packed.ring_size_in_bytes = ring_size_in_bytes;
1714 vq->packed.event_size_in_bytes = event_size_in_bytes;
1715
1716 vq->packed.vring.num = num;
1717 vq->packed.vring.desc = ring;
1718 vq->packed.vring.driver = driver;
1719 vq->packed.vring.device = device;
1720
1721 vq->packed.next_avail_idx = 0;
1722 vq->packed.avail_wrap_counter = 1;
1723 vq->packed.used_wrap_counter = 1;
1724 vq->packed.event_flags_shadow = 0;
1725 vq->packed.avail_used_flags = 1 << VRING_PACKED_DESC_F_AVAIL;
1726
1727 vq->packed.desc_state = kmalloc_array(num,
1728 sizeof(struct vring_desc_state_packed),
1729 GFP_KERNEL);
1730 if (!vq->packed.desc_state)
1731 goto err_desc_state;
1732
1733 memset(vq->packed.desc_state, 0,
1734 num * sizeof(struct vring_desc_state_packed));
1735
1736 /* Put everything in free lists. */
1737 vq->free_head = 0;
1ce9e605 1738
5a222421 1739 vq->packed.desc_extra = vring_alloc_desc_extra(vq, num);
1ce9e605
TB
1740 if (!vq->packed.desc_extra)
1741 goto err_desc_extra;
1742
1ce9e605
TB
1743 /* No callback? Tell other side not to bother us. */
1744 if (!callback) {
1745 vq->packed.event_flags_shadow = VRING_PACKED_EVENT_FLAG_DISABLE;
1746 vq->packed.vring.driver->flags =
1747 cpu_to_le16(vq->packed.event_flags_shadow);
1748 }
1749
0e566c8f 1750 spin_lock(&vdev->vqs_list_lock);
e152d8af 1751 list_add_tail(&vq->vq.list, &vdev->vqs);
0e566c8f 1752 spin_unlock(&vdev->vqs_list_lock);
1ce9e605
TB
1753 return &vq->vq;
1754
1755err_desc_extra:
1756 kfree(vq->packed.desc_state);
1757err_desc_state:
1758 kfree(vq);
1759err_vq:
ae93d8ea 1760 vring_free_queue(vdev, event_size_in_bytes, device, device_event_dma_addr);
1ce9e605 1761err_device:
ae93d8ea 1762 vring_free_queue(vdev, event_size_in_bytes, driver, driver_event_dma_addr);
1ce9e605
TB
1763err_driver:
1764 vring_free_queue(vdev, ring_size_in_bytes, ring, ring_dma_addr);
1765err_ring:
1766 return NULL;
1767}
1768
1769
e6f633e5
TB
1770/*
1771 * Generic functions and exported symbols.
1772 */
1773
1774static inline int virtqueue_add(struct virtqueue *_vq,
1775 struct scatterlist *sgs[],
1776 unsigned int total_sg,
1777 unsigned int out_sgs,
1778 unsigned int in_sgs,
1779 void *data,
1780 void *ctx,
1781 gfp_t gfp)
1782{
1ce9e605
TB
1783 struct vring_virtqueue *vq = to_vvq(_vq);
1784
1785 return vq->packed_ring ? virtqueue_add_packed(_vq, sgs, total_sg,
1786 out_sgs, in_sgs, data, ctx, gfp) :
1787 virtqueue_add_split(_vq, sgs, total_sg,
1788 out_sgs, in_sgs, data, ctx, gfp);
e6f633e5
TB
1789}
1790
1791/**
1792 * virtqueue_add_sgs - expose buffers to other end
a5581206 1793 * @_vq: the struct virtqueue we're talking about.
e6f633e5 1794 * @sgs: array of terminated scatterlists.
a5581206
JB
1795 * @out_sgs: the number of scatterlists readable by other side
1796 * @in_sgs: the number of scatterlists which are writable (after readable ones)
e6f633e5
TB
1797 * @data: the token identifying the buffer.
1798 * @gfp: how to do memory allocations (if necessary).
1799 *
1800 * Caller must ensure we don't call this with other virtqueue operations
1801 * at the same time (except where noted).
1802 *
1803 * Returns zero or a negative error (ie. ENOSPC, ENOMEM, EIO).
1804 */
1805int virtqueue_add_sgs(struct virtqueue *_vq,
1806 struct scatterlist *sgs[],
1807 unsigned int out_sgs,
1808 unsigned int in_sgs,
1809 void *data,
1810 gfp_t gfp)
1811{
1812 unsigned int i, total_sg = 0;
1813
1814 /* Count them first. */
1815 for (i = 0; i < out_sgs + in_sgs; i++) {
1816 struct scatterlist *sg;
1817
1818 for (sg = sgs[i]; sg; sg = sg_next(sg))
1819 total_sg++;
1820 }
1821 return virtqueue_add(_vq, sgs, total_sg, out_sgs, in_sgs,
1822 data, NULL, gfp);
1823}
1824EXPORT_SYMBOL_GPL(virtqueue_add_sgs);
1825
1826/**
1827 * virtqueue_add_outbuf - expose output buffers to other end
1828 * @vq: the struct virtqueue we're talking about.
1829 * @sg: scatterlist (must be well-formed and terminated!)
1830 * @num: the number of entries in @sg readable by other side
1831 * @data: the token identifying the buffer.
1832 * @gfp: how to do memory allocations (if necessary).
1833 *
1834 * Caller must ensure we don't call this with other virtqueue operations
1835 * at the same time (except where noted).
1836 *
1837 * Returns zero or a negative error (ie. ENOSPC, ENOMEM, EIO).
1838 */
1839int virtqueue_add_outbuf(struct virtqueue *vq,
1840 struct scatterlist *sg, unsigned int num,
1841 void *data,
1842 gfp_t gfp)
1843{
1844 return virtqueue_add(vq, &sg, num, 1, 0, data, NULL, gfp);
1845}
1846EXPORT_SYMBOL_GPL(virtqueue_add_outbuf);
1847
1848/**
1849 * virtqueue_add_inbuf - expose input buffers to other end
1850 * @vq: the struct virtqueue we're talking about.
1851 * @sg: scatterlist (must be well-formed and terminated!)
1852 * @num: the number of entries in @sg writable by other side
1853 * @data: the token identifying the buffer.
1854 * @gfp: how to do memory allocations (if necessary).
1855 *
1856 * Caller must ensure we don't call this with other virtqueue operations
1857 * at the same time (except where noted).
1858 *
1859 * Returns zero or a negative error (ie. ENOSPC, ENOMEM, EIO).
1860 */
1861int virtqueue_add_inbuf(struct virtqueue *vq,
1862 struct scatterlist *sg, unsigned int num,
1863 void *data,
1864 gfp_t gfp)
1865{
1866 return virtqueue_add(vq, &sg, num, 0, 1, data, NULL, gfp);
1867}
1868EXPORT_SYMBOL_GPL(virtqueue_add_inbuf);
1869
1870/**
1871 * virtqueue_add_inbuf_ctx - expose input buffers to other end
1872 * @vq: the struct virtqueue we're talking about.
1873 * @sg: scatterlist (must be well-formed and terminated!)
1874 * @num: the number of entries in @sg writable by other side
1875 * @data: the token identifying the buffer.
1876 * @ctx: extra context for the token
1877 * @gfp: how to do memory allocations (if necessary).
1878 *
1879 * Caller must ensure we don't call this with other virtqueue operations
1880 * at the same time (except where noted).
1881 *
1882 * Returns zero or a negative error (ie. ENOSPC, ENOMEM, EIO).
1883 */
1884int virtqueue_add_inbuf_ctx(struct virtqueue *vq,
1885 struct scatterlist *sg, unsigned int num,
1886 void *data,
1887 void *ctx,
1888 gfp_t gfp)
1889{
1890 return virtqueue_add(vq, &sg, num, 0, 1, data, ctx, gfp);
1891}
1892EXPORT_SYMBOL_GPL(virtqueue_add_inbuf_ctx);
1893
1894/**
1895 * virtqueue_kick_prepare - first half of split virtqueue_kick call.
a5581206 1896 * @_vq: the struct virtqueue
e6f633e5
TB
1897 *
1898 * Instead of virtqueue_kick(), you can do:
1899 * if (virtqueue_kick_prepare(vq))
1900 * virtqueue_notify(vq);
1901 *
1902 * This is sometimes useful because the virtqueue_kick_prepare() needs
1903 * to be serialized, but the actual virtqueue_notify() call does not.
1904 */
1905bool virtqueue_kick_prepare(struct virtqueue *_vq)
1906{
1ce9e605
TB
1907 struct vring_virtqueue *vq = to_vvq(_vq);
1908
1909 return vq->packed_ring ? virtqueue_kick_prepare_packed(_vq) :
1910 virtqueue_kick_prepare_split(_vq);
e6f633e5
TB
1911}
1912EXPORT_SYMBOL_GPL(virtqueue_kick_prepare);
1913
1914/**
1915 * virtqueue_notify - second half of split virtqueue_kick call.
a5581206 1916 * @_vq: the struct virtqueue
e6f633e5
TB
1917 *
1918 * This does not need to be serialized.
1919 *
1920 * Returns false if host notify failed or queue is broken, otherwise true.
1921 */
1922bool virtqueue_notify(struct virtqueue *_vq)
1923{
1924 struct vring_virtqueue *vq = to_vvq(_vq);
1925
1926 if (unlikely(vq->broken))
1927 return false;
1928
1929 /* Prod other side to tell it about changes. */
1930 if (!vq->notify(_vq)) {
1931 vq->broken = true;
1932 return false;
1933 }
1934 return true;
1935}
1936EXPORT_SYMBOL_GPL(virtqueue_notify);
1937
1938/**
1939 * virtqueue_kick - update after add_buf
1940 * @vq: the struct virtqueue
1941 *
1942 * After one or more virtqueue_add_* calls, invoke this to kick
1943 * the other side.
1944 *
1945 * Caller must ensure we don't call this with other virtqueue
1946 * operations at the same time (except where noted).
1947 *
1948 * Returns false if kick failed, otherwise true.
1949 */
1950bool virtqueue_kick(struct virtqueue *vq)
1951{
1952 if (virtqueue_kick_prepare(vq))
1953 return virtqueue_notify(vq);
1954 return true;
1955}
1956EXPORT_SYMBOL_GPL(virtqueue_kick);
1957
1958/**
31c11db6 1959 * virtqueue_get_buf_ctx - get the next used buffer
a5581206 1960 * @_vq: the struct virtqueue we're talking about.
e6f633e5 1961 * @len: the length written into the buffer
a5581206 1962 * @ctx: extra context for the token
e6f633e5
TB
1963 *
1964 * If the device wrote data into the buffer, @len will be set to the
1965 * amount written. This means you don't need to clear the buffer
1966 * beforehand to ensure there's no data leakage in the case of short
1967 * writes.
1968 *
1969 * Caller must ensure we don't call this with other virtqueue
1970 * operations at the same time (except where noted).
1971 *
1972 * Returns NULL if there are no used buffers, or the "data" token
1973 * handed to virtqueue_add_*().
1974 */
1975void *virtqueue_get_buf_ctx(struct virtqueue *_vq, unsigned int *len,
1976 void **ctx)
1977{
1ce9e605
TB
1978 struct vring_virtqueue *vq = to_vvq(_vq);
1979
1980 return vq->packed_ring ? virtqueue_get_buf_ctx_packed(_vq, len, ctx) :
1981 virtqueue_get_buf_ctx_split(_vq, len, ctx);
e6f633e5
TB
1982}
1983EXPORT_SYMBOL_GPL(virtqueue_get_buf_ctx);
1984
1985void *virtqueue_get_buf(struct virtqueue *_vq, unsigned int *len)
1986{
1987 return virtqueue_get_buf_ctx(_vq, len, NULL);
1988}
1989EXPORT_SYMBOL_GPL(virtqueue_get_buf);
e6f633e5
TB
1990/**
1991 * virtqueue_disable_cb - disable callbacks
a5581206 1992 * @_vq: the struct virtqueue we're talking about.
e6f633e5
TB
1993 *
1994 * Note that this is not necessarily synchronous, hence unreliable and only
1995 * useful as an optimization.
1996 *
1997 * Unlike other operations, this need not be serialized.
1998 */
1999void virtqueue_disable_cb(struct virtqueue *_vq)
2000{
1ce9e605
TB
2001 struct vring_virtqueue *vq = to_vvq(_vq);
2002
8d622d21
MT
2003 /* If device triggered an event already it won't trigger one again:
2004 * no need to disable.
2005 */
2006 if (vq->event_triggered)
2007 return;
2008
1ce9e605
TB
2009 if (vq->packed_ring)
2010 virtqueue_disable_cb_packed(_vq);
2011 else
2012 virtqueue_disable_cb_split(_vq);
e6f633e5
TB
2013}
2014EXPORT_SYMBOL_GPL(virtqueue_disable_cb);
2015
2016/**
2017 * virtqueue_enable_cb_prepare - restart callbacks after disable_cb
a5581206 2018 * @_vq: the struct virtqueue we're talking about.
e6f633e5
TB
2019 *
2020 * This re-enables callbacks; it returns current queue state
2021 * in an opaque unsigned value. This value should be later tested by
2022 * virtqueue_poll, to detect a possible race between the driver checking for
2023 * more work, and enabling callbacks.
2024 *
2025 * Caller must ensure we don't call this with other virtqueue
2026 * operations at the same time (except where noted).
2027 */
31532340 2028unsigned int virtqueue_enable_cb_prepare(struct virtqueue *_vq)
e6f633e5 2029{
1ce9e605
TB
2030 struct vring_virtqueue *vq = to_vvq(_vq);
2031
8d622d21
MT
2032 if (vq->event_triggered)
2033 vq->event_triggered = false;
2034
1ce9e605
TB
2035 return vq->packed_ring ? virtqueue_enable_cb_prepare_packed(_vq) :
2036 virtqueue_enable_cb_prepare_split(_vq);
e6f633e5
TB
2037}
2038EXPORT_SYMBOL_GPL(virtqueue_enable_cb_prepare);
2039
2040/**
2041 * virtqueue_poll - query pending used buffers
a5581206 2042 * @_vq: the struct virtqueue we're talking about.
e6f633e5
TB
2043 * @last_used_idx: virtqueue state (from call to virtqueue_enable_cb_prepare).
2044 *
2045 * Returns "true" if there are pending used buffers in the queue.
2046 *
2047 * This does not need to be serialized.
2048 */
31532340 2049bool virtqueue_poll(struct virtqueue *_vq, unsigned int last_used_idx)
e6f633e5
TB
2050{
2051 struct vring_virtqueue *vq = to_vvq(_vq);
2052
481a0d74
MW
2053 if (unlikely(vq->broken))
2054 return false;
2055
e6f633e5 2056 virtio_mb(vq->weak_barriers);
1ce9e605
TB
2057 return vq->packed_ring ? virtqueue_poll_packed(_vq, last_used_idx) :
2058 virtqueue_poll_split(_vq, last_used_idx);
e6f633e5
TB
2059}
2060EXPORT_SYMBOL_GPL(virtqueue_poll);
2061
2062/**
2063 * virtqueue_enable_cb - restart callbacks after disable_cb.
a5581206 2064 * @_vq: the struct virtqueue we're talking about.
e6f633e5
TB
2065 *
2066 * This re-enables callbacks; it returns "false" if there are pending
2067 * buffers in the queue, to detect a possible race between the driver
2068 * checking for more work, and enabling callbacks.
2069 *
2070 * Caller must ensure we don't call this with other virtqueue
2071 * operations at the same time (except where noted).
2072 */
2073bool virtqueue_enable_cb(struct virtqueue *_vq)
2074{
31532340 2075 unsigned int last_used_idx = virtqueue_enable_cb_prepare(_vq);
e6f633e5
TB
2076
2077 return !virtqueue_poll(_vq, last_used_idx);
2078}
2079EXPORT_SYMBOL_GPL(virtqueue_enable_cb);
2080
2081/**
2082 * virtqueue_enable_cb_delayed - restart callbacks after disable_cb.
a5581206 2083 * @_vq: the struct virtqueue we're talking about.
e6f633e5
TB
2084 *
2085 * This re-enables callbacks but hints to the other side to delay
2086 * interrupts until most of the available buffers have been processed;
2087 * it returns "false" if there are many pending buffers in the queue,
2088 * to detect a possible race between the driver checking for more work,
2089 * and enabling callbacks.
2090 *
2091 * Caller must ensure we don't call this with other virtqueue
2092 * operations at the same time (except where noted).
2093 */
2094bool virtqueue_enable_cb_delayed(struct virtqueue *_vq)
2095{
1ce9e605
TB
2096 struct vring_virtqueue *vq = to_vvq(_vq);
2097
8d622d21
MT
2098 if (vq->event_triggered)
2099 vq->event_triggered = false;
2100
1ce9e605
TB
2101 return vq->packed_ring ? virtqueue_enable_cb_delayed_packed(_vq) :
2102 virtqueue_enable_cb_delayed_split(_vq);
e6f633e5
TB
2103}
2104EXPORT_SYMBOL_GPL(virtqueue_enable_cb_delayed);
2105
138fd251
TB
2106/**
2107 * virtqueue_detach_unused_buf - detach first unused buffer
a5581206 2108 * @_vq: the struct virtqueue we're talking about.
138fd251
TB
2109 *
2110 * Returns NULL or the "data" token handed to virtqueue_add_*().
2111 * This is not valid on an active queue; it is useful only for device
2112 * shutdown.
2113 */
2114void *virtqueue_detach_unused_buf(struct virtqueue *_vq)
2115{
1ce9e605
TB
2116 struct vring_virtqueue *vq = to_vvq(_vq);
2117
2118 return vq->packed_ring ? virtqueue_detach_unused_buf_packed(_vq) :
2119 virtqueue_detach_unused_buf_split(_vq);
138fd251 2120}
7c5e9ed0 2121EXPORT_SYMBOL_GPL(virtqueue_detach_unused_buf);
c021eac4 2122
138fd251
TB
2123static inline bool more_used(const struct vring_virtqueue *vq)
2124{
1ce9e605 2125 return vq->packed_ring ? more_used_packed(vq) : more_used_split(vq);
138fd251
TB
2126}
2127
0a8a69dd
RR
2128irqreturn_t vring_interrupt(int irq, void *_vq)
2129{
2130 struct vring_virtqueue *vq = to_vvq(_vq);
2131
2132 if (!more_used(vq)) {
2133 pr_debug("virtqueue interrupt with no work for %p\n", vq);
2134 return IRQ_NONE;
2135 }
2136
2137 if (unlikely(vq->broken))
2138 return IRQ_HANDLED;
2139
8d622d21
MT
2140 /* Just a hint for performance: so it's ok that this can be racy! */
2141 if (vq->event)
2142 vq->event_triggered = true;
2143
0a8a69dd 2144 pr_debug("virtqueue callback for %p (%p)\n", vq, vq->vq.callback);
18445c4d
RR
2145 if (vq->vq.callback)
2146 vq->vq.callback(&vq->vq);
0a8a69dd
RR
2147
2148 return IRQ_HANDLED;
2149}
c6fd4701 2150EXPORT_SYMBOL_GPL(vring_interrupt);
0a8a69dd 2151
1ce9e605 2152/* Only available for split ring */
2a2d1382
AL
2153struct virtqueue *__vring_new_virtqueue(unsigned int index,
2154 struct vring vring,
2155 struct virtio_device *vdev,
2156 bool weak_barriers,
f94682dd 2157 bool context,
2a2d1382
AL
2158 bool (*notify)(struct virtqueue *),
2159 void (*callback)(struct virtqueue *),
2160 const char *name)
0a8a69dd 2161{
2a2d1382 2162 struct vring_virtqueue *vq;
0a8a69dd 2163
1ce9e605
TB
2164 if (virtio_has_feature(vdev, VIRTIO_F_RING_PACKED))
2165 return NULL;
2166
cbeedb72 2167 vq = kmalloc(sizeof(*vq), GFP_KERNEL);
0a8a69dd
RR
2168 if (!vq)
2169 return NULL;
2170
1ce9e605 2171 vq->packed_ring = false;
0a8a69dd
RR
2172 vq->vq.callback = callback;
2173 vq->vq.vdev = vdev;
9499f5e7 2174 vq->vq.name = name;
2a2d1382 2175 vq->vq.num_free = vring.num;
06ca287d 2176 vq->vq.index = index;
2a2d1382 2177 vq->we_own_ring = false;
0a8a69dd 2178 vq->notify = notify;
7b21e34f 2179 vq->weak_barriers = weak_barriers;
0a8a69dd
RR
2180 vq->broken = false;
2181 vq->last_used_idx = 0;
8d622d21 2182 vq->event_triggered = false;
0a8a69dd 2183 vq->num_added = 0;
fb3fba6b 2184 vq->use_dma_api = vring_use_dma_api(vdev);
0a8a69dd
RR
2185#ifdef DEBUG
2186 vq->in_use = false;
e93300b1 2187 vq->last_add_time_valid = false;
0a8a69dd
RR
2188#endif
2189
5a08b04f
MT
2190 vq->indirect = virtio_has_feature(vdev, VIRTIO_RING_F_INDIRECT_DESC) &&
2191 !context;
a5c262c5 2192 vq->event = virtio_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX);
9fa29b9d 2193
45383fb0
TB
2194 if (virtio_has_feature(vdev, VIRTIO_F_ORDER_PLATFORM))
2195 vq->weak_barriers = false;
2196
d79dca75
TB
2197 vq->split.queue_dma_addr = 0;
2198 vq->split.queue_size_in_bytes = 0;
2199
e593bf97
TB
2200 vq->split.vring = vring;
2201 vq->split.avail_flags_shadow = 0;
2202 vq->split.avail_idx_shadow = 0;
2203
0a8a69dd 2204 /* No callback? Tell other side not to bother us. */
f277ec42 2205 if (!callback) {
e593bf97 2206 vq->split.avail_flags_shadow |= VRING_AVAIL_F_NO_INTERRUPT;
0ea1e4a6 2207 if (!vq->event)
e593bf97
TB
2208 vq->split.vring.avail->flags = cpu_to_virtio16(vdev,
2209 vq->split.avail_flags_shadow);
f277ec42 2210 }
0a8a69dd 2211
cbeedb72
TB
2212 vq->split.desc_state = kmalloc_array(vring.num,
2213 sizeof(struct vring_desc_state_split), GFP_KERNEL);
5bc72234
JW
2214 if (!vq->split.desc_state)
2215 goto err_state;
cbeedb72 2216
72b5e895
JW
2217 vq->split.desc_extra = vring_alloc_desc_extra(vq, vring.num);
2218 if (!vq->split.desc_extra)
2219 goto err_extra;
2220
0a8a69dd 2221 /* Put everything in free lists. */
0a8a69dd 2222 vq->free_head = 0;
cbeedb72
TB
2223 memset(vq->split.desc_state, 0, vring.num *
2224 sizeof(struct vring_desc_state_split));
0a8a69dd 2225
0e566c8f 2226 spin_lock(&vdev->vqs_list_lock);
e152d8af 2227 list_add_tail(&vq->vq.list, &vdev->vqs);
0e566c8f 2228 spin_unlock(&vdev->vqs_list_lock);
0a8a69dd 2229 return &vq->vq;
5bc72234 2230
72b5e895
JW
2231err_extra:
2232 kfree(vq->split.desc_state);
5bc72234
JW
2233err_state:
2234 kfree(vq);
2235 return NULL;
0a8a69dd 2236}
2a2d1382
AL
2237EXPORT_SYMBOL_GPL(__vring_new_virtqueue);
2238
2a2d1382
AL
2239struct virtqueue *vring_create_virtqueue(
2240 unsigned int index,
2241 unsigned int num,
2242 unsigned int vring_align,
2243 struct virtio_device *vdev,
2244 bool weak_barriers,
2245 bool may_reduce_num,
f94682dd 2246 bool context,
2a2d1382
AL
2247 bool (*notify)(struct virtqueue *),
2248 void (*callback)(struct virtqueue *),
2249 const char *name)
2250{
1ce9e605
TB
2251
2252 if (virtio_has_feature(vdev, VIRTIO_F_RING_PACKED))
2253 return vring_create_virtqueue_packed(index, num, vring_align,
2254 vdev, weak_barriers, may_reduce_num,
2255 context, notify, callback, name);
2256
d79dca75
TB
2257 return vring_create_virtqueue_split(index, num, vring_align,
2258 vdev, weak_barriers, may_reduce_num,
2259 context, notify, callback, name);
2a2d1382
AL
2260}
2261EXPORT_SYMBOL_GPL(vring_create_virtqueue);
2262
1ce9e605 2263/* Only available for split ring */
2a2d1382
AL
2264struct virtqueue *vring_new_virtqueue(unsigned int index,
2265 unsigned int num,
2266 unsigned int vring_align,
2267 struct virtio_device *vdev,
2268 bool weak_barriers,
f94682dd 2269 bool context,
2a2d1382
AL
2270 void *pages,
2271 bool (*notify)(struct virtqueue *vq),
2272 void (*callback)(struct virtqueue *vq),
2273 const char *name)
2274{
2275 struct vring vring;
1ce9e605
TB
2276
2277 if (virtio_has_feature(vdev, VIRTIO_F_RING_PACKED))
2278 return NULL;
2279
2a2d1382 2280 vring_init(&vring, num, pages, vring_align);
f94682dd 2281 return __vring_new_virtqueue(index, vring, vdev, weak_barriers, context,
2a2d1382
AL
2282 notify, callback, name);
2283}
c6fd4701 2284EXPORT_SYMBOL_GPL(vring_new_virtqueue);
0a8a69dd 2285
2a2d1382 2286void vring_del_virtqueue(struct virtqueue *_vq)
0a8a69dd 2287{
2a2d1382
AL
2288 struct vring_virtqueue *vq = to_vvq(_vq);
2289
0e566c8f 2290 spin_lock(&vq->vq.vdev->vqs_list_lock);
249f2554 2291 list_del(&_vq->list);
0e566c8f 2292 spin_unlock(&vq->vq.vdev->vqs_list_lock);
249f2554 2293
2a2d1382 2294 if (vq->we_own_ring) {
1ce9e605
TB
2295 if (vq->packed_ring) {
2296 vring_free_queue(vq->vq.vdev,
2297 vq->packed.ring_size_in_bytes,
2298 vq->packed.vring.desc,
2299 vq->packed.ring_dma_addr);
2300
2301 vring_free_queue(vq->vq.vdev,
2302 vq->packed.event_size_in_bytes,
2303 vq->packed.vring.driver,
2304 vq->packed.driver_event_dma_addr);
2305
2306 vring_free_queue(vq->vq.vdev,
2307 vq->packed.event_size_in_bytes,
2308 vq->packed.vring.device,
2309 vq->packed.device_event_dma_addr);
2310
2311 kfree(vq->packed.desc_state);
2312 kfree(vq->packed.desc_extra);
2313 } else {
2314 vring_free_queue(vq->vq.vdev,
2315 vq->split.queue_size_in_bytes,
2316 vq->split.vring.desc,
2317 vq->split.queue_dma_addr);
1ce9e605 2318 }
2a2d1382 2319 }
72b5e895 2320 if (!vq->packed_ring) {
f13f09a1 2321 kfree(vq->split.desc_state);
72b5e895
JW
2322 kfree(vq->split.desc_extra);
2323 }
2a2d1382 2324 kfree(vq);
0a8a69dd 2325}
c6fd4701 2326EXPORT_SYMBOL_GPL(vring_del_virtqueue);
0a8a69dd 2327
e34f8725
RR
2328/* Manipulates transport-specific feature bits. */
2329void vring_transport_features(struct virtio_device *vdev)
2330{
2331 unsigned int i;
2332
2333 for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++) {
2334 switch (i) {
9fa29b9d
MM
2335 case VIRTIO_RING_F_INDIRECT_DESC:
2336 break;
a5c262c5
MT
2337 case VIRTIO_RING_F_EVENT_IDX:
2338 break;
747ae34a
MT
2339 case VIRTIO_F_VERSION_1:
2340 break;
321bd212 2341 case VIRTIO_F_ACCESS_PLATFORM:
1a937693 2342 break;
f959a128
TB
2343 case VIRTIO_F_RING_PACKED:
2344 break;
45383fb0
TB
2345 case VIRTIO_F_ORDER_PLATFORM:
2346 break;
e34f8725
RR
2347 default:
2348 /* We don't understand this bit. */
e16e12be 2349 __virtio_clear_bit(vdev, i);
e34f8725
RR
2350 }
2351 }
2352}
2353EXPORT_SYMBOL_GPL(vring_transport_features);
2354
5dfc1762
RR
2355/**
2356 * virtqueue_get_vring_size - return the size of the virtqueue's vring
a5581206 2357 * @_vq: the struct virtqueue containing the vring of interest.
5dfc1762
RR
2358 *
2359 * Returns the size of the vring. This is mainly used for boasting to
2360 * userspace. Unlike other operations, this need not be serialized.
2361 */
8f9f4668
RJ
2362unsigned int virtqueue_get_vring_size(struct virtqueue *_vq)
2363{
2364
2365 struct vring_virtqueue *vq = to_vvq(_vq);
2366
1ce9e605 2367 return vq->packed_ring ? vq->packed.vring.num : vq->split.vring.num;
8f9f4668
RJ
2368}
2369EXPORT_SYMBOL_GPL(virtqueue_get_vring_size);
2370
b3b32c94
HG
2371bool virtqueue_is_broken(struct virtqueue *_vq)
2372{
2373 struct vring_virtqueue *vq = to_vvq(_vq);
2374
60f07798 2375 return READ_ONCE(vq->broken);
b3b32c94
HG
2376}
2377EXPORT_SYMBOL_GPL(virtqueue_is_broken);
2378
e2dcdfe9
RR
2379/*
2380 * This should prevent the device from being used, allowing drivers to
2381 * recover. You may need to grab appropriate locks to flush.
2382 */
2383void virtio_break_device(struct virtio_device *dev)
2384{
2385 struct virtqueue *_vq;
2386
0e566c8f 2387 spin_lock(&dev->vqs_list_lock);
e2dcdfe9
RR
2388 list_for_each_entry(_vq, &dev->vqs, list) {
2389 struct vring_virtqueue *vq = to_vvq(_vq);
60f07798
PP
2390
2391 /* Pairs with READ_ONCE() in virtqueue_is_broken(). */
2392 WRITE_ONCE(vq->broken, true);
e2dcdfe9 2393 }
0e566c8f 2394 spin_unlock(&dev->vqs_list_lock);
e2dcdfe9
RR
2395}
2396EXPORT_SYMBOL_GPL(virtio_break_device);
2397
2a2d1382 2398dma_addr_t virtqueue_get_desc_addr(struct virtqueue *_vq)
89062652
CH
2399{
2400 struct vring_virtqueue *vq = to_vvq(_vq);
2401
2a2d1382
AL
2402 BUG_ON(!vq->we_own_ring);
2403
1ce9e605
TB
2404 if (vq->packed_ring)
2405 return vq->packed.ring_dma_addr;
2406
d79dca75 2407 return vq->split.queue_dma_addr;
89062652 2408}
2a2d1382 2409EXPORT_SYMBOL_GPL(virtqueue_get_desc_addr);
89062652 2410
2a2d1382 2411dma_addr_t virtqueue_get_avail_addr(struct virtqueue *_vq)
89062652
CH
2412{
2413 struct vring_virtqueue *vq = to_vvq(_vq);
2414
2a2d1382
AL
2415 BUG_ON(!vq->we_own_ring);
2416
1ce9e605
TB
2417 if (vq->packed_ring)
2418 return vq->packed.driver_event_dma_addr;
2419
d79dca75 2420 return vq->split.queue_dma_addr +
e593bf97 2421 ((char *)vq->split.vring.avail - (char *)vq->split.vring.desc);
2a2d1382
AL
2422}
2423EXPORT_SYMBOL_GPL(virtqueue_get_avail_addr);
2424
2425dma_addr_t virtqueue_get_used_addr(struct virtqueue *_vq)
2426{
2427 struct vring_virtqueue *vq = to_vvq(_vq);
2428
2429 BUG_ON(!vq->we_own_ring);
2430
1ce9e605
TB
2431 if (vq->packed_ring)
2432 return vq->packed.device_event_dma_addr;
2433
d79dca75 2434 return vq->split.queue_dma_addr +
e593bf97 2435 ((char *)vq->split.vring.used - (char *)vq->split.vring.desc);
2a2d1382
AL
2436}
2437EXPORT_SYMBOL_GPL(virtqueue_get_used_addr);
2438
1ce9e605 2439/* Only available for split ring */
2a2d1382
AL
2440const struct vring *virtqueue_get_vring(struct virtqueue *vq)
2441{
e593bf97 2442 return &to_vvq(vq)->split.vring;
89062652 2443}
2a2d1382 2444EXPORT_SYMBOL_GPL(virtqueue_get_vring);
89062652 2445
c6fd4701 2446MODULE_LICENSE("GPL");