virtio.h 9.5 KB
Newer Older
A
aliguori 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Virtio Support
 *
 * Copyright IBM, Corp. 2007
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2.  See
 * the COPYING file in the top-level directory.
 *
 */

#ifndef _QEMU_VIRTIO_H
#define _QEMU_VIRTIO_H

17
#include "hw/hw.h"
P
Paolo Bonzini 已提交
18
#include "net/net.h"
19
#include "hw/qdev.h"
20
#include "sysemu/sysemu.h"
21
#include "qemu/event_notifier.h"
22
#ifdef CONFIG_VIRTFS
P
Paolo Bonzini 已提交
23
#include "hw/virtio/virtio-9p.h"
24
#endif
A
aliguori 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37

/* from Linux's linux/virtio_config.h */

/* Status byte for guest to report progress, and synchronize features. */
/* We have seen device and processed generic fields (VIRTIO_CONFIG_F_VIRTIO) */
#define VIRTIO_CONFIG_S_ACKNOWLEDGE     1
/* We have found a driver for the device. */
#define VIRTIO_CONFIG_S_DRIVER          2
/* Driver has used its parts of the config, and is happy */
#define VIRTIO_CONFIG_S_DRIVER_OK       4
/* We've given up on this device. */
#define VIRTIO_CONFIG_S_FAILED          0x80

38 39 40 41 42
/* Some virtio feature bits (currently bits 28 through 31) are reserved for the
 * transport being used (eg. virtio_ring), the rest are per-device feature bits. */
#define VIRTIO_TRANSPORT_F_START        28
#define VIRTIO_TRANSPORT_F_END          32

43
/* We notify when the ring is completely used, even if the guest is suppressing
A
aliguori 已提交
44 45
 * callbacks */
#define VIRTIO_F_NOTIFY_ON_EMPTY        24
46 47
/* We support indirect buffer descriptors */
#define VIRTIO_RING_F_INDIRECT_DESC     28
M
Michael S. Tsirkin 已提交
48 49 50 51 52
/* The Guest publishes the used index for which it expects an interrupt
 * at the end of the avail ring. Host should ignore the avail->flags field. */
/* The Host publishes the avail index for which it expects a kick
 * at the end of the used ring. Guest should ignore the used->flags field. */
#define VIRTIO_RING_F_EVENT_IDX         29
53 54
/* A guest should never accept this.  It implies negotiation is broken. */
#define VIRTIO_F_BAD_FEATURE		30
A
aliguori 已提交
55 56 57 58 59 60 61

/* from Linux's linux/virtio_ring.h */

/* This marks a buffer as continuing via the next field. */
#define VRING_DESC_F_NEXT       1
/* This marks a buffer as write-only (otherwise read-only). */
#define VRING_DESC_F_WRITE      2
62 63
/* This means the buffer contains a list of buffer descriptors. */
#define VRING_DESC_F_INDIRECT  4
A
aliguori 已提交
64 65 66 67 68 69 70 71

/* This means don't notify other side when buffer added. */
#define VRING_USED_F_NO_NOTIFY  1
/* This means don't interrupt guest when buffer consumed. */
#define VRING_AVAIL_F_NO_INTERRUPT      1

struct VirtQueue;

A
Avi Kivity 已提交
72
static inline hwaddr vring_align(hwaddr addr,
73 74 75 76 77
                                             unsigned long align)
{
    return (addr + align - 1) & ~(align - 1);
}

A
aliguori 已提交
78 79 80 81 82 83 84 85 86
typedef struct VirtQueue VirtQueue;

#define VIRTQUEUE_MAX_SIZE 1024

typedef struct VirtQueueElement
{
    unsigned int index;
    unsigned int out_num;
    unsigned int in_num;
A
Avi Kivity 已提交
87 88
    hwaddr in_addr[VIRTQUEUE_MAX_SIZE];
    hwaddr out_addr[VIRTQUEUE_MAX_SIZE];
A
aliguori 已提交
89 90 91 92
    struct iovec in_sg[VIRTQUEUE_MAX_SIZE];
    struct iovec out_sg[VIRTQUEUE_MAX_SIZE];
} VirtQueueElement;

93
#define VIRTIO_PCI_QUEUE_MAX 64
A
aliguori 已提交
94

95 96
#define VIRTIO_NO_VECTOR 0xffff

97 98 99 100 101 102 103 104
#define TYPE_VIRTIO_DEVICE "virtio-device"
#define VIRTIO_DEVICE_GET_CLASS(obj) \
        OBJECT_GET_CLASS(VirtioDeviceClass, obj, TYPE_VIRTIO_DEVICE)
#define VIRTIO_DEVICE_CLASS(klass) \
        OBJECT_CLASS_CHECK(VirtioDeviceClass, klass, TYPE_VIRTIO_DEVICE)
