virtio: move typedef to qemu-common
[qemu/aliguori-queue.git] / hw / virtio.h
blobf885f1b599d7dcad89edc72160ce177f4df41dea
1 /*
2 * Virtio Support
4 * Copyright IBM, Corp. 2007
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #ifndef _QEMU_VIRTIO_H
15 #define _QEMU_VIRTIO_H
17 #include "hw.h"
18 #include "net.h"
19 #include "qdev.h"
20 #include "sysemu.h"
21 #include "block_int.h"
22 #include "event_notifier.h"
24 /* from Linux's linux/virtio_config.h */
26 /* Status byte for guest to report progress, and synchronize features. */
27 /* We have seen device and processed generic fields (VIRTIO_CONFIG_F_VIRTIO) */
28 #define VIRTIO_CONFIG_S_ACKNOWLEDGE 1
29 /* We have found a driver for the device. */
30 #define VIRTIO_CONFIG_S_DRIVER 2
31 /* Driver has used its parts of the config, and is happy */
32 #define VIRTIO_CONFIG_S_DRIVER_OK 4
33 /* We've given up on this device. */
34 #define VIRTIO_CONFIG_S_FAILED 0x80
36 /* Some virtio feature bits (currently bits 28 through 31) are reserved for the
37 * transport being used (eg. virtio_ring), the rest are per-device feature bits. */
38 #define VIRTIO_TRANSPORT_F_START 28
39 #define VIRTIO_TRANSPORT_F_END 32
41 /* We notify when the ring is completely used, even if the guest is suppressing
42 * callbacks */
43 #define VIRTIO_F_NOTIFY_ON_EMPTY 24
44 /* We support indirect buffer descriptors */
45 #define VIRTIO_RING_F_INDIRECT_DESC 28
46 /* A guest should never accept this. It implies negotiation is broken. */
47 #define VIRTIO_F_BAD_FEATURE 30
49 /* from Linux's linux/virtio_ring.h */
51 /* This marks a buffer as continuing via the next field. */
52 #define VRING_DESC_F_NEXT 1
53 /* This marks a buffer as write-only (otherwise read-only). */
54 #define VRING_DESC_F_WRITE 2
55 /* This means the buffer contains a list of buffer descriptors. */
56 #define VRING_DESC_F_INDIRECT 4
58 /* This means don't notify other side when buffer added. */
59 #define VRING_USED_F_NO_NOTIFY 1
60 /* This means don't interrupt guest when buffer consumed. */
61 #define VRING_AVAIL_F_NO_INTERRUPT 1
63 struct VirtQueue;
65 static inline target_phys_addr_t vring_align(target_phys_addr_t addr,
66 unsigned long align)
68 return (addr + align - 1) & ~(align - 1);
71 typedef struct VirtQueue VirtQueue;
73 #define VIRTQUEUE_MAX_SIZE 1024
75 typedef struct VirtQueueElement
77 unsigned int index;
78 unsigned int out_num;
79 unsigned int in_num;
80 target_phys_addr_t in_addr[VIRTQUEUE_MAX_SIZE];
81 struct iovec in_sg[VIRTQUEUE_MAX_SIZE];
82 struct iovec out_sg[VIRTQUEUE_MAX_SIZE];
83 } VirtQueueElement;
85 typedef struct {
86 void (*notify)(void * opaque, uint16_t vector);
87 void (*save_config)(void * opaque, QEMUFile *f);
88 void (*save_queue)(void * opaque, int n, QEMUFile *f);
89 int (*load_config)(void * opaque, QEMUFile *f);
90 int (*load_queue)(void * opaque, int n, QEMUFile *f);
91 unsigned (*get_features)(void * opaque);
92 int (*set_guest_notifier)(void * opaque, int n, bool assigned);
93 int (*set_host_notifier)(void * opaque, int n, bool assigned);
94 } VirtIOBindings;
96 #define VIRTIO_PCI_QUEUE_MAX 64
98 #define VIRTIO_NO_VECTOR 0xffff
100 struct VirtIODevice
102 const char *name;
103 uint8_t status;
104 uint8_t isr;
105 uint16_t queue_sel;
106 uint32_t guest_features;
107 size_t config_len;
108 void *config;
109 uint16_t config_vector;
110 int nvectors;
111 uint32_t (*get_features)(VirtIODevice *vdev, uint32_t requested_features);
112 uint32_t (*bad_features)(VirtIODevice *vdev);
113 void (*set_features)(VirtIODevice *vdev, uint32_t val);
114 void (*get_config)(VirtIODevice *vdev, uint8_t *config);
115 void (*set_config)(VirtIODevice *vdev, const uint8_t *config);
116 void (*reset)(VirtIODevice *vdev);
117 void (*set_status)(VirtIODevice *vdev, uint8_t val);
118 VirtQueue *vq;
119 const VirtIOBindings *binding;
120 void *binding_opaque;
121 uint16_t device_id;
124 static inline void virtio_set_status(VirtIODevice *vdev, uint8_t val)
126 if (vdev->set_status) {
127 vdev->set_status(vdev, val);
129 vdev->status = val;
132 VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size,
133 void (*handle_output)(VirtIODevice *,
134 VirtQueue *));
136 void virtqueue_push(VirtQueue *vq, const VirtQueueElement *elem,
137 unsigned int len);
138 void virtqueue_flush(VirtQueue *vq, unsigned int count);
139 void virtqueue_fill(VirtQueue *vq, const VirtQueueElement *elem,
140 unsigned int len, unsigned int idx);
142 int virtqueue_pop(VirtQueue *vq, VirtQueueElement *elem);
143 int virtqueue_avail_bytes(VirtQueue *vq, int in_bytes, int out_bytes);
145 void virtio_notify(VirtIODevice *vdev, VirtQueue *vq);
147 void virtio_save(VirtIODevice *vdev, QEMUFile *f);
149 int virtio_load(VirtIODevice *vdev, QEMUFile *f);
151 void virtio_cleanup(VirtIODevice *vdev);
153 void virtio_notify_config(VirtIODevice *vdev);
155 void virtio_queue_set_notification(VirtQueue *vq, int enable);
157 int virtio_queue_ready(VirtQueue *vq);
159 int virtio_queue_empty(VirtQueue *vq);
161 /* Host binding interface. */
163 VirtIODevice *virtio_common_init(const char *name, uint16_t device_id,
164 size_t config_size, size_t struct_size);
165 uint32_t virtio_config_readb(VirtIODevice *vdev, uint32_t addr);
166 uint32_t virtio_config_readw(VirtIODevice *vdev, uint32_t addr);
167 uint32_t virtio_config_readl(VirtIODevice *vdev, uint32_t addr);
168 void virtio_config_writeb(VirtIODevice *vdev, uint32_t addr, uint32_t data);
169 void virtio_config_writew(VirtIODevice *vdev, uint32_t addr, uint32_t data);
170 void virtio_config_writel(VirtIODevice *vdev, uint32_t addr, uint32_t data);
171 void virtio_queue_set_addr(VirtIODevice *vdev, int n, target_phys_addr_t addr);
172 target_phys_addr_t virtio_queue_get_addr(VirtIODevice *vdev, int n);
173 int virtio_queue_get_num(VirtIODevice *vdev, int n);
174 void virtio_queue_notify(VirtIODevice *vdev, int n);
175 uint16_t virtio_queue_vector(VirtIODevice *vdev, int n);
176 void virtio_queue_set_vector(VirtIODevice *vdev, int n, uint16_t vector);
177 void virtio_reset(void *opaque);
178 void virtio_update_irq(VirtIODevice *vdev);
180 void virtio_bind_device(VirtIODevice *vdev, const VirtIOBindings *binding,
181 void *opaque);
183 /* Base devices. */
184 VirtIODevice *virtio_blk_init(DeviceState *dev, BlockConf *conf);
185 VirtIODevice *virtio_net_init(DeviceState *dev, NICConf *conf);
186 VirtIODevice *virtio_serial_init(DeviceState *dev, uint32_t max_nr_ports);
187 VirtIODevice *virtio_balloon_init(DeviceState *dev);
189 void virtio_net_exit(VirtIODevice *vdev);
191 #define DEFINE_VIRTIO_COMMON_FEATURES(_state, _field) \
192 DEFINE_PROP_BIT("indirect_desc", _state, _field, \
193 VIRTIO_RING_F_INDIRECT_DESC, true)
195 target_phys_addr_t virtio_queue_get_desc_addr(VirtIODevice *vdev, int n);
196 target_phys_addr_t virtio_queue_get_avail_addr(VirtIODevice *vdev, int n);
197 target_phys_addr_t virtio_queue_get_used_addr(VirtIODevice *vdev, int n);
198 target_phys_addr_t virtio_queue_get_ring_addr(VirtIODevice *vdev, int n);
199 target_phys_addr_t virtio_queue_get_desc_size(VirtIODevice *vdev, int n);
200 target_phys_addr_t virtio_queue_get_avail_size(VirtIODevice *vdev, int n);
201 target_phys_addr_t virtio_queue_get_used_size(VirtIODevice *vdev, int n);
202 target_phys_addr_t virtio_queue_get_ring_size(VirtIODevice *vdev, int n);
203 uint16_t virtio_queue_get_last_avail_idx(VirtIODevice *vdev, int n);
204 void virtio_queue_set_last_avail_idx(VirtIODevice *vdev, int n, uint16_t idx);
205 VirtQueue *virtio_get_queue(VirtIODevice *vdev, int n);
206 EventNotifier *virtio_queue_get_guest_notifier(VirtQueue *vq);
207 EventNotifier *virtio_queue_get_host_notifier(VirtQueue *vq);
208 void virtio_irq(VirtQueue *vq);
209 #endif