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 "exec/address-spaces.h"
18 #include "qemu/error-report.h"
19 #include "hw/virtio/virtio.h"
20 #include "qemu/atomic.h"
21 #include "hw/virtio/virtio-bus.h"
22 #include "migration/migration.h"
23 #include "hw/virtio/virtio-access.h"
26 * The alignment to use between consumer and producer parts of vring.
27 * x86 pagesize again. This is the default, used by transports like PCI
28 * which don't provide a means for the guest to tell the host the alignment.
30 #define VIRTIO_PCI_VRING_ALIGN 4096
32 typedef struct VRingDesc
40 typedef struct VRingAvail
47 typedef struct VRingUsedElem
53 typedef struct VRingUsed
57 VRingUsedElem ring
[0];
63 unsigned int num_default
;
73 uint16_t last_avail_idx
;
74 /* Last used index value we have signalled on */
75 uint16_t signalled_used
;
77 /* Last used index value we have signalled on */
78 bool signalled_used_valid
;
80 /* Notification enabled? */
88 void (*handle_output
)(VirtIODevice
*vdev
, VirtQueue
*vq
);
90 EventNotifier guest_notifier
;
91 EventNotifier host_notifier
;
92 QLIST_ENTRY(VirtQueue
) node
;
95 /* virt queue functions */
96 void virtio_queue_update_rings(VirtIODevice
*vdev
, int n
)
98 VRing
*vring
= &vdev
->vq
[n
].vring
;
101 /* not yet setup -> nothing to do */
104 vring
->avail
= vring
->desc
+ vring
->num
* sizeof(VRingDesc
);
105 vring
->used
= vring_align(vring
->avail
+
106 offsetof(VRingAvail
, ring
[vring
->num
]),
110 static inline uint64_t vring_desc_addr(VirtIODevice
*vdev
, hwaddr desc_pa
,
114 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, addr
);
115 return virtio_ldq_phys(vdev
, pa
);
118 static inline uint32_t vring_desc_len(VirtIODevice
*vdev
, hwaddr desc_pa
, int i
)
121 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, len
);
122 return virtio_ldl_phys(vdev
, pa
);
125 static inline uint16_t vring_desc_flags(VirtIODevice
*vdev
, hwaddr desc_pa
,
129 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, flags
);
130 return virtio_lduw_phys(vdev
, pa
);
133 static inline uint16_t vring_desc_next(VirtIODevice
*vdev
, hwaddr desc_pa
,
137 pa
= desc_pa
+ sizeof(VRingDesc
) * i
+ offsetof(VRingDesc
, next
);
138 return virtio_lduw_phys(vdev
, pa
);
141 static inline uint16_t vring_avail_flags(VirtQueue
*vq
)
144 pa
= vq
->vring
.avail
+ offsetof(VRingAvail
, flags
);
145 return virtio_lduw_phys(vq
->vdev
, pa
);
148 static inline uint16_t vring_avail_idx(VirtQueue
*vq
)
151 pa
= vq
->vring
.avail
+ offsetof(VRingAvail
, idx
);
152 return virtio_lduw_phys(vq
->vdev
, pa
);
155 static inline uint16_t vring_avail_ring(VirtQueue
*vq
, int i
)
158 pa
= vq
->vring
.avail
+ offsetof(VRingAvail
, ring
[i
]);
159 return virtio_lduw_phys(vq
->vdev
, pa
);
162 static inline uint16_t vring_get_used_event(VirtQueue
*vq
)
164 return vring_avail_ring(vq
, vq
->vring
.num
);
167 static inline void vring_used_ring_id(VirtQueue
*vq
, int i
, uint32_t val
)
170 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, ring
[i
].id
);
171 virtio_stl_phys(vq
->vdev
, pa
, val
);
174 static inline void vring_used_ring_len(VirtQueue
*vq
, int i
, uint32_t val
)
177 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, ring
[i
].len
);
178 virtio_stl_phys(vq
->vdev
, pa
, val
);
181 static uint16_t vring_used_idx(VirtQueue
*vq
)
184 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, idx
);
185 return virtio_lduw_phys(vq
->vdev
, pa
);
188 static inline void vring_used_idx_set(VirtQueue
*vq
, uint16_t val
)
191 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, idx
);
192 virtio_stw_phys(vq
->vdev
, pa
, val
);
195 static inline void vring_used_flags_set_bit(VirtQueue
*vq
, int mask
)
197 VirtIODevice
*vdev
= vq
->vdev
;
199 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, flags
);
200 virtio_stw_phys(vdev
, pa
, virtio_lduw_phys(vdev
, pa
) | mask
);
203 static inline void vring_used_flags_unset_bit(VirtQueue
*vq
, int mask
)
205 VirtIODevice
*vdev
= vq
->vdev
;
207 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, flags
);
208 virtio_stw_phys(vdev
, pa
, virtio_lduw_phys(vdev
, pa
) & ~mask
);
211 static inline void vring_set_avail_event(VirtQueue
*vq
, uint16_t val
)
214 if (!vq
->notification
) {
217 pa
= vq
->vring
.used
+ offsetof(VRingUsed
, ring
[vq
->vring
.num
]);
218 virtio_stw_phys(vq
->vdev
, pa
, val
);
221 void virtio_queue_set_notification(VirtQueue
*vq
, int enable
)
223 vq
->notification
= enable
;
224 if (virtio_vdev_has_feature(vq
->vdev
, VIRTIO_RING_F_EVENT_IDX
)) {
225 vring_set_avail_event(vq
, vring_avail_idx(vq
));
227 vring_used_flags_unset_bit(vq
, VRING_USED_F_NO_NOTIFY
);
229 vring_used_flags_set_bit(vq
, VRING_USED_F_NO_NOTIFY
);
232 /* Expose avail event/used flags before caller checks the avail idx. */
237 int virtio_queue_ready(VirtQueue
*vq
)
239 return vq
->vring
.avail
!= 0;
242 int virtio_queue_empty(VirtQueue
*vq
)
244 return vring_avail_idx(vq
) == vq
->last_avail_idx
;
247 static void virtqueue_unmap_sg(VirtQueue
*vq
, const VirtQueueElement
*elem
,
254 for (i
= 0; i
< elem
->in_num
; i
++) {
255 size_t size
= MIN(len
- offset
, elem
->in_sg
[i
].iov_len
);
257 cpu_physical_memory_unmap(elem
->in_sg
[i
].iov_base
,
258 elem
->in_sg
[i
].iov_len
,
264 for (i
= 0; i
< elem
->out_num
; i
++)
265 cpu_physical_memory_unmap(elem
->out_sg
[i
].iov_base
,
266 elem
->out_sg
[i
].iov_len
,
267 0, elem
->out_sg
[i
].iov_len
);
270 void virtqueue_discard(VirtQueue
*vq
, const VirtQueueElement
*elem
,
273 vq
->last_avail_idx
--;
274 virtqueue_unmap_sg(vq
, elem
, len
);
277 void virtqueue_fill(VirtQueue
*vq
, const VirtQueueElement
*elem
,
278 unsigned int len
, unsigned int idx
)
280 trace_virtqueue_fill(vq
, elem
, len
, idx
);
282 virtqueue_unmap_sg(vq
, elem
, len
);
284 idx
= (idx
+ vring_used_idx(vq
)) % vq
->vring
.num
;
286 /* Get a pointer to the next entry in the used ring. */
287 vring_used_ring_id(vq
, idx
, elem
->index
);
288 vring_used_ring_len(vq
, idx
, len
);
291 void virtqueue_flush(VirtQueue
*vq
, unsigned int count
)
294 /* Make sure buffer is written before we update index. */
296 trace_virtqueue_flush(vq
, count
);
297 old
= vring_used_idx(vq
);
299 vring_used_idx_set(vq
, new);
301 if (unlikely((int16_t)(new - vq
->signalled_used
) < (uint16_t)(new - old
)))
302 vq
->signalled_used_valid
= false;
305 void virtqueue_push(VirtQueue
*vq
, const VirtQueueElement
*elem
,
308 virtqueue_fill(vq
, elem
, len
, 0);
309 virtqueue_flush(vq
, 1);
312 static int virtqueue_num_heads(VirtQueue
*vq
, unsigned int idx
)
314 uint16_t num_heads
= vring_avail_idx(vq
) - idx
;
316 /* Check it isn't doing very strange things with descriptor numbers. */
317 if (num_heads
> vq
->vring
.num
) {
318 error_report("Guest moved used index from %u to %u",
319 idx
, vring_avail_idx(vq
));
322 /* On success, callers read a descriptor at vq->last_avail_idx.
323 * Make sure descriptor read does not bypass avail index read. */
331 static unsigned int virtqueue_get_head(VirtQueue
*vq
, unsigned int idx
)
335 /* Grab the next descriptor number they're advertising, and increment
336 * the index we've seen. */
337 head
= vring_avail_ring(vq
, idx
% vq
->vring
.num
);
339 /* If their number is silly, that's a fatal mistake. */
340 if (head
>= vq
->vring
.num
) {
341 error_report("Guest says index %u is available", head
);
348 static unsigned virtqueue_next_desc(VirtIODevice
*vdev
, hwaddr desc_pa
,
349 unsigned int i
, unsigned int max
)
353 /* If this descriptor says it doesn't chain, we're done. */
354 if (!(vring_desc_flags(vdev
, desc_pa
, i
) & VRING_DESC_F_NEXT
)) {
358 /* Check they're not leading us off end of descriptors. */
359 next
= vring_desc_next(vdev
, desc_pa
, i
);
360 /* Make sure compiler knows to grab that: we don't want it changing! */
364 error_report("Desc next is %u", next
);
371 void virtqueue_get_avail_bytes(VirtQueue
*vq
, unsigned int *in_bytes
,
372 unsigned int *out_bytes
,
373 unsigned max_in_bytes
, unsigned max_out_bytes
)
376 unsigned int total_bufs
, in_total
, out_total
;
378 idx
= vq
->last_avail_idx
;
380 total_bufs
= in_total
= out_total
= 0;
381 while (virtqueue_num_heads(vq
, idx
)) {
382 VirtIODevice
*vdev
= vq
->vdev
;
383 unsigned int max
, num_bufs
, indirect
= 0;
388 num_bufs
= total_bufs
;
389 i
= virtqueue_get_head(vq
, idx
++);
390 desc_pa
= vq
->vring
.desc
;
392 if (vring_desc_flags(vdev
, desc_pa
, i
) & VRING_DESC_F_INDIRECT
) {
393 if (vring_desc_len(vdev
, desc_pa
, i
) % sizeof(VRingDesc
)) {
394 error_report("Invalid size for indirect buffer table");
398 /* If we've got too many, that implies a descriptor loop. */
399 if (num_bufs
>= max
) {
400 error_report("Looped descriptor");
404 /* loop over the indirect descriptor table */
406 max
= vring_desc_len(vdev
, desc_pa
, i
) / sizeof(VRingDesc
);
407 desc_pa
= vring_desc_addr(vdev
, desc_pa
, i
);
412 /* If we've got too many, that implies a descriptor loop. */
413 if (++num_bufs
> max
) {
414 error_report("Looped descriptor");
418 if (vring_desc_flags(vdev
, desc_pa
, i
) & VRING_DESC_F_WRITE
) {
419 in_total
+= vring_desc_len(vdev
, desc_pa
, i
);
421 out_total
+= vring_desc_len(vdev
, desc_pa
, i
);
423 if (in_total
>= max_in_bytes
&& out_total
>= max_out_bytes
) {
426 } while ((i
= virtqueue_next_desc(vdev
, desc_pa
, i
, max
)) != max
);
429 total_bufs
= num_bufs
;
435 *in_bytes
= in_total
;
438 *out_bytes
= out_total
;
442 int virtqueue_avail_bytes(VirtQueue
*vq
, unsigned int in_bytes
,
443 unsigned int out_bytes
)
445 unsigned int in_total
, out_total
;
447 virtqueue_get_avail_bytes(vq
, &in_total
, &out_total
, in_bytes
, out_bytes
);
448 return in_bytes
<= in_total
&& out_bytes
<= out_total
;
451 static void virtqueue_map_iovec(struct iovec
*sg
, hwaddr
*addr
,
452 unsigned int *num_sg
, unsigned int max_size
,
458 /* Note: this function MUST validate input, some callers
459 * are passing in num_sg values received over the network.
461 /* TODO: teach all callers that this can fail, and return failure instead
463 * When we do, we might be able to re-enable NDEBUG below.
466 #error building with NDEBUG is not supported
468 assert(*num_sg
<= max_size
);
470 for (i
= 0; i
< *num_sg
; i
++) {
472 sg
[i
].iov_base
= cpu_physical_memory_map(addr
[i
], &len
, is_write
);
473 if (!sg
[i
].iov_base
) {
474 error_report("virtio: error trying to map MMIO memory");
477 if (len
== sg
[i
].iov_len
) {
480 if (*num_sg
>= max_size
) {
481 error_report("virtio: memory split makes iovec too large");
484 memmove(sg
+ i
+ 1, sg
+ i
, sizeof(*sg
) * (*num_sg
- i
));
485 memmove(addr
+ i
+ 1, addr
+ i
, sizeof(*addr
) * (*num_sg
- i
));
486 assert(len
< sg
[i
+ 1].iov_len
);
489 sg
[i
+ 1].iov_len
-= len
;
494 void virtqueue_map(VirtQueueElement
*elem
)
496 virtqueue_map_iovec(elem
->in_sg
, elem
->in_addr
, &elem
->in_num
,
497 MIN(ARRAY_SIZE(elem
->in_sg
), ARRAY_SIZE(elem
->in_addr
)),
499 virtqueue_map_iovec(elem
->out_sg
, elem
->out_addr
, &elem
->out_num
,
500 MIN(ARRAY_SIZE(elem
->out_sg
), ARRAY_SIZE(elem
->out_addr
)),
504 int virtqueue_pop(VirtQueue
*vq
, VirtQueueElement
*elem
)
506 unsigned int i
, head
, max
;
507 hwaddr desc_pa
= vq
->vring
.desc
;
508 VirtIODevice
*vdev
= vq
->vdev
;
510 if (!virtqueue_num_heads(vq
, vq
->last_avail_idx
))
513 /* When we start there are none of either input nor output. */
514 elem
->out_num
= elem
->in_num
= 0;
518 i
= head
= virtqueue_get_head(vq
, vq
->last_avail_idx
++);
519 if (virtio_vdev_has_feature(vdev
, VIRTIO_RING_F_EVENT_IDX
)) {
520 vring_set_avail_event(vq
, vq
->last_avail_idx
);
523 if (vring_desc_flags(vdev
, desc_pa
, i
) & VRING_DESC_F_INDIRECT
) {
524 if (vring_desc_len(vdev
, desc_pa
, i
) % sizeof(VRingDesc
)) {
525 error_report("Invalid size for indirect buffer table");
529 /* loop over the indirect descriptor table */
530 max
= vring_desc_len(vdev
, desc_pa
, i
) / sizeof(VRingDesc
);
531 desc_pa
= vring_desc_addr(vdev
, desc_pa
, i
);
535 /* Collect all the descriptors */
539 if (vring_desc_flags(vdev
, desc_pa
, i
) & VRING_DESC_F_WRITE
) {
540 if (elem
->in_num
>= ARRAY_SIZE(elem
->in_sg
)) {
541 error_report("Too many write descriptors in indirect table");
544 elem
->in_addr
[elem
->in_num
] = vring_desc_addr(vdev
, desc_pa
, i
);
545 sg
= &elem
->in_sg
[elem
->in_num
++];
547 if (elem
->out_num
>= ARRAY_SIZE(elem
->out_sg
)) {
548 error_report("Too many read descriptors in indirect table");
551 elem
->out_addr
[elem
->out_num
] = vring_desc_addr(vdev
, desc_pa
, i
);
552 sg
= &elem
->out_sg
[elem
->out_num
++];
555 sg
->iov_len
= vring_desc_len(vdev
, desc_pa
, i
);
557 /* If we've got too many, that implies a descriptor loop. */
558 if ((elem
->in_num
+ elem
->out_num
) > max
) {
559 error_report("Looped descriptor");
562 } while ((i
= virtqueue_next_desc(vdev
, desc_pa
, i
, max
)) != max
);
564 /* Now map what we have collected */
571 trace_virtqueue_pop(vq
, elem
, elem
->in_num
, elem
->out_num
);
572 return elem
->in_num
+ elem
->out_num
;
576 static void virtio_notify_vector(VirtIODevice
*vdev
, uint16_t vector
)
578 BusState
*qbus
= qdev_get_parent_bus(DEVICE(vdev
));
579 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
582 k
->notify(qbus
->parent
, vector
);
586 void virtio_update_irq(VirtIODevice
*vdev
)
588 virtio_notify_vector(vdev
, VIRTIO_NO_VECTOR
);
591 static int virtio_validate_features(VirtIODevice
*vdev
)
593 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
595 if (k
->validate_features
) {
596 return k
->validate_features(vdev
);
602 int virtio_set_status(VirtIODevice
*vdev
, uint8_t val
)
604 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
605 trace_virtio_set_status(vdev
, val
);
607 if (virtio_vdev_has_feature(vdev
, VIRTIO_F_VERSION_1
)) {
608 if (!(vdev
->status
& VIRTIO_CONFIG_S_FEATURES_OK
) &&
609 val
& VIRTIO_CONFIG_S_FEATURES_OK
) {
610 int ret
= virtio_validate_features(vdev
);
618 k
->set_status(vdev
, val
);
624 bool target_words_bigendian(void);
625 static enum virtio_device_endian
virtio_default_endian(void)
627 if (target_words_bigendian()) {
628 return VIRTIO_DEVICE_ENDIAN_BIG
;
630 return VIRTIO_DEVICE_ENDIAN_LITTLE
;
634 static enum virtio_device_endian
virtio_current_cpu_endian(void)
636 CPUClass
*cc
= CPU_GET_CLASS(current_cpu
);
638 if (cc
->virtio_is_big_endian(current_cpu
)) {
639 return VIRTIO_DEVICE_ENDIAN_BIG
;
641 return VIRTIO_DEVICE_ENDIAN_LITTLE
;
645 void virtio_reset(void *opaque
)
647 VirtIODevice
*vdev
= opaque
;
648 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
651 virtio_set_status(vdev
, 0);
653 /* Guest initiated reset */
654 vdev
->device_endian
= virtio_current_cpu_endian();
657 vdev
->device_endian
= virtio_default_endian();
664 vdev
->guest_features
= 0;
668 vdev
->config_vector
= VIRTIO_NO_VECTOR
;
669 virtio_notify_vector(vdev
, vdev
->config_vector
);
671 for(i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
672 vdev
->vq
[i
].vring
.desc
= 0;
673 vdev
->vq
[i
].vring
.avail
= 0;
674 vdev
->vq
[i
].vring
.used
= 0;
675 vdev
->vq
[i
].last_avail_idx
= 0;
676 virtio_queue_set_vector(vdev
, i
, VIRTIO_NO_VECTOR
);
677 vdev
->vq
[i
].signalled_used
= 0;
678 vdev
->vq
[i
].signalled_used_valid
= false;
679 vdev
->vq
[i
].notification
= true;
680 vdev
->vq
[i
].vring
.num
= vdev
->vq
[i
].vring
.num_default
;
684 uint32_t virtio_config_readb(VirtIODevice
*vdev
, uint32_t addr
)
686 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
689 if (addr
+ sizeof(val
) > vdev
->config_len
) {
693 k
->get_config(vdev
, vdev
->config
);
695 val
= ldub_p(vdev
->config
+ addr
);
699 uint32_t virtio_config_readw(VirtIODevice
*vdev
, uint32_t addr
)
701 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
704 if (addr
+ sizeof(val
) > vdev
->config_len
) {
708 k
->get_config(vdev
, vdev
->config
);
710 val
= lduw_p(vdev
->config
+ addr
);
714 uint32_t virtio_config_readl(VirtIODevice
*vdev
, uint32_t addr
)
716 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
719 if (addr
+ sizeof(val
) > vdev
->config_len
) {
723 k
->get_config(vdev
, vdev
->config
);
725 val
= ldl_p(vdev
->config
+ addr
);
729 void virtio_config_writeb(VirtIODevice
*vdev
, uint32_t addr
, uint32_t data
)
731 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
734 if (addr
+ sizeof(val
) > vdev
->config_len
) {
738 stb_p(vdev
->config
+ addr
, val
);
741 k
->set_config(vdev
, vdev
->config
);
745 void virtio_config_writew(VirtIODevice
*vdev
, uint32_t addr
, uint32_t data
)
747 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
750 if (addr
+ sizeof(val
) > vdev
->config_len
) {
754 stw_p(vdev
->config
+ addr
, val
);
757 k
->set_config(vdev
, vdev
->config
);
761 void virtio_config_writel(VirtIODevice
*vdev
, uint32_t addr
, uint32_t data
)
763 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
766 if (addr
+ sizeof(val
) > vdev
->config_len
) {
770 stl_p(vdev
->config
+ addr
, val
);
773 k
->set_config(vdev
, vdev
->config
);
777 uint32_t virtio_config_modern_readb(VirtIODevice
*vdev
, uint32_t addr
)
779 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
782 if (addr
+ sizeof(val
) > vdev
->config_len
) {
786 k
->get_config(vdev
, vdev
->config
);
788 val
= ldub_p(vdev
->config
+ addr
);
792 uint32_t virtio_config_modern_readw(VirtIODevice
*vdev
, uint32_t addr
)
794 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
797 if (addr
+ sizeof(val
) > vdev
->config_len
) {
801 k
->get_config(vdev
, vdev
->config
);
803 val
= lduw_le_p(vdev
->config
+ addr
);
807 uint32_t virtio_config_modern_readl(VirtIODevice
*vdev
, uint32_t addr
)
809 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
812 if (addr
+ sizeof(val
) > vdev
->config_len
) {
816 k
->get_config(vdev
, vdev
->config
);
818 val
= ldl_le_p(vdev
->config
+ addr
);
822 void virtio_config_modern_writeb(VirtIODevice
*vdev
,
823 uint32_t addr
, uint32_t data
)
825 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
828 if (addr
+ sizeof(val
) > vdev
->config_len
) {
832 stb_p(vdev
->config
+ addr
, val
);
835 k
->set_config(vdev
, vdev
->config
);
839 void virtio_config_modern_writew(VirtIODevice
*vdev
,
840 uint32_t addr
, uint32_t data
)
842 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
845 if (addr
+ sizeof(val
) > vdev
->config_len
) {
849 stw_le_p(vdev
->config
+ addr
, val
);
852 k
->set_config(vdev
, vdev
->config
);
856 void virtio_config_modern_writel(VirtIODevice
*vdev
,
857 uint32_t addr
, uint32_t data
)
859 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
862 if (addr
+ sizeof(val
) > vdev
->config_len
) {
866 stl_le_p(vdev
->config
+ addr
, val
);
869 k
->set_config(vdev
, vdev
->config
);
873 void virtio_queue_set_addr(VirtIODevice
*vdev
, int n
, hwaddr addr
)
875 vdev
->vq
[n
].vring
.desc
= addr
;
876 virtio_queue_update_rings(vdev
, n
);
879 hwaddr
virtio_queue_get_addr(VirtIODevice
*vdev
, int n
)
881 return vdev
->vq
[n
].vring
.desc
;
884 void virtio_queue_set_rings(VirtIODevice
*vdev
, int n
, hwaddr desc
,
885 hwaddr avail
, hwaddr used
)
887 vdev
->vq
[n
].vring
.desc
= desc
;
888 vdev
->vq
[n
].vring
.avail
= avail
;
889 vdev
->vq
[n
].vring
.used
= used
;
892 void virtio_queue_set_num(VirtIODevice
*vdev
, int n
, int num
)
894 /* Don't allow guest to flip queue between existent and
895 * nonexistent states, or to set it to an invalid size.
897 if (!!num
!= !!vdev
->vq
[n
].vring
.num
||
898 num
> VIRTQUEUE_MAX_SIZE
||
902 vdev
->vq
[n
].vring
.num
= num
;
905 VirtQueue
*virtio_vector_first_queue(VirtIODevice
*vdev
, uint16_t vector
)
907 return QLIST_FIRST(&vdev
->vector_queues
[vector
]);
910 VirtQueue
*virtio_vector_next_queue(VirtQueue
*vq
)
912 return QLIST_NEXT(vq
, node
);
915 int virtio_queue_get_num(VirtIODevice
*vdev
, int n
)
917 return vdev
->vq
[n
].vring
.num
;
920 int virtio_get_num_queues(VirtIODevice
*vdev
)
924 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
925 if (!virtio_queue_get_num(vdev
, i
)) {
933 int virtio_queue_get_id(VirtQueue
*vq
)
935 VirtIODevice
*vdev
= vq
->vdev
;
936 assert(vq
>= &vdev
->vq
[0] && vq
< &vdev
->vq
[VIRTIO_QUEUE_MAX
]);
937 return vq
- &vdev
->vq
[0];
940 void virtio_queue_set_align(VirtIODevice
*vdev
, int n
, int align
)
942 BusState
*qbus
= qdev_get_parent_bus(DEVICE(vdev
));
943 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
945 /* virtio-1 compliant devices cannot change the alignment */
946 if (virtio_vdev_has_feature(vdev
, VIRTIO_F_VERSION_1
)) {
947 error_report("tried to modify queue alignment for virtio-1 device");
950 /* Check that the transport told us it was going to do this
951 * (so a buggy transport will immediately assert rather than
952 * silently failing to migrate this state)
954 assert(k
->has_variable_vring_alignment
);
956 vdev
->vq
[n
].vring
.align
= align
;
957 virtio_queue_update_rings(vdev
, n
);
960 void virtio_queue_notify_vq(VirtQueue
*vq
)
962 if (vq
->vring
.desc
&& vq
->handle_output
) {
963 VirtIODevice
*vdev
= vq
->vdev
;
965 trace_virtio_queue_notify(vdev
, vq
- vdev
->vq
, vq
);
966 vq
->handle_output(vdev
, vq
);
970 void virtio_queue_notify(VirtIODevice
*vdev
, int n
)
972 virtio_queue_notify_vq(&vdev
->vq
[n
]);
975 uint16_t virtio_queue_vector(VirtIODevice
*vdev
, int n
)
977 return n
< VIRTIO_QUEUE_MAX
? vdev
->vq
[n
].vector
:
981 void virtio_queue_set_vector(VirtIODevice
*vdev
, int n
, uint16_t vector
)
983 VirtQueue
*vq
= &vdev
->vq
[n
];
985 if (n
< VIRTIO_QUEUE_MAX
) {
986 if (vdev
->vector_queues
&&
987 vdev
->vq
[n
].vector
!= VIRTIO_NO_VECTOR
) {
988 QLIST_REMOVE(vq
, node
);
990 vdev
->vq
[n
].vector
= vector
;
991 if (vdev
->vector_queues
&&
992 vector
!= VIRTIO_NO_VECTOR
) {
993 QLIST_INSERT_HEAD(&vdev
->vector_queues
[vector
], vq
, node
);
998 VirtQueue
*virtio_add_queue(VirtIODevice
*vdev
, int queue_size
,
999 void (*handle_output
)(VirtIODevice
*, VirtQueue
*))
1003 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1004 if (vdev
->vq
[i
].vring
.num
== 0)
1008 if (i
== VIRTIO_QUEUE_MAX
|| queue_size
> VIRTQUEUE_MAX_SIZE
)
1011 vdev
->vq
[i
].vring
.num
= queue_size
;
1012 vdev
->vq
[i
].vring
.num_default
= queue_size
;
1013 vdev
->vq
[i
].vring
.align
= VIRTIO_PCI_VRING_ALIGN
;
1014 vdev
->vq
[i
].handle_output
= handle_output
;
1016 return &vdev
->vq
[i
];
1019 void virtio_del_queue(VirtIODevice
*vdev
, int n
)
1021 if (n
< 0 || n
>= VIRTIO_QUEUE_MAX
) {
1025 vdev
->vq
[n
].vring
.num
= 0;
1026 vdev
->vq
[n
].vring
.num_default
= 0;
1029 void virtio_irq(VirtQueue
*vq
)
1031 trace_virtio_irq(vq
);
1032 vq
->vdev
->isr
|= 0x01;
1033 virtio_notify_vector(vq
->vdev
, vq
->vector
);
1036 static bool vring_notify(VirtIODevice
*vdev
, VirtQueue
*vq
)
1040 /* We need to expose used array entries before checking used event. */
1042 /* Always notify when queue is empty (when feature acknowledge) */
1043 if (virtio_vdev_has_feature(vdev
, VIRTIO_F_NOTIFY_ON_EMPTY
) &&
1044 !vq
->inuse
&& vring_avail_idx(vq
) == vq
->last_avail_idx
) {
1048 if (!virtio_vdev_has_feature(vdev
, VIRTIO_RING_F_EVENT_IDX
)) {
1049 return !(vring_avail_flags(vq
) & VRING_AVAIL_F_NO_INTERRUPT
);
1052 v
= vq
->signalled_used_valid
;
1053 vq
->signalled_used_valid
= true;
1054 old
= vq
->signalled_used
;
1055 new = vq
->signalled_used
= vring_used_idx(vq
);
1056 return !v
|| vring_need_event(vring_get_used_event(vq
), new, old
);
1059 void virtio_notify(VirtIODevice
*vdev
, VirtQueue
*vq
)
1061 if (!vring_notify(vdev
, vq
)) {
1065 trace_virtio_notify(vdev
, vq
);
1067 virtio_notify_vector(vdev
, vq
->vector
);
1070 void virtio_notify_config(VirtIODevice
*vdev
)
1072 if (!(vdev
->status
& VIRTIO_CONFIG_S_DRIVER_OK
))
1077 virtio_notify_vector(vdev
, vdev
->config_vector
);
1080 static bool virtio_device_endian_needed(void *opaque
)
1082 VirtIODevice
*vdev
= opaque
;
1084 assert(vdev
->device_endian
!= VIRTIO_DEVICE_ENDIAN_UNKNOWN
);
1085 if (!virtio_vdev_has_feature(vdev
, VIRTIO_F_VERSION_1
)) {
1086 return vdev
->device_endian
!= virtio_default_endian();
1088 /* Devices conforming to VIRTIO 1.0 or later are always LE. */
1089 return vdev
->device_endian
!= VIRTIO_DEVICE_ENDIAN_LITTLE
;
1092 static bool virtio_64bit_features_needed(void *opaque
)
1094 VirtIODevice
*vdev
= opaque
;
1096 return (vdev
->host_features
>> 32) != 0;
1099 static bool virtio_virtqueue_needed(void *opaque
)
1101 VirtIODevice
*vdev
= opaque
;
1103 return virtio_host_has_feature(vdev
, VIRTIO_F_VERSION_1
);
1106 static bool virtio_ringsize_needed(void *opaque
)
1108 VirtIODevice
*vdev
= opaque
;
1111 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1112 if (vdev
->vq
[i
].vring
.num
!= vdev
->vq
[i
].vring
.num_default
) {
1119 static void put_virtqueue_state(QEMUFile
*f
, void *pv
, size_t size
)
1121 VirtIODevice
*vdev
= pv
;
1124 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1125 qemu_put_be64(f
, vdev
->vq
[i
].vring
.avail
);
1126 qemu_put_be64(f
, vdev
->vq
[i
].vring
.used
);
1130 static int get_virtqueue_state(QEMUFile
*f
, void *pv
, size_t size
)
1132 VirtIODevice
*vdev
= pv
;
1135 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1136 vdev
->vq
[i
].vring
.avail
= qemu_get_be64(f
);
1137 vdev
->vq
[i
].vring
.used
= qemu_get_be64(f
);
1142 static VMStateInfo vmstate_info_virtqueue
= {
1143 .name
= "virtqueue_state",
1144 .get
= get_virtqueue_state
,
1145 .put
= put_virtqueue_state
,
1148 static const VMStateDescription vmstate_virtio_virtqueues
= {
1149 .name
= "virtio/virtqueues",
1151 .minimum_version_id
= 1,
1152 .needed
= &virtio_virtqueue_needed
,
1153 .fields
= (VMStateField
[]) {
1155 .name
= "virtqueues",
1157 .field_exists
= NULL
,
1159 .info
= &vmstate_info_virtqueue
,
1160 .flags
= VMS_SINGLE
,
1163 VMSTATE_END_OF_LIST()
1167 static void put_ringsize_state(QEMUFile
*f
, void *pv
, size_t size
)
1169 VirtIODevice
*vdev
= pv
;
1172 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1173 qemu_put_be32(f
, vdev
->vq
[i
].vring
.num_default
);
1177 static int get_ringsize_state(QEMUFile
*f
, void *pv
, size_t size
)
1179 VirtIODevice
*vdev
= pv
;
1182 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1183 vdev
->vq
[i
].vring
.num_default
= qemu_get_be32(f
);
1188 static VMStateInfo vmstate_info_ringsize
= {
1189 .name
= "ringsize_state",
1190 .get
= get_ringsize_state
,
1191 .put
= put_ringsize_state
,
1194 static const VMStateDescription vmstate_virtio_ringsize
= {
1195 .name
= "virtio/ringsize",
1197 .minimum_version_id
= 1,
1198 .needed
= &virtio_ringsize_needed
,
1199 .fields
= (VMStateField
[]) {
1203 .field_exists
= NULL
,
1205 .info
= &vmstate_info_ringsize
,
1206 .flags
= VMS_SINGLE
,
1209 VMSTATE_END_OF_LIST()
1213 static const VMStateDescription vmstate_virtio_device_endian
= {
1214 .name
= "virtio/device_endian",
1216 .minimum_version_id
= 1,
1217 .needed
= &virtio_device_endian_needed
,
1218 .fields
= (VMStateField
[]) {
1219 VMSTATE_UINT8(device_endian
, VirtIODevice
),
1220 VMSTATE_END_OF_LIST()
1224 static const VMStateDescription vmstate_virtio_64bit_features
= {
1225 .name
= "virtio/64bit_features",
1227 .minimum_version_id
= 1,
1228 .needed
= &virtio_64bit_features_needed
,
1229 .fields
= (VMStateField
[]) {
1230 VMSTATE_UINT64(guest_features
, VirtIODevice
),
1231 VMSTATE_END_OF_LIST()
1235 static const VMStateDescription vmstate_virtio
= {
1238 .minimum_version_id
= 1,
1239 .minimum_version_id_old
= 1,
1240 .fields
= (VMStateField
[]) {
1241 VMSTATE_END_OF_LIST()
1243 .subsections
= (const VMStateDescription
*[]) {
1244 &vmstate_virtio_device_endian
,
1245 &vmstate_virtio_64bit_features
,
1246 &vmstate_virtio_virtqueues
,
1247 &vmstate_virtio_ringsize
,
1252 void virtio_save(VirtIODevice
*vdev
, QEMUFile
*f
)
1254 BusState
*qbus
= qdev_get_parent_bus(DEVICE(vdev
));
1255 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
1256 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_GET_CLASS(vdev
);
1257 uint32_t guest_features_lo
= (vdev
->guest_features
& 0xffffffff);
1260 if (k
->save_config
) {
1261 k
->save_config(qbus
->parent
, f
);
1264 qemu_put_8s(f
, &vdev
->status
);
1265 qemu_put_8s(f
, &vdev
->isr
);
1266 qemu_put_be16s(f
, &vdev
->queue_sel
);
1267 qemu_put_be32s(f
, &guest_features_lo
);
1268 qemu_put_be32(f
, vdev
->config_len
);
1269 qemu_put_buffer(f
, vdev
->config
, vdev
->config_len
);
1271 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1272 if (vdev
->vq
[i
].vring
.num
== 0)
1276 qemu_put_be32(f
, i
);
1278 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1279 if (vdev
->vq
[i
].vring
.num
== 0)
1282 qemu_put_be32(f
, vdev
->vq
[i
].vring
.num
);
1283 if (k
->has_variable_vring_alignment
) {
1284 qemu_put_be32(f
, vdev
->vq
[i
].vring
.align
);
1286 /* XXX virtio-1 devices */
1287 qemu_put_be64(f
, vdev
->vq
[i
].vring
.desc
);
1288 qemu_put_be16s(f
, &vdev
->vq
[i
].last_avail_idx
);
1289 if (k
->save_queue
) {
1290 k
->save_queue(qbus
->parent
, i
, f
);
1294 if (vdc
->save
!= NULL
) {
1299 vmstate_save_state(f
, &vmstate_virtio
, vdev
, NULL
);
1302 static int virtio_set_features_nocheck(VirtIODevice
*vdev
, uint64_t val
)
1304 VirtioDeviceClass
*k
= VIRTIO_DEVICE_GET_CLASS(vdev
);
1305 bool bad
= (val
& ~(vdev
->host_features
)) != 0;
1307 val
&= vdev
->host_features
;
1308 if (k
->set_features
) {
1309 k
->set_features(vdev
, val
);
1311 vdev
->guest_features
= val
;
1312 return bad
? -1 : 0;
1315 int virtio_set_features(VirtIODevice
*vdev
, uint64_t val
)
1318 * The driver must not attempt to set features after feature negotiation
1321 if (vdev
->status
& VIRTIO_CONFIG_S_FEATURES_OK
) {
1324 return virtio_set_features_nocheck(vdev
, val
);
1327 int virtio_load(VirtIODevice
*vdev
, QEMUFile
*f
, int version_id
)
1333 BusState
*qbus
= qdev_get_parent_bus(DEVICE(vdev
));
1334 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
1335 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_GET_CLASS(vdev
);
1338 * We poison the endianness to ensure it does not get used before
1339 * subsections have been loaded.
1341 vdev
->device_endian
= VIRTIO_DEVICE_ENDIAN_UNKNOWN
;
1343 if (k
->load_config
) {
1344 ret
= k
->load_config(qbus
->parent
, f
);
1349 qemu_get_8s(f
, &vdev
->status
);
1350 qemu_get_8s(f
, &vdev
->isr
);
1351 qemu_get_be16s(f
, &vdev
->queue_sel
);
1352 if (vdev
->queue_sel
>= VIRTIO_QUEUE_MAX
) {
1355 qemu_get_be32s(f
, &features
);
1357 config_len
= qemu_get_be32(f
);
1360 * There are cases where the incoming config can be bigger or smaller
1361 * than what we have; so load what we have space for, and skip
1362 * any excess that's in the stream.
1364 qemu_get_buffer(f
, vdev
->config
, MIN(config_len
, vdev
->config_len
));
1366 while (config_len
> vdev
->config_len
) {
1371 num
= qemu_get_be32(f
);
1373 if (num
> VIRTIO_QUEUE_MAX
) {
1374 error_report("Invalid number of PCI queues: 0x%x", num
);
1378 for (i
= 0; i
< num
; i
++) {
1379 vdev
->vq
[i
].vring
.num
= qemu_get_be32(f
);
1380 if (k
->has_variable_vring_alignment
) {
1381 vdev
->vq
[i
].vring
.align
= qemu_get_be32(f
);
1383 vdev
->vq
[i
].vring
.desc
= qemu_get_be64(f
);
1384 qemu_get_be16s(f
, &vdev
->vq
[i
].last_avail_idx
);
1385 vdev
->vq
[i
].signalled_used_valid
= false;
1386 vdev
->vq
[i
].notification
= true;
1388 if (vdev
->vq
[i
].vring
.desc
) {
1389 /* XXX virtio-1 devices */
1390 virtio_queue_update_rings(vdev
, i
);
1391 } else if (vdev
->vq
[i
].last_avail_idx
) {
1392 error_report("VQ %d address 0x0 "
1393 "inconsistent with Host index 0x%x",
1394 i
, vdev
->vq
[i
].last_avail_idx
);
1397 if (k
->load_queue
) {
1398 ret
= k
->load_queue(qbus
->parent
, i
, f
);
1404 virtio_notify_vector(vdev
, VIRTIO_NO_VECTOR
);
1406 if (vdc
->load
!= NULL
) {
1407 ret
= vdc
->load(vdev
, f
, version_id
);
1414 ret
= vmstate_load_state(f
, &vmstate_virtio
, vdev
, 1);
1419 if (vdev
->device_endian
== VIRTIO_DEVICE_ENDIAN_UNKNOWN
) {
1420 vdev
->device_endian
= virtio_default_endian();
1423 if (virtio_64bit_features_needed(vdev
)) {
1425 * Subsection load filled vdev->guest_features. Run them
1426 * through virtio_set_features to sanity-check them against
1429 uint64_t features64
= vdev
->guest_features
;
1430 if (virtio_set_features_nocheck(vdev
, features64
) < 0) {
1431 error_report("Features 0x%" PRIx64
" unsupported. "
1432 "Allowed features: 0x%" PRIx64
,
1433 features64
, vdev
->host_features
);
1437 if (virtio_set_features_nocheck(vdev
, features
) < 0) {
1438 error_report("Features 0x%x unsupported. "
1439 "Allowed features: 0x%" PRIx64
,
1440 features
, vdev
->host_features
);
1445 for (i
= 0; i
< num
; i
++) {
1446 if (vdev
->vq
[i
].vring
.desc
) {
1448 nheads
= vring_avail_idx(&vdev
->vq
[i
]) - vdev
->vq
[i
].last_avail_idx
;
1449 /* Check it isn't doing strange things with descriptor numbers. */
1450 if (nheads
> vdev
->vq
[i
].vring
.num
) {
1451 error_report("VQ %d size 0x%x Guest index 0x%x "
1452 "inconsistent with Host index 0x%x: delta 0x%x",
1453 i
, vdev
->vq
[i
].vring
.num
,
1454 vring_avail_idx(&vdev
->vq
[i
]),
1455 vdev
->vq
[i
].last_avail_idx
, nheads
);
1464 void virtio_cleanup(VirtIODevice
*vdev
)
1466 qemu_del_vm_change_state_handler(vdev
->vmstate
);
1467 g_free(vdev
->config
);
1469 g_free(vdev
->vector_queues
);
1472 static void virtio_vmstate_change(void *opaque
, int running
, RunState state
)
1474 VirtIODevice
*vdev
= opaque
;
1475 BusState
*qbus
= qdev_get_parent_bus(DEVICE(vdev
));
1476 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
1477 bool backend_run
= running
&& (vdev
->status
& VIRTIO_CONFIG_S_DRIVER_OK
);
1478 vdev
->vm_running
= running
;
1481 virtio_set_status(vdev
, vdev
->status
);
1484 if (k
->vmstate_change
) {
1485 k
->vmstate_change(qbus
->parent
, backend_run
);
1489 virtio_set_status(vdev
, vdev
->status
);
1493 void virtio_instance_init_common(Object
*proxy_obj
, void *data
,
1494 size_t vdev_size
, const char *vdev_name
)
1496 DeviceState
*vdev
= data
;
1498 object_initialize(vdev
, vdev_size
, vdev_name
);
1499 object_property_add_child(proxy_obj
, "virtio-backend", OBJECT(vdev
), NULL
);
1500 object_unref(OBJECT(vdev
));
1501 qdev_alias_all_properties(vdev
, proxy_obj
);
1504 void virtio_init(VirtIODevice
*vdev
, const char *name
,
1505 uint16_t device_id
, size_t config_size
)
1507 BusState
*qbus
= qdev_get_parent_bus(DEVICE(vdev
));
1508 VirtioBusClass
*k
= VIRTIO_BUS_GET_CLASS(qbus
);
1510 int nvectors
= k
->query_nvectors
? k
->query_nvectors(qbus
->parent
) : 0;
1513 vdev
->vector_queues
=
1514 g_malloc0(sizeof(*vdev
->vector_queues
) * nvectors
);
1517 vdev
->device_id
= device_id
;
1520 vdev
->queue_sel
= 0;
1521 vdev
->config_vector
= VIRTIO_NO_VECTOR
;
1522 vdev
->vq
= g_malloc0(sizeof(VirtQueue
) * VIRTIO_QUEUE_MAX
);
1523 vdev
->vm_running
= runstate_is_running();
1524 for (i
= 0; i
< VIRTIO_QUEUE_MAX
; i
++) {
1525 vdev
->vq
[i
].vector
= VIRTIO_NO_VECTOR
;
1526 vdev
->vq
[i
].vdev
= vdev
;
1527 vdev
->vq
[i
].queue_index
= i
;
1531 vdev
->config_len
= config_size
;
1532 if (vdev
->config_len
) {
1533 vdev
->config
= g_malloc0(config_size
);
1535 vdev
->config
= NULL
;
1537 vdev
->vmstate
= qemu_add_vm_change_state_handler(virtio_vmstate_change
,
1539 vdev
->device_endian
= virtio_default_endian();
1542 hwaddr
virtio_queue_get_desc_addr(VirtIODevice
*vdev
, int n
)
1544 return vdev
->vq
[n
].vring
.desc
;
1547 hwaddr
virtio_queue_get_avail_addr(VirtIODevice
*vdev
, int n
)
1549 return vdev
->vq
[n
].vring
.avail
;
1552 hwaddr
virtio_queue_get_used_addr(VirtIODevice
*vdev
, int n
)
1554 return vdev
->vq
[n
].vring
.used
;
1557 hwaddr
virtio_queue_get_ring_addr(VirtIODevice
*vdev
, int n
)
1559 return vdev
->vq
[n
].vring
.desc
;
1562 hwaddr
virtio_queue_get_desc_size(VirtIODevice
*vdev
, int n
)
1564 return sizeof(VRingDesc
) * vdev
->vq
[n
].vring
.num
;
1567 hwaddr
virtio_queue_get_avail_size(VirtIODevice
*vdev
, int n
)
1569 return offsetof(VRingAvail
, ring
) +
1570 sizeof(uint16_t) * vdev
->vq
[n
].vring
.num
;
1573 hwaddr
virtio_queue_get_used_size(VirtIODevice
*vdev
, int n
)
1575 return offsetof(VRingUsed
, ring
) +
1576 sizeof(VRingUsedElem
) * vdev
->vq
[n
].vring
.num
;
1579 hwaddr
virtio_queue_get_ring_size(VirtIODevice
*vdev
, int n
)
1581 return vdev
->vq
[n
].vring
.used
- vdev
->vq
[n
].vring
.desc
+
1582 virtio_queue_get_used_size(vdev
, n
);
1585 uint16_t virtio_queue_get_last_avail_idx(VirtIODevice
*vdev
, int n
)
1587 return vdev
->vq
[n
].last_avail_idx
;
1590 void virtio_queue_set_last_avail_idx(VirtIODevice
*vdev
, int n
, uint16_t idx
)
1592 vdev
->vq
[n
].last_avail_idx
= idx
;
1595 void virtio_queue_invalidate_signalled_used(VirtIODevice
*vdev
, int n
)
1597 vdev
->vq
[n
].signalled_used_valid
= false;
1600 VirtQueue
*virtio_get_queue(VirtIODevice
*vdev
, int n
)
1602 return vdev
->vq
+ n
;
1605 uint16_t virtio_get_queue_index(VirtQueue
*vq
)
1607 return vq
->queue_index
;
1610 static void virtio_queue_guest_notifier_read(EventNotifier
*n
)
1612 VirtQueue
*vq
= container_of(n
, VirtQueue
, guest_notifier
);
1613 if (event_notifier_test_and_clear(n
)) {
1618 void virtio_queue_set_guest_notifier_fd_handler(VirtQueue
*vq
, bool assign
,
1621 if (assign
&& !with_irqfd
) {
1622 event_notifier_set_handler(&vq
->guest_notifier
,
1623 virtio_queue_guest_notifier_read
);
1625 event_notifier_set_handler(&vq
->guest_notifier
, NULL
);
1628 /* Test and clear notifier before closing it,
1629 * in case poll callback didn't have time to run. */
1630 virtio_queue_guest_notifier_read(&vq
->guest_notifier
);
1634 EventNotifier
*virtio_queue_get_guest_notifier(VirtQueue
*vq
)
1636 return &vq
->guest_notifier
;
1639 static void virtio_queue_host_notifier_read(EventNotifier
*n
)
1641 VirtQueue
*vq
= container_of(n
, VirtQueue
, host_notifier
);
1642 if (event_notifier_test_and_clear(n
)) {
1643 virtio_queue_notify_vq(vq
);
1647 void virtio_queue_set_host_notifier_fd_handler(VirtQueue
*vq
, bool assign
,
1650 if (assign
&& set_handler
) {
1651 event_notifier_set_handler(&vq
->host_notifier
,
1652 virtio_queue_host_notifier_read
);
1654 event_notifier_set_handler(&vq
->host_notifier
, NULL
);
1657 /* Test and clear notifier before after disabling event,
1658 * in case poll callback didn't have time to run. */
1659 virtio_queue_host_notifier_read(&vq
->host_notifier
);
1663 EventNotifier
*virtio_queue_get_host_notifier(VirtQueue
*vq
)
1665 return &vq
->host_notifier
;
1668 void virtio_device_set_child_bus_name(VirtIODevice
*vdev
, char *bus_name
)
1670 g_free(vdev
->bus_name
);
1671 vdev
->bus_name
= g_strdup(bus_name
);
1674 static void virtio_device_realize(DeviceState
*dev
, Error
**errp
)
1676 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
1677 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_GET_CLASS(dev
);
1680 if (vdc
->realize
!= NULL
) {
1681 vdc
->realize(dev
, &err
);
1683 error_propagate(errp
, err
);
1688 virtio_bus_device_plugged(vdev
, &err
);
1690 error_propagate(errp
, err
);
1695 static void virtio_device_unrealize(DeviceState
*dev
, Error
**errp
)
1697 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
1698 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_GET_CLASS(dev
);
1701 virtio_bus_device_unplugged(vdev
);
1703 if (vdc
->unrealize
!= NULL
) {
1704 vdc
->unrealize(dev
, &err
);
1706 error_propagate(errp
, err
);
1711 g_free(vdev
->bus_name
);
1712 vdev
->bus_name
= NULL
;
1715 static Property virtio_properties
[] = {
1716 DEFINE_VIRTIO_COMMON_FEATURES(VirtIODevice
, host_features
),
1717 DEFINE_PROP_END_OF_LIST(),
1720 static void virtio_device_class_init(ObjectClass
*klass
, void *data
)
1722 /* Set the default value here. */
1723 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1725 dc
->realize
= virtio_device_realize
;
1726 dc
->unrealize
= virtio_device_unrealize
;
1727 dc
->bus_type
= TYPE_VIRTIO_BUS
;
1728 dc
->props
= virtio_properties
;
1731 static const TypeInfo virtio_device_info
= {
1732 .name
= TYPE_VIRTIO_DEVICE
,
1733 .parent
= TYPE_DEVICE
,
1734 .instance_size
= sizeof(VirtIODevice
),
1735 .class_init
= virtio_device_class_init
,
1737 .class_size
= sizeof(VirtioDeviceClass
),
1740 static void virtio_register_types(void)
1742 type_register_static(&virtio_device_info
);
1745 type_init(virtio_register_types
)