2011-06-01 09:05:13 +02:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2013-01-14 22:52:02 +01:00
|
|
|
#include "hw/pci/msi.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#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"
|
2013-01-15 00:08:03 +01:00
|
|
|
|
2013-01-15 00:08:04 +01:00
|
|
|
typedef struct VirtIOPCIProxy VirtIOPCIProxy;
|
2013-03-18 17:37:23 +01:00
|
|
|
typedef struct VirtIOBlkPCI VirtIOBlkPCI;
|
2013-03-21 15:15:15 +01:00
|
|
|
typedef struct VirtIOSCSIPCI VirtIOSCSIPCI;
|
2013-03-27 10:49:11 +01:00
|
|
|
typedef struct VirtIOBalloonPCI VirtIOBalloonPCI;
|
2013-04-09 14:53:31 +02:00
|
|
|
typedef struct VirtIOSerialPCI VirtIOSerialPCI;
|
2013-04-11 16:29:58 +02:00
|
|
|
typedef struct VirtIONetPCI VirtIONetPCI;
|
2013-01-15 00:08:04 +01:00
|
|
|
|
2013-01-15 00:08:03 +01:00
|
|
|
/* 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)
|
2011-06-01 09:05:13 +02:00
|
|
|
|
2011-10-12 15:41:23 +02:00
|
|
|
/* 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)
|
|
|
|
|
2012-05-17 15:32:39 +02:00
|
|
|
typedef struct {
|
2012-12-20 23:27:54 +01:00
|
|
|
MSIMessage msg;
|
2012-05-17 15:32:39 +02:00
|
|
|
int virq;
|
|
|
|
unsigned int users;
|
|
|
|
} VirtIOIRQFD;
|
|
|
|
|
2013-01-15 00:08:04 +01:00
|
|
|
/*
|
|
|
|
* 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 {
|
2011-06-01 09:05:13 +02:00
|
|
|
PCIDevice pci_dev;
|
|
|
|
VirtIODevice *vdev;
|
2011-08-08 15:09:13 +02:00
|
|
|
MemoryRegion bar;
|
2011-06-01 09:05:13 +02:00
|
|
|
uint32_t flags;
|
|
|
|
uint32_t class_code;
|
|
|
|
uint32_t nvectors;
|
|
|
|
uint32_t host_features;
|
2013-02-04 15:32:02 +01:00
|
|
|
#ifdef CONFIG_VIRTFS
|
2011-06-01 09:05:13 +02:00
|
|
|
V9fsConf fsconf;
|
|
|
|
#endif
|
2012-06-20 08:59:32 +02:00
|
|
|
VirtIORNGConf rng;
|
2011-06-01 09:05:13 +02:00
|
|
|
bool ioeventfd_disabled;
|
|
|
|
bool ioeventfd_started;
|
2012-05-17 15:32:39 +02:00
|
|
|
VirtIOIRQFD *vector_irqfd;
|
2012-12-20 13:28:58 +01:00
|
|
|
int nvqs_with_notifiers;
|
2013-01-15 00:08:04 +01:00
|
|
|
VirtioBusState bus;
|
|
|
|
};
|
2011-06-01 09:05:13 +02:00
|
|
|
|
2013-03-21 15:15:15 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
};
|
|
|
|
|
2013-03-18 17:37:23 +01:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
};
|
|
|
|
|
2013-03-27 10:49:11 +01:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
};
|
|
|
|
|
2013-04-09 14:53:31 +02:00
|
|
|
/*
|
|
|
|
* virtio-serial-pci: This extends VirtioPCIProxy.
|
|
|
|
*/
|
|
|
|
#define TYPE_VIRTIO_SERIAL_PCI "virtio-serial-pci"
|
|
|
|
#define VIRTIO_SERIAL_PCI(obj) \
|
|
|
|
OBJECT_CHECK(VirtIOSerialPCI, (obj), TYPE_VIRTIO_SERIAL_PCI)
|
|
|
|
|
|
|
|
struct VirtIOSerialPCI {
|
|
|
|
VirtIOPCIProxy parent_obj;
|
|
|
|
VirtIOSerial vdev;
|
|
|
|
};
|
|
|
|
|
2013-04-11 16:29:58 +02:00
|
|
|
/*
|
|
|
|
* virtio-net-pci: This extends VirtioPCIProxy.
|
|
|
|
*/
|
|
|
|
#define TYPE_VIRTIO_NET_PCI "virtio-net-pci"
|
|
|
|
#define VIRTIO_NET_PCI(obj) \
|
|
|
|
OBJECT_CHECK(VirtIONetPCI, (obj), TYPE_VIRTIO_NET_PCI)
|
|
|
|
|
|
|
|
struct VirtIONetPCI {
|
|
|
|
VirtIOPCIProxy parent_obj;
|
|
|
|
VirtIONet vdev;
|
|
|
|
};
|
|
|
|
|
2011-06-14 16:51:11 +02:00
|
|
|
void virtio_init_pci(VirtIOPCIProxy *proxy, VirtIODevice *vdev);
|
2013-01-15 00:08:03 +01:00
|
|
|
void virtio_pci_bus_new(VirtioBusState *bus, VirtIOPCIProxy *dev);
|
2011-06-14 16:51:11 +02:00
|
|
|
|
|
|
|
/* Virtio ABI version, if we increment this, we break the guest driver. */
|
|
|
|
#define VIRTIO_PCI_ABI_VERSION 0
|
|
|
|
|
2011-06-01 09:05:13 +02:00
|
|
|
#endif
|