diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-09-25 09:56:46 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-09-27 08:07:51 +0200 |
commit | d46b40fce2e3f5187bb9a67d348e8bfd4f73ad3b (patch) | |
tree | 8fe4c27cf074bd1d0f26e5409bc6ae9022c5d975 /hw/display/vga_int.h | |
parent | 06510b899fbb43a709ddb5ba04610efa7fbef13b (diff) | |
download | qemu-d46b40fce2e3f5187bb9a67d348e8bfd4f73ad3b.zip qemu-d46b40fce2e3f5187bb9a67d348e8bfd4f73ad3b.tar.gz qemu-d46b40fce2e3f5187bb9a67d348e8bfd4f73ad3b.tar.bz2 |
display/stdvga: add edid support.
This patch adds edid support to the qemu stdvga. It is turned off by
default and can be enabled with the new edid property. The patch also
adds xres and yres properties to specify the video mode you want the
guest use. Works only with edid enabled and updated guest driver.
The mmio bar of the stdvga has some unused address space at the start.
It was reserved just in case it'll be needed for virtio, but it turned
out to not be needed for that. So let's use that region to place the
EDID data block there.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20180925075646.25114-6-kraxel@redhat.com
Diffstat (limited to 'hw/display/vga_int.h')
-rw-r--r-- | hw/display/vga_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h index 339661b..6e4fa48 100644 --- a/hw/display/vga_int.h +++ b/hw/display/vga_int.h @@ -197,6 +197,6 @@ void pci_std_vga_mmio_region_init(VGACommonState *s, Object *owner, MemoryRegion *parent, MemoryRegion *subs, - bool qext); + bool qext, bool edid); #endif |