[Qemu-devel] [PATCH v7 0/2] Basic ATI VGA emulation

BALATON Zoltan posted 2 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/cover.1552152100.git.balaton@eik.bme.hu
Maintainers: Aleksandar Rikalo <arikalo@wavecomp.com>, Paolo Bonzini <pbonzini@redhat.com>, Aleksandar Markovic <amarkovic@wavecomp.com>, Aurelien Jarno <aurelien@aurel32.net>
hw/display/Kconfig       |   6 +
hw/display/Makefile.objs |   2 +
hw/display/ati.c         | 865 +++++++++++++++++++++++++++++++++++++++++++++++
hw/display/ati_2d.c      | 167 +++++++++
hw/display/ati_dbg.c     | 259 ++++++++++++++
hw/display/ati_int.h     |  96 ++++++
hw/display/ati_regs.h    | 461 +++++++++++++++++++++++++
hw/display/trace-events  |   4 +
hw/mips/mips_fulong2e.c  |   7 +
vl.c                     |   1 +
10 files changed, 1868 insertions(+)
create mode 100644 hw/display/ati.c
create mode 100644 hw/display/ati_2d.c
create mode 100644 hw/display/ati_dbg.c
create mode 100644 hw/display/ati_int.h
create mode 100644 hw/display/ati_regs.h
[Qemu-devel] [PATCH v7 0/2] Basic ATI VGA emulation
Posted by BALATON Zoltan 6 years, 8 months ago
Rebase on master to fix build with new Kconfig based stuff.

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

 hw/display/Kconfig       |   6 +
 hw/display/Makefile.objs |   2 +
 hw/display/ati.c         | 865 +++++++++++++++++++++++++++++++++++++++++++++++
 hw/display/ati_2d.c      | 167 +++++++++
 hw/display/ati_dbg.c     | 259 ++++++++++++++
 hw/display/ati_int.h     |  96 ++++++
 hw/display/ati_regs.h    | 461 +++++++++++++++++++++++++
 hw/display/trace-events  |   4 +
 hw/mips/mips_fulong2e.c  |   7 +
 vl.c                     |   1 +
 10 files changed, 1868 insertions(+)
 create mode 100644 hw/display/ati.c
 create mode 100644 hw/display/ati_2d.c
 create mode 100644 hw/display/ati_dbg.c
 create mode 100644 hw/display/ati_int.h
 create mode 100644 hw/display/ati_regs.h

-- 
2.13.7


Re: [Qemu-devel] [PATCH v7 0/2] Basic ATI VGA emulation
Posted by Gerd Hoffmann 6 years, 8 months ago
On Sat, Mar 09, 2019 at 06:21:40PM +0100, BALATON Zoltan wrote:
> Rebase on master to fix build with new Kconfig based stuff.

Thanks.  Pull v2 sent.

cheers,
  Gerd