mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-31 05:51:53 -06:00
virtio: split virtio gpu bits from virtio-pci.h
Reviewed-by: Laurent Vivier <lvivier@redhat.com> Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
f386df1744
commit
7ecb381fcf
3 changed files with 15 additions and 14 deletions
|
@ -19,6 +19,20 @@
|
||||||
#include "hw/virtio/virtio-pci.h"
|
#include "hw/virtio/virtio-pci.h"
|
||||||
#include "hw/virtio/virtio-gpu.h"
|
#include "hw/virtio/virtio-gpu.h"
|
||||||
|
|
||||||
|
typedef struct VirtIOGPUPCI VirtIOGPUPCI;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* virtio-gpu-pci: This extends VirtioPCIProxy.
|
||||||
|
*/
|
||||||
|
#define TYPE_VIRTIO_GPU_PCI "virtio-gpu-pci"
|
||||||
|
#define VIRTIO_GPU_PCI(obj) \
|
||||||
|
OBJECT_CHECK(VirtIOGPUPCI, (obj), TYPE_VIRTIO_GPU_PCI)
|
||||||
|
|
||||||
|
struct VirtIOGPUPCI {
|
||||||
|
VirtIOPCIProxy parent_obj;
|
||||||
|
VirtIOGPU vdev;
|
||||||
|
};
|
||||||
|
|
||||||
static Property virtio_gpu_pci_properties[] = {
|
static Property virtio_gpu_pci_properties[] = {
|
||||||
DEFINE_VIRTIO_GPU_PCI_PROPERTIES(VirtIOPCIProxy),
|
DEFINE_VIRTIO_GPU_PCI_PROPERTIES(VirtIOPCIProxy),
|
||||||
DEFINE_PROP_END_OF_LIST(),
|
DEFINE_PROP_END_OF_LIST(),
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
#include "hw/pci/pci.h"
|
#include "hw/pci/pci.h"
|
||||||
#include "vga_int.h"
|
#include "vga_int.h"
|
||||||
#include "hw/virtio/virtio-pci.h"
|
#include "hw/virtio/virtio-pci.h"
|
||||||
|
#include "hw/virtio/virtio-gpu.h"
|
||||||
#include "qapi/error.h"
|
#include "qapi/error.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -17,11 +17,9 @@
|
||||||
|
|
||||||
#include "hw/pci/msi.h"
|
#include "hw/pci/msi.h"
|
||||||
#include "hw/virtio/virtio-bus.h"
|
#include "hw/virtio/virtio-bus.h"
|
||||||
#include "hw/virtio/virtio-gpu.h"
|
|
||||||
#include "hw/virtio/virtio-crypto.h"
|
#include "hw/virtio/virtio-crypto.h"
|
||||||
|
|
||||||
typedef struct VirtIOPCIProxy VirtIOPCIProxy;
|
typedef struct VirtIOPCIProxy VirtIOPCIProxy;
|
||||||
typedef struct VirtIOGPUPCI VirtIOGPUPCI;
|
|
||||||
typedef struct VirtIOCryptoPCI VirtIOCryptoPCI;
|
typedef struct VirtIOCryptoPCI VirtIOCryptoPCI;
|
||||||
|
|
||||||
/* virtio-pci-bus */
|
/* virtio-pci-bus */
|
||||||
|
@ -184,18 +182,6 @@ static inline void virtio_pci_disable_modern(VirtIOPCIProxy *proxy)
|
||||||
*/
|
*/
|
||||||
#define TYPE_VIRTIO_INPUT_PCI "virtio-input-pci"
|
#define TYPE_VIRTIO_INPUT_PCI "virtio-input-pci"
|
||||||
|
|
||||||
/*
|
|
||||||
* virtio-gpu-pci: This extends VirtioPCIProxy.
|
|
||||||
*/
|
|
||||||
#define TYPE_VIRTIO_GPU_PCI "virtio-gpu-pci"
|
|
||||||
#define VIRTIO_GPU_PCI(obj) \
|
|
||||||
OBJECT_CHECK(VirtIOGPUPCI, (obj), TYPE_VIRTIO_GPU_PCI)
|
|
||||||
|
|
||||||
struct VirtIOGPUPCI {
|
|
||||||
VirtIOPCIProxy parent_obj;
|
|
||||||
VirtIOGPU vdev;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* virtio-crypto-pci: This extends VirtioPCIProxy.
|
* virtio-crypto-pci: This extends VirtioPCIProxy.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue