2008-12-04 20:38:57 +01:00
|
|
|
/*
|
|
|
|
* Virtio Support
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2007
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#include "virtio.h"
|
|
|
|
#include "sysemu.h"
|
|
|
|
|
2008-12-04 20:58:45 +01:00
|
|
|
/* The alignment to use between consumer and producer parts of vring.
|
|
|
|
* x86 pagesize again. */
|
|
|
|
#define VIRTIO_PCI_VRING_ALIGN 4096
|
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
/* QEMU doesn't strictly need write barriers since everything runs in
|
|
|
|
* lock-step. We'll leave the calls to wmb() in though to make it obvious for
|
|
|
|
* KVM or if kqemu gets SMP support.
|
2009-10-26 14:17:15 +01:00
|
|
|
* In any case, we must prevent the compiler from reordering the code.
|
|
|
|
* TODO: we likely need some rmb()/mb() as well.
|
2008-12-04 20:38:57 +01:00
|
|
|
*/
|
2009-10-26 14:17:15 +01:00
|
|
|
|
|
|
|
#define wmb() __asm__ __volatile__("": : :"memory")
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
typedef struct VRingDesc
|
|
|
|
{
|
|
|
|
uint64_t addr;
|
|
|
|
uint32_t len;
|
|
|
|
uint16_t flags;
|
|
|
|
uint16_t next;
|
|
|
|
} VRingDesc;
|
|
|
|
|
|
|
|
typedef struct VRingAvail
|
|
|
|
{
|
|
|
|
uint16_t flags;
|
|
|
|
uint16_t idx;
|
|
|
|
uint16_t ring[0];
|
|
|
|
} VRingAvail;
|
|
|
|
|
|
|
|
typedef struct VRingUsedElem
|
|
|
|
{
|
|
|
|
uint32_t id;
|
|
|
|
uint32_t len;
|
|
|
|
} VRingUsedElem;
|
|
|
|
|
|
|
|
typedef struct VRingUsed
|
|
|
|
{
|
|
|
|
uint16_t flags;
|
|
|
|
uint16_t idx;
|
|
|
|
VRingUsedElem ring[0];
|
|
|
|
} VRingUsed;
|
|
|
|
|
|
|
|
typedef struct VRing
|
|
|
|
{
|
|
|
|
unsigned int num;
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t desc;
|
|
|
|
target_phys_addr_t avail;
|
|
|
|
target_phys_addr_t used;
|
2008-12-04 20:38:57 +01:00
|
|
|
} VRing;
|
|
|
|
|
|
|
|
struct VirtQueue
|
|
|
|
{
|
|
|
|
VRing vring;
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
uint16_t last_avail_idx;
|
|
|
|
int inuse;
|
2009-06-21 18:50:13 +02:00
|
|
|
uint16_t vector;
|
2008-12-04 20:38:57 +01:00
|
|
|
void (*handle_output)(VirtIODevice *vdev, VirtQueue *vq);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* virt queue functions */
|
2009-05-18 15:51:59 +02:00
|
|
|
static void virtqueue_init(VirtQueue *vq)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa = vq->pa;
|
2009-05-18 15:51:59 +02:00
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
vq->vring.desc = pa;
|
|
|
|
vq->vring.avail = pa + vq->vring.num * sizeof(VRingDesc);
|
2008-12-04 20:58:45 +01:00
|
|
|
vq->vring.used = vring_align(vq->vring.avail +
|
|
|
|
offsetof(VRingAvail, ring[vq->vring.num]),
|
|
|
|
VIRTIO_PCI_VRING_ALIGN);
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static inline uint64_t vring_desc_addr(target_phys_addr_t desc_pa, int i)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2009-06-17 12:37:32 +02:00
|
|
|
pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, addr);
|
2008-12-04 20:38:57 +01:00
|
|
|
return ldq_phys(pa);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static inline uint32_t vring_desc_len(target_phys_addr_t desc_pa, int i)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2009-06-17 12:37:32 +02:00
|
|
|
pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, len);
|
2008-12-04 20:38:57 +01:00
|
|
|
return ldl_phys(pa);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static inline uint16_t vring_desc_flags(target_phys_addr_t desc_pa, int i)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2009-06-17 12:37:32 +02:00
|
|
|
pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, flags);
|
2008-12-04 20:38:57 +01:00
|
|
|
return lduw_phys(pa);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static inline uint16_t vring_desc_next(target_phys_addr_t desc_pa, int i)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2009-06-17 12:37:32 +02:00
|
|
|
pa = desc_pa + sizeof(VRingDesc) * i + offsetof(VRingDesc, next);
|
2008-12-04 20:38:57 +01:00
|
|
|
return lduw_phys(pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t vring_avail_flags(VirtQueue *vq)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.avail + offsetof(VRingAvail, flags);
|
|
|
|
return lduw_phys(pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t vring_avail_idx(VirtQueue *vq)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.avail + offsetof(VRingAvail, idx);
|
|
|
|
return lduw_phys(pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint16_t vring_avail_ring(VirtQueue *vq, int i)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.avail + offsetof(VRingAvail, ring[i]);
|
|
|
|
return lduw_phys(pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void vring_used_ring_id(VirtQueue *vq, int i, uint32_t val)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.used + offsetof(VRingUsed, ring[i].id);
|
|
|
|
stl_phys(pa, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void vring_used_ring_len(VirtQueue *vq, int i, uint32_t val)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.used + offsetof(VRingUsed, ring[i].len);
|
|
|
|
stl_phys(pa, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint16_t vring_used_idx(VirtQueue *vq)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.used + offsetof(VRingUsed, idx);
|
|
|
|
return lduw_phys(pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void vring_used_idx_increment(VirtQueue *vq, uint16_t val)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.used + offsetof(VRingUsed, idx);
|
|
|
|
stw_phys(pa, vring_used_idx(vq) + val);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void vring_used_flags_set_bit(VirtQueue *vq, int mask)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.used + offsetof(VRingUsed, flags);
|
|
|
|
stw_phys(pa, lduw_phys(pa) | mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void vring_used_flags_unset_bit(VirtQueue *vq, int mask)
|
|
|
|
{
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
pa = vq->vring.used + offsetof(VRingUsed, flags);
|
|
|
|
stw_phys(pa, lduw_phys(pa) & ~mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_queue_set_notification(VirtQueue *vq, int enable)
|
|
|
|
{
|
|
|
|
if (enable)
|
|
|
|
vring_used_flags_unset_bit(vq, VRING_USED_F_NO_NOTIFY);
|
|
|
|
else
|
|
|
|
vring_used_flags_set_bit(vq, VRING_USED_F_NO_NOTIFY);
|
|
|
|
}
|
|
|
|
|
|
|
|
int virtio_queue_ready(VirtQueue *vq)
|
|
|
|
{
|
|
|
|
return vq->vring.avail != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int virtio_queue_empty(VirtQueue *vq)
|
|
|
|
{
|
|
|
|
return vring_avail_idx(vq) == vq->last_avail_idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtqueue_fill(VirtQueue *vq, const VirtQueueElement *elem,
|
|
|
|
unsigned int len, unsigned int idx)
|
|
|
|
{
|
|
|
|
unsigned int offset;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
offset = 0;
|
|
|
|
for (i = 0; i < elem->in_num; i++) {
|
|
|
|
size_t size = MIN(len - offset, elem->in_sg[i].iov_len);
|
|
|
|
|
2009-03-28 18:46:18 +01:00
|
|
|
cpu_physical_memory_unmap(elem->in_sg[i].iov_base,
|
|
|
|
elem->in_sg[i].iov_len,
|
|
|
|
1, size);
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-03-28 18:46:18 +01:00
|
|
|
offset += elem->in_sg[i].iov_len;
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
2009-03-28 18:46:18 +01:00
|
|
|
for (i = 0; i < elem->out_num; i++)
|
|
|
|
cpu_physical_memory_unmap(elem->out_sg[i].iov_base,
|
|
|
|
elem->out_sg[i].iov_len,
|
|
|
|
0, elem->out_sg[i].iov_len);
|
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
idx = (idx + vring_used_idx(vq)) % vq->vring.num;
|
|
|
|
|
|
|
|
/* Get a pointer to the next entry in the used ring. */
|
|
|
|
vring_used_ring_id(vq, idx, elem->index);
|
|
|
|
vring_used_ring_len(vq, idx, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtqueue_flush(VirtQueue *vq, unsigned int count)
|
|
|
|
{
|
|
|
|
/* Make sure buffer is written before we update index. */
|
|
|
|
wmb();
|
|
|
|
vring_used_idx_increment(vq, count);
|
|
|
|
vq->inuse -= count;
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtqueue_push(VirtQueue *vq, const VirtQueueElement *elem,
|
|
|
|
unsigned int len)
|
|
|
|
{
|
|
|
|
virtqueue_fill(vq, elem, len, 0);
|
|
|
|
virtqueue_flush(vq, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int virtqueue_num_heads(VirtQueue *vq, unsigned int idx)
|
|
|
|
{
|
|
|
|
uint16_t num_heads = vring_avail_idx(vq) - idx;
|
|
|
|
|
|
|
|
/* Check it isn't doing very strange things with descriptor numbers. */
|
2008-12-04 22:28:28 +01:00
|
|
|
if (num_heads > vq->vring.num) {
|
|
|
|
fprintf(stderr, "Guest moved used index from %u to %u",
|
|
|
|
idx, vring_avail_idx(vq));
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
return num_heads;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int virtqueue_get_head(VirtQueue *vq, unsigned int idx)
|
|
|
|
{
|
|
|
|
unsigned int head;
|
|
|
|
|
|
|
|
/* Grab the next descriptor number they're advertising, and increment
|
|
|
|
* the index we've seen. */
|
|
|
|
head = vring_avail_ring(vq, idx % vq->vring.num);
|
|
|
|
|
|
|
|
/* If their number is silly, that's a fatal mistake. */
|
2008-12-04 22:28:28 +01:00
|
|
|
if (head >= vq->vring.num) {
|
|
|
|
fprintf(stderr, "Guest says index %u is available", head);
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
return head;
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
static unsigned virtqueue_next_desc(target_phys_addr_t desc_pa,
|
2009-06-17 12:37:32 +02:00
|
|
|
unsigned int i, unsigned int max)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
unsigned int next;
|
|
|
|
|
|
|
|
/* If this descriptor says it doesn't chain, we're done. */
|
2009-06-17 12:37:32 +02:00
|
|
|
if (!(vring_desc_flags(desc_pa, i) & VRING_DESC_F_NEXT))
|
|
|
|
return max;
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
/* Check they're not leading us off end of descriptors. */
|
2009-06-17 12:37:32 +02:00
|
|
|
next = vring_desc_next(desc_pa, i);
|
2008-12-04 20:38:57 +01:00
|
|
|
/* Make sure compiler knows to grab that: we don't want it changing! */
|
|
|
|
wmb();
|
|
|
|
|
2009-06-17 12:37:32 +02:00
|
|
|
if (next >= max) {
|
2008-12-04 22:28:28 +01:00
|
|
|
fprintf(stderr, "Desc next is %u", next);
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
|
|
|
int virtqueue_avail_bytes(VirtQueue *vq, int in_bytes, int out_bytes)
|
|
|
|
{
|
2009-06-17 12:38:28 +02:00
|
|
|
unsigned int idx;
|
|
|
|
int total_bufs, in_total, out_total;
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
idx = vq->last_avail_idx;
|
|
|
|
|
2009-06-17 12:38:28 +02:00
|
|
|
total_bufs = in_total = out_total = 0;
|
2008-12-04 20:38:57 +01:00
|
|
|
while (virtqueue_num_heads(vq, idx)) {
|
2009-06-17 12:38:28 +02:00
|
|
|
unsigned int max, num_bufs, indirect = 0;
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t desc_pa;
|
2008-12-04 20:38:57 +01:00
|
|
|
int i;
|
|
|
|
|
2009-06-17 12:38:28 +02:00
|
|
|
max = vq->vring.num;
|
|
|
|
num_bufs = total_bufs;
|
2008-12-04 20:38:57 +01:00
|
|
|
i = virtqueue_get_head(vq, idx++);
|
2009-06-17 12:38:28 +02:00
|
|
|
desc_pa = vq->vring.desc;
|
|
|
|
|
|
|
|
if (vring_desc_flags(desc_pa, i) & VRING_DESC_F_INDIRECT) {
|
|
|
|
if (vring_desc_len(desc_pa, i) % sizeof(VRingDesc)) {
|
|
|
|
fprintf(stderr, "Invalid size for indirect buffer table\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we've got too many, that implies a descriptor loop. */
|
|
|
|
if (num_bufs >= max) {
|
|
|
|
fprintf(stderr, "Looped descriptor");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* loop over the indirect descriptor table */
|
|
|
|
indirect = 1;
|
|
|
|
max = vring_desc_len(desc_pa, i) / sizeof(VRingDesc);
|
|
|
|
num_bufs = i = 0;
|
|
|
|
desc_pa = vring_desc_addr(desc_pa, i);
|
|
|
|
}
|
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
do {
|
|
|
|
/* If we've got too many, that implies a descriptor loop. */
|
2009-06-17 12:37:32 +02:00
|
|
|
if (++num_bufs > max) {
|
2008-12-04 22:28:28 +01:00
|
|
|
fprintf(stderr, "Looped descriptor");
|
|
|
|
exit(1);
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-06-17 12:37:32 +02:00
|
|
|
if (vring_desc_flags(desc_pa, i) & VRING_DESC_F_WRITE) {
|
2008-12-04 20:38:57 +01:00
|
|
|
if (in_bytes > 0 &&
|
2009-06-17 12:37:32 +02:00
|
|
|
(in_total += vring_desc_len(desc_pa, i)) >= in_bytes)
|
2008-12-04 20:38:57 +01:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
if (out_bytes > 0 &&
|
2009-06-17 12:37:32 +02:00
|
|
|
(out_total += vring_desc_len(desc_pa, i)) >= out_bytes)
|
2008-12-04 20:38:57 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2009-06-17 12:37:32 +02:00
|
|
|
} while ((i = virtqueue_next_desc(desc_pa, i, max)) != max);
|
2009-06-17 12:38:28 +02:00
|
|
|
|
|
|
|
if (!indirect)
|
|
|
|
total_bufs = num_bufs;
|
|
|
|
else
|
|
|
|
total_bufs++;
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int virtqueue_pop(VirtQueue *vq, VirtQueueElement *elem)
|
|
|
|
{
|
2009-06-17 12:37:32 +02:00
|
|
|
unsigned int i, head, max;
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t desc_pa = vq->vring.desc;
|
|
|
|
target_phys_addr_t len;
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
if (!virtqueue_num_heads(vq, vq->last_avail_idx))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* When we start there are none of either input nor output. */
|
|
|
|
elem->out_num = elem->in_num = 0;
|
|
|
|
|
2009-06-17 12:37:32 +02:00
|
|
|
max = vq->vring.num;
|
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
i = head = virtqueue_get_head(vq, vq->last_avail_idx++);
|
2009-06-17 12:38:28 +02:00
|
|
|
|
|
|
|
if (vring_desc_flags(desc_pa, i) & VRING_DESC_F_INDIRECT) {
|
|
|
|
if (vring_desc_len(desc_pa, i) % sizeof(VRingDesc)) {
|
|
|
|
fprintf(stderr, "Invalid size for indirect buffer table\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* loop over the indirect descriptor table */
|
|
|
|
max = vring_desc_len(desc_pa, i) / sizeof(VRingDesc);
|
|
|
|
desc_pa = vring_desc_addr(desc_pa, i);
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
do {
|
|
|
|
struct iovec *sg;
|
2009-03-28 18:46:18 +01:00
|
|
|
int is_write = 0;
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-06-17 12:37:32 +02:00
|
|
|
if (vring_desc_flags(desc_pa, i) & VRING_DESC_F_WRITE) {
|
|
|
|
elem->in_addr[elem->in_num] = vring_desc_addr(desc_pa, i);
|
2008-12-04 20:38:57 +01:00
|
|
|
sg = &elem->in_sg[elem->in_num++];
|
2009-03-28 18:46:18 +01:00
|
|
|
is_write = 1;
|
2008-12-04 20:38:57 +01:00
|
|
|
} else
|
|
|
|
sg = &elem->out_sg[elem->out_num++];
|
|
|
|
|
|
|
|
/* Grab the first descriptor, and check it's OK. */
|
2009-06-17 12:37:32 +02:00
|
|
|
sg->iov_len = vring_desc_len(desc_pa, i);
|
2009-03-28 18:46:18 +01:00
|
|
|
len = sg->iov_len;
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-06-17 12:37:32 +02:00
|
|
|
sg->iov_base = cpu_physical_memory_map(vring_desc_addr(desc_pa, i),
|
|
|
|
&len, is_write);
|
2009-03-28 18:46:18 +01:00
|
|
|
|
|
|
|
if (sg->iov_base == NULL || len != sg->iov_len) {
|
|
|
|
fprintf(stderr, "virtio: trying to map MMIO memory\n");
|
2008-12-04 22:28:28 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
/* If we've got too many, that implies a descriptor loop. */
|
2009-06-17 12:37:32 +02:00
|
|
|
if ((elem->in_num + elem->out_num) > max) {
|
2008-12-04 22:28:28 +01:00
|
|
|
fprintf(stderr, "Looped descriptor");
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-06-17 12:37:32 +02:00
|
|
|
} while ((i = virtqueue_next_desc(desc_pa, i, max)) != max);
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
elem->index = head;
|
|
|
|
|
|
|
|
vq->inuse++;
|
|
|
|
|
|
|
|
return elem->in_num + elem->out_num;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* virtio device */
|
2009-06-21 18:50:13 +02:00
|
|
|
static void virtio_notify_vector(VirtIODevice *vdev, uint16_t vector)
|
|
|
|
{
|
|
|
|
if (vdev->binding->notify) {
|
|
|
|
vdev->binding->notify(vdev->binding_opaque, vector);
|
|
|
|
}
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
void virtio_update_irq(VirtIODevice *vdev)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-06-21 18:50:13 +02:00
|
|
|
virtio_notify_vector(vdev, VIRTIO_NO_VECTOR);
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
void virtio_reset(void *opaque)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
VirtIODevice *vdev = opaque;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (vdev->reset)
|
|
|
|
vdev->reset(vdev);
|
|
|
|
|
2010-01-10 12:52:47 +01:00
|
|
|
vdev->guest_features = 0;
|
2008-12-04 20:38:57 +01:00
|
|
|
vdev->queue_sel = 0;
|
|
|
|
vdev->status = 0;
|
|
|
|
vdev->isr = 0;
|
2009-06-21 18:50:13 +02:00
|
|
|
vdev->config_vector = VIRTIO_NO_VECTOR;
|
|
|
|
virtio_notify_vector(vdev, vdev->config_vector);
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
for(i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
|
|
|
|
vdev->vq[i].vring.desc = 0;
|
|
|
|
vdev->vq[i].vring.avail = 0;
|
|
|
|
vdev->vq[i].vring.used = 0;
|
|
|
|
vdev->vq[i].last_avail_idx = 0;
|
2009-05-18 15:51:59 +02:00
|
|
|
vdev->vq[i].pa = 0;
|
2009-06-21 18:50:13 +02:00
|
|
|
vdev->vq[i].vector = VIRTIO_NO_VECTOR;
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
uint32_t virtio_config_readb(VirtIODevice *vdev, uint32_t addr)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
uint8_t val;
|
|
|
|
|
|
|
|
vdev->get_config(vdev, vdev->config);
|
|
|
|
|
|
|
|
if (addr > (vdev->config_len - sizeof(val)))
|
|
|
|
return (uint32_t)-1;
|
|
|
|
|
|
|
|
memcpy(&val, vdev->config + addr, sizeof(val));
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
uint32_t virtio_config_readw(VirtIODevice *vdev, uint32_t addr)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
uint16_t val;
|
|
|
|
|
|
|
|
vdev->get_config(vdev, vdev->config);
|
|
|
|
|
|
|
|
if (addr > (vdev->config_len - sizeof(val)))
|
|
|
|
return (uint32_t)-1;
|
|
|
|
|
|
|
|
memcpy(&val, vdev->config + addr, sizeof(val));
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
uint32_t virtio_config_readl(VirtIODevice *vdev, uint32_t addr)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
uint32_t val;
|
|
|
|
|
|
|
|
vdev->get_config(vdev, vdev->config);
|
|
|
|
|
|
|
|
if (addr > (vdev->config_len - sizeof(val)))
|
|
|
|
return (uint32_t)-1;
|
|
|
|
|
|
|
|
memcpy(&val, vdev->config + addr, sizeof(val));
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
void virtio_config_writeb(VirtIODevice *vdev, uint32_t addr, uint32_t data)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
uint8_t val = data;
|
|
|
|
|
|
|
|
if (addr > (vdev->config_len - sizeof(val)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
memcpy(vdev->config + addr, &val, sizeof(val));
|
|
|
|
|
|
|
|
if (vdev->set_config)
|
|
|
|
vdev->set_config(vdev, vdev->config);
|
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
void virtio_config_writew(VirtIODevice *vdev, uint32_t addr, uint32_t data)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
uint16_t val = data;
|
|
|
|
|
|
|
|
if (addr > (vdev->config_len - sizeof(val)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
memcpy(vdev->config + addr, &val, sizeof(val));
|
|
|
|
|
|
|
|
if (vdev->set_config)
|
|
|
|
vdev->set_config(vdev, vdev->config);
|
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
void virtio_config_writel(VirtIODevice *vdev, uint32_t addr, uint32_t data)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
uint32_t val = data;
|
|
|
|
|
|
|
|
if (addr > (vdev->config_len - sizeof(val)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
memcpy(vdev->config + addr, &val, sizeof(val));
|
|
|
|
|
|
|
|
if (vdev->set_config)
|
|
|
|
vdev->set_config(vdev, vdev->config);
|
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
void virtio_queue_set_addr(VirtIODevice *vdev, int n, target_phys_addr_t addr)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-06-21 18:50:13 +02:00
|
|
|
vdev->vq[n].pa = addr;
|
|
|
|
virtqueue_init(&vdev->vq[n]);
|
2009-05-18 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
2009-10-01 23:12:16 +02:00
|
|
|
target_phys_addr_t virtio_queue_get_addr(VirtIODevice *vdev, int n)
|
2009-05-18 15:51:59 +02:00
|
|
|
{
|
|
|
|
return vdev->vq[n].pa;
|
|
|
|
}
|
|
|
|
|
|
|
|
int virtio_queue_get_num(VirtIODevice *vdev, int n)
|
|
|
|
{
|
|
|
|
return vdev->vq[n].vring.num;
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
void virtio_queue_notify(VirtIODevice *vdev, int n)
|
|
|
|
{
|
|
|
|
if (n < VIRTIO_PCI_QUEUE_MAX && vdev->vq[n].vring.desc) {
|
|
|
|
vdev->vq[n].handle_output(vdev, &vdev->vq[n]);
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 18:50:13 +02:00
|
|
|
uint16_t virtio_queue_vector(VirtIODevice *vdev, int n)
|
|
|
|
{
|
|
|
|
return n < VIRTIO_PCI_QUEUE_MAX ? vdev->vq[n].vector :
|
|
|
|
VIRTIO_NO_VECTOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_queue_set_vector(VirtIODevice *vdev, int n, uint16_t vector)
|
|
|
|
{
|
|
|
|
if (n < VIRTIO_PCI_QUEUE_MAX)
|
|
|
|
vdev->vq[n].vector = vector;
|
|
|
|
}
|
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size,
|
|
|
|
void (*handle_output)(VirtIODevice *, VirtQueue *))
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
|
|
|
|
if (vdev->vq[i].vring.num == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == VIRTIO_PCI_QUEUE_MAX || queue_size > VIRTQUEUE_MAX_SIZE)
|
|
|
|
abort();
|
|
|
|
|
|
|
|
vdev->vq[i].vring.num = queue_size;
|
|
|
|
vdev->vq[i].handle_output = handle_output;
|
|
|
|
|
|
|
|
return &vdev->vq[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_notify(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
2009-03-20 17:13:50 +01:00
|
|
|
/* Always notify when queue is empty (when feature acknowledge) */
|
|
|
|
if ((vring_avail_flags(vq) & VRING_AVAIL_F_NO_INTERRUPT) &&
|
2010-01-10 12:52:47 +01:00
|
|
|
(!(vdev->guest_features & (1 << VIRTIO_F_NOTIFY_ON_EMPTY)) ||
|
2009-03-20 17:13:50 +01:00
|
|
|
(vq->inuse || vring_avail_idx(vq) != vq->last_avail_idx)))
|
2008-12-04 20:38:57 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
vdev->isr |= 0x01;
|
2009-06-21 18:50:13 +02:00
|
|
|
virtio_notify_vector(vdev, vq->vector);
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_notify_config(VirtIODevice *vdev)
|
|
|
|
{
|
2009-01-29 18:02:13 +01:00
|
|
|
if (!(vdev->status & VIRTIO_CONFIG_S_DRIVER_OK))
|
|
|
|
return;
|
|
|
|
|
2008-12-04 20:38:57 +01:00
|
|
|
vdev->isr |= 0x03;
|
2009-06-21 18:50:13 +02:00
|
|
|
virtio_notify_vector(vdev, vdev->config_vector);
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void virtio_save(VirtIODevice *vdev, QEMUFile *f)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2009-06-21 18:50:40 +02:00
|
|
|
if (vdev->binding->save_config)
|
|
|
|
vdev->binding->save_config(vdev->binding_opaque, f);
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
qemu_put_8s(f, &vdev->status);
|
|
|
|
qemu_put_8s(f, &vdev->isr);
|
|
|
|
qemu_put_be16s(f, &vdev->queue_sel);
|
2010-01-10 12:52:47 +01:00
|
|
|
qemu_put_be32s(f, &vdev->guest_features);
|
2008-12-04 20:38:57 +01:00
|
|
|
qemu_put_be32(f, vdev->config_len);
|
|
|
|
qemu_put_buffer(f, vdev->config, vdev->config_len);
|
|
|
|
|
|
|
|
for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
|
|
|
|
if (vdev->vq[i].vring.num == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
qemu_put_be32(f, i);
|
|
|
|
|
|
|
|
for (i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++) {
|
|
|
|
if (vdev->vq[i].vring.num == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
qemu_put_be32(f, vdev->vq[i].vring.num);
|
2009-05-18 15:51:59 +02:00
|
|
|
qemu_put_be64(f, vdev->vq[i].pa);
|
2008-12-04 20:38:57 +01:00
|
|
|
qemu_put_be16s(f, &vdev->vq[i].last_avail_idx);
|
2009-06-21 18:50:40 +02:00
|
|
|
if (vdev->binding->save_queue)
|
|
|
|
vdev->binding->save_queue(vdev->binding_opaque, i, f);
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-21 18:50:40 +02:00
|
|
|
int virtio_load(VirtIODevice *vdev, QEMUFile *f)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
2009-06-21 18:50:40 +02:00
|
|
|
int num, i, ret;
|
2009-12-08 19:07:48 +01:00
|
|
|
uint32_t features;
|
2010-01-10 12:52:53 +01:00
|
|
|
uint32_t supported_features =
|
2009-12-08 19:07:48 +01:00
|
|
|
vdev->binding->get_features(vdev->binding_opaque);
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-06-21 18:50:40 +02:00
|
|
|
if (vdev->binding->load_config) {
|
|
|
|
ret = vdev->binding->load_config(vdev->binding_opaque, f);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
qemu_get_8s(f, &vdev->status);
|
|
|
|
qemu_get_8s(f, &vdev->isr);
|
|
|
|
qemu_get_be16s(f, &vdev->queue_sel);
|
2009-12-08 19:07:48 +01:00
|
|
|
qemu_get_be32s(f, &features);
|
|
|
|
if (features & ~supported_features) {
|
|
|
|
fprintf(stderr, "Features 0x%x unsupported. Allowed features: 0x%x\n",
|
|
|
|
features, supported_features);
|
|
|
|
return -1;
|
|
|
|
}
|
2010-01-10 12:52:47 +01:00
|
|
|
vdev->guest_features = features;
|
2008-12-04 20:38:57 +01:00
|
|
|
vdev->config_len = qemu_get_be32(f);
|
|
|
|
qemu_get_buffer(f, vdev->config, vdev->config_len);
|
|
|
|
|
|
|
|
num = qemu_get_be32(f);
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++) {
|
|
|
|
vdev->vq[i].vring.num = qemu_get_be32(f);
|
2009-05-18 15:51:59 +02:00
|
|
|
vdev->vq[i].pa = qemu_get_be64(f);
|
2008-12-04 20:38:57 +01:00
|
|
|
qemu_get_be16s(f, &vdev->vq[i].last_avail_idx);
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
if (vdev->vq[i].pa) {
|
|
|
|
virtqueue_init(&vdev->vq[i]);
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
2009-06-21 18:50:40 +02:00
|
|
|
if (vdev->binding->load_queue) {
|
|
|
|
ret = vdev->binding->load_queue(vdev->binding_opaque, i, f);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2009-06-21 18:50:13 +02:00
|
|
|
}
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
2009-06-21 18:50:13 +02:00
|
|
|
virtio_notify_vector(vdev, VIRTIO_NO_VECTOR);
|
2009-06-21 18:50:40 +02:00
|
|
|
return 0;
|
2008-12-04 20:38:57 +01:00
|
|
|
}
|
|
|
|
|
2009-04-17 19:11:08 +02:00
|
|
|
void virtio_cleanup(VirtIODevice *vdev)
|
|
|
|
{
|
|
|
|
if (vdev->config)
|
|
|
|
qemu_free(vdev->config);
|
|
|
|
qemu_free(vdev->vq);
|
|
|
|
}
|
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
VirtIODevice *virtio_common_init(const char *name, uint16_t device_id,
|
|
|
|
size_t config_size, size_t struct_size)
|
2008-12-04 20:38:57 +01:00
|
|
|
{
|
|
|
|
VirtIODevice *vdev;
|
2009-09-07 20:20:15 +02:00
|
|
|
int i;
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
vdev = qemu_mallocz(struct_size);
|
2008-12-04 20:38:57 +01:00
|
|
|
|
2009-05-18 15:51:59 +02:00
|
|
|
vdev->device_id = device_id;
|
2008-12-04 20:38:57 +01:00
|
|
|
vdev->status = 0;
|
|
|
|
vdev->isr = 0;
|
|
|
|
vdev->queue_sel = 0;
|
2009-06-21 18:50:13 +02:00
|
|
|
vdev->config_vector = VIRTIO_NO_VECTOR;
|
2008-12-04 20:38:57 +01:00
|
|
|
vdev->vq = qemu_mallocz(sizeof(VirtQueue) * VIRTIO_PCI_QUEUE_MAX);
|
2009-09-07 20:20:15 +02:00
|
|
|
for(i = 0; i < VIRTIO_PCI_QUEUE_MAX; i++)
|
|
|
|
vdev->vq[i].vector = VIRTIO_NO_VECTOR;
|
2008-12-04 20:38:57 +01:00
|
|
|
|
|
|
|
vdev->name = name;
|
|
|
|
vdev->config_len = config_size;
|
|
|
|
if (vdev->config_len)
|
|
|
|
vdev->config = qemu_mallocz(config_size);
|
|
|
|
else
|
|
|
|
vdev->config = NULL;
|
|
|
|
|
|
|
|
return vdev;
|
|
|
|
}
|
2009-05-18 15:51:59 +02:00
|
|
|
|
|
|
|
void virtio_bind_device(VirtIODevice *vdev, const VirtIOBindings *binding,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
vdev->binding = binding;
|
|
|
|
vdev->binding_opaque = opaque;
|
|
|
|
}
|