QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
582 B
29 lines
582 B
#ifndef VIRTIO_VGA_H
|
|
#define VIRTIO_VGA_H
|
|
|
|
#include "hw/virtio/virtio-gpu-pci.h"
|
|
#include "vga_int.h"
|
|
#include "qom/object.h"
|
|
|
|
/*
|
|
* virtio-vga-base: This extends VirtioPCIProxy.
|
|
*/
|
|
#define TYPE_VIRTIO_VGA_BASE "virtio-vga-base"
|
|
OBJECT_DECLARE_TYPE(VirtIOVGABase, VirtIOVGABaseClass,
|
|
VIRTIO_VGA_BASE)
|
|
|
|
struct VirtIOVGABase {
|
|
VirtIOPCIProxy parent_obj;
|
|
|
|
VirtIOGPUBase *vgpu;
|
|
VGACommonState vga;
|
|
MemoryRegion vga_mrs[3];
|
|
};
|
|
|
|
struct VirtIOVGABaseClass {
|
|
VirtioPCIClass parent_class;
|
|
|
|
DeviceReset parent_reset;
|
|
};
|
|
|
|
#endif /* VIRTIO_VGA_H */
|
|
|