[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/6] re-register whole area upon lfb unmap.
From: |
Glauber Costa |
Subject: |
[Qemu-devel] [PATCH 2/6] re-register whole area upon lfb unmap. |
Date: |
Tue, 20 Jan 2009 13:51:01 -0500 |
set phys_offset correctly for the whole vga area when unmapping linear vram
(for vga optimization). We first register the old pieces as unassigned
memory, to make things easier for kvm (and possibly other slot based
implementations in the future). Replacing the region directly would
make the slot management significantly more complex.
Signed-off-by: Glauber Costa <address@hidden>
---
hw/cirrus_vga.c | 7 ++-----
1 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c
index ef939ae..75faafc 100644
--- a/hw/cirrus_vga.c
+++ b/hw/cirrus_vga.c
@@ -2646,11 +2646,8 @@ static void map_linear_vram(CirrusVGAState *s)
s->lfb_vram_mapped = 1;
vga_dirty_log_start((VGAState *)s);
}
- else {
- cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x8000,
s->vga_io_memory);
- cpu_register_physical_memory(isa_mem_base + 0xa8000, 0x8000,
s->vga_io_memory);
- }
-
+ else
+ cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x20000,
s->vga_io_memory);
}
static void unmap_linear_vram(CirrusVGAState *s)
--
1.5.6.5
Re: [Qemu-devel] [PATCH 0/6] Bypass tcg memory functions -v1.0-2009, Paul Brook, 2009/01/21