2 * libqos virtio definitions
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 #ifndef LIBQOS_VIRTIO_H
11 #define LIBQOS_VIRTIO_H
13 #include "libqos/malloc.h"
14 #include "standard-headers/linux/virtio_ring.h"
16 #define QVIRTIO_F_BAD_FEATURE 0x40000000
18 typedef struct QVirtioDevice
{
23 typedef struct QVirtQueue
{
24 uint64_t desc
; /* This points to an array of struct vring_desc */
25 uint64_t avail
; /* This points to a struct vring_avail */
26 uint64_t used
; /* This points to a struct vring_desc */
36 typedef struct QVRingIndirectDesc
{
37 uint64_t desc
; /* This points to an array fo struct vring_desc */
42 typedef struct QVirtioBus
{
43 uint8_t (*config_readb
)(QVirtioDevice
*d
, uint64_t addr
);
44 uint16_t (*config_readw
)(QVirtioDevice
*d
, uint64_t addr
);
45 uint32_t (*config_readl
)(QVirtioDevice
*d
, uint64_t addr
);
46 uint64_t (*config_readq
)(QVirtioDevice
*d
, uint64_t addr
);
48 /* Get features of the device */
49 uint32_t (*get_features
)(QVirtioDevice
*d
);
51 /* Set features of the device */
52 void (*set_features
)(QVirtioDevice
*d
, uint32_t features
);
54 /* Get features of the guest */
55 uint32_t (*get_guest_features
)(QVirtioDevice
*d
);
57 /* Get status of the device */
58 uint8_t (*get_status
)(QVirtioDevice
*d
);
60 /* Set status of the device */
61 void (*set_status
)(QVirtioDevice
*d
, uint8_t status
);
63 /* Get the queue ISR status of the device */
64 bool (*get_queue_isr_status
)(QVirtioDevice
*d
, QVirtQueue
*vq
);
66 /* Get the configuration ISR status of the device */
67 bool (*get_config_isr_status
)(QVirtioDevice
*d
);
69 /* Select a queue to work on */
70 void (*queue_select
)(QVirtioDevice
*d
, uint16_t index
);
72 /* Get the size of the selected queue */
73 uint16_t (*get_queue_size
)(QVirtioDevice
*d
);
75 /* Set the address of the selected queue */
76 void (*set_queue_address
)(QVirtioDevice
*d
, uint32_t pfn
);
78 /* Setup the virtqueue specified by index */
79 QVirtQueue
*(*virtqueue_setup
)(QVirtioDevice
*d
, QGuestAllocator
*alloc
,
82 /* Free virtqueue resources */
83 void (*virtqueue_cleanup
)(QVirtQueue
*vq
, QGuestAllocator
*alloc
);
85 /* Notify changes in virtqueue */
86 void (*virtqueue_kick
)(QVirtioDevice
*d
, QVirtQueue
*vq
);
89 static inline uint32_t qvring_size(uint32_t num
, uint32_t align
)
91 return ((sizeof(struct vring_desc
) * num
+ sizeof(uint16_t) * (3 + num
)
92 + align
- 1) & ~(align
- 1))
93 + sizeof(uint16_t) * 3 + sizeof(struct vring_used_elem
) * num
;
96 uint8_t qvirtio_config_readb(const QVirtioBus
*bus
, QVirtioDevice
*d
,
98 uint16_t qvirtio_config_readw(const QVirtioBus
*bus
, QVirtioDevice
*d
,
100 uint32_t qvirtio_config_readl(const QVirtioBus
*bus
, QVirtioDevice
*d
,
102 uint64_t qvirtio_config_readq(const QVirtioBus
*bus
, QVirtioDevice
*d
,
104 uint32_t qvirtio_get_features(const QVirtioBus
*bus
, QVirtioDevice
*d
);
105 void qvirtio_set_features(const QVirtioBus
*bus
, QVirtioDevice
*d
,
108 void qvirtio_reset(const QVirtioBus
*bus
, QVirtioDevice
*d
);
109 void qvirtio_set_acknowledge(const QVirtioBus
*bus
, QVirtioDevice
*d
);
110 void qvirtio_set_driver(const QVirtioBus
*bus
, QVirtioDevice
*d
);
111 void qvirtio_set_driver_ok(const QVirtioBus
*bus
, QVirtioDevice
*d
);
113 void qvirtio_wait_queue_isr(const QVirtioBus
*bus
, QVirtioDevice
*d
,
114 QVirtQueue
*vq
, gint64 timeout_us
);
115 uint8_t qvirtio_wait_status_byte_no_isr(const QVirtioBus
*bus
,
120 void qvirtio_wait_config_isr(const QVirtioBus
*bus
, QVirtioDevice
*d
,
122 QVirtQueue
*qvirtqueue_setup(const QVirtioBus
*bus
, QVirtioDevice
*d
,
123 QGuestAllocator
*alloc
, uint16_t index
);
124 void qvirtqueue_cleanup(const QVirtioBus
*bus
, QVirtQueue
*vq
,
125 QGuestAllocator
*alloc
);
127 void qvring_init(const QGuestAllocator
*alloc
, QVirtQueue
*vq
, uint64_t addr
);
128 QVRingIndirectDesc
*qvring_indirect_desc_setup(QVirtioDevice
*d
,
129 QGuestAllocator
*alloc
, uint16_t elem
);
130 void qvring_indirect_desc_add(QVRingIndirectDesc
*indirect
, uint64_t data
,
131 uint32_t len
, bool write
);
132 uint32_t qvirtqueue_add(QVirtQueue
*vq
, uint64_t data
, uint32_t len
, bool write
,
134 uint32_t qvirtqueue_add_indirect(QVirtQueue
*vq
, QVRingIndirectDesc
*indirect
);
135 void qvirtqueue_kick(const QVirtioBus
*bus
, QVirtioDevice
*d
, QVirtQueue
*vq
,
138 void qvirtqueue_set_used_event(QVirtQueue
*vq
, uint16_t idx
);