[Qemu-devel] [PULL 0/5] Vga 20190311 v2 patches

Gerd Hoffmann posted 5 patches 6 years, 8 months ago
Test checkpatch passed
Test asan failed
Test docker-mingw@fedora passed
Test docker-clang@ubuntu passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190311085024.13780-1-kraxel@redhat.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Aurelien Jarno <aurelien@aurel32.net>, Aleksandar Markovic <amarkovic@wavecomp.com>, "Michael S. Tsirkin" <mst@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>, Aleksandar Rikalo <arikalo@wavecomp.com>
hw/display/ati_int.h           |  96 ++++
hw/display/ati_regs.h          | 461 ++++++++++++++++++
hw/virtio/virtio-pci.h         |   1 +
include/hw/virtio/virtio-gpu.h |   1 -
hw/display/ati.c               | 865 +++++++++++++++++++++++++++++++++
hw/display/ati_2d.c            | 167 +++++++
hw/display/ati_dbg.c           | 259 ++++++++++
hw/display/virtio-gpu.c        |   2 +-
hw/display/virtio-vga.c        |  17 +-
hw/mips/mips_fulong2e.c        |   7 +
hw/virtio/virtio-pci.c         |   1 +
vl.c                           |   1 +
hw/display/Kconfig             |   6 +
hw/display/Makefile.objs       |   2 +
hw/display/trace-events        |   4 +
15 files changed, 1886 insertions(+), 4 deletions(-)
create mode 100644 hw/display/ati_int.h
create mode 100644 hw/display/ati_regs.h
create mode 100644 hw/display/ati.c
create mode 100644 hw/display/ati_2d.c
create mode 100644 hw/display/ati_dbg.c
[Qemu-devel] [PULL 0/5] Vga 20190311 v2 patches
Posted by Gerd Hoffmann 6 years, 8 months ago
The following changes since commit e2a18635a400b0e68679614132e9ef6316105590:

  Merge remote-tracking branch 'remotes/ericb/tags/pull-nbd-2019-03-08' into staging (2019-03-09 20:55:44 +0000)

are available in the Git repository at:

  git://git.kraxel.org/qemu tags/vga-20190311-v2-pull-request

for you to fetch changes up to ff243cff11526c0703cefdd60467dfaa5c5803a0:

  mips_fulong2e: Add on-board graphics chip (2019-03-11 08:04:55 +0100)

----------------------------------------------------------------
vga: virtio reset fix, add ati emulation.

----------------------------------------------------------------

BALATON Zoltan (2):
  hw/display: Add basic ATI VGA emulation
  mips_fulong2e: Add on-board graphics chip

Gerd Hoffmann (3):
  virtio: add class_size to VirtioPCIDeviceTypeInfo
  virtio-vga: fix reset.
  virtio-gpu: make virtio_gpu_reset static

 hw/display/ati_int.h           |  96 ++++
 hw/display/ati_regs.h          | 461 ++++++++++++++++++
 hw/virtio/virtio-pci.h         |   1 +
 include/hw/virtio/virtio-gpu.h |   1 -
 hw/display/ati.c               | 865 +++++++++++++++++++++++++++++++++
 hw/display/ati_2d.c            | 167 +++++++
 hw/display/ati_dbg.c           | 259 ++++++++++
 hw/display/virtio-gpu.c        |   2 +-
 hw/display/virtio-vga.c        |  17 +-
 hw/mips/mips_fulong2e.c        |   7 +
 hw/virtio/virtio-pci.c         |   1 +
 vl.c                           |   1 +
 hw/display/Kconfig             |   6 +
 hw/display/Makefile.objs       |   2 +
 hw/display/trace-events        |   4 +
 15 files changed, 1886 insertions(+), 4 deletions(-)
 create mode 100644 hw/display/ati_int.h
 create mode 100644 hw/display/ati_regs.h
 create mode 100644 hw/display/ati.c
 create mode 100644 hw/display/ati_2d.c
 create mode 100644 hw/display/ati_dbg.c

-- 
2.18.1


Re: [Qemu-devel] [PULL 0/5] Vga 20190311 v2 patches
Posted by Peter Maydell 6 years, 8 months ago
On Mon, 11 Mar 2019 at 08:52, Gerd Hoffmann <kraxel@redhat.com> wrote:
>
> The following changes since commit e2a18635a400b0e68679614132e9ef6316105590:
>
>   Merge remote-tracking branch 'remotes/ericb/tags/pull-nbd-2019-03-08' into staging (2019-03-09 20:55:44 +0000)
>
> are available in the Git repository at:
>
>   git://git.kraxel.org/qemu tags/vga-20190311-v2-pull-request
>
> for you to fetch changes up to ff243cff11526c0703cefdd60467dfaa5c5803a0:
>
>   mips_fulong2e: Add on-board graphics chip (2019-03-11 08:04:55 +0100)
>
> ----------------------------------------------------------------
> vga: virtio reset fix, add ati emulation.
>
> ----------------------------------------------------------------
>
> BALATON Zoltan (2):
>   hw/display: Add basic ATI VGA emulation
>   mips_fulong2e: Add on-board graphics chip
>
> Gerd Hoffmann (3):
>   virtio: add class_size to VirtioPCIDeviceTypeInfo
>   virtio-vga: fix reset.
>   virtio-gpu: make virtio_gpu_reset static
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM