From: balrog Date: Sat, 12 Apr 2008 23:49:37 +0000 (+0000) Subject: Allocate the -vmwarevga framebuffer in the right place in RAM. X-Git-Tag: TizenStudio_2.0_p2.3~12025 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7981f058d6d7989229f7bcde2f03b640a3854f18;p=sdk%2Femulator%2Fqemu.git Allocate the -vmwarevga framebuffer in the right place in RAM. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4200 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index 5536105..2f9b15c 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -58,6 +58,7 @@ struct vmsvga_state_s { #ifndef EMBED_STDVGA DisplayState *ds; int vram_size; + ram_addr_t vram_offset; #endif uint8_t *vram; target_phys_addr_t vram_base; @@ -1114,6 +1115,7 @@ static void vmsvga_init(struct vmsvga_state_s *s, DisplayState *ds, s->ds = ds; s->vram = vga_ram_base; s->vram_size = vga_ram_size; + s->vram_offset = vga_ram_offset; s->scratch_size = SVGA_SCRATCH_SIZE; s->scratch = (uint32_t *) qemu_malloc(s->scratch_size * 4); @@ -1186,7 +1188,7 @@ static void pci_vmsvga_map_mem(PCIDevice *pci_dev, int region_num, iomemtype = cpu_register_io_memory(0, vmsvga_vram_read, vmsvga_vram_write, s); #else - iomemtype = 0 | IO_MEM_RAM; + iomemtype = s->vram_offset | IO_MEM_RAM; #endif cpu_register_physical_memory(s->vram_base, s->vram_size, iomemtype);