| * Copyright IBM, Corp. 2007 |
| * Copyright (c) 2009 CodeSourcery |
| * 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 |
| #include "virtio-serial.h" |
| /* 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) |
| virtio_serial_conf serial; |
| VirtIOIRQFD *vector_irqfd; |
| void virtio_init_pci(VirtIOPCIProxy *proxy, VirtIODevice *vdev); |
| void virtio_pci_reset(DeviceState *d); |
| /* Virtio ABI version, if we increment this, we break the guest driver. */ |
| #define VIRTIO_PCI_ABI_VERSION 0 |