[Qemu-devel] [PATCH 0/3] hw/display: add edid support to stdvga

Gerd Hoffmann posted 3 patches 7 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180917082628.10916-1-kraxel@redhat.com
Test docker-clang@ubuntu failed
Test checkpatch failed
There is a newer version of this series
configure                   |   2 +-
Makefile                    |   2 +
docs/specs/standard-vga.txt |   2 +-
hw/display/vga_int.h        |   2 +-
include/hw/display/edid.h   |  22 +++
hw/display/edid-generate.c  | 334 ++++++++++++++++++++++++++++++++++++++++++++
hw/display/edid-region.c    |  33 +++++
hw/display/vga-pci.c        |  42 +++++-
hw/display/virtio-vga.c     |   2 +-
qemu-edid.c                 | 106 ++++++++++++++
hw/display/Makefile.objs    |   3 +
11 files changed, 542 insertions(+), 8 deletions(-)
create mode 100644 include/hw/display/edid.h
create mode 100644 hw/display/edid-generate.c
create mode 100644 hw/display/edid-region.c
create mode 100644 qemu-edid.c
[Qemu-devel] [PATCH 0/3] hw/display: add edid support to stdvga
Posted by Gerd Hoffmann 7 years, 1 month ago
This series adds edid support to stdvga.  The biggest chunk is the
actual edid generator code (patch #1).  Patch #2 adds a small helper,
patch #3 wires up support in stdvga.

Gerd Hoffmann (3):
  display/edid: add edid generator to qemu.
  display/edid: add region helper.
  display/stdvga: add edid support.

 configure                   |   2 +-
 Makefile                    |   2 +
 docs/specs/standard-vga.txt |   2 +-
 hw/display/vga_int.h        |   2 +-
 include/hw/display/edid.h   |  22 +++
 hw/display/edid-generate.c  | 334 ++++++++++++++++++++++++++++++++++++++++++++
 hw/display/edid-region.c    |  33 +++++
 hw/display/vga-pci.c        |  42 +++++-
 hw/display/virtio-vga.c     |   2 +-
 qemu-edid.c                 | 106 ++++++++++++++
 hw/display/Makefile.objs    |   3 +
 11 files changed, 542 insertions(+), 8 deletions(-)
 create mode 100644 include/hw/display/edid.h
 create mode 100644 hw/display/edid-generate.c
 create mode 100644 hw/display/edid-region.c
 create mode 100644 qemu-edid.c

-- 
2.9.3