All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] -vga qxl
@ 2011-08-04 16:03 Rick Vernam
  2011-08-04 16:09 ` Daniel P. Berrange
  0 siblings, 1 reply; 8+ messages in thread
From: Rick Vernam @ 2011-08-04 16:03 UTC (permalink / raw)
  To: qemu-devel

it seems that qxl is not working correctly with any of the 0.15 releases thus 
far.  this includes qemu and qemu-kvm.

when I start qemu like so:
qemu-system-x86_64 -cpu host -enable-kvm -m 768 -usb -vga qxl -monitor stdio
I get a black screen.

when I start with -vga std:
qemu-system-x86_64 -cpu host -enable-kvm -m 768 -usb -vga std -monitor stdio
I see the seabios screen, etc.

qemu has been configured like
./configure --target-list=x86_64-softmmu --disable-curses  --disable-curl --
audio-drv-list=alsa --audio-card-list=sb16,ac97,hda --disable-bluez --enable-
vhost-net --enable-spice

I've also configured with --disable-vnc and --disable-opengl with the same 
results

Am I using this wrong, or is this a bug?

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] -vga qxl
  2011-08-04 16:03 [Qemu-devel] -vga qxl Rick Vernam
@ 2011-08-04 16:09 ` Daniel P. Berrange
  2011-08-04 17:17   ` Rick Vernam
  2011-08-04 18:15   ` Gerd Hoffmann
  0 siblings, 2 replies; 8+ messages in thread
From: Daniel P. Berrange @ 2011-08-04 16:09 UTC (permalink / raw)
  To: Rick Vernam; +Cc: qemu-devel

On Thu, Aug 04, 2011 at 11:03:10AM -0500, Rick Vernam wrote:
> it seems that qxl is not working correctly with any of the 0.15 releases thus 
> far.  this includes qemu and qemu-kvm.
> 
> when I start qemu like so:
> qemu-system-x86_64 -cpu host -enable-kvm -m 768 -usb -vga qxl -monitor stdio
> I get a black screen.

I recently had black screen problems with QXL in 0.14.x that turned out to
actually be a Seabios bug due to the default 64MB vram QXL has. I suspect
this would hit 0.15.x builds too. If this is what you're hitting, then
reducing the vram to 32MB is a temporary workaround that should help, eg

   -vga qxl -global qxl-vga.vram_size=33554432 


> when I start with -vga std:
> qemu-system-x86_64 -cpu host -enable-kvm -m 768 -usb -vga std -monitor stdio
> I see the seabios screen, etc.
> 
> qemu has been configured like
> ./configure --target-list=x86_64-softmmu --disable-curses  --disable-curl --
> audio-drv-list=alsa --audio-card-list=sb16,ac97,hda --disable-bluez --enable-
> vhost-net --enable-spice
> 
> I've also configured with --disable-vnc and --disable-opengl with the same 
> results
> 
> Am I using this wrong, or is this a bug?


Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] -vga qxl
  2011-08-04 16:09 ` Daniel P. Berrange
@ 2011-08-04 17:17   ` Rick Vernam
  2011-08-04 18:15   ` Gerd Hoffmann
  1 sibling, 0 replies; 8+ messages in thread
From: Rick Vernam @ 2011-08-04 17:17 UTC (permalink / raw)
  To: Daniel P. Berrange; +Cc: qemu-devel

On Thursday 04 August 2011 11:09:30 Daniel P. Berrange wrote:
> On Thu, Aug 04, 2011 at 11:03:10AM -0500, Rick Vernam wrote:
> > it seems that qxl is not working correctly with any of the 0.15 releases
> > thus far.  this includes qemu and qemu-kvm.
> > 
> > when I start qemu like so:
> > qemu-system-x86_64 -cpu host -enable-kvm -m 768 -usb -vga qxl -monitor
> > stdio I get a black screen.
> 
> I recently had black screen problems with QXL in 0.14.x that turned out to
> actually be a Seabios bug due to the default 64MB vram QXL has. I suspect
> this would hit 0.15.x builds too. If this is what you're hitting, then
> reducing the vram to 32MB is a temporary workaround that should help, eg
> 
>    -vga qxl -global qxl-vga.vram_size=33554432
That took care of the black screen.  Thanks.

> 
> > when I start with -vga std:
> > qemu-system-x86_64 -cpu host -enable-kvm -m 768 -usb -vga std -monitor
> > stdio I see the seabios screen, etc.
> > 
> > qemu has been configured like
> > ./configure --target-list=x86_64-softmmu --disable-curses  --disable-curl
> > -- audio-drv-list=alsa --audio-card-list=sb16,ac97,hda --disable-bluez
> > --enable- vhost-net --enable-spice
> > 
> > I've also configured with --disable-vnc and --disable-opengl with the
> > same results
> > 
> > Am I using this wrong, or is this a bug?
> 
> Regards,
> Daniel

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] -vga qxl
  2011-08-04 16:09 ` Daniel P. Berrange
  2011-08-04 17:17   ` Rick Vernam
@ 2011-08-04 18:15   ` Gerd Hoffmann
  2011-08-04 18:32     ` Rick Vernam
  2011-08-05  8:52     ` Daniel P. Berrange
  1 sibling, 2 replies; 8+ messages in thread
From: Gerd Hoffmann @ 2011-08-04 18:15 UTC (permalink / raw)
  To: Daniel P. Berrange; +Cc: qemu-devel

   Hi,

> I recently had black screen problems with QXL in 0.14.x that turned out to
> actually be a Seabios bug due to the default 64MB vram QXL has.