#define VIRTIO_DEVICE(obj) \
        OBJECT_CHECK(VirtIODevice, (obj), TYPE_VIRTIO_DEVICE)

A
aliguori 已提交
105 106
struct VirtIODevice
{
107
    DeviceState parent_obj;
A
aliguori 已提交
108 109 110 111
    const char *name;
    uint8_t status;
    uint8_t isr;
    uint16_t queue_sel;
112
    uint32_t guest_features;
A
aliguori 已提交
113 114
    size_t config_len;
    void *config;
115 116
    uint16_t config_vector;
    int nvectors;
A
aliguori 已提交
117
    VirtQueue *vq;
P
Paul Brook 已提交
118
    uint16_t device_id;
119 120
    bool vm_running;
    VMChangeStateEntry *vmstate;
A
aliguori 已提交
121 122
};

123 124 125 126 127 128 129 130 131 132 133
typedef struct VirtioDeviceClass {
    /* This is what a VirtioDevice must implement */
    DeviceClass parent;
    int (*init)(VirtIODevice *vdev);
    uint32_t (*get_features)(VirtIODevice *vdev, uint32_t requested_features);
    uint32_t (*bad_features)(VirtIODevice *vdev);
    void (*set_features)(VirtIODevice *vdev, uint32_t val);
    void (*get_config)(VirtIODevice *vdev, uint8_t *config);
    void (*set_config)(VirtIODevice *vdev, const uint8_t *config);
    void (*reset)(VirtIODevice *vdev);
    void (*set_status)(VirtIODevice *vdev, uint8_t val);
134 135 136 137 138 139 140 141 142 143 144 145
    /* Test and clear event pending status.
     * Should be called after unmask to avoid losing events.
     * If backend does not support masking,
     * must check in frontend instead.
     */
    bool (*guest_notifier_pending)(VirtIODevice *vdev, int n);
    /* Mask/unmask events from this vq. Any events reported
     * while masked will become pending.
     * If backend does not support masking,
     * must mask in frontend instead.
     */
    void (*guest_notifier_mask)(VirtIODevice *vdev, int n, bool mask);
146 147 148 149
} VirtioDeviceClass;

void virtio_init(VirtIODevice *vdev, const char *name,
                         uint16_t device_id, size_t config_size);
150
void virtio_cleanup(VirtIODevice *vdev);
151

A
aliguori 已提交
152 153 154 155
VirtQueue *virtio_add_queue(VirtIODevice *vdev, int queue_size,
                            void (*handle_output)(VirtIODevice *,
                                                  VirtQueue *));

156 157
void virtio_del_queue(VirtIODevice *vdev, int n);

A
aliguori 已提交
158 159 160 161 162 163
void virtqueue_push(VirtQueue *vq, const VirtQueueElement *elem,
                    unsigned int len);
void virtqueue_flush(VirtQueue *vq, unsigned int count);
void virtqueue_fill(VirtQueue *vq, const VirtQueueElement *elem,
                    unsigned int len, unsigned int idx);

A
Avi Kivity 已提交
164
void virtqueue_map_sg(struct iovec *sg, hwaddr *addr,
K
Kevin Wolf 已提交
165
    size_t num_sg, int is_write);
A
aliguori 已提交
166
int virtqueue_pop(VirtQueue *vq, VirtQueueElement *elem);
167 168 169
int virtqueue_avail_bytes(VirtQueue *vq, unsigned int in_bytes,
                          unsigned int out_bytes);
void virtqueue_get_avail_bytes(VirtQueue *vq, unsigned int *in_bytes,
170 171
                               unsigned int *out_bytes,
                               unsigned max_in_bytes, unsigned max_out_bytes);
A
aliguori 已提交
172 173 174 175 176

void virtio_notify(VirtIODevice *vdev, VirtQueue *vq);

void virtio_save(VirtIODevice *vdev, QEMUFile *f);

177
int virtio_load(VirtIODevice *vdev, QEMUFile *f);
A
aliguori 已提交
178 179 180 181 182 183 184 185 186

void virtio_notify_config(VirtIODevice *vdev);

void virtio_queue_set_notification(VirtQueue *vq, int enable);

int virtio_queue_ready(VirtQueue *vq);

int virtio_queue_empty(VirtQueue *vq);

P
Paul Brook 已提交
187 188 189 190 191 192 193 194
/* Host binding interface.  */

