mbox series

[v7,0/2] Basic ATI VGA emulation

Message ID cover.1552152100.git.balaton@eik.bme.hu
Headers show
Series Basic ATI VGA emulation | expand

Message

BALATON Zoltan March 9, 2019, 5:21 p.m. UTC
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

Comments

Gerd Hoffmann March 11, 2019, 8:51 a.m. UTC | #1
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