]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/virtio/virtio.h
Use DECLARE_*CHECKER* macros
[mirror_qemu.git] / include / hw / virtio / virtio.h
CommitLineData
967f97fa
AL
1/*
2 * Virtio Support
3 *
4 * Copyright IBM, Corp. 2007
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
2a6a4076
MA
14#ifndef QEMU_VIRTIO_H
15#define QEMU_VIRTIO_H
967f97fa 16
d4842052 17#include "exec/memory.h"
a27bd6c7 18#include "hw/qdev-core.h"
1422e32d 19#include "net/net.h"
d6454270 20#include "migration/vmstate.h"
1de7afc9 21#include "qemu/event_notifier.h"
e9600c6c
MT
22#include "standard-headers/linux/virtio_config.h"
23#include "standard-headers/linux/virtio_ring.h"
db1015e9 24#include "qom/object.h"
967f97fa 25
8eca6b1b
AL
26/* A guest should never accept this. It implies negotiation is broken. */
27#define VIRTIO_F_BAD_FEATURE 30
967f97fa 28
5f456073
MT
29#define VIRTIO_LEGACY_FEATURES ((0x1ULL << VIRTIO_F_BAD_FEATURE) | \
30 (0x1ULL << VIRTIO_F_NOTIFY_ON_EMPTY) | \
31 (0x1ULL << VIRTIO_F_ANY_LAYOUT))
32
967f97fa
AL
33struct VirtQueue;
34
a8170e5e 35static inline hwaddr vring_align(hwaddr addr,
f46f15bc
AL
36 unsigned long align)
37{
b8adbc65 38 return QEMU_ALIGN_UP(addr, align);
f46f15bc
AL
39}
40
ba550851
SG
41typedef struct VirtIOFeature {
42 uint64_t flags;
43 size_t end;
44} VirtIOFeature;
45
46size_t virtio_feature_get_config_size(VirtIOFeature *features,
47 uint64_t host_features);
48
967f97fa 49typedef struct VirtQueue VirtQueue;
967f97fa
AL
50
51#define VIRTQUEUE_MAX_SIZE 1024
52
53typedef struct VirtQueueElement
54{
55 unsigned int index;
86044b24
JW
56 unsigned int len;
57 unsigned int ndescs;
967f97fa
AL
58 unsigned int out_num;
59 unsigned int in_num;
3724650d
PB
60 hwaddr *in_addr;
61 hwaddr *out_addr;
62 struct iovec *in_sg;
63 struct iovec *out_sg;
967f97fa
AL
64} VirtQueueElement;
65
b829c2a9 66#define VIRTIO_QUEUE_MAX 1024
967f97fa 67
7055e687
MT
68#define VIRTIO_NO_VECTOR 0xffff
69
8e05db92 70#define TYPE_VIRTIO_DEVICE "virtio-device"
db1015e9 71typedef struct VirtioDeviceClass VirtioDeviceClass;
8110fa1d
EH
72DECLARE_OBJ_CHECKERS(VirtIODevice, VirtioDeviceClass,
73 VIRTIO_DEVICE, TYPE_VIRTIO_DEVICE)
8e05db92 74
616a6552
GK
75enum virtio_device_endian {
76 VIRTIO_DEVICE_ENDIAN_UNKNOWN,
77 VIRTIO_DEVICE_ENDIAN_LITTLE,
78 VIRTIO_DEVICE_ENDIAN_BIG,
79};
80
967f97fa
AL
81struct VirtIODevice
82{
8e05db92 83 DeviceState parent_obj;
967f97fa 84 const char *name;
967f97fa
AL
85 uint8_t status;
86 uint8_t isr;
87 uint16_t queue_sel;
019a3edb
GH
88 uint64_t guest_features;
89 uint64_t host_features;
75ebec11 90 uint64_t backend_features;
967f97fa
AL
91 size_t config_len;
92 void *config;
7055e687 93 uint16_t config_vector;
b8f05908 94 uint32_t generation;
7055e687 95 int nvectors;
967f97fa 96 VirtQueue *vq;
c611c764 97 MemoryListener listener;
53c25cea 98 uint16_t device_id;
85cf2a8d 99 bool vm_running;
f5ed3663 100 bool broken; /* device in invalid state, needs reset */
9d7bd082
MR
101 bool use_disabled_flag; /* allow use of 'disable' flag when needed */
102 bool disabled; /* device in temporarily disabled state */
e57f2c31 103 bool use_started;
badaf79c 104 bool started;
7abccd08 105 bool start_on_kick; /* when virtio 1.0 feature has not been negotiated */
85cf2a8d 106 VMChangeStateEntry *vmstate;
1034e9cf 107 char *bus_name;
616a6552 108 uint8_t device_endian;
5669655a 109 bool use_guest_notifier_mask;
8607f5c3 110 AddressSpace *dma_as;
850d0070 111 QLIST_HEAD(, VirtQueue) *vector_queues;
967f97fa
AL
112};
113
db1015e9 114struct VirtioDeviceClass {
0ba94b6f 115 /*< private >*/
8e05db92 116 DeviceClass parent;
0ba94b6f 117 /*< public >*/
1d244b42
AF
118
119 /* This is what a VirtioDevice must implement */
1d244b42 120 DeviceRealize realize;
306ec6c3 121 DeviceUnrealize unrealize;
9d5b731d
JW
122 uint64_t (*get_features)(VirtIODevice *vdev,
123 uint64_t requested_features,
124 Error **errp);
019a3edb 125 uint64_t (*bad_features)(VirtIODevice *vdev);
d5aaa1b0 126 void (*set_features)(VirtIODevice *vdev, uint64_t val);
0b352fd6 127 int (*validate_features)(VirtIODevice *vdev);
8e05db92
FK
128 void (*get_config)(VirtIODevice *vdev, uint8_t *config);
129 void (*set_config)(VirtIODevice *vdev, const uint8_t *config);
130 void (*reset)(VirtIODevice *vdev);
131 void (*set_status)(VirtIODevice *vdev, uint8_t val);
9b706dbb
MT
132 /* For transitional devices, this is a bitmap of features
133 * that are only exposed on the legacy interface but not
134 * the modern one.
135 */
136 uint64_t legacy_features;
6a87acf7
FK
137 /* Test and clear event pending status.
138 * Should be called after unmask to avoid losing events.
139 * If backend does not support masking,
140 * must check in frontend instead.
141 */
142 bool (*guest_notifier_pending)(VirtIODevice *vdev, int n);
143 /* Mask/unmask events from this vq. Any events reported
144 * while masked will become pending.
145 * If backend does not support masking,
146 * must mask in frontend instead.
147 */
148 void (*guest_notifier_mask)(VirtIODevice *vdev, int n, bool mask);
ff4c07df
PB
149 int (*start_ioeventfd)(VirtIODevice *vdev);
150 void (*stop_ioeventfd)(VirtIODevice *vdev);
ea43e259
DDAG
151 /* Saving and loading of a device; trying to deprecate save/load
152 * use vmsd for new devices.
153 */
1b5fc0de
GK
154 void (*save)(VirtIODevice *vdev, QEMUFile *f);
155 int (*load)(VirtIODevice *vdev, QEMUFile *f, int version_id);
1dd71383
MT
156 /* Post load hook in vmsd is called early while device is processed, and
157 * when VirtIODevice isn't fully initialized. Devices should use this instead,
158 * unless they specifically want to verify the migration stream as it's
159 * processed, e.g. for bounds checking.
160 */
161 int (*post_load)(VirtIODevice *vdev);
ea43e259 162 const VMStateDescription *vmsd;
9711cd0d 163 bool (*primary_unplug_pending)(void *opaque);
db1015e9 164};
8e05db92 165
c8075caf
GA
166void virtio_instance_init_common(Object *proxy_obj, void *data,
167 size_t vdev_size, const char *vdev_name);
168
8e05db92
FK
169void virtio_init(VirtIODevice *vdev, const char *name,
170 uint16_t device_id, size_t config_size);
6a1a8cc7 171void virtio_cleanup(VirtIODevice *vdev);
8e05db92 172
f5ed3663
SH
173void virtio_error(VirtIODevice *vdev, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
174
1034e9cf
FK
175/* Set the child bus name. */
176void virtio_device_set_child_bus_name(VirtIODevice *vdev, char *bus_name);
177
bf1780b0 178typedef void (*VirtIOHandleOutput)(VirtIODevice *, VirtQueue *);
07931698 179typedef bool (*VirtIOHandleAIOOutput)(VirtIODevice *, VirtQueue *);
bf1780b0 180
967f97fa 181VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size,
bf1780b0 182 VirtIOHandleOutput handle_output);
967f97fa 183
f23fd811
JW
184void virtio_del_queue(VirtIODevice *vdev, int n);
185
722f8c51
MT
186void virtio_delete_queue(VirtQueue *vq);
187
967f97fa
AL
188void virtqueue_push(VirtQueue *vq, const VirtQueueElement *elem,
189 unsigned int len);
190void virtqueue_flush(VirtQueue *vq, unsigned int count);
2640d2a5
SH
191void virtqueue_detach_element(VirtQueue *vq, const VirtQueueElement *elem,
192 unsigned int len);
27e57efe
LP
193void virtqueue_unpop(VirtQueue *vq, const VirtQueueElement *elem,
194 unsigned int len);
297a75e6 195bool virtqueue_rewind(VirtQueue *vq, unsigned int num);
967f97fa
AL
196void virtqueue_fill(VirtQueue *vq, const VirtQueueElement *elem,
197 unsigned int len, unsigned int idx);
198
8607f5c3 199void virtqueue_map(VirtIODevice *vdev, VirtQueueElement *elem);
51b19ebe 200void *virtqueue_pop(VirtQueue *vq, size_t sz);
54e17709 201unsigned int virtqueue_drop_all(VirtQueue *vq);
8607f5c3 202void *qemu_get_virtqueue_element(VirtIODevice *vdev, QEMUFile *f, size_t sz);
86044b24
JW
203void qemu_put_virtqueue_element(VirtIODevice *vdev, QEMUFile *f,
204 VirtQueueElement *elem);
0d8d7690
AS
205int virtqueue_avail_bytes(VirtQueue *vq, unsigned int in_bytes,
206 unsigned int out_bytes);
207void virtqueue_get_avail_bytes(VirtQueue *vq, unsigned int *in_bytes,
e1f7b481
MT
208 unsigned int *out_bytes,
209 unsigned max_in_bytes, unsigned max_out_bytes);
967f97fa 210
83d768b5 211void virtio_notify_irqfd(VirtIODevice *vdev, VirtQueue *vq);
967f97fa
AL
212void virtio_notify(VirtIODevice *vdev, VirtQueue *vq);
213
2f168d07 214int virtio_save(VirtIODevice *vdev, QEMUFile *f);
5943124c 215
1a665855
HP
216extern const VMStateInfo virtio_vmstate_info;
217
1a665855
HP
218#define VMSTATE_VIRTIO_DEVICE \
219 { \
220 .name = "virtio", \
221 .info = &virtio_vmstate_info, \
222 .flags = VMS_SINGLE, \
223 }
224
1b5fc0de 225int virtio_load(VirtIODevice *vdev, QEMUFile *f, int version_id);
967f97fa
AL
226
227void virtio_notify_config(VirtIODevice *vdev);
228
d0435bc5 229bool virtio_queue_get_notification(VirtQueue *vq);
967f97fa
AL
230void virtio_queue_set_notification(VirtQueue *vq, int enable);
231
232int virtio_queue_ready(VirtQueue *vq);
233
234int virtio_queue_empty(VirtQueue *vq);
235
53c25cea
PB
236/* Host binding interface. */
237
53c25cea
PB
238uint32_t virtio_config_readb(VirtIODevice *vdev, uint32_t addr);
239uint32_t virtio_config_readw(VirtIODevice *vdev, uint32_t addr);
240uint32_t virtio_config_readl(VirtIODevice *vdev, uint32_t addr);
241void virtio_config_writeb(VirtIODevice *vdev, uint32_t addr, uint32_t data);
242void virtio_config_writew(VirtIODevice *vdev, uint32_t addr, uint32_t data);
243void virtio_config_writel(VirtIODevice *vdev, uint32_t addr, uint32_t data);
adfb743c
MT
244uint32_t virtio_config_modern_readb(VirtIODevice *vdev, uint32_t addr);
245uint32_t virtio_config_modern_readw(VirtIODevice *vdev, uint32_t addr);
246uint32_t virtio_config_modern_readl(VirtIODevice *vdev, uint32_t addr);
247void virtio_config_modern_writeb(VirtIODevice *vdev,
248 uint32_t addr, uint32_t data);
249void virtio_config_modern_writew(VirtIODevice *vdev,
250 uint32_t addr, uint32_t data);
251void virtio_config_modern_writel(VirtIODevice *vdev,
252 uint32_t addr, uint32_t data);
a8170e5e
AK
253void virtio_queue_set_addr(VirtIODevice *vdev, int n, hwaddr addr);
254hwaddr virtio_queue_get_addr(VirtIODevice *vdev, int n);
e63c0ba1 255void virtio_queue_set_num(VirtIODevice *vdev, int n, int num);
53c25cea 256int virtio_queue_get_num(VirtIODevice *vdev, int n);
8c797e75 257int virtio_queue_get_max_num(VirtIODevice *vdev, int n);
8ad176aa 258int virtio_get_num_queues(VirtIODevice *vdev);
ab223c95
CH
259void virtio_queue_set_rings(VirtIODevice *vdev, int n, hwaddr desc,
260 hwaddr avail, hwaddr used);
261void virtio_queue_update_rings(VirtIODevice *vdev, int n);
6ce69d1c 262void virtio_queue_set_align(VirtIODevice *vdev, int n, int align);
53c25cea 263void virtio_queue_notify(VirtIODevice *vdev, int n);
7055e687
MT
264uint16_t virtio_queue_vector(VirtIODevice *vdev, int n);
265void virtio_queue_set_vector(VirtIODevice *vdev, int n, uint16_t vector);
6f80e617
TB
266int virtio_queue_set_host_notifier_mr(VirtIODevice *vdev, int n,
267 MemoryRegion *mr, bool assign);
0b352fd6 268int virtio_set_status(VirtIODevice *vdev, uint8_t val);
53c25cea
PB
269void virtio_reset(void *opaque);
270void virtio_update_irq(VirtIODevice *vdev);
d5aaa1b0 271int virtio_set_features(VirtIODevice *vdev, uint64_t val);
53c25cea 272
53c25cea 273/* Base devices. */
12c5674b 274typedef struct VirtIOBlkConf VirtIOBlkConf;
f0c07c7c 275struct virtio_net_conf;
6b331efb 276typedef struct virtio_serial_conf virtio_serial_conf;
f73ddbad 277typedef struct virtio_input_conf virtio_input_conf;
973abc7f 278typedef struct VirtIOSCSIConf VirtIOSCSIConf;
16c915ba 279typedef struct VirtIORNGConf VirtIORNGConf;
97b15621 280
8172539d 281#define DEFINE_VIRTIO_COMMON_FEATURES(_state, _field) \
019a3edb
GH
282 DEFINE_PROP_BIT64("indirect_desc", _state, _field, \
283 VIRTIO_RING_F_INDIRECT_DESC, true), \
284 DEFINE_PROP_BIT64("event_idx", _state, _field, \
285 VIRTIO_RING_F_EVENT_IDX, true), \
286 DEFINE_PROP_BIT64("notify_on_empty", _state, _field, \
09999a5f
MT
287 VIRTIO_F_NOTIFY_ON_EMPTY, true), \
288 DEFINE_PROP_BIT64("any_layout", _state, _field, \
8607f5c3
JW
289 VIRTIO_F_ANY_LAYOUT, true), \
290 DEFINE_PROP_BIT64("iommu_platform", _state, _field, \
74b3e466
JW
291 VIRTIO_F_IOMMU_PLATFORM, false), \
292 DEFINE_PROP_BIT64("packed", _state, _field, \
293 VIRTIO_F_RING_PACKED, false)
8172539d 294
a8170e5e 295hwaddr virtio_queue_get_desc_addr(VirtIODevice *vdev, int n);
0c9753eb 296bool virtio_queue_enabled_legacy(VirtIODevice *vdev, int n);
23bfaf77 297bool virtio_queue_enabled(VirtIODevice *vdev, int n);
a8170e5e
AK
298hwaddr virtio_queue_get_avail_addr(VirtIODevice *vdev, int n);
299hwaddr virtio_queue_get_used_addr(VirtIODevice *vdev, int n);
a8170e5e
AK
300hwaddr virtio_queue_get_desc_size(VirtIODevice *vdev, int n);
301hwaddr virtio_queue_get_avail_size(VirtIODevice *vdev, int n);
302hwaddr virtio_queue_get_used_size(VirtIODevice *vdev, int n);
86044b24
JW
303unsigned int virtio_queue_get_last_avail_idx(VirtIODevice *vdev, int n);
304void virtio_queue_set_last_avail_idx(VirtIODevice *vdev, int n,
305 unsigned int idx);
2d4ba6cc 306void virtio_queue_restore_last_avail_idx(VirtIODevice *vdev, int n);
6793dfd1 307void virtio_queue_invalidate_signalled_used(VirtIODevice *vdev, int n);
312d3b35 308void virtio_queue_update_used_idx(VirtIODevice *vdev, int n);
1cbdabe2 309VirtQueue *virtio_get_queue(VirtIODevice *vdev, int n);
e78a2b42 310uint16_t virtio_get_queue_index(VirtQueue *vq);
1cbdabe2 311EventNotifier *virtio_queue_get_guest_notifier(VirtQueue *vq);
15b2bd18
PB
312void virtio_queue_set_guest_notifier_fd_handler(VirtQueue *vq, bool assign,
313 bool with_irqfd);
ff4c07df 314int virtio_device_start_ioeventfd(VirtIODevice *vdev);
310837de
PB
315int virtio_device_grab_ioeventfd(VirtIODevice *vdev);
316void virtio_device_release_ioeventfd(VirtIODevice *vdev);
8e93cef1 317bool virtio_device_ioeventfd_enabled(VirtIODevice *vdev);
1cbdabe2 318EventNotifier *virtio_queue_get_host_notifier(VirtQueue *vq);
fcccb271 319void virtio_queue_set_host_notifier_enabled(VirtQueue *vq, bool enabled);
fa283a4a 320void virtio_queue_host_notifier_read(EventNotifier *n);
a1afb606 321void virtio_queue_aio_set_host_notifier_handler(VirtQueue *vq, AioContext *ctx,
07931698 322 VirtIOHandleAIOOutput handle_output);
e0d686bf
JW
323VirtQueue *virtio_vector_first_queue(VirtIODevice *vdev, uint16_t vector);
324VirtQueue *virtio_vector_next_queue(VirtQueue *vq);
98ed8ecf 325
019a3edb 326static inline void virtio_add_feature(uint64_t *features, unsigned int fbit)
0cd09c3a 327{
019a3edb 328 assert(fbit < 64);
d5aaa1b0 329 *features |= (1ULL << fbit);
0cd09c3a
CH
330}
331
019a3edb 332static inline void virtio_clear_feature(uint64_t *features, unsigned int fbit)
0cd09c3a 333{
019a3edb 334 assert(fbit < 64);
d5aaa1b0 335 *features &= ~(1ULL << fbit);
0cd09c3a
CH
336}
337
95129d6f 338static inline bool virtio_has_feature(uint64_t features, unsigned int fbit)
ef546f12 339{
019a3edb 340 assert(fbit < 64);
d5aaa1b0 341 return !!(features & (1ULL << fbit));
ef546f12
CH
342}
343
95129d6f
CH
344static inline bool virtio_vdev_has_feature(VirtIODevice *vdev,
345 unsigned int fbit)
ef546f12 346{
95129d6f 347 return virtio_has_feature(vdev->guest_features, fbit);
ef546f12
CH
348}
349
74aae7b2
JW
350static inline bool virtio_host_has_feature(VirtIODevice *vdev,
351 unsigned int fbit)
352{
95129d6f 353 return virtio_has_feature(vdev->host_features, fbit);
74aae7b2
JW
354}
355
616a6552 356static inline bool virtio_is_big_endian(VirtIODevice *vdev)
98ed8ecf 357{
95129d6f 358 if (!virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1)) {
3c185597
CH
359 assert(vdev->device_endian != VIRTIO_DEVICE_ENDIAN_UNKNOWN);
360 return vdev->device_endian == VIRTIO_DEVICE_ENDIAN_BIG;
361 }
362 /* Devices conforming to VIRTIO 1.0 or later are always LE. */
363 return false;
98ed8ecf 364}
e57f2c31
XY
365
366static inline bool virtio_device_started(VirtIODevice *vdev, uint8_t status)
367{
368 if (vdev->use_started) {
369 return vdev->started;
370 }
371
372 return status & VIRTIO_CONFIG_S_DRIVER_OK;
373}
374
375static inline void virtio_set_started(VirtIODevice *vdev, bool started)
376{
377 if (started) {
378 vdev->start_on_kick = false;
379 }
380
381 if (vdev->use_started) {
382 vdev->started = started;
383 }
384}
9d7bd082
MR
385
386static inline void virtio_set_disabled(VirtIODevice *vdev, bool disable)
387{
388 if (vdev->use_disabled_flag) {
389 vdev->disabled = disable;
390 }
391}
392
393static inline bool virtio_device_disabled(VirtIODevice *vdev)
394{
395 return unlikely(vdev->disabled || vdev->broken);
396}
397
7c78bdd7
CH
398bool virtio_legacy_allowed(VirtIODevice *vdev);
399
967f97fa 400#endif