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"
15 #define QVIRTIO_VENDOR_ID 0x1AF4
17 #define QVIRTIO_RESET 0x0
18 #define QVIRTIO_ACKNOWLEDGE 0x1
19 #define QVIRTIO_DRIVER 0x2
20 #define QVIRTIO_DRIVER_OK 0x4
22 #define QVIRTIO_NET_DEVICE_ID 0x1
23 #define QVIRTIO_BLK_DEVICE_ID 0x2
25 #define QVIRTIO_F_NOTIFY_ON_EMPTY 0x01000000
26 #define QVIRTIO_F_ANY_LAYOUT 0x08000000
27 #define QVIRTIO_F_RING_INDIRECT_DESC 0x10000000
28 #define QVIRTIO_F_RING_EVENT_IDX 0x20000000
29 #define QVIRTIO_F_BAD_FEATURE 0x40000000
31 #define QVRING_DESC_F_NEXT 0x1
32 #define QVRING_DESC_F_WRITE 0x2
33 #define QVRING_DESC_F_INDIRECT 0x4
35 #define QVIRTIO_F_NOTIFY_ON_EMPTY 0x01000000
36 #define QVIRTIO_F_ANY_LAYOUT 0x08000000
37 #define QVIRTIO_F_RING_INDIRECT_DESC 0x10000000
38 #define QVIRTIO_F_RING_EVENT_IDX 0x20000000
39 #define QVIRTIO_F_BAD_FEATURE 0x40000000
41 #define QVRING_AVAIL_F_NO_INTERRUPT 1
43 #define QVRING_USED_F_NO_NOTIFY 1
45 typedef struct QVirtioDevice
{
50 typedef struct QVRingDesc
{
57 typedef struct QVRingAvail
{
60 uint16_t ring
[0]; /* This is an array of uint16_t */
64 typedef struct QVRingUsedElem
{
69 typedef struct QVRingUsed
{
72 QVRingUsedElem ring
[0]; /* This is an array of QVRingUsedElem structs */
76 typedef struct QVirtQueue
{
77 uint64_t desc
; /* This points to an array of QVRingDesc */
78 uint64_t avail
; /* This points to a QVRingAvail */
79 uint64_t used
; /* This points to a QVRingDesc */
89 typedef struct QVRingIndirectDesc
{
90 uint64_t desc
; /* This points to an array fo QVRingDesc */
95 typedef struct QVirtioBus
{
96 uint8_t (*config_readb
)(QVirtioDevice
*d
, uint64_t addr
);
97 uint16_t (*config_readw
)(QVirtioDevice
*d
, uint64_t addr
);
98 uint32_t (*config_readl
)(QVirtioDevice
*d
, uint64_t addr
);
99 uint64_t (*config_readq
)(QVirtioDevice
*d
, uint64_t addr
);
101 /* Get features of the device */
102 uint32_t (*get_features
)(QVirtioDevice
*d
);
104 /* Set features of the device */
105 void (*set_features
)(QVirtioDevice
*d
, uint32_t features
);
107 /* Get features of the guest */
108 uint32_t (*get_guest_features
)(QVirtioDevice
*d
);
110 /* Get status of the device */
111 uint8_t (*get_status
)(QVirtioDevice
*d
);
113 /* Set status of the device */
114 void (*set_status
)(QVirtioDevice
*d
, uint8_t status
);
116 /* Get the queue ISR status of the device */
117 bool (*get_queue_isr_status
)(QVirtioDevice
*d
, QVirtQueue
*vq
);
119 /* Get the configuration ISR status of the device */
120 bool (*get_config_isr_status
)(QVirtioDevice
*d
);
122 /* Select a queue to work on */
123 void (*queue_select
)(QVirtioDevice
*d
, uint16_t index
);
125 /* Get the size of the selected queue */
126 uint16_t (*get_queue_size
)(QVirtioDevice
*d
);
128 /* Set the address of the selected queue */
129 void (*set_queue_address
)(QVirtioDevice
*d
, uint32_t pfn
);
131 /* Setup the virtqueue specified by index */
132 QVirtQueue
*(*virtqueue_setup
)(QVirtioDevice
*d
, QGuestAllocator
*alloc
,
135 /* Notify changes in virtqueue */
136 void (*virtqueue_kick
)(QVirtioDevice
*d
, QVirtQueue
*vq
);
139 static inline uint32_t qvring_size(uint32_t num
, uint32_t align
)
141 return ((sizeof(struct QVRingDesc
) * num
+ sizeof(uint16_t) * (3 + num
)
142 + align
- 1) & ~(align
- 1))
143 + sizeof(uint16_t) * 3 + sizeof(struct QVRingUsedElem
) * num
;
146 uint8_t qvirtio_config_readb(const QVirtioBus
*bus
, QVirtioDevice
*d
,
148 uint16_t qvirtio_config_readw(const QVirtioBus
*bus
, QVirtioDevice
*d
,
150 uint32_t qvirtio_config_readl(const QVirtioBus
*bus
, QVirtioDevice
*d
,
152 uint64_t qvirtio_config_readq(const QVirtioBus
*bus
, QVirtioDevice
*d
,
154 uint32_t qvirtio_get_features(const QVirtioBus
*bus
, QVirtioDevice
*d
);
155 void qvirtio_set_features(const QVirtioBus
*bus
, QVirtioDevice
*d
,
158 void qvirtio_reset(const QVirtioBus
*bus
, QVirtioDevice
*d
);
159 void qvirtio_set_acknowledge(const QVirtioBus
*bus
, QVirtioDevice
*d
);
160 void qvirtio_set_driver(const QVirtioBus
*bus
, QVirtioDevice
*d
);
161 void qvirtio_set_driver_ok(const QVirtioBus
*bus
, QVirtioDevice
*d
);
163 void qvirtio_wait_queue_isr(const QVirtioBus
*bus
, QVirtioDevice
*d
,
164 QVirtQueue
*vq
, gint64 timeout_us
);
165 uint8_t qvirtio_wait_status_byte_no_isr(const QVirtioBus
*bus
,
170 void qvirtio_wait_config_isr(const QVirtioBus
*bus
, QVirtioDevice
*d
,
172 QVirtQueue
*qvirtqueue_setup(const QVirtioBus
*bus
, QVirtioDevice
*d
,
173 QGuestAllocator
*alloc
, uint16_t index
);
175 void qvring_init(const QGuestAllocator
*alloc
, QVirtQueue
*vq
, uint64_t addr
);
176 QVRingIndirectDesc
*qvring_indirect_desc_setup(QVirtioDevice
*d
,
177 QGuestAllocator
*alloc
, uint16_t elem
);
178 void qvring_indirect_desc_add(QVRingIndirectDesc
*indirect
, uint64_t data
,
179 uint32_t len
, bool write
);
180 uint32_t qvirtqueue_add(QVirtQueue
*vq
, uint64_t data
, uint32_t len
, bool write
,
182 uint32_t qvirtqueue_add_indirect(QVirtQueue
*vq
, QVRingIndirectDesc
*indirect
);
183 void qvirtqueue_kick(const QVirtioBus
*bus
, QVirtioDevice
*d
, QVirtQueue
*vq
,
186 void qvirtqueue_set_used_event(QVirtQueue
*vq
, uint16_t idx
);