From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: airlied@redhat.com, Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PATCH 0/4] vga: new display devices
Date: Wed, 12 Mar 2014 13:55:10 +0100 [thread overview]
Message-ID: <1394628914-10758-1-git-send-email-kraxel@redhat.com> (raw)
Hi,
This patch series adds new display devices.
Number one is secondary-vga. That is identical to VGA (aka -vga std),
except that it doesn't occupy all the legacy vga stuff (ioports, memory
window @ 0xa0000), so you can have more than one of these in the system.
It has one pci memory bar for the framebuffer and one mmio bar for
registers. OVMF can drive it. Doesn't use it as console for some
reason, but initializes it and the linux kernel will see it as efifb.
Cutting edge linux kernels can drive it too (bochs-drm driver in 3.14+).
Number two is virtio-gpu-pci. That is the virtio graphics card written
by Dave Airlie. Only 2d for now, 3d support is to be tackled later on.
Linux kernel driver:
http://www.kraxel.org/cgit/linux/log/?h=virtio-vga-3d.kraxel
http://cgit.freedesktop.org/~airlied/linux/log/?h=virtio-vga-3d
Number three is virtio-vga. That is virtio-gpu-pci with all the vga
compatibility fluff added. Firmware builder has cutting edge
seavgabios.git packages which include a virtio vgabios for it, see
http://www.kraxel.org/repos/
cheers,
Gerd
Dave Airlie (2):
virtio-gpu: v0.3 of the virtio based GPU code.
virtio-vga: v1
Gerd Hoffmann (2):
vga: allow non-global vmstate
vga: add secondary stdvga variant
Makefile | 2 +-
default-configs/x86_64-softmmu.mak | 2 +
docs/specs/standard-vga.txt | 13 +-
docs/specs/virtio-gpu.txt | 89 +++++
hw/display/Makefile.objs | 4 +
hw/display/cirrus_vga.c | 4 +-
hw/display/qxl.c | 2 +-
hw/display/vga-isa-mm.c | 2 +-
hw/display/vga-isa.c | 2 +-
hw/display/vga-pci.c | 63 +++-
hw/display/vga.c | 8 +-
hw/display/vga_int.h | 2 +-
hw/display/virtgpu_hw.h | 149 ++++++++
hw/display/virtio-gpu-pci.c | 80 +++++
hw/display/virtio-gpu.c | 689 +++++++++++++++++++++++++++++++++++++
hw/display/virtio-vga.c | 169 +++++++++
hw/display/vmware_vga.c | 2 +-
hw/pci/pci.c | 2 +
hw/virtio/virtio-pci.h | 15 +
include/hw/pci/pci.h | 1 +
include/hw/virtio/virtio-gpu.h | 91 +++++
include/sysemu/sysemu.h | 2 +-
pc-bios/vgabios-virtio.bin | Bin 0 -> 40448 bytes
roms/Makefile | 2 +-
roms/config.vga.virtio | 6 +
vl.c | 13 +
26 files changed, 1398 insertions(+), 16 deletions(-)
create mode 100644 docs/specs/virtio-gpu.txt
create mode 100644 hw/display/virtgpu_hw.h
create mode 100644 hw/display/virtio-gpu-pci.c
create mode 100644 hw/display/virtio-gpu.c
create mode 100644 hw/display/virtio-vga.c
create mode 100644 include/hw/virtio/virtio-gpu.h
create mode 100644 pc-bios/vgabios-virtio.bin
create mode 100644 roms/config.vga.virtio
--
1.8.3.1
next reply other threads:[~2014-03-12 12:55 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-12 12:55 Gerd Hoffmann [this message]
2014-03-12 12:55 ` [Qemu-devel] [PATCH 1/4] vga: allow non-global vmstate Gerd Hoffmann
2014-03-12 12:55 ` [Qemu-devel] [PATCH 2/4] vga: add secondary stdvga variant Gerd Hoffmann
2014-03-12 13:11 ` Eric Blake
2014-03-12 12:55 ` [Qemu-devel] [PATCH 3/4] virtio-gpu: v0.3 of the virtio based GPU code Gerd Hoffmann
2014-03-12 20:26 ` Michael S. Tsirkin
2014-03-13 9:08 ` Gerd Hoffmann
2014-03-14 11:13 ` Gerd Hoffmann
2014-03-16 12:21 ` Michael S. Tsirkin
2014-03-13 10:40 ` Paolo Bonzini
2014-03-14 11:18 ` Gerd Hoffmann
2014-03-16 12:28 ` Michael S. Tsirkin
2014-03-17 4:36 ` Dave Airlie
2014-03-17 5:21 ` Dave Airlie
2014-03-17 9:50 ` Paolo Bonzini
2014-03-17 9:27 ` Paolo Bonzini
2014-03-17 11:01 ` Michael S. Tsirkin
2014-03-12 12:55 ` [Qemu-devel] [PATCH 4/4] virtio-vga: v1 Gerd Hoffmann
2014-03-12 13:55 ` [Qemu-devel] [PATCH 0/4] vga: new display devices Laszlo Ersek
2014-03-12 15:47 ` Gerd Hoffmann
2014-03-12 18:14 ` Laszlo Ersek
2014-03-13 8:22 ` Gerd Hoffmann
2014-03-13 8:41 ` Laszlo Ersek
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=1394628914-10758-1-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=airlied@redhat.com \
--cc=qemu-devel@nongnu.org \
/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;
as well as URLs for NNTP newsgroup(s).