2014-09-01 14:07:54 +04:00
|
|
|
/*
|
|
|
|
* libqos virtio PCI definitions
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Marc Marí
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBQOS_VIRTIO_PCI_H
|
|
|
|
#define LIBQOS_VIRTIO_PCI_H
|
|
|
|
|
|
|
|
#include "libqos/virtio.h"
|
|
|
|
#include "libqos/pci.h"
|
2018-07-18 17:02:41 +03:00
|
|
|
#include "libqos/qgraph.h"
|
2014-09-01 14:07:59 +04:00
|
|
|
|
2014-09-01 14:07:54 +04:00
|
|
|
typedef struct QVirtioPCIDevice {
|
2018-07-18 17:02:41 +03:00
|
|
|
QOSGraphObject obj;
|
2014-09-01 14:07:54 +04:00
|
|
|
QVirtioDevice vdev;
|
|
|
|
QPCIDevice *pdev;
|
2016-10-24 07:52:06 +03:00
|
|
|
QPCIBar bar;
|
2014-09-01 14:07:59 +04:00
|
|
|
uint16_t config_msix_entry;
|
|
|
|
uint64_t config_msix_addr;
|
|
|
|
uint32_t config_msix_data;
|
2014-09-01 14:07:54 +04:00
|
|
|
} QVirtioPCIDevice;
|
|
|
|
|
2014-09-01 14:07:59 +04:00
|
|
|
typedef struct QVirtQueuePCI {
|
|
|
|
QVirtQueue vq;
|
|
|
|
uint16_t msix_entry;
|
|
|
|
uint64_t msix_addr;
|
|
|
|
uint32_t msix_data;
|
|
|
|
} QVirtQueuePCI;
|
|
|
|
|
2014-09-01 14:07:55 +04:00
|
|
|
extern const QVirtioBus qvirtio_pci;
|
|
|
|
|
2018-07-18 17:02:41 +03:00
|
|
|
void virtio_pci_init(QVirtioPCIDevice *dev, QPCIBus *bus, QPCIAddress * addr);
|
|
|
|
QVirtioPCIDevice *virtio_pci_new(QPCIBus *bus, QPCIAddress * addr);
|
2017-02-03 15:06:12 +03:00
|
|
|
|
2018-07-18 17:02:41 +03:00
|
|
|
/* virtio-pci object functions available for subclasses that
|
|
|
|
* override the original start_hw and destroy
|
|
|
|
* function. All virtio-xxx-pci subclass that override must
|
|
|
|
* take care of calling these two functions in the respective
|
|
|
|
* places
|
|
|
|
*/
|
|
|
|
void qvirtio_pci_destructor(QOSGraphObject *obj);
|
|
|
|
void qvirtio_pci_start_hw(QOSGraphObject *obj);
|
|
|
|
|
|
|
|
|
2014-09-01 14:07:55 +04:00
|
|
|
void qvirtio_pci_device_enable(QVirtioPCIDevice *d);
|
|
|
|
void qvirtio_pci_device_disable(QVirtioPCIDevice *d);
|
2014-09-01 14:07:59 +04:00
|
|
|
|
|
|
|
void qvirtio_pci_set_msix_configuration_vector(QVirtioPCIDevice *d,
|
|
|
|
QGuestAllocator *alloc, uint16_t entry);
|
|
|
|
void qvirtqueue_pci_msix_setup(QVirtioPCIDevice *d, QVirtQueuePCI *vqpci,
|
|
|
|
QGuestAllocator *alloc, uint16_t entry);
|
2014-09-01 14:07:54 +04:00
|
|
|
#endif
|