* [Qemu-devel] Fix for bochs vbe issues
@ 2004-04-28 21:34 Matthew Mastracci
2004-04-28 22:42 ` Fabrice Bellard
0 siblings, 1 reply; 9+ messages in thread
From: Matthew Mastracci @ 2004-04-28 21:34 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 2332 bytes --]
I found a way to fix the bochs VBE issues in Windows 2000. It looks
really good in 16+ bit color. The changes in this patch are:
- Use linear (chain-4) mode for all VBE_DISPI_ENABLED modes
- Add ff80 and ff81 as valid ioport registers (these are the old ports,
still used by the driver)
Some of the issues with the patch:
- There are black lines that appear on the screen at what appear to be
lines that span a display bank. This only seems to happen in 8- or
24-bit. Puzzling!
- The shutdown screen in windows 2000 is corrupted.
A better patch might tweak some of the sequence controller and bank
select registers to set the chain-4 mode, but I haven't tried that yet.
diff -u -r ./hw/vga.c ../../qemu-0.5.4/hw/vga.c
--- ./hw/vga.c 2004-04-26 15:17:28.000000000 -0600
+++ ../../qemu-0.5.4/hw/vga.c 2004-04-27 21:46:20.828796000 -0600
@@ -678,7 +678,10 @@
break;
}
- if (s->sr[4] & 0x08) {
+ if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) {
+ /* VBE mode : simplest access */
+ ret = s->vram_ptr[addr];
+ } else if (s->sr[4] & 0x08) {
/* chain 4 mode : simplest access */
ret = s->vram_ptr[addr];
} else if (s->gr[5] & 0x10) {
@@ -756,7 +759,17 @@
break;
}
- if (s->sr[4] & 0x08) {
+ if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) {
+ /* VBE mode : simplest access */
+ plane = (s->gr[4] & 2) | (addr & 1);
+ if (s->sr[2] & (1 << plane)) {
+ s->vram_ptr[addr] = val;
+#ifdef DEBUG_VGA_MEM
+ printf("vga: VBE: [0x%x]\n", addr);
+#endif
+ cpu_physical_memory_set_dirty(s->vram_offset + addr);
+ }
+ } else if (s->sr[4] & 0x08) {
/* chain 4 mode : simplest access */
plane = addr & 3;
if (s->sr[2] & (1 << plane)) {
@@ -1768,6 +1781,11 @@
register_ioport_write(0x1ce, 1, 2, vbe_ioport_write, s);
register_ioport_write(0x1cf, 1, 2, vbe_ioport_write, s);
+ register_ioport_read(0xff80, 1, 2, vbe_ioport_read, s);
+ register_ioport_read(0xff81, 1, 2, vbe_ioport_read, s);
+
+ register_ioport_write(0xff80, 1, 2, vbe_ioport_write, s);
+ register_ioport_write(0xff81, 1, 2, vbe_ioport_write, s);
#endif
vga_io_memory = cpu_register_io_memory(0, vga_mem_read, vga_mem_write);
[-- Attachment #2: matt.vcf --]
[-- Type: text/x-vcard, Size: 286 bytes --]
begin:vcard
fn:Matthew Mastracci
n:Mastracci;Matthew
org:aclaro Softworks, inc.
adr:;;1900 a - 11 St. SE;Calgary;Alberta;T2H 3G2;Canada
email;internet:matt@aclaro.com
title:Software Developer
tel;work:(403) 299-6612
x-mozilla-html:FALSE
url:http://www.aclaro.com
version:2.1
end:vcard
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] Fix for bochs vbe issues
2004-04-28 21:34 [Qemu-devel] Fix for bochs vbe issues Matthew Mastracci
@ 2004-04-28 22:42 ` Fabrice Bellard
2004-04-29 2:17 ` Matthew Mastracci
2004-04-29 16:03 ` Michael L Torrie
0 siblings, 2 replies; 9+ messages in thread
From: Fabrice Bellard @ 2004-04-28 22:42 UTC (permalink / raw)
To: qemu-devel
Hi,
I just commited a slightly different patch. Tell me if it works.
Fabrice
Matthew Mastracci wrote:
> I found a way to fix the bochs VBE issues in Windows 2000. It looks
> really good in 16+ bit color. The changes in this patch are:
>
> - Use linear (chain-4) mode for all VBE_DISPI_ENABLED modes
> - Add ff80 and ff81 as valid ioport registers (these are the old ports,
> still used by the driver)
>
> Some of the issues with the patch:
>
> - There are black lines that appear on the screen at what appear to be
> lines that span a display bank. This only seems to happen in 8- or
> 24-bit. Puzzling!
> - The shutdown screen in windows 2000 is corrupted.
>
> A better patch might tweak some of the sequence controller and bank
> select registers to set the chain-4 mode, but I haven't tried that yet.
>
> diff -u -r ./hw/vga.c ../../qemu-0.5.4/hw/vga.c
> --- ./hw/vga.c 2004-04-26 15:17:28.000000000 -0600
> +++ ../../qemu-0.5.4/hw/vga.c 2004-04-27 21:46:20.828796000 -0600
> @@ -678,7 +678,10 @@
> break;
> }
>
> - if (s->sr[4] & 0x08) {
> + if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) {
> + /* VBE mode : simplest access */
> + ret = s->vram_ptr[addr];
> + } else if (s->sr[4] & 0x08) {
> /* chain 4 mode : simplest access */
> ret = s->vram_ptr[addr];
> } else if (s->gr[5] & 0x10) {
> @@ -756,7 +759,17 @@
> break;
> }
>
> - if (s->sr[4] & 0x08) {
> + if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) {
> + /* VBE mode : simplest access */
> + plane = (s->gr[4] & 2) | (addr & 1);
> + if (s->sr[2] & (1 << plane)) {
> + s->vram_ptr[addr] = val;
> +#ifdef DEBUG_VGA_MEM
> + printf("vga: VBE: [0x%x]\n", addr);
> +#endif
> + cpu_physical_memory_set_dirty(s->vram_offset + addr);
> + }
> + } else if (s->sr[4] & 0x08) {
> /* chain 4 mode : simplest access */
> plane = addr & 3;
> if (s->sr[2] & (1 << plane)) {
> @@ -1768,6 +1781,11 @@
>
> register_ioport_write(0x1ce, 1, 2, vbe_ioport_write, s);
> register_ioport_write(0x1cf, 1, 2, vbe_ioport_write, s);
> + register_ioport_read(0xff80, 1, 2, vbe_ioport_read, s);
> + register_ioport_read(0xff81, 1, 2, vbe_ioport_read, s);
> +
> + register_ioport_write(0xff80, 1, 2, vbe_ioport_write, s);
> + register_ioport_write(0xff81, 1, 2, vbe_ioport_write, s);
> #endif
>
> vga_io_memory = cpu_register_io_memory(0, vga_mem_read, vga_mem_write);
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://mail.nongnu.org/mailman/listinfo/qemu-devel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] Fix for bochs vbe issues
2004-04-28 22:42 ` Fabrice Bellard
@ 2004-04-29 2:17 ` Matthew Mastracci
2004-04-29 2:32 ` Matthew Mastracci
2004-04-29 16:03 ` Michael L Torrie
1 sibling, 1 reply; 9+ messages in thread
From: Matthew Mastracci @ 2004-04-29 2:17 UTC (permalink / raw)
To: fabrice; +Cc: qemu-devel
Looks good. The shutdown screen is still corrupted in Windows, but
that's not a huge issue. I think that it's expecting to be back in
latched mode, but isn't setting it itself.
One last thing to add - we need to ensure that the chain-4 mask is set
when we start up VBE mode. This will ensure that all of the planes are
written (inserted right after your chain-4 mode change):
sr[2] |= 0x0f;
--
Matthew Mastracci <matt@aclaro.com>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] Fix for bochs vbe issues
2004-04-29 2:17 ` Matthew Mastracci
@ 2004-04-29 2:32 ` Matthew Mastracci
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Mastracci @ 2004-04-29 2:32 UTC (permalink / raw)
To: fabrice; +Cc: qemu-devel
And right after I sent this message, I discovered why the shutdown
screen is corrupted:
The VBE_DISPI_ENABLED flag wasn't getting cleared internally when VBE
was disabled by the driver, causing some issues in other parts of the
code that check it:
} else {
/* XXX: the bios should do that */
s->bank_offset = -0xa0000;
+ s->vbe_regs[s->vbe_index] = val;
}
The above makes the shutdown screen appear as expected.
Matt.
On Wed, 2004-04-28 at 20:17, Matthew Mastracci wrote:
> Looks good. The shutdown screen is still corrupted in Windows, but
> that's not a huge issue. I think that it's expecting to be back in
> latched mode, but isn't setting it itself.
>
> One last thing to add - we need to ensure that the chain-4 mask is set
> when we start up VBE mode. This will ensure that all of the planes are
> written (inserted right after your chain-4 mode change):
>
> sr[2] |= 0x0f;
--
Matthew Mastracci <matt@aclaro.com>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] Fix for bochs vbe issues
2004-04-28 22:42 ` Fabrice Bellard
2004-04-29 2:17 ` Matthew Mastracci
@ 2004-04-29 16:03 ` Michael L Torrie
2004-04-29 19:51 ` [Qemu-devel] " Matthew Mastracci
1 sibling, 1 reply; 9+ messages in thread
From: Michael L Torrie @ 2004-04-29 16:03 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 3517 bytes --]
On Wed, 2004-04-28 at 16:42, Fabrice Bellard wrote:
> Hi,
>
> I just commited a slightly different patch. Tell me if it works.
I updated from CVS this morning, but unfortunately it doens't completely
work. The screen looks all garbled. The interesting thing is that if I
install VNC server, the exported screen is all garbled also.
Attached is a screenshot.
It could be the whole install is scrambled. Or I have the wrong driver.
Michael
>
> Fabrice
>
> Matthew Mastracci wrote:
> > I found a way to fix the bochs VBE issues in Windows 2000. It looks
> > really good in 16+ bit color. The changes in this patch are:
> >
> > - Use linear (chain-4) mode for all VBE_DISPI_ENABLED modes
> > - Add ff80 and ff81 as valid ioport registers (these are the old ports,
> > still used by the driver)
> >
> > Some of the issues with the patch:
> >
> > - There are black lines that appear on the screen at what appear to be
> > lines that span a display bank. This only seems to happen in 8- or
> > 24-bit. Puzzling!
> > - The shutdown screen in windows 2000 is corrupted.
> >
> > A better patch might tweak some of the sequence controller and bank
> > select registers to set the chain-4 mode, but I haven't tried that yet.
> >
> > diff -u -r ./hw/vga.c ../../qemu-0.5.4/hw/vga.c
> > --- ./hw/vga.c 2004-04-26 15:17:28.000000000 -0600
> > +++ ../../qemu-0.5.4/hw/vga.c 2004-04-27 21:46:20.828796000 -0600
> > @@ -678,7 +678,10 @@
> > break;
> > }
> >
> > - if (s->sr[4] & 0x08) {
> > + if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) {
> > + /* VBE mode : simplest access */
> > + ret = s->vram_ptr[addr];
> > + } else if (s->sr[4] & 0x08) {
> > /* chain 4 mode : simplest access */
> > ret = s->vram_ptr[addr];
> > } else if (s->gr[5] & 0x10) {
> > @@ -756,7 +759,17 @@
> > break;
> > }
> >
> > - if (s->sr[4] & 0x08) {
> > + if (s->vbe_regs[VBE_DISPI_INDEX_ENABLE] & VBE_DISPI_ENABLED) {
> > + /* VBE mode : simplest access */
> > + plane = (s->gr[4] & 2) | (addr & 1);
> > + if (s->sr[2] & (1 << plane)) {
> > + s->vram_ptr[addr] = val;
> > +#ifdef DEBUG_VGA_MEM
> > + printf("vga: VBE: [0x%x]\n", addr);
> > +#endif
> > + cpu_physical_memory_set_dirty(s->vram_offset + addr);
> > + }
> > + } else if (s->sr[4] & 0x08) {
> > /* chain 4 mode : simplest access */
> > plane = addr & 3;
> > if (s->sr[2] & (1 << plane)) {
> > @@ -1768,6 +1781,11 @@
> >
> > register_ioport_write(0x1ce, 1, 2, vbe_ioport_write, s);
> > register_ioport_write(0x1cf, 1, 2, vbe_ioport_write, s);
> > + register_ioport_read(0xff80, 1, 2, vbe_ioport_read, s);
> > + register_ioport_read(0xff81, 1, 2, vbe_ioport_read, s);
> > +
> > + register_ioport_write(0xff80, 1, 2, vbe_ioport_write, s);
> > + register_ioport_write(0xff81, 1, 2, vbe_ioport_write, s);
> > #endif
> >
> > vga_io_memory = cpu_register_io_memory(0, vga_mem_read, vga_mem_write);
> >
> >
> > ------------------------------------------------------------------------
> >
> > _______________________________________________
> > Qemu-devel mailing list
> > Qemu-devel@nongnu.org
> > http://mail.nongnu.org/mailman/listinfo/qemu-devel
>
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://mail.nongnu.org/mailman/listinfo/qemu-devel
--
Michael L Torrie <torriem@chem.byu.edu>
[-- Attachment #2: Screenshot-qemu.png --]
[-- Type: image/png, Size: 22204 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2004-04-29 20:37 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-28 21:34 [Qemu-devel] Fix for bochs vbe issues Matthew Mastracci
2004-04-28 22:42 ` Fabrice Bellard
2004-04-29 2:17 ` Matthew Mastracci
2004-04-29 2:32 ` Matthew Mastracci
2004-04-29 16:03 ` Michael L Torrie
2004-04-29 19:51 ` [Qemu-devel] " Matthew Mastracci
2004-04-29 20:12 ` Lionel Ulmer
2004-04-29 20:24 ` Matthew Mastracci
2004-04-29 20:36 ` Jean-Michel POURE
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).