virtio-pci.h 3.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Virtio PCI Bindings
 *
 * Copyright IBM, Corp. 2007
 * Copyright (c) 2009 CodeSourcery
 *
 * Authors:
 *  Anthony Liguori   <aliguori@us.ibm.com>
 *  Paul Brook        <paul@codesourcery.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_PCI_H
#define QEMU_VIRTIO_PCI_H

18
#include "hw/pci/msi.h"
P
Paolo Bonzini 已提交
19 20 21 22 23 24 25 26
#include "hw/virtio/virtio-blk.h"
#include "hw/virtio/virtio-net.h"
#include "hw/virtio/virtio-rng.h"
#include "hw/virtio/virtio-serial.h"
#include "hw/virtio/virtio-scsi.h"
#include "hw/virtio/virtio-balloon.h"
#include "hw/virtio/virtio-bus.h"
#include "hw/virtio/virtio-9p.h"
27

28
typedef struct VirtIOPCIProxy VirtIOPCIProxy;
29
typedef struct VirtIOBlkPCI VirtIOBlkPCI;
30
typedef struct VirtIOSCSIPCI VirtIOSCSIPCI;
31
typedef struct VirtIOBalloonPCI VirtIOBalloonPCI;
32

33 34 35 36 37 38 39 40 41 42 43 44
/* virtio-pci-bus */

typedef struct VirtioBusState VirtioPCIBusState;
typedef struct VirtioBusClass VirtioPCIBusClass;

#define TYPE_VIRTIO_PCI_BUS "virtio-pci-bus"
#define VIRTIO_PCI_BUS(obj) \
        OBJECT_CHECK(VirtioPCIBusState, (obj), TYPE_VIRTIO_PCI_BUS)
#define VIRTIO_PCI_BUS_GET_CLASS(obj) \
        OBJECT_GET_CLASS(VirtioPCIBusClass, obj, TYPE_VIRTIO_PCI_BUS)
#define VIRTIO_PCI_BUS_CLASS(klass) \
        OBJECT_CLASS_CHECK(VirtioPCIBusClass, klass, TYPE_VIRTIO_PCI_BUS)
45

A
Aneesh Kumar K.V 已提交
46 47 48 49 50
/* Performance improves when virtqueue kick processing is decoupled from the
 * vcpu thread using ioeventfd for some devices. */
#define VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT 1
#define VIRTIO_PCI_FLAG_USE_IOEVENTFD   (1 << VIRTIO_PCI_FLAG_USE_IOEVENTFD_BIT)

51
typedef struct {
52
    MSIMessage msg;
53 54 55 56
    int virq;
    unsigned int users;
} VirtIOIRQFD;

57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
/*
 * virtio-pci: This is the PCIDevice which has a virtio-pci-bus.
 */
#define TYPE_VIRTIO_PCI "virtio-pci"
#define VIRTIO_PCI_GET_CLASS(obj) \
        OBJECT_GET_CLASS(VirtioPCIClass, obj, TYPE_VIRTIO_PCI)
#define VIRTIO_PCI_CLASS(klass) \
        OBJECT_CLASS_CHECK(VirtioPCIClass, klass, TYPE_VIRTIO_PCI)
#define VIRTIO_PCI(obj) \
        OBJECT_CHECK(VirtIOPCIProxy, (obj), TYPE_VIRTIO_PCI)

typedef struct VirtioPCIClass {
    PCIDeviceClass parent_class;
    int (*init)(VirtIOPCIProxy *vpci_dev);
} VirtioPCIClass;

struct VirtIOPCIProxy {
74 75
    PCIDevice pci_dev;
    VirtIODevice *vdev;
A
Avi Kivity 已提交
76
    MemoryRegion bar;
77 78 79 80 81
    uint32_t flags;
    uint32_t class_code;
    uint32_t nvectors;
    NICConf nic;
    uint32_t host_features;
82
#ifdef CONFIG_VIRTFS
83 84 85 86
    V9fsConf fsconf;
#endif
    virtio_serial_conf serial;
    virtio_net_conf net;
87
    VirtIORNGConf rng;
88 89
    bool ioeventfd_disabled;
    bool ioeventfd_started;
90
    VirtIOIRQFD *vector_irqfd;
91
    int nvqs_with_notifiers;
92 93
    VirtioBusState bus;
};
94

95 96 97 98 99 100 101 102 103 104 105 106 107

/*
 * virtio-scsi-pci: This extends VirtioPCIProxy.
 */
#define TYPE_VIRTIO_SCSI_PCI "virtio-scsi-pci"
#define VIRTIO_SCSI_PCI(obj) \
        OBJECT_CHECK(VirtIOSCSIPCI, (obj), TYPE_VIRTIO_SCSI_PCI)

struct VirtIOSCSIPCI {
    VirtIOPCIProxy parent_obj;
    VirtIOSCSI vdev;
};

108 109 110 111 112 113 114 115 116 117 118 119 120
/*
 * virtio-blk-pci: This extends VirtioPCIProxy.
 */
#define TYPE_VIRTIO_BLK_PCI "virtio-blk-pci"
#define VIRTIO_BLK_PCI(obj) \
        OBJECT_CHECK(VirtIOBlkPCI, (obj), TYPE_VIRTIO_BLK_PCI)

struct VirtIOBlkPCI {
    VirtIOPCIProxy parent_obj;
    VirtIOBlock vdev;
    VirtIOBlkConf blk;
};

121 122 123 124 125 126 127 128 129 130 131 132
/*
 * virtio-balloon-pci: This extends VirtioPCIProxy.
 */
#define TYPE_VIRTIO_BALLOON_PCI "virtio-balloon-pci"
#define VIRTIO_BALLOON_PCI(obj) \
        OBJECT_CHECK(VirtIOBalloonPCI, (obj), TYPE_VIRTIO_BALLOON_PCI)

struct VirtIOBalloonPCI {
    VirtIOPCIProxy parent_obj;
    VirtIOBalloon vdev;
};

133
void virtio_init_pci(VirtIOPCIProxy *proxy, VirtIODevice *vdev);
134
void virtio_pci_bus_new(VirtioBusState *bus, VirtIOPCIProxy *dev);
135 136 137 138

/* Virtio ABI version, if we increment this, we break the guest driver. */
#define VIRTIO_PCI_ABI_VERSION          0

139
#endif