public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Arne Brutschy <arne.brutschy@ulb.ac.be>
To: Andreas Winkelbauer <andreas.winkelbauer@gmx.at>
Cc: kvm-devel@lists.sourceforge.net, Avi Kivity <avi@qumranet.com>,
	Leslie Mann <lmann@nt.net>
Subject: Re: [PATCH] fix widescreen resolution issues (v2)
Date: Fri, 22 Feb 2008 10:17:37 +0100	[thread overview]
Message-ID: <1203671857.4011.35.camel@edison.ulb.ac.be> (raw)
In-Reply-To: <47BE2F65.1010903@gmx.at>

[-- Attachment #1: Type: text/plain, Size: 1102 bytes --]

Hi all,

On Fr, 2008-02-22 at 03:11 +0100, Andreas Winkelbauer wrote:
> I found out what crashed kvm when I increased VGA_RAM_SIZE in pc.h. The 
> crash was caused by a really _dirty_ hack in a kvm specific part of 
> vga.c (it took me at least an hour to find this amazing piece of code... 
> at least the "HACK ALERT" was a good hint ;-) ).
Ow, that really does qualify as a dirty hack. :) Thanks for finding
that! I currently don't have the time to skim through pages of code, so
sorry for my non-involvement on this issue...

> @Arne: Could you please test the patch with your setup? I hope it works 
> this time...
Yesno. It does (at least kvm does not crash), but it shows the same
dialog problems as reported by Leslie:

> I've attached the patch. It works for me (tested with windows xp as 
> guest os @ 1680x1050). As always, please test the patch. I'd highly 
> appreciate it if somebody could test it with linux as guest os.

BTW, Leslie: Which patch did you use? I attached a second patch as
Andreas forgot to include the changes in hw/pc.h.

Cheers & Good morning to the europeans ;)
Arne

