qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH][STABLE] cirrus: Properly re-register cirrus_lin


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH][STABLE] cirrus: Properly re-register cirrus_linear_io_addr on vram unmap
Date: Fri, 29 Jan 2010 14:45:15 -0600
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.5) Gecko/20091209 Fedora/3.0-4.fc12 Lightning/1.0pre Thunderbird/3.0

On 01/29/2010 08:12 AM, Jan Kiszka wrote:
This fixes CONFIG_FB_CIRRUS for Linux guests and probably much more:

When switching away from linearly mapped vram, we also have to restore
the I/O handlers for the LFB.

This regression was once introduced by commit 2bec46dc97.

Signed-off-by: Jan Kiszka<address@hidden>
---
  hw/cirrus_vga.c |    6 ++++--
  1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c
index 6fe433d..9f61a01 100644
--- a/hw/cirrus_vga.c
+++ b/hw/cirrus_vga.c
@@ -2585,9 +2585,11 @@ static void map_linear_vram(CirrusVGAState *s)

  static void unmap_linear_vram(CirrusVGAState *s)
  {
-    if (s->vga.map_addr&&  s->vga.lfb_addr&&  s->vga.lfb_end)
+    if (s->vga.map_addr&&  s->vga.lfb_addr&&  s->vga.lfb_end) {
          s->vga.map_addr = s->vga.map_end = 0;
-
+         cpu_register_physical_memory(s->vga.lfb_addr, s->vga.vram_size,
+                                      s->cirrus_linear_io_addr);
+    }
      cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x20000,
                                   s->vga.vga_io_memory);
  }








reply via email to

[Prev in Thread] Current Thread [Next in Thread]