4 * Copyright (c) 2014 Marc MarĂ
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #include "qemu/osdep.h"
12 #include "libqos/virtio.h"
13 #include "standard-headers/linux/virtio_config.h"
14 #include "standard-headers/linux/virtio_ring.h"
16 uint8_t qvirtio_config_readb(QVirtioDevice
*d
, uint64_t addr
)
18 return d
->bus
->config_readb(d
, addr
);
21 uint16_t qvirtio_config_readw(QVirtioDevice
*d
, uint64_t addr
)
23 return d
->bus
->config_readw(d
, addr
);
26 uint32_t qvirtio_config_readl(QVirtioDevice
*d
, uint64_t addr
)
28 return d
->bus
->config_readl(d
, addr
);
31 uint64_t qvirtio_config_readq(QVirtioDevice
*d
, uint64_t addr
)
33 return d
->bus
->config_readq(d
, addr
);
36 uint32_t qvirtio_get_features(QVirtioDevice
*d
)
38 return d
->bus
->get_features(d
);
41 void qvirtio_set_features(QVirtioDevice
*d
, uint32_t features
)
43 d
->bus
->set_features(d
, features
);
46 QVirtQueue
*qvirtqueue_setup(QVirtioDevice
*d
,
47 QGuestAllocator
*alloc
, uint16_t index
)
49 return d
->bus
->virtqueue_setup(d
, alloc
, index
);
52 void qvirtqueue_cleanup(const QVirtioBus
*bus
, QVirtQueue
*vq
,
53 QGuestAllocator
*alloc
)
55 return bus
->virtqueue_cleanup(vq
, alloc
);
58 void qvirtio_reset(QVirtioDevice
*d
)
60 d
->bus
->set_status(d
, 0);
61 g_assert_cmphex(d
->bus
->get_status(d
), ==, 0);
64 void qvirtio_set_acknowledge(QVirtioDevice
*d
)
66 d
->bus
->set_status(d
, d
->bus
->get_status(d
) | VIRTIO_CONFIG_S_ACKNOWLEDGE
);
67 g_assert_cmphex(d
->bus
->get_status(d
), ==, VIRTIO_CONFIG_S_ACKNOWLEDGE
);
70 void qvirtio_set_driver(QVirtioDevice
*d
)
72 d
->bus
->set_status(d
, d
->bus
->get_status(d
) | VIRTIO_CONFIG_S_DRIVER
);
73 g_assert_cmphex(d
->bus
->get_status(d
), ==,
74 VIRTIO_CONFIG_S_DRIVER
| VIRTIO_CONFIG_S_ACKNOWLEDGE
);
77 void qvirtio_set_driver_ok(QVirtioDevice
*d
)
79 d
->bus
->set_status(d
, d
->bus
->get_status(d
) | VIRTIO_CONFIG_S_DRIVER_OK
);
80 g_assert_cmphex(d
->bus
->get_status(d
), ==, VIRTIO_CONFIG_S_DRIVER_OK
|
81 VIRTIO_CONFIG_S_DRIVER
| VIRTIO_CONFIG_S_ACKNOWLEDGE
);
84 void qvirtio_wait_queue_isr(QVirtioDevice
*d
,
85 QVirtQueue
*vq
, gint64 timeout_us
)
87 gint64 start_time
= g_get_monotonic_time();
91 if (d
->bus
->get_queue_isr_status(d
, vq
)) {
94 g_assert(g_get_monotonic_time() - start_time
<= timeout_us
);
98 /* Wait for the status byte at given guest memory address to be set
100 * The virtqueue interrupt must not be raised, making this useful for testing
101 * event_index functionality.
103 uint8_t qvirtio_wait_status_byte_no_isr(QVirtioDevice
*d
,
108 gint64 start_time
= g_get_monotonic_time();
111 while ((val
= readb(addr
)) == 0xff) {
113 g_assert(!d
->bus
->get_queue_isr_status(d
, vq
));
114 g_assert(g_get_monotonic_time() - start_time
<= timeout_us
);
120 * qvirtio_wait_used_elem:
121 * @desc_idx: The next expected vq->desc[] index in the used ring
122 * @len: A pointer that is filled with the length written into the buffer, may
124 * @timeout_us: How many microseconds to wait before failing
126 * This function waits for the next completed request on the used ring.
128 void qvirtio_wait_used_elem(QVirtioDevice
*d
,
134 gint64 start_time
= g_get_monotonic_time();
137 uint32_t got_desc_idx
;
141 if (d
->bus
->get_queue_isr_status(d
, vq
) &&
142 qvirtqueue_get_buf(vq
, &got_desc_idx
, len
)) {
143 g_assert_cmpint(got_desc_idx
, ==, desc_idx
);
147 g_assert(g_get_monotonic_time() - start_time
<= timeout_us
);
151 void qvirtio_wait_config_isr(QVirtioDevice
*d
, gint64 timeout_us
)
153 gint64 start_time
= g_get_monotonic_time();
157 if (d
->bus
->get_config_isr_status(d
)) {
160 g_assert(g_get_monotonic_time() - start_time
<= timeout_us
);
164 void qvring_init(const QGuestAllocator
*alloc
, QVirtQueue
*vq
, uint64_t addr
)
169 vq
->avail
= vq
->desc
+ vq
->size
* sizeof(struct vring_desc
);
170 vq
->used
= (uint64_t)((vq
->avail
+ sizeof(uint16_t) * (3 + vq
->size
)
171 + vq
->align
- 1) & ~(vq
->align
- 1));
173 for (i
= 0; i
< vq
->size
- 1; i
++) {
174 /* vq->desc[i].addr */
175 writeq(vq
->desc
+ (16 * i
), 0);
176 /* vq->desc[i].next */
177 writew(vq
->desc
+ (16 * i
) + 14, i
+ 1);
180 /* vq->avail->flags */
181 writew(vq
->avail
, 0);
183 writew(vq
->avail
+ 2, 0);
184 /* vq->avail->used_event */
185 writew(vq
->avail
+ 4 + (2 * vq
->size
), 0);
187 /* vq->used->flags */
189 /* vq->used->avail_event */
190 writew(vq
->used
+ 2 + sizeof(struct vring_used_elem
) * vq
->size
, 0);
193 QVRingIndirectDesc
*qvring_indirect_desc_setup(QVirtioDevice
*d
,
194 QGuestAllocator
*alloc
, uint16_t elem
)
197 QVRingIndirectDesc
*indirect
= g_malloc(sizeof(*indirect
));
200 indirect
->elem
= elem
;
201 indirect
->desc
= guest_alloc(alloc
, sizeof(struct vring_desc
) * elem
);
203 for (i
= 0; i
< elem
- 1; ++i
) {
204 /* indirect->desc[i].addr */
205 writeq(indirect
->desc
+ (16 * i
), 0);
206 /* indirect->desc[i].flags */
207 writew(indirect
->desc
+ (16 * i
) + 12, VRING_DESC_F_NEXT
);
208 /* indirect->desc[i].next */
209 writew(indirect
->desc
+ (16 * i
) + 14, i
+ 1);
215 void qvring_indirect_desc_add(QVRingIndirectDesc
*indirect
, uint64_t data
,
216 uint32_t len
, bool write
)
220 g_assert_cmpint(indirect
->index
, <, indirect
->elem
);
222 flags
= readw(indirect
->desc
+ (16 * indirect
->index
) + 12);
225 flags
|= VRING_DESC_F_WRITE
;
228 /* indirect->desc[indirect->index].addr */
229 writeq(indirect
->desc
+ (16 * indirect
->index
), data
);
230 /* indirect->desc[indirect->index].len */
231 writel(indirect
->desc
+ (16 * indirect
->index
) + 8, len
);
232 /* indirect->desc[indirect->index].flags */
233 writew(indirect
->desc
+ (16 * indirect
->index
) + 12, flags
);
238 uint32_t qvirtqueue_add(QVirtQueue
*vq
, uint64_t data
, uint32_t len
, bool write
,
245 flags
|= VRING_DESC_F_WRITE
;
249 flags
|= VRING_DESC_F_NEXT
;
252 /* vq->desc[vq->free_head].addr */
253 writeq(vq
->desc
+ (16 * vq
->free_head
), data
);
254 /* vq->desc[vq->free_head].len */
255 writel(vq
->desc
+ (16 * vq
->free_head
) + 8, len
);
256 /* vq->desc[vq->free_head].flags */
257 writew(vq
->desc
+ (16 * vq
->free_head
) + 12, flags
);
259 return vq
->free_head
++; /* Return and increase, in this order */
262 uint32_t qvirtqueue_add_indirect(QVirtQueue
*vq
, QVRingIndirectDesc
*indirect
)
264 g_assert(vq
->indirect
);
265 g_assert_cmpint(vq
->size
, >=, indirect
->elem
);
266 g_assert_cmpint(indirect
->index
, ==, indirect
->elem
);
270 /* vq->desc[vq->free_head].addr */
271 writeq(vq
->desc
+ (16 * vq
->free_head
), indirect
->desc
);
272 /* vq->desc[vq->free_head].len */
273 writel(vq
->desc
+ (16 * vq
->free_head
) + 8,
274 sizeof(struct vring_desc
) * indirect
->elem
);
275 /* vq->desc[vq->free_head].flags */
276 writew(vq
->desc
+ (16 * vq
->free_head
) + 12, VRING_DESC_F_INDIRECT
);
278 return vq
->free_head
++; /* Return and increase, in this order */
281 void qvirtqueue_kick(QVirtioDevice
*d
, QVirtQueue
*vq
, uint32_t free_head
)
284 uint16_t idx
= readw(vq
->avail
+ 2);
285 /* vq->used->flags */
287 /* vq->used->avail_event */
288 uint16_t avail_event
;
290 /* vq->avail->ring[idx % vq->size] */
291 writew(vq
->avail
+ 4 + (2 * (idx
% vq
->size
)), free_head
);
293 writew(vq
->avail
+ 2, idx
+ 1);
295 /* Must read after idx is updated */
296 flags
= readw(vq
->avail
);
297 avail_event
= readw(vq
->used
+ 4 +
298 sizeof(struct vring_used_elem
) * vq
->size
);
300 /* < 1 because we add elements to avail queue one by one */
301 if ((flags
& VRING_USED_F_NO_NOTIFY
) == 0 &&
302 (!vq
->event
|| (uint16_t)(idx
-avail_event
) < 1)) {
303 d
->bus
->virtqueue_kick(d
, vq
);
308 * qvirtqueue_get_buf:
309 * @desc_idx: A pointer that is filled with the vq->desc[] index, may be NULL
310 * @len: A pointer that is filled with the length written into the buffer, may
313 * This function gets the next used element if there is one ready.
315 * Returns: true if an element was ready, false otherwise
317 bool qvirtqueue_get_buf(QVirtQueue
*vq
, uint32_t *desc_idx
, uint32_t *len
)
322 idx
= readw(vq
->used
+ offsetof(struct vring_used
, idx
));
323 if (idx
== vq
->last_used_idx
) {
327 elem_addr
= vq
->used
+
328 offsetof(struct vring_used
, ring
) +
329 (vq
->last_used_idx
% vq
->size
) *
330 sizeof(struct vring_used_elem
);
333 *desc_idx
= readl(elem_addr
+ offsetof(struct vring_used_elem
, id
));
337 *len
= readw(elem_addr
+ offsetof(struct vring_used_elem
, len
));
344 void qvirtqueue_set_used_event(QVirtQueue
*vq
, uint16_t idx
)
348 /* vq->avail->used_event */
349 writew(vq
->avail
+ 4 + (2 * vq
->size
), idx
);
353 * qvirtio_get_dev_type:
354 * Returns: the preferred virtio bus/device type for the current architecture.
356 const char *qvirtio_get_dev_type(void)
358 const char *arch
= qtest_get_arch();
360 if (g_str_equal(arch
, "arm") || g_str_equal(arch
, "aarch64")) {
361 return "device"; /* for virtio-mmio */
362 } else if (g_str_equal(arch
, "s390x")) {