diff options
author | Gerd Hoffmann | 2012-05-24 09:59:44 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2012-06-22 10:46:12 +0200 |
commit | 4a1e244eb65c646bdd938d9d137ace42d76c95a7 (patch) | |
tree | 312ebcb456904968061be48cecbee7b5197e26f3 /hw/qxl.c | |
parent | vga: raise xres+yres limits (diff) | |
download | qemu-4a1e244eb65c646bdd938d9d137ace42d76c95a7.tar.gz qemu-4a1e244eb65c646bdd938d9d137ace42d76c95a7.tar.xz qemu-4a1e244eb65c646bdd938d9d137ace42d76c95a7.zip |
vga: make vram size configurable
Zap the global VGA_RAM_SIZE #define, make the vga ram size configurable
for standard vga and vmware vga. cirrus and qxl are left with a fixed
size (and private VGA_RAM_SIZE #define) for now.
qxl needs some non-trivial adjustments in the mode list handling deal
with a runtime-configurable size, which calls for a separate qxl patch.
cirrus emulates cards which have 2 MB (isa) and 4 MB (pci), so I guess
it would make sense to use these sizes. That change would break
migration though, so I left it fixed at 8 MB size. Making it
configurabls is pretty pointless for cirrus as we have to match real
hardware.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/qxl.c')
-rw-r--r-- | hw/qxl.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -27,6 +27,8 @@ #include "qxl.h" +#define VGA_RAM_SIZE (8192 * 1024) + /* * NOTE: SPICE_RING_PROD_ITEM accesses memory on the pci bar and as * such can be changed by the guest, so to avoid a guest trigerrable @@ -1854,7 +1856,8 @@ static int qxl_init_primary(PCIDevice *dev) qxl->id = 0; qxl_init_ramsize(qxl, 32); - vga_common_init(vga, qxl->vga.vram_size); + vga->vram_size_mb = qxl->vga.vram_size >> 20; + vga_common_init(vga); vga_init(vga, pci_address_space(dev), pci_address_space_io(dev), false); portio_list_init(qxl_vga_port_list, qxl_vga_portio_list, vga, "vga"); portio_list_add(qxl_vga_port_list, pci_address_space_io(dev), 0x3b0); |