It is a seabios issue indeed.

> I suspect
> this would hit 0.15.x builds too. If this is what you're hitting, then
> reducing the vram to 32MB is a temporary workaround that should help, eg
>
>     -vga qxl -global qxl-vga.vram_size=33554432

There is a fixed seabios binary @ http://spice-space.org/download/seabios/

Patches are all upstream, so just fetching the latest seabios bits (git 
master branch) and building yourself will work too.

cheers,
   Gerd

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] -vga qxl
  2011-08-04 18:15   ` Gerd Hoffmann
@ 2011-08-04 18:32     ` Rick Vernam
  2011-08-05  8:52     ` Daniel P. Berrange
  1 sibling, 0 replies; 8+ messages in thread
From: Rick Vernam @ 2011-08-04 18:32 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

On Thursday 04 August 2011 13:15:35 Gerd Hoffmann wrote:
>    Hi,
> 
> > I recently had black screen problems with QXL in 0.14.x that turned out
> > to actually be a Seabios bug due to the default 64MB vram QXL has.
> 
> It is a seabios issue indeed.
> 
> > I suspect
> > this would hit 0.15.x builds too. If this is what you're hitting, then
> > reducing the vram to 32MB is a temporary workaround that should help, eg
> > 
> >     -vga qxl -global qxl-vga.vram_size=33554432
> 
> There is a fixed seabios binary @ http://spice-space.org/download/seabios/
Yep, I put that bios in and removed -global qxl-vga.vram_size=33554432 from 
the comand line, and it worked just fine.

Thanks.
> 
> Patches are all upstream, so just fetching the latest seabios bits (git
> master branch) and building yourself will work too.
> 
> cheers,
>    Gerd

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] -vga qxl
  2011-08-04 18:15   ` Gerd Hoffmann
  2011-08-04 18:32     ` Rick Vernam
@ 2011-08-05  8:52     ` Daniel P. Berrange
  2011-08-05  9:02       ` Gerd Hoffmann
  1 sibling, 1 reply; 8+ messages in thread
From: Daniel P. Berrange @ 2011-08-05  8:52 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

On Thu, Aug 04, 2011 at 08:15:35PM +0200, Gerd Hoffmann wrote:
>   Hi,
> 
> >I recently had black screen problems with QXL in 0.14.x that turned out to
> >actually be a Seabios bug due to the default 64MB vram QXL has.
> 
> It is a seabios issue indeed.
> 
> >I suspect
> >this would hit 0.15.x builds too. If this is what you're hitting, then
> >reducing the vram to 32MB is a temporary workaround that should help, eg
> >
> >    -vga qxl -global qxl-vga.vram_size=33554432
> 
> There is a fixed seabios binary @ http://spice-space.org/download/seabios/
> 
> Patches are all upstream, so just fetching the latest seabios bits
> (git master branch) and building yourself will work too.

Great, is there an intention to rebase Seabios in QEMU to pull this in
before the release of 0.15 ?

Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] -vga qxl
  2011-08-05  8:52     ` Daniel P. Berrange
@ 2011-08-05  9:02       ` Gerd Hoffmann
  2011-08-05  9:03         ` Daniel P. Berrange
  0 siblings, 1 reply; 8+ messages in thread
From: Gerd Hoffmann @ 2011-08-05  9:02 UTC (permalink / raw)
  To: Daniel P. Berrange; +Cc: qemu-devel

   Hi,

>> Patches are all upstream, so just fetching the latest seabios bits
>> (git master branch) and building yourself will work too.
>
> Great, is there an intention to rebase Seabios in QEMU to pull this in
> before the release of 0.15 ?

Anthony doesn't want change the bios that shortly before cutting a 
release.  So my backup plan is to get that into master, then 0.15.1

cheers,
   Gerd

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Qemu-devel] -vga qxl
  2011-08-05  9:02       ` Gerd Hoffmann
@ 2011-08-05  9:03         ` Daniel P. Berrange
  0 siblings, 0 replies; 8+ messages in thread
From: Daniel P. Berrange @ 2011-08-05  9:03 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

On Fri, Aug 05, 2011 at 11:02:00AM +0200, Gerd Hoffmann wrote:
>   Hi,
> 
> >>Patches are all upstream, so just fetching the latest seabios bits
> >>(git master branch) and building yourself will work too.
> >
> >Great, is there an intention to rebase Seabios in QEMU to pull this in
> >before the release of 0.15 ?
> 
> Anthony doesn't want change the bios that shortly before cutting a
> release.  So my backup plan is to get that into master, then 0.15.1

Ok, I guess Fedora users can get the fix anyway, since we build seabios
from standalone source that we can trivially patch.

Regards,
Daniel
-- 
|: http://berrange.com      -o-    http://www.flickr.com/photos/dberrange/ :|
|: http://libvirt.org              -o-             http://virt-manager.org :|
|: http://autobuild.org       -o-         http://search.cpan.org/~danberr/ :|
|: http://entangle-photo.org       -o-       http://live.gnome.org/gtk-vnc :|

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-08-05  9:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-04 16:03 [Qemu-devel] -vga qxl Rick Vernam
2011-08-04 16:09 ` Daniel P. Berrange
2011-08-04 17:17   ` Rick Vernam
2011-08-04 18:15   ` Gerd Hoffmann
2011-08-04 18:32     ` Rick Vernam
2011-08-05  8:52     ` Daniel P. Berrange
2011-08-05  9:02       ` Gerd Hoffmann
2011-08-05  9:03         ` Daniel P. Berrange

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.