4 * Copyright IBM, Corp. 2007
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
17 #include "qemu-error.h"
19 #include "qemu-barrier.h"
21 /* The alignment to use between consumer and producer parts of vring.
22 * x86 pagesize again. */
23 #define VIRTIO_PCI_VRING_ALIGN 4096
25 typedef struct VRingDesc
33 typedef struct VRingAvail
40 typedef struct VRingUsedElem
46 typedef struct VRingUsed
50 VRingUsedElem ring
[0];
56 target_phys_addr_t desc
;
57 target_phys_addr_t avail
;
58 target_phys_addr_t used
;
64 target_phys_addr_t pa
;
65 uint16_t last_avail_idx
;
66 /* Last used index value we have signalled on */
67 uint16_t signalled_used
;
69 /* Last used index value we have signalled on */
70 bool signalled_used_valid
;
72 /* Notification enabled? */
78 void (*handle_output
)(VirtIODevice
*vdev
, VirtQueue
*vq
);
80 EventNotifier guest_notifier
;
81 EventNotifier host_notifier
;
84 /* virt queue functions */
85 static void virtqueue_init(VirtQueue
*vq
)
87 target_phys_addr_t pa
= vq
->pa
;
90 vq
->vring
.avail
= pa
+ vq
->vring
.num
* sizeof(VRingDesc
);
91 vq
->vring
.used
= vring_align(vq
->vring
.avail
+
92 offsetof(VRingAvail
, ring
[vq
->vring
.num
]),
93 VIRTIO_PCI_VRING_ALIGN
);
96 static inline uint64_t vring_desc_addr(target_phys_addr_t desc_pa
, int i
)
98 target_phys_addr_t pa
;
99 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, addr
);
103 static inline uint32_t vring_desc_len(target_phys_addr_t desc_pa
, int i
)
105 target_phys_addr_t pa
;
106 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, len
);
110 static inline uint16_t vring_desc_flags(target_phys_addr_t desc_pa
, int i
)
112 target_phys_addr_t pa
;
113 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, flags
);
114 return lduw_phys(pa
);
117 static inline uint16_t vring_desc_next(target_phys_addr_t desc_pa
, int i
)
119 target_phys_addr_t pa
;
120 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, next
);
121 return lduw_phys(pa
);
124 static inline uint16_t vring_avail_flags(VirtQueue
*vq
)
126 target_phys_addr_t pa
;
127 pa
= vq
->vring
.avail
+ offsetof(VRingAvail
, flags
);
128 return lduw_phys(pa
);
131 static inline uint16_t vring_avail_idx(VirtQueue
*vq
)
133 target_phys_addr_t pa
;
134 pa
= vq
->vring
.avail
+ offsetof(VRingAvail
, idx
);
135 return lduw_phys(pa
);
138 static inline uint16_t vring_avail_ring(VirtQueue
*vq
, int i
)
140 target_phys_addr_t pa
;
141 pa
= vq
->vring
.avail
+ offsetof(VRingAvail
, ring
[i
]);
142 return lduw_phys(pa
);
145 static inline uint16_t vring_used_event(VirtQueue
*vq
)
147 return vring_avail_ring(vq
, vq
->vring
.num
);
150 static inline void vring_used_ring_id(VirtQueue
*vq
, int i
, uint32_t val
)
152 target_phys_addr_t pa
;
153 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, ring
[i
].id
);
157 static inline void vring_used_ring_len(VirtQueue
*vq
, int i
, uint32_t val
)
159 target_phys_addr_t pa
;
160 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, ring
[i
].len
);
164 static uint16_t vring_used_idx(VirtQueue
*vq
)
166 target_phys_addr_t pa
;
167 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, idx
);
168 return lduw_phys(pa
);
171 static inline void vring_used_idx_set(VirtQueue
*vq
, uint16_t val
)
173 target_phys_addr_t pa
;
174 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, idx
);
178 static inline void vring_used_flags_set_bit(VirtQueue
*vq
, int mask
)
180 target_phys_addr_t pa
;
181 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, flags
);
182 stw_phys(pa
, lduw_phys(pa
) | mask
);
185 static inline void vring_used_flags_unset_bit(VirtQueue
*vq
, int mask
)
187 target_phys_addr_t pa
;
188 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, flags
);
189 stw_phys(pa
, lduw_phys(pa
) & ~mask
);
192 static inline void vring_avail_event(VirtQueue
*vq
, uint16_t val
)
194 target_phys_addr_t pa
;
195 if (!vq
->notification
) {
198 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, ring
[vq
->vring
.num
]);
202 void virtio_queue_set_notification(VirtQueue
*vq
, int enable
)
204 vq
->notification
= enable
;
205 if (vq
->vdev
->guest_features
& (1 << VIRTIO_RING_F_EVENT_IDX
)) {
206 vring_avail_event(vq
, vring_avail_idx(vq
));
208 vring_used_flags_unset_bit(vq
, VRING_USED_F_NO_NOTIFY
);
210 vring_used_flags_set_bit(vq
, VRING_USED_F_NO_NOTIFY
);
213 /* Expose avail event/used flags before caller checks the avail idx. */
218 int virtio_queue_ready(VirtQueue
*vq
)
220 return vq
->vring
.avail
!= 0;
223 int virtio_queue_empty(VirtQueue
*vq
)
225 return vring_avail_idx(vq
) == vq
->last_avail_idx
;
228 void virtqueue_fill(VirtQueue
*vq
, const VirtQueueElement
*elem
,
229 unsigned int len
, unsigned int idx
)
234 trace_virtqueue_fill(vq
, elem
, len
, idx
);
237 for (i
= 0; i
< elem
->in_num
; i
++) {
238 size_t size
= MIN(len
- offset
, elem
->in_sg
[i
].iov_len
);
240 cpu_physical_memory_unmap(elem
->in_sg
[i
].iov_base
,
241 elem
->in_sg
[i
].iov_len
,
247 for (i
= 0; i
< elem
->out_num
; i
++)
248 cpu_physical_memory_unmap(elem
->out_sg
[i
].iov_base
,
249 elem
->out_sg
[i
].iov_len
,
250 0, elem
->out_sg
[i
].iov_len
);
252 idx
= (idx
+ vring_used_idx(vq
)) % vq
->vring
.num
;
254 /* Get a pointer to the next entry in the used ring. */
255 vring_used_ring_id(vq
, idx
, elem
->index
);
256 vring_used_ring_len(vq
, idx
, len
);
259 void virtqueue_flush(VirtQueue
*vq
, unsigned int count
)
262 /* Make sure buffer is written before we update index. */
264 trace_virtqueue_flush(vq
, count
);
265 old
= vring_used_idx(vq
);
267 vring_used_idx_set(vq
, new);
269 if (unlikely((int16_t)(new - vq
->signalled_used
) < (uint16_t)(new - old
)))
270 vq
->signalled_used_valid
= false;
273 void virtqueue_push(VirtQueue
*vq
, const VirtQueueElement
*elem
,
276 virtqueue_fill(vq
, elem
, len
, 0);
277 virtqueue_flush(vq
, 1);
280 static int virtqueue_num_heads(VirtQueue
*vq
, unsigned int idx
)
282 uint16_t num_heads
= vring_avail_idx(vq
) - idx
;
284 /* Check it isn't doing very strange things with descriptor numbers. */
285 if (num_heads
> vq
->vring
.num
) {
286 error_report("Guest moved used index from %u to %u",
287 idx
, vring_avail_idx(vq
));
290 /* On success, callers read a descriptor at vq->last_avail_idx.
291 * Make sure descriptor read does not bypass avail index read. */
299 static unsigned int virtqueue_get_head(VirtQueue
*vq
, unsigned int idx
)
303 /* Grab the next descriptor number they're advertising, and increment
304 * the index we've seen. */
305 head
= vring_avail_ring(vq
, idx
% vq
->vring
.num
);
307 /* If their number is silly, that's a fatal mistake. */
308 if (head
>= vq
->vring
.num
) {
309 error_report("Guest says index %u is available", head
);
316 static unsigned virtqueue_next_desc(target_phys_addr_t desc_pa
,
317 unsigned int i
, unsigned int max
)
321 /* If this descriptor says it doesn't chain, we're done. */
322 if (!(vring_desc_flags(desc_pa
, i
) & VRING_DESC_F_NEXT
))
325 /* Check they're not leading us off end of descriptors. */
326 next
= vring_desc_next(desc_pa
, i
);
327 /* Make sure compiler knows to grab that: we don't want it changing! */
331 error_report("Desc next is %u", next
);
338 void virtqueue_get_avail_bytes(VirtQueue
*vq
, unsigned int *in_bytes
,
339 unsigned int *out_bytes
)
342 unsigned int total_bufs
, in_total
, out_total
;
344 idx
= vq
->last_avail_idx
;
346 total_bufs
= in_total
= out_total
= 0;
347 while (virtqueue_num_heads(vq
, idx
)) {
348 unsigned int max
, num_bufs
, indirect
= 0;
349 target_phys_addr_t desc_pa
;
353 num_bufs
= total_bufs
;
354 i
= virtqueue_get_head(vq
, idx
++);
355 desc_pa
= vq
->vring
.desc
;
357 if (vring_desc_flags(desc_pa
, i
) & VRING_DESC_F_INDIRECT
) {
358 if (vring_desc_len(desc_pa
, i
) % sizeof(VRingDesc
)) {
359 error_report("Invalid size for indirect buffer table");
363 /* If we've got too many, that implies a descriptor loop. */
364 if (num_bufs
>= max
) {
365 error_report("Looped descriptor");
369 /* loop over the indirect descriptor table */
371 max
= vring_desc_len(desc_pa
, i
) / sizeof(VRingDesc
);
373 desc_pa
= vring_desc_addr(desc_pa
, i
);
377 /* If we've got too many, that implies a descriptor loop. */
378 if (++num_bufs
> max
) {
379 error_report("Looped descriptor");
383 if (vring_desc_flags(desc_pa
, i
) & VRING_DESC_F_WRITE
) {
384 in_total
+= vring_desc_len(desc_pa
, i
);
386 out_total
+= vring_desc_len(desc_pa
, i
);
388 } while ((i
= virtqueue_next_desc(desc_pa
, i
, max
)) != max
);
391 total_bufs
= num_bufs
;
396 *in_bytes
= in_total
;
399 *out_bytes
= out_total
;
403 int virtqueue_avail_bytes(VirtQueue
*vq
, unsigned int in_bytes
,
404 unsigned int out_bytes
)
406 unsigned int in_total
, out_total
;
408 virtqueue_get_avail_bytes(vq
, &in_total
, &out_total
);
409 if ((in_bytes
&& in_bytes
< in_total
)
410 || (out_bytes
&& out_bytes
< out_total
)) {
416 void virtqueue_map_sg(struct iovec
*sg
, target_phys_addr_t
*addr
,
417 size_t num_sg
, int is_write
)
420 target_phys_addr_t len
;
422 for (i
= 0; i
< num_sg
; i
++) {
424 sg
[i
].iov_base
= cpu_physical_memory_map(addr
[i
], &len
, is_write
);
425 if (sg
[i
].iov_base
== NULL
|| len
!= sg
[i
].iov_len
) {
426 error_report("virtio: trying to map MMIO memory");
432 int virtqueue_pop(VirtQueue
*vq
, VirtQueueElement
*elem
)
434 unsigned int i
, head
, max
;
435 target_phys_addr_t desc_pa
= vq
->vring
.desc
;
437 if (!virtqueue_num_heads(vq
, vq
->last_avail_idx
))
440 /* When we start there are none of either input nor output. */
441 elem
->out_num
= elem
->in_num
= 0;
445 i
= head
= virtqueue_get_head(vq
, vq
->last_avail_idx
++);
446 if (vq
->vdev
->guest_features
& (1 << VIRTIO_RING_F_EVENT_IDX
)) {
447 vring_avail_event(vq
, vring_avail_idx(vq
));
450 if (vring_desc_flags(desc_pa
, i
) & VRING_DESC_F_INDIRECT
) {
451 if (vring_desc_len(desc_pa
, i
) % sizeof(VRingDesc
)) {
452 error_report("Invalid size for indirect buffer table");
456 /* loop over the indirect descriptor table */
457 max
= vring_desc_len(desc_pa
, i
) / sizeof(VRingDesc
);
458 desc_pa
= vring_desc_addr(desc_pa
, i
);
462 /* Collect all the descriptors */
466 if (vring_desc_flags(desc_pa
, i
) & VRING_DESC_F_WRITE
) {
467 if (elem
->in_num
>= ARRAY_SIZE(elem
->in_sg
)) {
468 error_report("Too many write descriptors in indirect table");
471 elem
->in_addr
[elem
->in_num
] = vring_desc_addr(desc_pa
, i
);
472 sg
= &elem
->in_sg
[elem
->in_num
++];
474 if (elem
->out_num
>= ARRAY_SIZE(elem
->out_sg
)) {
475 error_report("Too many read descriptors in indirect table");
478 elem
->out_addr
[elem
->out_num
] = vring_desc_addr(desc_pa
, i
);
479 sg
= &elem
->out_sg
[elem
->out_num
++];
482 sg
->iov_len
= vring_desc_len(desc_pa
, i
);
484 /* If we've got too many, that implies a descriptor loop. */
485 if ((elem
->in_num
+ elem
->out_num
) > max
) {
486 error_report("Looped descriptor");
489 } while ((i
= virtqueue_next_desc(desc_pa
, i
, max
)) != max
);
491 /* Now map what we have collected */
492 virtqueue_map_sg(elem
->in_sg
, elem
->in_addr
, elem
->in_num
, 1);
493 virtqueue_map_sg(elem
->out_sg
, elem
->out_addr
, elem
->out_num
, 0);
499 trace_virtqueue_pop(vq
, elem
, elem
->in_num
, elem
->out_num
);
500 return elem
->in_num
+ elem
->out_num
;
504 static void virtio_notify_vector(VirtIODevice
*vdev
, uint16_t vector
)
506 if (vdev
->binding
->notify
) {
507 vdev
->binding
->notify(vdev
->binding_opaque
, vector
);
511 void virtio_update_irq(VirtIODevice
*vdev
)
513 virtio_notify_vector(vdev
, VIRTIO_NO_VECTOR
);
516 void virtio_set_status(VirtIODevice
*vdev
, uint8_t val
)
518 trace_virtio_set_status(vdev
, val
);
520 if (vdev
->set_status
) {
521 vdev
->set_status(vdev
, val
);
526 void virtio_reset(void *opaque
)
528 VirtIODevice
*vdev
= opaque
;
531 virtio_set_status(vdev
, 0);
536 vdev
->guest_features
= 0;
540 vdev
->config_vector
= VIRTIO_NO_VECTOR
;
541 virtio_notify_vector(vdev
, vdev
->config_vector
);
543 for(i
= 0; i
< VIRTIO_PCI_QUEUE_MAX
; i
++) {
544 vdev
->vq
[i
].vring
.desc
= 0;
545 vdev
->vq
[i
].vring
.avail
= 0;
546 vdev
->vq
[i
].vring
.used
= 0;
547 vdev
->vq
[i
].last_avail_idx
= 0;
549 vdev
->vq
[i
].vector
= VIRTIO_NO_VECTOR
;
550 vdev
->vq
[i
].signalled_used
= 0;
551 vdev
->vq
[i
].signalled_used_valid
= false;
552 vdev
->vq
[i
].notification
= true;
556 uint32_t virtio_config_readb(VirtIODevice
*vdev
, uint32_t addr
)
560 vdev
->get_config(vdev
, vdev
->config
);
562 if (addr
> (vdev
->config_len
- sizeof(val
)))
565 val
= ldub_p(vdev
->config
+ addr
);
569 uint32_t virtio_config_readw(VirtIODevice
*vdev
, uint32_t addr
)
573 vdev
->get_config(vdev
, vdev
->config
);
575 if (addr
> (vdev
->config_len
- sizeof(val
)))
578 val
= lduw_p(vdev
->config
+ addr
);
582 uint32_t virtio_config_readl(VirtIODevice
*vdev
, uint32_t addr
)
586 vdev
->get_config(vdev
, vdev
->config
);
588 if (addr
> (vdev
->config_len
- sizeof(val
)))
591 val
= ldl_p(vdev
->config
+ addr
);
595 void virtio_config_writeb(VirtIODevice
*vdev
, uint32_t addr
, uint32_t data
)
599 if (addr
> (vdev
->config_len
- sizeof(val
)))
602 stb_p(vdev
->config
+ addr
, val
);
604 if (vdev
->set_config
)
605 vdev
->set_config(vdev
, vdev
->config
);
608 void virtio_config_writew(VirtIODevice
*vdev
, uint32_t addr
, uint32_t data
)
612 if (addr
> (vdev
->config_len
- sizeof(val
)))
615 stw_p(vdev
->config
+ addr
, val
);
617 if (vdev
->set_config
)
618 vdev
->set_config(vdev
, vdev
->config
);
621 void virtio_config_writel(VirtIODevice
*vdev
, uint32_t addr
, uint32_t data
)
625 if (addr
> (vdev
->config_len
- sizeof(val
)))
628 stl_p(vdev
->config
+ addr
, val
);
630 if (vdev
->set_config
)
631 vdev
->set_config(vdev
, vdev
->config
);
634 void virtio_queue_set_addr(VirtIODevice
*vdev
, int n
, target_phys_addr_t addr
)
636 vdev
->vq
[n
].pa
= addr
;
637 virtqueue_init(&vdev
->vq
[n
]);
640 target_phys_addr_t
virtio_queue_get_addr(VirtIODevice
*vdev
, int n
)
642 return vdev
->vq
[n
].pa
;
645 int virtio_queue_get_num(VirtIODevice
*vdev
, int n
)
647 return vdev
->vq
[n
].vring
.num
;
650 int virtio_queue_get_id(VirtQueue
*vq
)
652 VirtIODevice
*vdev
= vq
->vdev
;
653 assert(vq
>= &vdev
->vq
[0] && vq
< &vdev
->vq
[VIRTIO_PCI_QUEUE_MAX
]);
654 return vq
- &vdev
->vq
[0];
657 void virtio_queue_notify_vq(VirtQueue
*vq
)
659 if (vq
->vring
.desc
) {
660 VirtIODevice
*vdev
= vq
->vdev
;
661 trace_virtio_queue_notify(vdev
, vq
- vdev
->vq
, vq
);
662 vq
->handle_output(vdev
, vq
);
666 void virtio_queue_notify(VirtIODevice
*vdev
, int n
)
668 virtio_queue_notify_vq(&vdev
->vq
[n
]);
671 uint16_t virtio_queue_vector(VirtIODevice
*vdev
, int n
)
673 return n
< VIRTIO_PCI_QUEUE_MAX
? vdev
->vq
[n
].vector
:
677 void virtio_queue_set_vector(VirtIODevice
*vdev
, int n
, uint16_t vector
)
679 if (n
< VIRTIO_PCI_QUEUE_MAX
)
680 vdev
->vq
[n
].vector
= vector
;
683 VirtQueue
*virtio_add_queue(VirtIODevice
*vdev
, int queue_size
,
684 void (*handle_output
)(VirtIODevice
*, VirtQueue
*))
688 for (i
= 0; i
< VIRTIO_PCI_QUEUE_MAX
; i
++) {
689 if (vdev
->vq
[i
].vring
.num
== 0)
693 if (i
== VIRTIO_PCI_QUEUE_MAX
|| queue_size
> VIRTQUEUE_MAX_SIZE
)
696 vdev
->vq
[i
].vring
.num
= queue_size
;
697 vdev
->vq
[i
].handle_output
= handle_output
;
702 void virtio_irq(VirtQueue
*vq
)
704 trace_virtio_irq(vq
);
705 vq
->vdev
->isr
|= 0x01;
706 virtio_notify_vector(vq
->vdev
, vq
->vector
);
709 /* Assuming a given event_idx value from the other size, if
710 * we have just incremented index from old to new_idx,
711 * should we trigger an event? */
712 static inline int vring_need_event(uint16_t event
, uint16_t new, uint16_t old
)
714 /* Note: Xen has similar logic for notification hold-off
715 * in include/xen/interface/io/ring.h with req_event and req_prod
716 * corresponding to event_idx + 1 and new respectively.
717 * Note also that req_event and req_prod in Xen start at 1,
718 * event indexes in virtio start at 0. */
719 return (uint16_t)(new - event
- 1) < (uint16_t)(new - old
);
722 static bool vring_notify(VirtIODevice
*vdev
, VirtQueue
*vq
)
726 /* We need to expose used array entries before checking used event. */
728 /* Always notify when queue is empty (when feature acknowledge) */
729 if (((vdev
->guest_features
& (1 << VIRTIO_F_NOTIFY_ON_EMPTY
)) &&
730 !vq
->inuse
&& vring_avail_idx(vq
) == vq
->last_avail_idx
)) {
734 if (!(vdev
->guest_features
& (1 << VIRTIO_RING_F_EVENT_IDX
))) {
735 return !(vring_avail_flags(vq
) & VRING_AVAIL_F_NO_INTERRUPT
);
738 v
= vq
->signalled_used_valid
;
739 vq
->signalled_used_valid
= true;
740 old
= vq
->signalled_used
;
741 new = vq
->signalled_used
= vring_used_idx(vq
);
742 return !v
|| vring_need_event(vring_used_event(vq
), new, old
);
745 void virtio_notify(VirtIODevice
*vdev
, VirtQueue
*vq
)
747 if (!vring_notify(vdev
, vq
)) {
751 trace_virtio_notify(vdev
, vq
);
753 virtio_notify_vector(vdev
, vq
->vector
);
756 void virtio_notify_config(VirtIODevice
*vdev
)
758 if (!(vdev
->status
& VIRTIO_CONFIG_S_DRIVER_OK
))
762 virtio_notify_vector(vdev
, vdev
->config_vector
);
765 void virtio_save(VirtIODevice
*vdev
, QEMUFile
*f
)
769 if (vdev
->binding
->save_config
)
770 vdev
->binding
->save_config(vdev
->binding_opaque
, f
);
772 qemu_put_8s(f
, &vdev
->status
);
773 qemu_put_8s(f
, &vdev
->isr
);
774 qemu_put_be16s(f
, &vdev
->queue_sel
);
775 qemu_put_be32s(f
, &vdev
->guest_features
);
776 qemu_put_be32(f
, vdev
->config_len
);
777 qemu_put_buffer(f
, vdev
->config
, vdev
->config_len
);
779 for (i
= 0; i
< VIRTIO_PCI_QUEUE_MAX
; i
++) {
780 if (vdev
->vq
[i
].vring
.num
== 0)
786 for (i
= 0; i
< VIRTIO_PCI_QUEUE_MAX
; i
++) {
787 if (vdev
->vq
[i
].vring
.num
== 0)
790 qemu_put_be32(f
, vdev
->vq
[i
].vring
.num
);
791 qemu_put_be64(f
, vdev
->vq
[i
].pa
);
792 qemu_put_be16s(f
, &vdev
->vq
[i
].last_avail_idx
);
793 if (vdev
->binding
->save_queue
)
794 vdev
->binding
->save_queue(vdev
->binding_opaque
, i
, f
);
798 int virtio_set_features(VirtIODevice
*vdev
, uint32_t val
)
800 uint32_t supported_features
=
801 vdev
->binding
->get_features(vdev
->binding_opaque
);
802 bool bad
= (val
& ~supported_features
) != 0;
804 val
&= supported_features
;
805 if (vdev
->set_features
) {
806 vdev
->set_features(vdev
, val
);
808 vdev
->guest_features
= val
;
812 int virtio_load(VirtIODevice
*vdev
, QEMUFile
*f
)
816 uint32_t supported_features
;
818 if (vdev
->binding
->load_config
) {
819 ret
= vdev
->binding
->load_config(vdev
->binding_opaque
, f
);
824 qemu_get_8s(f
, &vdev
->status
);
825 qemu_get_8s(f
, &vdev
->isr
);
826 qemu_get_be16s(f
, &vdev
->queue_sel
);
827 qemu_get_be32s(f
, &features
);
829 if (virtio_set_features(vdev
, features
) < 0) {
830 supported_features
= vdev
->binding
->get_features(vdev
->binding_opaque
);
831 error_report("Features 0x%x unsupported. Allowed features: 0x%x",
832 features
, supported_features
);
835 vdev
->config_len
= qemu_get_be32(f
);
836 qemu_get_buffer(f
, vdev
->config
, vdev
->config_len
);
838 num
= qemu_get_be32(f
);
840 for (i
= 0; i
< num
; i
++) {
841 vdev
->vq
[i
].vring
.num
= qemu_get_be32(f
);
842 vdev
->vq
[i
].pa
= qemu_get_be64(f
);
843 qemu_get_be16s(f
, &vdev
->vq
[i
].last_avail_idx
);
844 vdev
->vq
[i
].signalled_used_valid
= false;
845 vdev
->vq
[i
].notification
= true;
847 if (vdev
->vq
[i
].pa
) {
849 virtqueue_init(&vdev
->vq
[i
]);
850 nheads
= vring_avail_idx(&vdev
->vq
[i
]) - vdev
->vq
[i
].last_avail_idx
;
851 /* Check it isn't doing very strange things with descriptor numbers. */
852 if (nheads
> vdev
->vq
[i
].vring
.num
) {
853 error_report("VQ %d size 0x%x Guest index 0x%x "
854 "inconsistent with Host index 0x%x: delta 0x%x",
855 i
, vdev
->vq
[i
].vring
.num
,
856 vring_avail_idx(&vdev
->vq
[i
]),
857 vdev
->vq
[i
].last_avail_idx
, nheads
);
860 } else if (vdev
->vq
[i
].last_avail_idx
) {
861 error_report("VQ %d address 0x0 "
862 "inconsistent with Host index 0x%x",
863 i
, vdev
->vq
[i
].last_avail_idx
);
866 if (vdev
->binding
->load_queue
) {
867 ret
= vdev
->binding
->load_queue(vdev
->binding_opaque
, i
, f
);
873 virtio_notify_vector(vdev
, VIRTIO_NO_VECTOR
);
877 void virtio_cleanup(VirtIODevice
*vdev
)
879 qemu_del_vm_change_state_handler(vdev
->vmstate
);
880 g_free(vdev
->config
);
885 static void virtio_vmstate_change(void *opaque
, int running
, RunState state
)
887 VirtIODevice
*vdev
= opaque
;
888 bool backend_run
= running
&& (vdev
->status
& VIRTIO_CONFIG_S_DRIVER_OK
);
889 vdev
->vm_running
= running
;
892 virtio_set_status(vdev
, vdev
->status
);
895 if (vdev
->binding
->vmstate_change
) {
896 vdev
->binding
->vmstate_change(vdev
->binding_opaque
, backend_run
);
900 virtio_set_status(vdev
, vdev
->status
);
904 VirtIODevice
*virtio_common_init(const char *name
, uint16_t device_id
,
905 size_t config_size
, size_t struct_size
)
910 vdev
= g_malloc0(struct_size
);
912 vdev
->device_id
= device_id
;
916 vdev
->config_vector
= VIRTIO_NO_VECTOR
;
917 vdev
->vq
= g_malloc0(sizeof(VirtQueue
) * VIRTIO_PCI_QUEUE_MAX
);
918 vdev
->vm_running
= runstate_is_running();
919 for(i
= 0; i
< VIRTIO_PCI_QUEUE_MAX
; i
++) {
920 vdev
->vq
[i
].vector
= VIRTIO_NO_VECTOR
;
921 vdev
->vq
[i
].vdev
= vdev
;
925 vdev
->config_len
= config_size
;
926 if (vdev
->config_len
)
927 vdev
->config
= g_malloc0(config_size
);
931 vdev
->vmstate
= qemu_add_vm_change_state_handler(virtio_vmstate_change
, vdev
);
936 void virtio_bind_device(VirtIODevice
*vdev
, const VirtIOBindings
*binding
,
939 vdev
->binding
= binding
;
940 vdev
->binding_opaque
= opaque
;
943 target_phys_addr_t
virtio_queue_get_desc_addr(VirtIODevice
*vdev
, int n
)
945 return vdev
->vq
[n
].vring
.desc
;
948 target_phys_addr_t
virtio_queue_get_avail_addr(VirtIODevice
*vdev
, int n
)
950 return vdev
->vq
[n
].vring
.avail
;
953 target_phys_addr_t
virtio_queue_get_used_addr(VirtIODevice
*vdev
, int n
)
955 return vdev
->vq
[n
].vring
.used
;
958 target_phys_addr_t
virtio_queue_get_ring_addr(VirtIODevice
*vdev
, int n
)
960 return vdev
->vq
[n
].vring
.desc
;
963 target_phys_addr_t
virtio_queue_get_desc_size(VirtIODevice
*vdev
, int n
)
965 return sizeof(VRingDesc
) * vdev
->vq
[n
].vring
.num
;
968 target_phys_addr_t
virtio_queue_get_avail_size(VirtIODevice
*vdev
, int n
)
970 return offsetof(VRingAvail
, ring
) +
971 sizeof(uint64_t) * vdev
->vq
[n
].vring
.num
;
974 target_phys_addr_t
virtio_queue_get_used_size(VirtIODevice
*vdev
, int n
)
976 return offsetof(VRingUsed
, ring
) +
977 sizeof(VRingUsedElem
) * vdev
->vq
[n
].vring
.num
;
980 target_phys_addr_t
virtio_queue_get_ring_size(VirtIODevice
*vdev
, int n
)
982 return vdev
->vq
[n
].vring
.used
- vdev
->vq
[n
].vring
.desc
+
983 virtio_queue_get_used_size(vdev
, n
);
986 uint16_t virtio_queue_get_last_avail_idx(VirtIODevice
*vdev
, int n
)
988 return vdev
->vq
[n
].last_avail_idx
;
991 void virtio_queue_set_last_avail_idx(VirtIODevice
*vdev
, int n
, uint16_t idx
)
993 vdev
->vq
[n
].last_avail_idx
= idx
;
996 VirtQueue
*virtio_get_queue(VirtIODevice
*vdev
, int n
)
1001 static void virtio_queue_guest_notifier_read(EventNotifier
*n
)
1003 VirtQueue
*vq
= container_of(n
, VirtQueue
, guest_notifier
);
1004 if (event_notifier_test_and_clear(n
)) {
1009 void virtio_queue_set_guest_notifier_fd_handler(VirtQueue
*vq
, bool assign
,
1012 if (assign
&& !with_irqfd
) {
1013 event_notifier_set_handler(&vq
->guest_notifier
,
1014 virtio_queue_guest_notifier_read
);
1016 event_notifier_set_handler(&vq
->guest_notifier
, NULL
);
1019 /* Test and clear notifier before closing it,
1020 * in case poll callback didn't have time to run. */
1021 virtio_queue_guest_notifier_read(&vq
->guest_notifier
);
1025 EventNotifier
*virtio_queue_get_guest_notifier(VirtQueue
*vq
)
1027 return &vq
->guest_notifier
;
1030 static void virtio_queue_host_notifier_read(EventNotifier
*n
)
1032 VirtQueue
*vq
= container_of(n
, VirtQueue
, host_notifier
);
1033 if (event_notifier_test_and_clear(n
)) {
1034 virtio_queue_notify_vq(vq
);
1038 void virtio_queue_set_host_notifier_fd_handler(VirtQueue
*vq
, bool assign
,
1041 if (assign
&& set_handler
) {
1042 event_notifier_set_handler(&vq
->host_notifier
,
1043 virtio_queue_host_notifier_read
);
1045 event_notifier_set_handler(&vq
->host_notifier
, NULL
);
1048 /* Test and clear notifier before after disabling event,
1049 * in case poll callback didn't have time to run. */
1050 virtio_queue_host_notifier_read(&vq
->host_notifier
);
1054 EventNotifier
*virtio_queue_get_host_notifier(VirtQueue
*vq
)
1056 return &vq
->host_notifier
;