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