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