[-- Attachment #2: qemu-widescreen.patch --]
[-- Type: text/x-patch, Size: 7072 bytes --]

diff -Naur kvm-61.orig/qemu/hw/pc.h kvm-61/qemu/hw/pc.h
--- kvm-61.orig/qemu/hw/pc.h	2008-02-19 15:58:28.000000000 +0100
+++ kvm-61/qemu/hw/pc.h	2008-02-21 11:52:36.000000000 +0100
@@ -108,9 +108,9 @@
 /* vga.c */
 
 #ifndef TARGET_SPARC
-#define VGA_RAM_SIZE (8192 * 1024)
+#define VGA_RAM_SIZE (16 * 1024 * 1024)
 #else
-#define VGA_RAM_SIZE (9 * 1024 * 1024)
+#define VGA_RAM_SIZE (17 * 1024 * 1024)
 #endif
 
 int isa_vga_init(DisplayState *ds, uint8_t *vga_ram_base,
diff -Naur kvm-61.orig/qemu/hw/vga.c kvm-61/qemu/hw/vga.c
--- kvm-61.orig/qemu/hw/vga.c	2008-02-19 15:58:28.000000000 +0100
+++ kvm-61/qemu/hw/vga.c	2008-02-22 10:07:14.000000000 +0100
@@ -1438,7 +1438,7 @@
     long page0, page1, page_min, page_max;
     vga_draw_line_func *vga_draw_line;
     /* HACK ALERT */
-#define VGA_BITMAP_SIZE ((8*1024*1024) / 4096 / 8 / sizeof(long))
+#define VGA_BITMAP_SIZE ((VGA_RAM_SIZE) / 4096 / 8 / sizeof(long))
     unsigned long bitmap[VGA_BITMAP_SIZE];
 #ifndef TARGET_IA64
     int r;
diff -Naur kvm-61.orig/qemu/hw/vga_int.h kvm-61/qemu/hw/vga_int.h
--- kvm-61.orig/qemu/hw/vga_int.h	2008-02-19 15:58:28.000000000 +0100
+++ kvm-61/qemu/hw/vga_int.h	2008-02-21 10:54:48.000000000 +0100
@@ -30,8 +30,8 @@
 /* bochs VBE support */
 #define CONFIG_BOCHS_VBE
 
-#define VBE_DISPI_MAX_XRES              1600
-#define VBE_DISPI_MAX_YRES              1200
+#define VBE_DISPI_MAX_XRES              2560
+#define VBE_DISPI_MAX_YRES              1600
 #define VBE_DISPI_MAX_BPP               32
 
 #define VBE_DISPI_INDEX_ID              0x0
diff -Naur kvm-61.orig/vgabios/vbetables-gen.c kvm-61/vgabios/vbetables-gen.c
--- kvm-61.orig/vgabios/vbetables-gen.c	2008-02-19 15:58:28.000000000 +0100
+++ kvm-61/vgabios/vbetables-gen.c	2008-02-21 10:54:48.000000000 +0100
@@ -2,7 +2,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 
-#define VBE_DISPI_TOTAL_VIDEO_MEMORY_MB 8
+#define VBE_DISPI_TOTAL_VIDEO_MEMORY_MB 16
 
 typedef struct {
     int width;
@@ -13,60 +13,69 @@
 
 ModeInfo modes[] = {
     /* standard VESA modes */
-{ 640, 400, 8                          , 0x100},
-{ 640, 480, 8                          , 0x101},
-{ 800, 600, 4                          , 0x102},
-{ 800, 600, 8                          , 0x103},
-{ 1024, 768, 4                         , 0x104},
-{ 1024, 768, 8                         , 0x105},
-{ 1280, 1024, 4                        , 0x106},
-{ 1280, 1024, 8                        , 0x107},
+{ 640, 400, 8                        , 0x100},
+{ 640, 480, 8                        , 0x101},
+{ 800, 600, 4                        , 0x102},
+{ 800, 600, 8                        , 0x103},
+{ 1024, 768, 4                       , 0x104},
+{ 1024, 768, 8                       , 0x105},
+{ 1280, 1024, 4                      , 0x106},
+{ 1280, 1024, 8                      , 0x107},
 { 320, 200, 15                       , 0x10D},
-{ 320, 200, 16                        , 0x10E},
-{ 320, 200, 24                        , 0x10F},
+{ 320, 200, 16                       , 0x10E},
+{ 320, 200, 24                       , 0x10F},
 { 640, 480, 15                       , 0x110},
-{ 640, 480, 16                        , 0x111},
-{ 640, 480, 24                        , 0x112},
+{ 640, 480, 16                       , 0x111},
+{ 640, 480, 24                       , 0x112},
 { 800, 600, 15                       , 0x113},
-{ 800, 600, 16                        , 0x114},
-{ 800, 600, 24                        , 0x115},
+{ 800, 600, 16                       , 0x114},
+{ 800, 600, 24                       , 0x115},
 { 1024, 768, 15                      , 0x116},
-{ 1024, 768, 16                       , 0x117},
-{ 1024, 768, 24                       , 0x118},
+{ 1024, 768, 16                      , 0x117},
+{ 1024, 768, 24                      , 0x118},
 { 1280, 1024, 15                     , 0x119},
-{ 1280, 1024, 16                      , 0x11A},
-{ 1280, 1024, 24                      , 0x11B},
-{ 1600, 1200, 8                        , 0x11C},
+{ 1280, 1024, 16                     , 0x11A},
+{ 1280, 1024, 24                     , 0x11B},
+{ 1600, 1200, 8                      , 0x11C},
 { 1600, 1200, 15                     , 0x11D},
-{ 1600, 1200, 16                      , 0x11E},
-{ 1600, 1200, 24                      , 0x11F},
+{ 1600, 1200, 16                     , 0x11E},
+{ 1600, 1200, 24                     , 0x11F},
 
       /* BOCHS/PLE, 86 'own' mode numbers */
-{ 320, 200, 32                        , 0x140},
-{ 640, 400, 32                        , 0x141},
-{ 640, 480, 32                        , 0x142},
-{ 800, 600, 32                        , 0x143},
-{ 1024, 768, 32                       , 0x144},
-{ 1280, 1024, 32                      , 0x145},
-{ 320, 200, 8                           , 0x146},
-{ 1600, 1200, 32                      , 0x147},
-{ 1152, 864, 8                      , 0x148},
+{ 320, 200, 32                       , 0x140},
+{ 640, 400, 32                       , 0x141},
+{ 640, 480, 32                       , 0x142},
+{ 800, 600, 32                       , 0x143},
+{ 1024, 768, 32                      , 0x144},
+{ 1280, 1024, 32                     , 0x145},
+{ 320, 200, 8                        , 0x146},
+{ 1600, 1200, 32                     , 0x147},
+{ 1152, 864, 8                       , 0x148},
 { 1152, 864, 15                      , 0x149},
 { 1152, 864, 16                      , 0x14a},
 { 1152, 864, 24                      , 0x14b},
 { 1152, 864, 32                      , 0x14c},
-{ 1280, 800, 24                      , 0x178},
-{ 1280, 800, 32                      , 0x179},
-{ 1280, 960, 24                      , 0x180},
-{ 1280, 960, 32                      , 0x181},
-{ 1280, 960, 24                      , 0x182},
-{ 1280, 960, 32                      , 0x183},
-{ 1440, 900, 24                      , 0x184},
-{ 1440, 900, 32                      , 0x185},
-{ 1400, 1050, 24                     , 0x186},
-{ 1400, 1050, 32                     , 0x187},
-{ 1680, 1050, 24                     , 0x188},
-{ 1680, 1050, 32                     , 0x189},
+{ 1280, 800, 16                      , 0x178},
+{ 1280, 800, 24                      , 0x179},
+{ 1280, 800, 32                      , 0x17a},
+{ 1280, 960, 16                      , 0x17b},
+{ 1280, 960, 24                      , 0x17c},
+{ 1280, 960, 32                      , 0x17d},
+{ 1440, 900, 16                      , 0x17e},
+{ 1440, 900, 24                      , 0x17f},
+{ 1440, 900, 32                      , 0x180},
+{ 1400, 1050, 16                     , 0x181},
+{ 1400, 1050, 24                     , 0x182},
+{ 1400, 1050, 32                     , 0x183},
+{ 1680, 1050, 16                     , 0x184},
+{ 1680, 1050, 24                     , 0x185},
+{ 1680, 1050, 32                     , 0x186},
+{ 1920, 1200, 16                     , 0x187},
+{ 1920, 1200, 24                     , 0x188},
+{ 1920, 1200, 32                     , 0x189},
+{ 2560, 1600, 16                     , 0x18a},
+{ 2560, 1600, 24                     , 0x18b},
+{ 2560, 1600, 32                     , 0x18c},
 { 0, },
 };
 

[-- Attachment #3: Type: text/plain, Size: 228 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

[-- Attachment #4: Type: text/plain, Size: 158 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/kvm-devel

  parent reply	other threads:[~2008-02-22  9:17 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-22  2:11 [PATCH] fix widescreen resolution issues (v2) Andreas Winkelbauer
2008-02-22  3:39 ` Leslie Mann
2008-02-22  7:45 ` Avi Kivity
2008-02-22  9:17 ` Arne Brutschy [this message]
2008-02-22 12:44   ` Andreas Winkelbauer
2008-02-22 12:55   ` Leslie Mann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1203671857.4011.35.camel@edison.ulb.ac.be \
    --to=arne.brutschy@ulb.ac.be \
    --cc=andreas.winkelbauer@gmx.at \
    --cc=avi@qumranet.com \
    --cc=kvm-devel@lists.sourceforge.net \
    --cc=lmann@nt.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox