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 QVirtioBus QVirtioBus
;
20 typedef struct QVirtioDevice
{
21 const QVirtioBus
*bus
;
28 typedef struct QVirtQueue
{
29 uint64_t desc
; /* This points to an array of struct vring_desc */
30 uint64_t avail
; /* This points to a struct vring_avail */
31 uint64_t used
; /* This points to a struct vring_used */
37 uint16_t last_used_idx
;
42 typedef struct QVRingIndirectDesc
{
43 uint64_t desc
; /* This points to an array fo struct vring_desc */
49 uint8_t (*config_readb
)(QVirtioDevice
*d
, uint64_t addr
);
50 uint16_t (*config_readw
)(QVirtioDevice
*d
, uint64_t addr
);
51 uint32_t (*config_readl
)(QVirtioDevice
*d
, uint64_t addr
);
52 uint64_t (*config_readq
)(QVirtioDevice
*d
, uint64_t addr
);
54 /* Get features of the device */
55 uint32_t (*get_features
)(QVirtioDevice
*d
);
57 /* Set features of the device */
58 void (*set_features
)(QVirtioDevice
*d
, uint32_t features
);
60 /* Get features of the guest */
61 uint32_t (*get_guest_features
)(QVirtioDevice
*d
);
63 /* Get status of the device */
64 uint8_t (*get_status
)(QVirtioDevice
*d
);
66 /* Set status of the device */
67 void (*set_status
)(QVirtioDevice
*d
, uint8_t status
);
69 /* Get the queue ISR status of the device */
70 bool (*get_queue_isr_status
)(QVirtioDevice
*d
, QVirtQueue
*vq
);
72 /* Wait for the configuration ISR status of the device */
73 void (*wait_config_isr_status
)(QVirtioDevice
*d
, gint64 timeout_us
);
75 /* Select a queue to work on */
76 void (*queue_select
)(QVirtioDevice
*d
, uint16_t index
);
78 /* Get the size of the selected queue */
79 uint16_t (*get_queue_size
)(QVirtioDevice
*d
);
81 /* Set the address of the selected queue */
82 void (*set_queue_address
)(QVirtioDevice
*d
, uint32_t pfn
);
84 /* Setup the virtqueue specified by index */
85 QVirtQueue
*(*virtqueue_setup
)(QVirtioDevice
*d
, QGuestAllocator
*alloc
,
88 /* Free virtqueue resources */
89 void (*virtqueue_cleanup
)(QVirtQueue
*vq
, QGuestAllocator
*alloc
);
91 /* Notify changes in virtqueue */
92 void (*virtqueue_kick
)(QVirtioDevice
*d
, QVirtQueue
*vq
);
95 static inline uint32_t qvring_size(uint32_t num
, uint32_t align
)
97 return ((sizeof(struct vring_desc
) * num
+ sizeof(uint16_t) * (3 + num
)
98 + align
- 1) & ~(align
- 1))
99 + sizeof(uint16_t) * 3 + sizeof(struct vring_used_elem
) * num
;
102 uint8_t qvirtio_config_readb(QVirtioDevice
*d
, uint64_t addr
);
103 uint16_t qvirtio_config_readw(QVirtioDevice
*d
, uint64_t addr
);
104 uint32_t qvirtio_config_readl(QVirtioDevice
*d
, uint64_t addr
);
105 uint64_t qvirtio_config_readq(QVirtioDevice
*d
, uint64_t addr
);
106 uint32_t qvirtio_get_features(QVirtioDevice
*d
);
107 void qvirtio_set_features(QVirtioDevice
*d
, uint32_t features
);
108 bool qvirtio_is_big_endian(QVirtioDevice
*d
);
110 void qvirtio_reset(QVirtioDevice
*d
);
111 void qvirtio_set_acknowledge(QVirtioDevice
*d
);
112 void qvirtio_set_driver(QVirtioDevice
*d
);
113 void qvirtio_set_driver_ok(QVirtioDevice
*d
);
115 void qvirtio_wait_queue_isr(QTestState
*qts
, QVirtioDevice
*d
,
116 QVirtQueue
*vq
, gint64 timeout_us
);
117 uint8_t qvirtio_wait_status_byte_no_isr(QTestState
*qts
, QVirtioDevice
*d
,
121 void qvirtio_wait_used_elem(QTestState
*qts
, QVirtioDevice
*d
,
126 void qvirtio_wait_config_isr(QVirtioDevice
*d
, gint64 timeout_us
);
127 QVirtQueue
*qvirtqueue_setup(QVirtioDevice
*d
,
128 QGuestAllocator
*alloc
, uint16_t index
);
129 void qvirtqueue_cleanup(const QVirtioBus
*bus
, QVirtQueue
*vq
,
130 QGuestAllocator
*alloc
);
132 void qvring_init(QTestState
*qts
, const QGuestAllocator
*alloc
, QVirtQueue
*vq
,
134 QVRingIndirectDesc
*qvring_indirect_desc_setup(QTestState
*qs
, QVirtioDevice
*d
,
135 QGuestAllocator
*alloc
,
137 void qvring_indirect_desc_add(QTestState
*qts
, QVRingIndirectDesc
*indirect
,
138 uint64_t data
, uint32_t len
, bool write
);
139 uint32_t qvirtqueue_add(QTestState
*qts
, QVirtQueue
*vq
, uint64_t data
,
140 uint32_t len
, bool write
, bool next
);
141 uint32_t qvirtqueue_add_indirect(QTestState
*qts
, QVirtQueue
*vq
,
142 QVRingIndirectDesc
*indirect
);
143 void qvirtqueue_kick(QTestState
*qts
, QVirtioDevice
*d
, QVirtQueue
*vq
,
145 bool qvirtqueue_get_buf(QTestState
*qts
, QVirtQueue
*vq
, uint32_t *desc_idx
,
148 void qvirtqueue_set_used_event(QTestState
*qts
, QVirtQueue
*vq
, uint16_t idx
);
150 void qvirtio_start_device(QVirtioDevice
*vdev
);