uint32_t virtio_config_readb(VirtIODevice *vdev, uint32_t addr);
uint32_t virtio_config_readw(VirtIODevice *vdev, uint32_t addr);
uint32_t virtio_config_readl(VirtIODevice *vdev, uint32_t addr);
void virtio_config_writeb(VirtIODevice *vdev, uint32_t addr, uint32_t data);
void virtio_config_writew(VirtIODevice *vdev, uint32_t addr, uint32_t data);
void virtio_config_writel(VirtIODevice *vdev, uint32_t addr, uint32_t data);
A
Avi Kivity 已提交
195 196
void virtio_queue_set_addr(VirtIODevice *vdev, int n, hwaddr addr);
hwaddr virtio_queue_get_addr(VirtIODevice *vdev, int n);
P
Paul Brook 已提交
197 198
int virtio_queue_get_num(VirtIODevice *vdev, int n);
void virtio_queue_notify(VirtIODevice *vdev, int n);
199 200
uint16_t virtio_queue_vector(VirtIODevice *vdev, int n);
void virtio_queue_set_vector(VirtIODevice *vdev, int n, uint16_t vector);
201
void virtio_set_status(VirtIODevice *vdev, uint8_t val);
P
Paul Brook 已提交
202 203
void virtio_reset(void *opaque);
void virtio_update_irq(VirtIODevice *vdev);
204
int virtio_set_features(VirtIODevice *vdev, uint32_t val);
P
Paul Brook 已提交
205 206

/* Base devices.  */
P
Paolo Bonzini 已提交
207
typedef struct VirtIOBlkConf VirtIOBlkConf;
208 209
struct virtio_net_conf;
VirtIODevice *virtio_net_init(DeviceState *dev, NICConf *conf,
210 211
                              struct virtio_net_conf *net,
                              uint32_t host_features);
212 213
typedef struct virtio_serial_conf virtio_serial_conf;
VirtIODevice *virtio_serial_init(DeviceState *dev, virtio_serial_conf *serial);
214 215
typedef struct VirtIOSCSIConf VirtIOSCSIConf;
VirtIODevice *virtio_scsi_init(DeviceState *dev, VirtIOSCSIConf *conf);
216
typedef struct VirtIORNGConf VirtIORNGConf;
217
#ifdef CONFIG_VIRTFS
218 219 220
VirtIODevice *virtio_9p_init(DeviceState *dev, V9fsConf *conf);
#endif

P
Paul Brook 已提交
221

222
void virtio_net_exit(VirtIODevice *vdev);
223
void virtio_serial_exit(VirtIODevice *vdev);
224
void virtio_scsi_exit(VirtIODevice *vdev);
225

226 227
#define DEFINE_VIRTIO_COMMON_FEATURES(_state, _field) \
	DEFINE_PROP_BIT("indirect_desc", _state, _field, \
M
Michael S. Tsirkin 已提交
228 229 230
			VIRTIO_RING_F_INDIRECT_DESC, true), \
	DEFINE_PROP_BIT("event_idx", _state, _field, \
			VIRTIO_RING_F_EVENT_IDX, true)
231

A
Avi Kivity 已提交
232 233 234 235 236 237 238 239
hwaddr virtio_queue_get_desc_addr(VirtIODevice *vdev, int n);
hwaddr virtio_queue_get_avail_addr(VirtIODevice *vdev, int n);
hwaddr virtio_queue_get_used_addr(VirtIODevice *vdev, int n);
hwaddr virtio_queue_get_ring_addr(VirtIODevice *vdev, int n);
hwaddr virtio_queue_get_desc_size(VirtIODevice *vdev, int n);
hwaddr virtio_queue_get_avail_size(VirtIODevice *vdev, int n);
hwaddr virtio_queue_get_used_size(VirtIODevice *vdev, int n);
hwaddr virtio_queue_get_ring_size(VirtIODevice *vdev, int n);
240 241 242
uint16_t virtio_queue_get_last_avail_idx(VirtIODevice *vdev, int n);
void virtio_queue_set_last_avail_idx(VirtIODevice *vdev, int n, uint16_t idx);
VirtQueue *virtio_get_queue(VirtIODevice *vdev, int n);
243
uint16_t virtio_get_queue_index(VirtQueue *vq);
P
Paolo Bonzini 已提交
244
int virtio_queue_get_id(VirtQueue *vq);
245
EventNotifier *virtio_queue_get_guest_notifier(VirtQueue *vq);
246 247
void virtio_queue_set_guest_notifier_fd_handler(VirtQueue *vq, bool assign,
                                                bool with_irqfd);
248
EventNotifier *virtio_queue_get_host_notifier(VirtQueue *vq);
P
Paolo Bonzini 已提交
249 250
void virtio_queue_set_host_notifier_fd_handler(VirtQueue *vq, bool assign,
                                               bool set_handler);
251
void virtio_queue_notify_vq(VirtQueue *vq);
252
void virtio_irq(VirtQueue *vq);
A
aliguori 已提交
253
#endif