diff options
author | Gerd Hoffmann | 2010-11-17 12:06:44 +0100 |
---|---|---|
committer | Anthony Liguori | 2010-11-21 16:16:57 +0100 |
commit | 281a26b15b4adcecb8604216738975abd754bea8 (patch) | |
tree | 3354e6cb7db8f04e83777ea1a61b113125a92aa0 /hw/vmware_vga.c | |
parent | pcnet: Do not receive external frames in loopback mode (diff) | |
download | qemu-281a26b15b4adcecb8604216738975abd754bea8.tar.gz qemu-281a26b15b4adcecb8604216738975abd754bea8.tar.xz qemu-281a26b15b4adcecb8604216738975abd754bea8.zip |
vgabios update: handle compatibility with older qemu versions
As pointed out by avi the vgabios update is guest-visible and thus has
migration implications.
One change is that the vga has a valid pci rom bar now. We already have
a pci bus property to enable/disable the rom bar and we'll load the bios
via fw_cfg as fallback for the no-rom-bar case. So we just have to add
compat properties to handle this case.
A second change is that the magic bochs lfb @ 0xe0000000 is gone. When
live-migrating a guest from a older qemu version it might be using the
lfb though, so we have to keep it for the old machine types. The patch
enables the bochs lfb in case we don't have the pci rom bar enabled
(i.e. we are in 0.13+older compat mode).
This patch depends on these patches which add (and use) the pc-0.13
machine type:
http://patchwork.ozlabs.org/patch/70797/
http://patchwork.ozlabs.org/patch/70798/
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Cc: avi@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/vmware_vga.c')
-rw-r--r-- | hw/vmware_vga.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index 9337fdbfef..d0f4e1b5b5 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -1301,6 +1301,11 @@ static int pci_vmsvga_initfn(PCIDevice *dev) vmsvga_init(&s->chip, VGA_RAM_SIZE); + if (!dev->rom_bar) { + /* compatibility with pc-0.13 and older */ + vga_init_vbe(&s->chip.vga); + } + return 0; } |