diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-03-11 11:14:40 -0600 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2019-03-11 12:59:59 -0600 |
commit | c62a0c7ce34ed99a7c45199b9fddeafaba73f3bf (patch) | |
tree | e4df9af942b85e7dc4f56291c58b34ccd17af63d /hw/vfio/pci.h | |
parent | 08479114b0de29f7cdd6ae20f3490b45753db083 (diff) |
vfio/display: add xres + yres properties
This allows configure the display resolution which the vgpu should use.
The information will be passed to the guest using EDID, so the mdev
driver must support the vfio edid region for this to work.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Liam Merwick <liam.merwick@oracle.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw/vfio/pci.h')
-rw-r--r-- | hw/vfio/pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/vfio/pci.h b/hw/vfio/pci.h index b1ae4c0754..c11c3f1670 100644 --- a/hw/vfio/pci.h +++ b/hw/vfio/pci.h @@ -149,6 +149,8 @@ typedef struct VFIOPCIDevice { #define VFIO_FEATURE_ENABLE_IGD_OPREGION \ (1 << VFIO_FEATURE_ENABLE_IGD_OPREGION_BIT) OnOffAuto display; + uint32_t display_xres; + uint32_t display_yres; int32_t bootindex; uint32_t igd_gms; OffAutoPCIBAR msix_relo; |