]> git.proxmox.com Git - mirror_qemu.git/blame - hw/virtio/virtio.c
virtio-ccw: using VIRTIO_NO_VECTOR instead of 0 for invalid virtqueue
[mirror_qemu.git] / hw / virtio / virtio.c
CommitLineData
967f97fa
AL
1/*
2 * Virtio Support
3 *
4 * Copyright IBM, Corp. 2007
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#include <inttypes.h>
967f97fa 15
64979a4d 16#include "trace.h"
fdfba1a2 17#include "exec/address-spaces.h"
1de7afc9 18#include "qemu/error-report.h"
0d09e41a 19#include "hw/virtio/virtio.h"
1de7afc9 20#include "qemu/atomic.h"
0d09e41a 21#include "hw/virtio/virtio-bus.h"
6b321a3d 22#include "migration/migration.h"
cee3ca00 23#include "hw/virtio/virtio-access.h"
967f97fa 24
6ce69d1c
PM
25/*
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.
29 */
f46f15bc
AL
30#define VIRTIO_PCI_VRING_ALIGN 4096
31
967f97fa
AL
32typedef struct VRingDesc
33{
34 uint64_t addr;
35 uint32_t len;
36 uint16_t flags;
37 uint16_t next;
38} VRingDesc;
39
40typedef struct VRingAvail
41{
42 uint16_t flags;
43 uint16_t idx;
44 uint16_t ring[0];
45} VRingAvail;
46
47typedef struct VRingUsedElem
48{
49 uint32_t id;
50 uint32_t len;
51} VRingUsedElem;
52
53typedef struct VRingUsed
54{
55 uint16_t flags;
56 uint16_t idx;
57 VRingUsedElem ring[0];
58} VRingUsed;
59
60typedef struct VRing
61{
62 unsigned int num;
6ce69d1c 63 unsigned int align;
a8170e5e
AK
64 hwaddr desc;
65 hwaddr avail;
66 hwaddr used;
967f97fa
AL
67} VRing;
68
69struct VirtQueue
70{
71 VRing vring;
a8170e5e 72 hwaddr pa;
967f97fa 73 uint16_t last_avail_idx;
bcbabae8
MT
74 /* Last used index value we have signalled on */
75 uint16_t signalled_used;
76
77 /* Last used index value we have signalled on */
78 bool signalled_used_valid;
79
80 /* Notification enabled? */
81 bool notification;
82
e78a2b42
JW
83 uint16_t queue_index;
84
967f97fa 85 int inuse;
bcbabae8 86
7055e687 87 uint16_t vector;
967f97fa 88 void (*handle_output)(VirtIODevice *vdev, VirtQueue *vq);
1cbdabe2
MT
89 VirtIODevice *vdev;
90 EventNotifier guest_notifier;
91 EventNotifier host_notifier;
967f97fa
AL
92};
93
967f97fa 94/* virt queue functions */
53c25cea 95static void virtqueue_init(VirtQueue *vq)
967f97fa 96{
a8170e5e 97 hwaddr pa = vq->pa;
53c25cea 98
967f97fa
AL
99 vq->vring.desc = pa;
100 vq->vring.avail = pa + vq->vring.num * sizeof(VRingDesc);
f46f15bc
AL
101 vq->vring.used = vring_align(vq->vring.avail +
102 offsetof(VRingAvail, ring[vq->vring.num]),
6ce69d1c 103 vq->vring.align);
967f97fa
AL
104}
105
cee3ca00
RR
106static inline uint64_t vring_desc_addr(VirtIODevice *vdev, hwaddr desc_pa,
107 int i)
967f97fa 108{
a8170e5e 109 hwaddr pa;
5774cf98 110 pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, addr);
cee3ca00 111 return virtio_ldq_phys(vdev, pa);
967f97fa
AL
112}
113
cee3ca00 114static inline uint32_t vring_desc_len(VirtIODevice *vdev, hwaddr desc_pa, int i)
967f97fa 115{
a8170e5e 116 hwaddr pa;
5774cf98 117 pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, len);
cee3ca00 118 return virtio_ldl_phys(vdev, pa);
967f97fa
AL
119}
120
cee3ca00
RR
121static inline uint16_t vring_desc_flags(VirtIODevice *vdev, hwaddr desc_pa,
122 int i)
967f97fa 123{
a8170e5e 124 hwaddr pa;
5774cf98 125 pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, flags);
cee3ca00 126 return virtio_lduw_phys(vdev, pa);
967f97fa
AL
127}
128
cee3ca00
RR
129static inline uint16_t vring_desc_next(VirtIODevice *vdev, hwaddr desc_pa,
130 int i)
967f97fa 131{
a8170e5e 132 hwaddr pa;
5774cf98 133 pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, next);
cee3ca00 134 return virtio_lduw_phys(vdev, pa);
967f97fa
AL
135}
136
137static inline uint16_t vring_avail_flags(VirtQueue *vq)
138{
a8170e5e 139 hwaddr pa;
967f97fa 140 pa = vq->vring.avail + offsetof(VRingAvail, flags);
cee3ca00 141 return virtio_lduw_phys(vq->vdev, pa);
967f97fa
AL
142}
143
144static inline uint16_t vring_avail_idx(VirtQueue *vq)
145{
a8170e5e 146 hwaddr pa;
967f97fa 147 pa = vq->vring.avail + offsetof(VRingAvail, idx);
cee3ca00 148 return virtio_lduw_phys(vq->vdev, pa);
967f97fa
AL
149}
150
151static inline uint16_t vring_avail_ring(VirtQueue *vq, int i)
152{
a8170e5e 153 hwaddr pa;
967f97fa 154 pa = vq->vring.avail + offsetof(VRingAvail, ring[i]);
cee3ca00 155 return virtio_lduw_phys(vq->vdev, pa);
967f97fa
AL
156}
157
e9600c6c 158static inline uint16_t vring_get_used_event(VirtQueue *vq)
bcbabae8
MT
159{
160 return vring_avail_ring(vq, vq->vring.num);
161}
162
967f97fa
AL
163static inline void vring_used_ring_id(VirtQueue *vq, int i, uint32_t val)
164{
a8170e5e 165 hwaddr pa;
967f97fa 166 pa = vq->vring.used + offsetof(VRingUsed, ring[i].id);
cee3ca00 167 virtio_stl_phys(vq->vdev, pa, val);
967f97fa
AL
168}
169
170static inline void vring_used_ring_len(VirtQueue *vq, int i, uint32_t val)
171{
a8170e5e 172 hwaddr pa;
967f97fa 173 pa = vq->vring.used + offsetof(VRingUsed, ring[i].len);
cee3ca00 174 virtio_stl_phys(vq->vdev, pa, val);
967f97fa
AL
175}
176
177static uint16_t vring_used_idx(VirtQueue *vq)
178{
a8170e5e 179 hwaddr pa;
967f97fa 180 pa = vq->vring.used + offsetof(VRingUsed, idx);
cee3ca00 181 return virtio_lduw_phys(vq->vdev, pa);
967f97fa
AL
182}
183
bcbabae8 184static inline void vring_used_idx_set(VirtQueue *vq, uint16_t val)
967f97fa 185{
a8170e5e 186 hwaddr pa;
967f97fa 187 pa = vq->vring.used + offsetof(VRingUsed, idx);
cee3ca00 188 virtio_stw_phys(vq->vdev, pa, val);
967f97fa
AL
189}
190
191static inline void vring_used_flags_set_bit(VirtQueue *vq, int mask)
192{
cee3ca00 193 VirtIODevice *vdev = vq->vdev;
a8170e5e 194 hwaddr pa;
967f97fa 195 pa = vq->vring.used + offsetof(VRingUsed, flags);
cee3ca00 196 virtio_stw_phys(vdev, pa, virtio_lduw_phys(vdev, pa) | mask);
967f97fa
AL
197}
198
199static inline void vring_used_flags_unset_bit(VirtQueue *vq, int mask)
200{
cee3ca00 201 VirtIODevice *vdev = vq->vdev;
a8170e5e 202 hwaddr pa;
967f97fa 203 pa = vq->vring.used + offsetof(VRingUsed, flags);
cee3ca00 204 virtio_stw_phys(vdev, pa, virtio_lduw_phys(vdev, pa) & ~mask);
967f97fa
AL
205}
206
e9600c6c 207static inline void vring_set_avail_event(VirtQueue *vq, uint16_t val)
bcbabae8 208{
a8170e5e 209 hwaddr pa;
bcbabae8
MT
210 if (!vq->notification) {
211 return;
212 }
213 pa = vq->vring.used + offsetof(VRingUsed, ring[vq->vring.num]);
cee3ca00 214 virtio_stw_phys(vq->vdev, pa, val);
bcbabae8
MT
215}
216
967f97fa
AL
217void virtio_queue_set_notification(VirtQueue *vq, int enable)
218{
bcbabae8 219 vq->notification = enable;
ef546f12 220 if (virtio_has_feature(vq->vdev, VIRTIO_RING_F_EVENT_IDX)) {
e9600c6c 221 vring_set_avail_event(vq, vring_avail_idx(vq));
bcbabae8 222 } else if (enable) {
967f97fa 223 vring_used_flags_unset_bit(vq, VRING_USED_F_NO_NOTIFY);
bcbabae8 224 } else {
967f97fa 225 vring_used_flags_set_bit(vq, VRING_USED_F_NO_NOTIFY);
bcbabae8 226 }
92045d80
MT
227 if (enable) {
228 /* Expose avail event/used flags before caller checks the avail idx. */
229 smp_mb();
230 }
967f97fa
AL
231}
232
233int virtio_queue_ready(VirtQueue *vq)
234{
235 return vq->vring.avail != 0;
236}
237
238int virtio_queue_empty(VirtQueue *vq)
239{
240 return vring_avail_idx(vq) == vq->last_avail_idx;
241}
242
243void virtqueue_fill(VirtQueue *vq, const VirtQueueElement *elem,
244 unsigned int len, unsigned int idx)
245{
246 unsigned int offset;
247 int i;
248
64979a4d
SH
249 trace_virtqueue_fill(vq, elem, len, idx);
250
967f97fa
AL
251 offset = 0;
252 for (i = 0; i < elem->in_num; i++) {
253 size_t size = MIN(len - offset, elem->in_sg[i].iov_len);
254
26b258e1
AL
255 cpu_physical_memory_unmap(elem->in_sg[i].iov_base,
256 elem->in_sg[i].iov_len,
257 1, size);
967f97fa 258
0cea71a2 259 offset += size;
967f97fa
AL
260 }
261
26b258e1
AL
262 for (i = 0; i < elem->out_num; i++)
263 cpu_physical_memory_unmap(elem->out_sg[i].iov_base,
264 elem->out_sg[i].iov_len,
265 0, elem->out_sg[i].iov_len);
266
967f97fa
AL
267 idx = (idx + vring_used_idx(vq)) % vq->vring.num;
268
269 /* Get a pointer to the next entry in the used ring. */
270 vring_used_ring_id(vq, idx, elem->index);
271 vring_used_ring_len(vq, idx, len);
272}
273
274void virtqueue_flush(VirtQueue *vq, unsigned int count)
275{
bcbabae8 276 uint16_t old, new;
967f97fa 277 /* Make sure buffer is written before we update index. */
b90d2f35 278 smp_wmb();
64979a4d 279 trace_virtqueue_flush(vq, count);
bcbabae8
MT
280 old = vring_used_idx(vq);
281 new = old + count;
282 vring_used_idx_set(vq, new);
967f97fa 283 vq->inuse -= count;
bcbabae8
MT
284 if (unlikely((int16_t)(new - vq->signalled_used) < (uint16_t)(new - old)))
285 vq->signalled_used_valid = false;
967f97fa
AL
286}
287
288void virtqueue_push(VirtQueue *vq, const VirtQueueElement *elem,
289 unsigned int len)
290{
291 virtqueue_fill(vq, elem, len, 0);
292 virtqueue_flush(vq, 1);
293}
294
295static int virtqueue_num_heads(VirtQueue *vq, unsigned int idx)
296{
297 uint16_t num_heads = vring_avail_idx(vq) - idx;
298
299 /* Check it isn't doing very strange things with descriptor numbers. */
bb6834cf 300 if (num_heads > vq->vring.num) {
ce67ed65
SH
301 error_report("Guest moved used index from %u to %u",
302 idx, vring_avail_idx(vq));
bb6834cf
AL
303 exit(1);
304 }
a821ce59
MT
305 /* On success, callers read a descriptor at vq->last_avail_idx.
306 * Make sure descriptor read does not bypass avail index read. */
307 if (num_heads) {
308 smp_rmb();
309 }
967f97fa
AL
310
311 return num_heads;
312}
313
314static unsigned int virtqueue_get_head(VirtQueue *vq, unsigned int idx)
315{
316 unsigned int head;
317
318 /* Grab the next descriptor number they're advertising, and increment
319 * the index we've seen. */
320 head = vring_avail_ring(vq, idx % vq->vring.num);
321
322 /* If their number is silly, that's a fatal mistake. */
bb6834cf 323 if (head >= vq->vring.num) {
ce67ed65 324 error_report("Guest says index %u is available", head);
bb6834cf
AL
325 exit(1);
326 }
967f97fa
AL
327
328 return head;
329}
330
cee3ca00 331static unsigned virtqueue_next_desc(VirtIODevice *vdev, hwaddr desc_pa,
5774cf98 332 unsigned int i, unsigned int max)
967f97fa
AL
333{
334 unsigned int next;
335
336 /* If this descriptor says it doesn't chain, we're done. */
cee3ca00 337 if (!(vring_desc_flags(vdev, desc_pa, i) & VRING_DESC_F_NEXT)) {
5774cf98 338 return max;
cee3ca00 339 }
967f97fa
AL
340
341 /* Check they're not leading us off end of descriptors. */
cee3ca00 342 next = vring_desc_next(vdev, desc_pa, i);
967f97fa 343 /* Make sure compiler knows to grab that: we don't want it changing! */
b90d2f35 344 smp_wmb();
967f97fa 345
5774cf98 346 if (next >= max) {
ce67ed65 347 error_report("Desc next is %u", next);
bb6834cf
AL
348 exit(1);
349 }
967f97fa
AL
350
351 return next;
352}
353
0d8d7690 354void virtqueue_get_avail_bytes(VirtQueue *vq, unsigned int *in_bytes,
e1f7b481
MT
355 unsigned int *out_bytes,
356 unsigned max_in_bytes, unsigned max_out_bytes)
967f97fa 357{
efeea6d0 358 unsigned int idx;
385ce95d 359 unsigned int total_bufs, in_total, out_total;
967f97fa
AL
360
361 idx = vq->last_avail_idx;
362
efeea6d0 363 total_bufs = in_total = out_total = 0;
967f97fa 364 while (virtqueue_num_heads(vq, idx)) {
cee3ca00 365 VirtIODevice *vdev = vq->vdev;
efeea6d0 366 unsigned int max, num_bufs, indirect = 0;
a8170e5e 367 hwaddr desc_pa;
967f97fa
AL
368 int i;
369
efeea6d0
MM
370 max = vq->vring.num;
371 num_bufs = total_bufs;
967f97fa 372 i = virtqueue_get_head(vq, idx++);
efeea6d0
MM
373 desc_pa = vq->vring.desc;
374
cee3ca00
RR
375 if (vring_desc_flags(vdev, desc_pa, i) & VRING_DESC_F_INDIRECT) {
376 if (vring_desc_len(vdev, desc_pa, i) % sizeof(VRingDesc)) {
ce67ed65 377 error_report("Invalid size for indirect buffer table");
efeea6d0
MM
378 exit(1);
379 }
380
381 /* If we've got too many, that implies a descriptor loop. */
382 if (num_bufs >= max) {
ce67ed65 383 error_report("Looped descriptor");
efeea6d0
MM
384 exit(1);
385 }
386
387 /* loop over the indirect descriptor table */
388 indirect = 1;
cee3ca00
RR
389 max = vring_desc_len(vdev, desc_pa, i) / sizeof(VRingDesc);
390 desc_pa = vring_desc_addr(vdev, desc_pa, i);
1ae2757c 391 num_bufs = i = 0;
efeea6d0
MM
392 }
393
967f97fa
AL
394 do {
395 /* If we've got too many, that implies a descriptor loop. */
5774cf98 396 if (++num_bufs > max) {
ce67ed65 397 error_report("Looped descriptor");
bb6834cf
AL
398 exit(1);
399 }
967f97fa 400
cee3ca00
RR
401 if (vring_desc_flags(vdev, desc_pa, i) & VRING_DESC_F_WRITE) {
402 in_total += vring_desc_len(vdev, desc_pa, i);
967f97fa 403 } else {
cee3ca00 404 out_total += vring_desc_len(vdev, desc_pa, i);
967f97fa 405 }
e1f7b481
MT
406 if (in_total >= max_in_bytes && out_total >= max_out_bytes) {
407 goto done;
408 }
cee3ca00 409 } while ((i = virtqueue_next_desc(vdev, desc_pa, i, max)) != max);
efeea6d0
MM
410
411 if (!indirect)
412 total_bufs = num_bufs;
413 else
414 total_bufs++;
967f97fa 415 }
e1f7b481 416done:
0d8d7690
AS
417 if (in_bytes) {
418 *in_bytes = in_total;
419 }
420 if (out_bytes) {
421 *out_bytes = out_total;
422 }
423}
967f97fa 424
0d8d7690
AS
425int virtqueue_avail_bytes(VirtQueue *vq, unsigned int in_bytes,
426 unsigned int out_bytes)
427{
428 unsigned int in_total, out_total;
429
e1f7b481
MT
430 virtqueue_get_avail_bytes(vq, &in_total, &out_total, in_bytes, out_bytes);
431 return in_bytes <= in_total && out_bytes <= out_total;
967f97fa
AL
432}
433
a8170e5e 434void virtqueue_map_sg(struct iovec *sg, hwaddr *addr,
42fb2e07
KW
435 size_t num_sg, int is_write)
436{
437 unsigned int i;
a8170e5e 438 hwaddr len;
42fb2e07 439
93725140 440 if (num_sg > VIRTQUEUE_MAX_SIZE) {
36cf2a37
MT
441 error_report("virtio: map attempt out of bounds: %zd > %d",
442 num_sg, VIRTQUEUE_MAX_SIZE);
443 exit(1);
444 }
445
42fb2e07
KW
446 for (i = 0; i < num_sg; i++) {
447 len = sg[i].iov_len;
448 sg[i].iov_base = cpu_physical_memory_map(addr[i], &len, is_write);
449 if (sg[i].iov_base == NULL || len != sg[i].iov_len) {
1a285899 450 error_report("virtio: error trying to map MMIO memory");
42fb2e07
KW
451 exit(1);
452 }
453 }
454}
455
967f97fa
AL
456int virtqueue_pop(VirtQueue *vq, VirtQueueElement *elem)
457{
5774cf98 458 unsigned int i, head, max;
a8170e5e 459 hwaddr desc_pa = vq->vring.desc;
cee3ca00 460 VirtIODevice *vdev = vq->vdev;
967f97fa
AL
461
462 if (!virtqueue_num_heads(vq, vq->last_avail_idx))
463 return 0;
464
465 /* When we start there are none of either input nor output. */
466 elem->out_num = elem->in_num = 0;
467
5774cf98
MM
468 max = vq->vring.num;
469
967f97fa 470 i = head = virtqueue_get_head(vq, vq->last_avail_idx++);
ef546f12 471 if (virtio_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX)) {
e9600c6c 472 vring_set_avail_event(vq, vq->last_avail_idx);
bcbabae8 473 }
efeea6d0 474
cee3ca00
RR
475 if (vring_desc_flags(vdev, desc_pa, i) & VRING_DESC_F_INDIRECT) {
476 if (vring_desc_len(vdev, desc_pa, i) % sizeof(VRingDesc)) {
ce67ed65 477 error_report("Invalid size for indirect buffer table");
efeea6d0
MM
478 exit(1);
479 }
480
481 /* loop over the indirect descriptor table */
cee3ca00
RR
482 max = vring_desc_len(vdev, desc_pa, i) / sizeof(VRingDesc);
483 desc_pa = vring_desc_addr(vdev, desc_pa, i);
efeea6d0
MM
484 i = 0;
485 }
486
42fb2e07 487 /* Collect all the descriptors */
967f97fa
AL
488 do {
489 struct iovec *sg;
490
cee3ca00 491 if (vring_desc_flags(vdev, desc_pa, i) & VRING_DESC_F_WRITE) {
c8eac1cf
MT
492 if (elem->in_num >= ARRAY_SIZE(elem->in_sg)) {
493 error_report("Too many write descriptors in indirect table");
494 exit(1);
495 }
cee3ca00 496 elem->in_addr[elem->in_num] = vring_desc_addr(vdev, desc_pa, i);
967f97fa 497 sg = &elem->in_sg[elem->in_num++];
42fb2e07 498 } else {
c8eac1cf
MT
499 if (elem->out_num >= ARRAY_SIZE(elem->out_sg)) {
500 error_report("Too many read descriptors in indirect table");
501 exit(1);
502 }
cee3ca00 503 elem->out_addr[elem->out_num] = vring_desc_addr(vdev, desc_pa, i);
967f97fa 504 sg = &elem->out_sg[elem->out_num++];
42fb2e07 505 }
967f97fa 506
cee3ca00 507 sg->iov_len = vring_desc_len(vdev, desc_pa, i);
967f97fa
AL
508
509 /* If we've got too many, that implies a descriptor loop. */
5774cf98 510 if ((elem->in_num + elem->out_num) > max) {
ce67ed65 511 error_report("Looped descriptor");
bb6834cf
AL
512 exit(1);
513 }
cee3ca00 514 } while ((i = virtqueue_next_desc(vdev, desc_pa, i, max)) != max);
967f97fa 515
42fb2e07
KW
516 /* Now map what we have collected */
517 virtqueue_map_sg(elem->in_sg, elem->in_addr, elem->in_num, 1);
518 virtqueue_map_sg(elem->out_sg, elem->out_addr, elem->out_num, 0);
519
967f97fa
AL
520 elem->index = head;
521
522 vq->inuse++;
523
64979a4d 524 trace_virtqueue_pop(vq, elem, elem->in_num, elem->out_num);
967f97fa
AL
525 return elem->in_num + elem->out_num;
526}
527
528/* virtio device */
7055e687
MT
529static void virtio_notify_vector(VirtIODevice *vdev, uint16_t vector)
530{
1c819449
FK
531 BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
532 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
533
534 if (k->notify) {
535 k->notify(qbus->parent, vector);
7055e687
MT
536 }
537}
967f97fa 538
53c25cea 539void virtio_update_irq(VirtIODevice *vdev)
967f97fa 540{
7055e687 541 virtio_notify_vector(vdev, VIRTIO_NO_VECTOR);
967f97fa
AL
542}
543
4e1837f8
SH
544void virtio_set_status(VirtIODevice *vdev, uint8_t val)
545{
181103cd 546 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
4e1837f8
SH
547 trace_virtio_set_status(vdev, val);
548
181103cd
FK
549 if (k->set_status) {
550 k->set_status(vdev, val);
4e1837f8
SH
551 }
552 vdev->status = val;
553}
554
616a6552
GK
555bool target_words_bigendian(void);
556static enum virtio_device_endian virtio_default_endian(void)
557{
558 if (target_words_bigendian()) {
559 return VIRTIO_DEVICE_ENDIAN_BIG;
560 } else {
561 return VIRTIO_DEVICE_ENDIAN_LITTLE;
562 }
563}
564
565static enum virtio_device_endian virtio_current_cpu_endian(void)
566{
567 CPUClass *cc = CPU_GET_CLASS(current_cpu);
568
569 if (cc->virtio_is_big_endian(current_cpu)) {
570 return VIRTIO_DEVICE_ENDIAN_BIG;
571 } else {
572 return VIRTIO_DEVICE_ENDIAN_LITTLE;
573 }
574}
575
53c25cea 576void virtio_reset(void *opaque)
967f97fa
AL
577{
578 VirtIODevice *vdev = opaque;
181103cd 579 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
580 int i;
581
e0c472d8 582 virtio_set_status(vdev, 0);
616a6552
GK
583 if (current_cpu) {
584 /* Guest initiated reset */
585 vdev->device_endian = virtio_current_cpu_endian();
586 } else {
587 /* System reset */
588 vdev->device_endian = virtio_default_endian();
589 }
e0c472d8 590
181103cd
FK
591 if (k->reset) {
592 k->reset(vdev);
593 }
967f97fa 594
704a76fc 595 vdev->guest_features = 0;
967f97fa
AL
596 vdev->queue_sel = 0;
597 vdev->status = 0;
598 vdev->isr = 0;
7055e687
MT
599 vdev->config_vector = VIRTIO_NO_VECTOR;
600 virtio_notify_vector(vdev, vdev->config_vector);
967f97fa
AL
601
602 for(i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
603 vdev->vq[i].vring.desc = 0;
604 vdev->vq[i].vring.avail = 0;
605 vdev->vq[i].vring.used = 0;
606 vdev->vq[i].last_avail_idx = 0;
53c25cea 607 vdev->vq[i].pa = 0;
7055e687 608 vdev->vq[i].vector = VIRTIO_NO_VECTOR;
bcbabae8
MT
609 vdev->vq[i].signalled_used = 0;
610 vdev->vq[i].signalled_used_valid = false;
611 vdev->vq[i].notification = true;
967f97fa
AL
612 }
613}
614
53c25cea 615uint32_t virtio_config_readb(VirtIODevice *vdev, uint32_t addr)
967f97fa 616{
181103cd 617 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
618 uint8_t val;
619
5f5a1318 620 if (addr + sizeof(val) > vdev->config_len) {
967f97fa 621 return (uint32_t)-1;
5f5a1318
JW
622 }
623
624 k->get_config(vdev, vdev->config);
967f97fa 625
06dbfc6f 626 val = ldub_p(vdev->config + addr);
967f97fa
AL
627 return val;
628}
629
53c25cea 630uint32_t virtio_config_readw(VirtIODevice *vdev, uint32_t addr)
967f97fa 631{
181103cd 632 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
633 uint16_t val;
634
5f5a1318 635 if (addr + sizeof(val) > vdev->config_len) {
967f97fa 636 return (uint32_t)-1;
5f5a1318
JW
637 }
638
639 k->get_config(vdev, vdev->config);
967f97fa 640
06dbfc6f 641 val = lduw_p(vdev->config + addr);
967f97fa
AL
642 return val;
643}
644
53c25cea 645uint32_t virtio_config_readl(VirtIODevice *vdev, uint32_t addr)
967f97fa 646{
181103cd 647 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
648 uint32_t val;
649
5f5a1318 650 if (addr + sizeof(val) > vdev->config_len) {
967f97fa 651 return (uint32_t)-1;
5f5a1318
JW
652 }
653
654 k->get_config(vdev, vdev->config);
967f97fa 655
06dbfc6f 656 val = ldl_p(vdev->config + addr);
967f97fa
AL
657 return val;
658}
659
53c25cea 660void virtio_config_writeb(VirtIODevice *vdev, uint32_t addr, uint32_t data)
967f97fa 661{
181103cd 662 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
663 uint8_t val = data;
664
5f5a1318 665 if (addr + sizeof(val) > vdev->config_len) {
967f97fa 666 return;
5f5a1318 667 }
967f97fa 668
06dbfc6f 669 stb_p(vdev->config + addr, val);
967f97fa 670
181103cd
FK
671 if (k->set_config) {
672 k->set_config(vdev, vdev->config);
673 }
967f97fa
AL
674}
675
53c25cea 676void virtio_config_writew(VirtIODevice *vdev, uint32_t addr, uint32_t data)
967f97fa 677{
181103cd 678 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
679 uint16_t val = data;
680
5f5a1318 681 if (addr + sizeof(val) > vdev->config_len) {
967f97fa 682 return;
5f5a1318 683 }
967f97fa 684
06dbfc6f 685 stw_p(vdev->config + addr, val);
967f97fa 686
181103cd
FK
687 if (k->set_config) {
688 k->set_config(vdev, vdev->config);
689 }
967f97fa
AL
690}
691
53c25cea 692void virtio_config_writel(VirtIODevice *vdev, uint32_t addr, uint32_t data)
967f97fa 693{
181103cd 694 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
695 uint32_t val = data;
696
5f5a1318 697 if (addr + sizeof(val) > vdev->config_len) {
967f97fa 698 return;
5f5a1318 699 }
967f97fa 700
06dbfc6f 701 stl_p(vdev->config + addr, val);
967f97fa 702
181103cd
FK
703 if (k->set_config) {
704 k->set_config(vdev, vdev->config);
705 }
967f97fa
AL
706}
707
a8170e5e 708void virtio_queue_set_addr(VirtIODevice *vdev, int n, hwaddr addr)
967f97fa 709{
7055e687
MT
710 vdev->vq[n].pa = addr;
711 virtqueue_init(&vdev->vq[n]);
53c25cea
PB
712}
713
a8170e5e 714hwaddr virtio_queue_get_addr(VirtIODevice *vdev, int n)
53c25cea
PB
715{
716 return vdev->vq[n].pa;
717}
718
e63c0ba1
PM
719void virtio_queue_set_num(VirtIODevice *vdev, int n, int num)
720{
f6049f44
PM
721 /* Don't allow guest to flip queue between existent and
722 * nonexistent states, or to set it to an invalid size.
723 */
724 if (!!num != !!vdev->vq[n].vring.num ||
725 num > VIRTQUEUE_MAX_SIZE ||
726 num < 0) {
727 return;
e63c0ba1 728 }
f6049f44
PM
729 vdev->vq[n].vring.num = num;
730 virtqueue_init(&vdev->vq[n]);
e63c0ba1
PM
731}
732
53c25cea
PB
733int virtio_queue_get_num(VirtIODevice *vdev, int n)
734{
735 return vdev->vq[n].vring.num;
736}
967f97fa 737
c80decdb
PB
738int virtio_queue_get_id(VirtQueue *vq)
739{
740 VirtIODevice *vdev = vq->vdev;
741 assert(vq >= &vdev->vq[0] && vq < &vdev->vq[VIRTIO_PCI_QUEUE_MAX]);
742 return vq - &vdev->vq[0];
743}
744
6ce69d1c
PM
745void virtio_queue_set_align(VirtIODevice *vdev, int n, int align)
746{
747 BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
748 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
749
750 /* Check that the transport told us it was going to do this
751 * (so a buggy transport will immediately assert rather than
752 * silently failing to migrate this state)
753 */
754 assert(k->has_variable_vring_alignment);
755
756 vdev->vq[n].vring.align = align;
757 virtqueue_init(&vdev->vq[n]);
758}
759
25db9ebe
SH
760void virtio_queue_notify_vq(VirtQueue *vq)
761{
9e0f5b81 762 if (vq->vring.desc && vq->handle_output) {
25db9ebe 763 VirtIODevice *vdev = vq->vdev;
9e0f5b81 764
25db9ebe
SH
765 trace_virtio_queue_notify(vdev, vq - vdev->vq, vq);
766 vq->handle_output(vdev, vq);
767 }
768}
769
53c25cea
PB
770void virtio_queue_notify(VirtIODevice *vdev, int n)
771{
7157e2e2 772 virtio_queue_notify_vq(&vdev->vq[n]);
967f97fa
AL
773}
774
7055e687
MT
775uint16_t virtio_queue_vector(VirtIODevice *vdev, int n)
776{
777 return n < VIRTIO_PCI_QUEUE_MAX ? vdev->vq[n].vector :
778 VIRTIO_NO_VECTOR;
779}
780
781void virtio_queue_set_vector(VirtIODevice *vdev, int n, uint16_t vector)
782{
783 if (n < VIRTIO_PCI_QUEUE_MAX)
784 vdev->vq[n].vector = vector;
785}
786
967f97fa
AL
787VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size,
788 void (*handle_output)(VirtIODevice *, VirtQueue *))
789{
790 int i;
791
792 for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
793 if (vdev->vq[i].vring.num == 0)
794 break;
795 }
796
797 if (i == VIRTIO_PCI_QUEUE_MAX || queue_size > VIRTQUEUE_MAX_SIZE)
798 abort();
799
800 vdev->vq[i].vring.num = queue_size;
6ce69d1c 801 vdev->vq[i].vring.align = VIRTIO_PCI_VRING_ALIGN;
967f97fa
AL
802 vdev->vq[i].handle_output = handle_output;
803
804 return &vdev->vq[i];
805}
806
f23fd811
JW
807void virtio_del_queue(VirtIODevice *vdev, int n)
808{
809 if (n < 0 || n >= VIRTIO_PCI_QUEUE_MAX) {
810 abort();
811 }
812
813 vdev->vq[n].vring.num = 0;
814}
815
1cbdabe2
MT
816void virtio_irq(VirtQueue *vq)
817{
64979a4d 818 trace_virtio_irq(vq);
1cbdabe2
MT
819 vq->vdev->isr |= 0x01;
820 virtio_notify_vector(vq->vdev, vq->vector);
821}
822
bcbabae8
MT
823static bool vring_notify(VirtIODevice *vdev, VirtQueue *vq)
824{
825 uint16_t old, new;
826 bool v;
a281ebc1
MT
827 /* We need to expose used array entries before checking used event. */
828 smp_mb();
97b83deb 829 /* Always notify when queue is empty (when feature acknowledge) */
ef546f12
CH
830 if (virtio_has_feature(vdev, VIRTIO_F_NOTIFY_ON_EMPTY) &&
831 !vq->inuse && vring_avail_idx(vq) == vq->last_avail_idx) {
bcbabae8
MT
832 return true;
833 }
834
ef546f12 835 if (!virtio_has_feature(vdev, VIRTIO_RING_F_EVENT_IDX)) {
bcbabae8
MT
836 return !(vring_avail_flags(vq) & VRING_AVAIL_F_NO_INTERRUPT);
837 }
838
839 v = vq->signalled_used_valid;
840 vq->signalled_used_valid = true;
841 old = vq->signalled_used;
842 new = vq->signalled_used = vring_used_idx(vq);
e9600c6c 843 return !v || vring_need_event(vring_get_used_event(vq), new, old);
bcbabae8
MT
844}
845
846void virtio_notify(VirtIODevice *vdev, VirtQueue *vq)
847{
848 if (!vring_notify(vdev, vq)) {
967f97fa 849 return;
bcbabae8 850 }
967f97fa 851
64979a4d 852 trace_virtio_notify(vdev, vq);
967f97fa 853 vdev->isr |= 0x01;
7055e687 854 virtio_notify_vector(vdev, vq->vector);
967f97fa
AL
855}
856
857void virtio_notify_config(VirtIODevice *vdev)
858{
7625162c
AL
859 if (!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK))
860 return;
861
967f97fa 862 vdev->isr |= 0x03;
7055e687 863 virtio_notify_vector(vdev, vdev->config_vector);
967f97fa
AL
864}
865
616a6552
GK
866static bool virtio_device_endian_needed(void *opaque)
867{
868 VirtIODevice *vdev = opaque;
869
870 assert(vdev->device_endian != VIRTIO_DEVICE_ENDIAN_UNKNOWN);
871 return vdev->device_endian != virtio_default_endian();
872}
873
874static const VMStateDescription vmstate_virtio_device_endian = {
875 .name = "virtio/device_endian",
876 .version_id = 1,
877 .minimum_version_id = 1,
878 .fields = (VMStateField[]) {
879 VMSTATE_UINT8(device_endian, VirtIODevice),
880 VMSTATE_END_OF_LIST()
881 }
882};
883
6b321a3d
GK
884static const VMStateDescription vmstate_virtio = {
885 .name = "virtio",
886 .version_id = 1,
887 .minimum_version_id = 1,
888 .minimum_version_id_old = 1,
889 .fields = (VMStateField[]) {
890 VMSTATE_END_OF_LIST()
616a6552
GK
891 },
892 .subsections = (VMStateSubsection[]) {
893 {
894 .vmsd = &vmstate_virtio_device_endian,
895 .needed = &virtio_device_endian_needed
896 },
897 { 0 }
6b321a3d
GK
898 }
899};
900
967f97fa
AL
901void virtio_save(VirtIODevice *vdev, QEMUFile *f)
902{
1c819449
FK
903 BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
904 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
1b5fc0de 905 VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa
AL
906 int i;
907
1c819449
FK
908 if (k->save_config) {
909 k->save_config(qbus->parent, f);
910 }
967f97fa 911
967f97fa
AL
912 qemu_put_8s(f, &vdev->status);
913 qemu_put_8s(f, &vdev->isr);
914 qemu_put_be16s(f, &vdev->queue_sel);
704a76fc 915 qemu_put_be32s(f, &vdev->guest_features);
967f97fa
AL
916 qemu_put_be32(f, vdev->config_len);
917 qemu_put_buffer(f, vdev->config, vdev->config_len);
918
919 for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
920 if (vdev->vq[i].vring.num == 0)
921 break;
922 }
923
924 qemu_put_be32(f, i);
925
926 for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
927 if (vdev->vq[i].vring.num == 0)
928 break;
929
930 qemu_put_be32(f, vdev->vq[i].vring.num);
6ce69d1c
PM
931 if (k->has_variable_vring_alignment) {
932 qemu_put_be32(f, vdev->vq[i].vring.align);
933 }
53c25cea 934 qemu_put_be64(f, vdev->vq[i].pa);
967f97fa 935 qemu_put_be16s(f, &vdev->vq[i].last_avail_idx);
1c819449
FK
936 if (k->save_queue) {
937 k->save_queue(qbus->parent, i, f);
938 }
967f97fa 939 }
1b5fc0de
GK
940
941 if (vdc->save != NULL) {
942 vdc->save(vdev, f);
943 }
6b321a3d
GK
944
945 /* Subsections */
8118f095 946 vmstate_save_state(f, &vmstate_virtio, vdev, NULL);
967f97fa
AL
947}
948
ad0c9332
PB
949int virtio_set_features(VirtIODevice *vdev, uint32_t val)
950{
1c819449
FK
951 BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
952 VirtioBusClass *vbusk = VIRTIO_BUS_GET_CLASS(qbus);
181103cd 953 VirtioDeviceClass *k = VIRTIO_DEVICE_GET_CLASS(vdev);
1c819449 954 uint32_t supported_features = vbusk->get_features(qbus->parent);
ad0c9332
PB
955 bool bad = (val & ~supported_features) != 0;
956
957 val &= supported_features;
181103cd
FK
958 if (k->set_features) {
959 k->set_features(vdev, val);
ad0c9332
PB
960 }
961 vdev->guest_features = val;
962 return bad ? -1 : 0;
963}
964
1b5fc0de 965int virtio_load(VirtIODevice *vdev, QEMUFile *f, int version_id)
967f97fa 966{
cc459952 967 int i, ret;
a890a2f9 968 int32_t config_len;
cc459952 969 uint32_t num;
6d74ca5a 970 uint32_t features;
ad0c9332 971 uint32_t supported_features;
1c819449
FK
972 BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
973 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
1b5fc0de 974 VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(vdev);
967f97fa 975
616a6552
GK
976 /*
977 * We poison the endianness to ensure it does not get used before
978 * subsections have been loaded.
979 */
980 vdev->device_endian = VIRTIO_DEVICE_ENDIAN_UNKNOWN;
981
1c819449
FK
982 if (k->load_config) {
983 ret = k->load_config(qbus->parent, f);
ff24bd58
MT
984 if (ret)
985 return ret;
986 }
967f97fa 987
967f97fa
AL
988 qemu_get_8s(f, &vdev->status);
989 qemu_get_8s(f, &vdev->isr);
990 qemu_get_be16s(f, &vdev->queue_sel);
4b53c2c7
MR
991 if (vdev->queue_sel >= VIRTIO_PCI_QUEUE_MAX) {
992 return -1;
993 }
6d74ca5a 994 qemu_get_be32s(f, &features);
ad0c9332
PB
995
996 if (virtio_set_features(vdev, features) < 0) {
1c819449 997 supported_features = k->get_features(qbus->parent);
ce67ed65
SH
998 error_report("Features 0x%x unsupported. Allowed features: 0x%x",
999 features, supported_features);
6d74ca5a
MT
1000 return -1;
1001 }
a890a2f9 1002 config_len = qemu_get_be32(f);
2f5732e9
DDAG
1003
1004 /*
1005 * There are cases where the incoming config can be bigger or smaller
1006 * than what we have; so load what we have space for, and skip
1007 * any excess that's in the stream.
1008 */
1009 qemu_get_buffer(f, vdev->config, MIN(config_len, vdev->config_len));
1010
1011 while (config_len > vdev->config_len) {
1012 qemu_get_byte(f);
1013 config_len--;
a890a2f9 1014 }
967f97fa
AL
1015
1016 num = qemu_get_be32(f);
1017
cc459952
MT
1018 if (num > VIRTIO_PCI_QUEUE_MAX) {
1019 error_report("Invalid number of PCI queues: 0x%x", num);
1020 return -1;
1021 }
1022
967f97fa
AL
1023 for (i = 0; i < num; i++) {
1024 vdev->vq[i].vring.num = qemu_get_be32(f);
6ce69d1c
PM
1025 if (k->has_variable_vring_alignment) {
1026 vdev->vq[i].vring.align = qemu_get_be32(f);
1027 }
53c25cea 1028 vdev->vq[i].pa = qemu_get_be64(f);
967f97fa 1029 qemu_get_be16s(f, &vdev->vq[i].last_avail_idx);
bcbabae8
MT
1030 vdev->vq[i].signalled_used_valid = false;
1031 vdev->vq[i].notification = true;
967f97fa 1032
53c25cea
PB
1033 if (vdev->vq[i].pa) {
1034 virtqueue_init(&vdev->vq[i]);
1abeb5a6
MT
1035 } else if (vdev->vq[i].last_avail_idx) {
1036 error_report("VQ %d address 0x0 "
6daf194d 1037 "inconsistent with Host index 0x%x",
1abeb5a6
MT
1038 i, vdev->vq[i].last_avail_idx);
1039 return -1;
258dc7c9 1040 }
1c819449
FK
1041 if (k->load_queue) {
1042 ret = k->load_queue(qbus->parent, i, f);
ff24bd58
MT
1043 if (ret)
1044 return ret;
7055e687 1045 }
967f97fa
AL
1046 }
1047
7055e687 1048 virtio_notify_vector(vdev, VIRTIO_NO_VECTOR);
1b5fc0de
GK
1049
1050 if (vdc->load != NULL) {
6b321a3d
GK
1051 ret = vdc->load(vdev, f, version_id);
1052 if (ret) {
1053 return ret;
1054 }
1b5fc0de
GK
1055 }
1056
616a6552
GK
1057 /* Subsections */
1058 ret = vmstate_load_state(f, &vmstate_virtio, vdev, 1);
1059 if (ret) {
1060 return ret;
1061 }
1062
1063 if (vdev->device_endian == VIRTIO_DEVICE_ENDIAN_UNKNOWN) {
1064 vdev->device_endian = virtio_default_endian();
1065 }
1066
1067 for (i = 0; i < num; i++) {
1068 if (vdev->vq[i].pa) {
1069 uint16_t nheads;
1070 nheads = vring_avail_idx(&vdev->vq[i]) - vdev->vq[i].last_avail_idx;
1071 /* Check it isn't doing strange things with descriptor numbers. */
1072 if (nheads > vdev->vq[i].vring.num) {
1073 error_report("VQ %d size 0x%x Guest index 0x%x "
1074 "inconsistent with Host index 0x%x: delta 0x%x",
1075 i, vdev->vq[i].vring.num,
1076 vring_avail_idx(&vdev->vq[i]),
1077 vdev->vq[i].last_avail_idx, nheads);
1078 return -1;
1079 }
1080 }
1081 }
1082
1083 return 0;
967f97fa
AL
1084}
1085
6a1a8cc7 1086void virtio_cleanup(VirtIODevice *vdev)
b946a153 1087{
85cf2a8d 1088 qemu_del_vm_change_state_handler(vdev->vmstate);
6f79e06b 1089 g_free(vdev->config);
7267c094 1090 g_free(vdev->vq);
8e05db92
FK
1091}
1092
1dfb4dd9 1093static void virtio_vmstate_change(void *opaque, int running, RunState state)
85cf2a8d
MT
1094{
1095 VirtIODevice *vdev = opaque;
1c819449
FK
1096 BusState *qbus = qdev_get_parent_bus(DEVICE(vdev));
1097 VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus);
85cf2a8d 1098 bool backend_run = running && (vdev->status & VIRTIO_CONFIG_S_DRIVER_OK);
9e8e8c48 1099 vdev->vm_running = running;
85cf2a8d
MT
1100
1101 if (backend_run) {
1102 virtio_set_status(vdev, vdev->status);
1103 }
1104
1c819449
FK
1105 if (k->vmstate_change) {
1106 k->vmstate_change(qbus->parent, backend_run);
85cf2a8d
MT
1107 }
1108
1109 if (!backend_run) {
1110 virtio_set_status(vdev, vdev->status);
1111 }
1112}
1113
c8075caf
GA
1114void virtio_instance_init_common(Object *proxy_obj, void *data,
1115 size_t vdev_size, const char *vdev_name)
1116{
1117 DeviceState *vdev = data;
1118
1119 object_initialize(vdev, vdev_size, vdev_name);
1120 object_property_add_child(proxy_obj, "virtio-backend", OBJECT(vdev), NULL);
1121 object_unref(OBJECT(vdev));
1122 qdev_alias_all_properties(vdev, proxy_obj);
1123}
1124
8e05db92
FK
1125void virtio_init(VirtIODevice *vdev, const char *name,
1126 uint16_t device_id, size_t config_size)
967f97fa 1127{
b8193adb 1128 int i;
53c25cea 1129 vdev->device_id = device_id;
967f97fa
AL
1130 vdev->status = 0;
1131 vdev->isr = 0;
1132 vdev->queue_sel = 0;
7055e687 1133 vdev->config_vector = VIRTIO_NO_VECTOR;
7267c094 1134 vdev->vq = g_malloc0(sizeof(VirtQueue) * VIRTIO_PCI_QUEUE_MAX);
1354869c 1135 vdev->vm_running = runstate_is_running();
8e05db92 1136 for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
b8193adb 1137 vdev->vq[i].vector = VIRTIO_NO_VECTOR;
1cbdabe2 1138 vdev->vq[i].vdev = vdev;
e78a2b42 1139 vdev->vq[i].queue_index = i;
1cbdabe2 1140 }
967f97fa 1141
967f97fa
AL
1142 vdev->name = name;
1143 vdev->config_len = config_size;
8e05db92 1144 if (vdev->config_len) {
7267c094 1145 vdev->config = g_malloc0(config_size);
8e05db92 1146 } else {
967f97fa 1147 vdev->config = NULL;
8e05db92
FK
1148 }
1149 vdev->vmstate = qemu_add_vm_change_state_handler(virtio_vmstate_change,
1150 vdev);
616a6552 1151 vdev->device_endian = virtio_default_endian();
8e05db92 1152}
967f97fa 1153
a8170e5e 1154hwaddr virtio_queue_get_desc_addr(VirtIODevice *vdev, int n)
1cbdabe2
MT
1155{
1156 return vdev->vq[n].vring.desc;
1157}
1158
a8170e5e 1159hwaddr virtio_queue_get_avail_addr(VirtIODevice *vdev, int n)
1cbdabe2
MT
1160{
1161 return vdev->vq[n].vring.avail;
1162}
1163
a8170e5e 1164hwaddr virtio_queue_get_used_addr(VirtIODevice *vdev, int n)
1cbdabe2
MT
1165{
1166 return vdev->vq[n].vring.used;
1167}
1168
a8170e5e 1169hwaddr virtio_queue_get_ring_addr(VirtIODevice *vdev, int n)
1cbdabe2
MT
1170{
1171 return vdev->vq[n].vring.desc;
1172}
1173
a8170e5e 1174hwaddr virtio_queue_get_desc_size(VirtIODevice *vdev, int n)
1cbdabe2
MT
1175{
1176 return sizeof(VRingDesc) * vdev->vq[n].vring.num;
1177}
1178
a8170e5e 1179hwaddr virtio_queue_get_avail_size(VirtIODevice *vdev, int n)
1cbdabe2
MT
1180{
1181 return offsetof(VRingAvail, ring) +
2b3af999 1182 sizeof(uint64_t) * vdev->vq[n].vring.num;
1cbdabe2
MT
1183}
1184
a8170e5e 1185hwaddr virtio_queue_get_used_size(VirtIODevice *vdev, int n)
1cbdabe2
MT
1186{
1187 return offsetof(VRingUsed, ring) +
1188 sizeof(VRingUsedElem) * vdev->vq[n].vring.num;
1189}
1190
a8170e5e 1191hwaddr virtio_queue_get_ring_size(VirtIODevice *vdev, int n)
1cbdabe2
MT
1192{
1193 return vdev->vq[n].vring.used - vdev->vq[n].vring.desc +
1194 virtio_queue_get_used_size(vdev, n);
1195}
1196
1197uint16_t virtio_queue_get_last_avail_idx(VirtIODevice *vdev, int n)
1198{
1199 return vdev->vq[n].last_avail_idx;
1200}
1201
1202void virtio_queue_set_last_avail_idx(VirtIODevice *vdev, int n, uint16_t idx)
1203{
1204 vdev->vq[n].last_avail_idx = idx;
1205}
1206
6793dfd1
SH
1207void virtio_queue_invalidate_signalled_used(VirtIODevice *vdev, int n)
1208{
1209 vdev->vq[n].signalled_used_valid = false;
1210}
1211
1cbdabe2
MT
1212VirtQueue *virtio_get_queue(VirtIODevice *vdev, int n)
1213{
1214 return vdev->vq + n;
1215}
1216
e78a2b42
JW
1217uint16_t virtio_get_queue_index(VirtQueue *vq)
1218{
1219 return vq->queue_index;
1220}
1221
15b2bd18
PB
1222static void virtio_queue_guest_notifier_read(EventNotifier *n)
1223{
1224 VirtQueue *vq = container_of(n, VirtQueue, guest_notifier);
1225 if (event_notifier_test_and_clear(n)) {
1226 virtio_irq(vq);
1227 }
1228}
1229
1230void virtio_queue_set_guest_notifier_fd_handler(VirtQueue *vq, bool assign,
1231 bool with_irqfd)
1232{
1233 if (assign && !with_irqfd) {
1234 event_notifier_set_handler(&vq->guest_notifier,
1235 virtio_queue_guest_notifier_read);
1236 } else {
1237 event_notifier_set_handler(&vq->guest_notifier, NULL);
1238 }
1239 if (!assign) {
1240 /* Test and clear notifier before closing it,
1241 * in case poll callback didn't have time to run. */
1242 virtio_queue_guest_notifier_read(&vq->guest_notifier);
1243 }
1244}
1245
1cbdabe2
MT
1246EventNotifier *virtio_queue_get_guest_notifier(VirtQueue *vq)
1247{
1248 return &vq->guest_notifier;
1249}
b1f416aa
PB
1250
1251static void virtio_queue_host_notifier_read(EventNotifier *n)
1252{
1253 VirtQueue *vq = container_of(n, VirtQueue, host_notifier);
1254 if (event_notifier_test_and_clear(n)) {
1255 virtio_queue_notify_vq(vq);
1256 }
1257}
1258
26b9b5fe
PB
1259void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign,
1260 bool set_handler)
b1f416aa 1261{
26b9b5fe 1262 if (assign && set_handler) {
b1f416aa
PB
1263 event_notifier_set_handler(&vq->host_notifier,
1264 virtio_queue_host_notifier_read);
1265 } else {
1266 event_notifier_set_handler(&vq->host_notifier, NULL);
26b9b5fe
PB
1267 }
1268 if (!assign) {
b1f416aa
PB
1269 /* Test and clear notifier before after disabling event,
1270 * in case poll callback didn't have time to run. */
1271 virtio_queue_host_notifier_read(&vq->host_notifier);
1272 }
1273}
1274
1cbdabe2
MT
1275EventNotifier *virtio_queue_get_host_notifier(VirtQueue *vq)
1276{
1277 return &vq->host_notifier;
1278}
8e05db92 1279
1034e9cf
FK
1280void virtio_device_set_child_bus_name(VirtIODevice *vdev, char *bus_name)
1281{
9e288406 1282 g_free(vdev->bus_name);
80e0090a 1283 vdev->bus_name = g_strdup(bus_name);
1034e9cf
FK
1284}
1285
1d244b42
AF
1286static void virtio_device_realize(DeviceState *dev, Error **errp)
1287{
1288 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
1289 VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(dev);
1290 Error *err = NULL;
1291
1d244b42
AF
1292 if (vdc->realize != NULL) {
1293 vdc->realize(dev, &err);
1294 if (err != NULL) {
1295 error_propagate(errp, err);
1296 return;
1297 }
8e05db92 1298 }
5e96f5d2 1299 virtio_bus_device_plugged(vdev);
8e05db92
FK
1300}
1301
1d244b42 1302static void virtio_device_unrealize(DeviceState *dev, Error **errp)
1034e9cf 1303{
1d244b42 1304 VirtIODevice *vdev = VIRTIO_DEVICE(dev);
306ec6c3
AF
1305 VirtioDeviceClass *vdc = VIRTIO_DEVICE_GET_CLASS(dev);
1306 Error *err = NULL;
1d244b42 1307
83d07047
PB
1308 virtio_bus_device_unplugged(vdev);
1309
306ec6c3
AF
1310 if (vdc->unrealize != NULL) {
1311 vdc->unrealize(dev, &err);
1312 if (err != NULL) {
1313 error_propagate(errp, err);
1314 return;
1315 }
5e96f5d2 1316 }
1d244b42 1317
9e288406
MA
1318 g_free(vdev->bus_name);
1319 vdev->bus_name = NULL;
1034e9cf
FK
1320}
1321
8e05db92
FK
1322static void virtio_device_class_init(ObjectClass *klass, void *data)
1323{
1324 /* Set the default value here. */
1325 DeviceClass *dc = DEVICE_CLASS(klass);
1d244b42
AF
1326
1327 dc->realize = virtio_device_realize;
1328 dc->unrealize = virtio_device_unrealize;
8e05db92
FK
1329 dc->bus_type = TYPE_VIRTIO_BUS;
1330}
1331
1332static const TypeInfo virtio_device_info = {
1333 .name = TYPE_VIRTIO_DEVICE,
1334 .parent = TYPE_DEVICE,
1335 .instance_size = sizeof(VirtIODevice),
1336 .class_init = virtio_device_class_init,
1337 .abstract = true,
1338 .class_size = sizeof(VirtioDeviceClass),
1339};
1340
1341static void virtio_register_types(void)
1342{
1343 type_register_static(&virtio_device_info);
1344}
1345
1346type_init(virtio_register_types)