All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL 00/21] Vga 20200528 patches
@ 2020-05-28 12:35 Gerd Hoffmann
  2020-05-28 12:35 ` [PULL 01/21] hw/display/edid: Add missing 'qdev-properties.h' header Gerd Hoffmann
                   ` (22 more replies)
  0 siblings, 23 replies; 28+ messages in thread
From: Gerd Hoffmann @ 2020-05-28 12:35 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Igor Mitsyanko, Alistair Francis,
	Mark Cave-Ayland, qemu-arm, qemu-ppc, Gerd Hoffmann,
	Edgar E. Iglesias

The following changes since commit 06539ebc76b8625587aa78d646a9d8d5fddf84f3:

  Merge remote-tracking branch 'remotes/philmd-gitlab/tags/mips-hw-next-20200526' into staging (2020-05-26 20:25:06 +0100)

are available in the Git repository at:

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

for you to fetch changes up to fa0013a1bc5f6011a1017e0e655740403e5555d9:

  sm501: Remove obsolete changelog and todo comment (2020-05-28 11:38:57 +0200)

----------------------------------------------------------------
hw/dispaly/sm501: bugfixes, add sanity checks.
hw/display: use tracepoints, misc cleanups.

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

BALATON Zoltan (7):
  sm501: Convert printf + abort to qemu_log_mask
  sm501: Shorten long variable names in sm501_2d_operation
  sm501: Use BIT(x) macro to shorten constant
  sm501: Clean up local variables in sm501_2d_operation
  sm501: Replace hand written implementation with pixman where possible
  sm501: Optimize small overlapping blits
  sm501: Remove obsolete changelog and todo comment

Philippe Mathieu-Daudé (14):
  hw/display/edid: Add missing 'qdev-properties.h' header
  hw/display/cg3: Convert debug printf()s to trace events
  hw/display/cirrus_vga: Convert debug printf() to trace event
  hw/display/cirrus_vga: Use qemu_log_mask(UNIMP) instead of debug
    printf
  hw/display/cirrus_vga: Use qemu_log_mask(ERROR) instead of debug
    printf
  hw/display/cirrus_vga: Convert debug printf() to trace event
  hw/display/dpcd: Fix memory region size
  hw/display/dpcd: Convert debug printf()s to trace events
  hw/display/xlnx_dp: Replace disabled DPRINTF() by error_report()
  hw/display/vmware_vga: Replace printf() calls by qemu_log_mask(ERROR)
  hw/display/vmware_vga: Let the PCI device own its I/O MemoryRegion
  hw/display/exynos4210_fimd: Use qemu_log_mask(GUEST_ERROR)
  hw/display/omap_dss: Replace fprintf() call by
    qemu_log_mask(LOG_UNIMP)
  hw/display/pxa2xx_lcd: Replace printf() call by qemu_log_mask()

 include/hw/display/edid.h    |   1 +
 hw/display/cg3.c             |  14 +-
 hw/display/cirrus_vga.c      | 119 ++++++-------
 hw/display/dpcd.c            |  20 +--
 hw/display/exynos4210_fimd.c |  46 +++--
 hw/display/omap_dss.c        |   2 +-
 hw/display/pxa2xx_lcd.c      |  26 +--
 hw/display/sm501.c           | 313 ++++++++++++++++++-----------------
 hw/display/vmware_vga.c      |  18 +-
 hw/display/xlnx_dp.c         |  14 +-
 hw/display/trace-events      |  10 ++
 11 files changed, 301 insertions(+), 282 deletions(-)

-- 
2.18.4



^ permalink raw reply	[flat|nested] 28+ messages in thread

end of thread, other threads:[~2020-06-02  9:49 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-28 12:35 [PULL 00/21] Vga 20200528 patches Gerd Hoffmann
2020-05-28 12:35 ` [PULL 01/21] hw/display/edid: Add missing 'qdev-properties.h' header Gerd Hoffmann
2020-05-28 12:35 ` [PULL 02/21] hw/display/cg3: Convert debug printf()s to trace events Gerd Hoffmann
2020-05-28 12:35 ` [PULL 03/21] hw/display/cirrus_vga: Convert debug printf() to trace event Gerd Hoffmann
2020-05-28 12:35 ` [PULL 04/21] hw/display/cirrus_vga: Use qemu_log_mask(UNIMP) instead of debug printf Gerd Hoffmann
2020-05-28 12:35 ` [PULL 05/21] hw/display/cirrus_vga: Use qemu_log_mask(ERROR) " Gerd Hoffmann
2020-05-28 12:35 ` [PULL 06/21] hw/display/cirrus_vga: Convert debug printf() to trace event Gerd Hoffmann
2020-05-28 12:35 ` [PULL 07/21] hw/display/dpcd: Fix memory region size Gerd Hoffmann
2020-05-28 12:35 ` [PULL 08/21] hw/display/dpcd: Convert debug printf()s to trace events Gerd Hoffmann
2020-05-28 12:35 ` [PULL 09/21] hw/display/xlnx_dp: Replace disabled DPRINTF() by error_report() Gerd Hoffmann
2020-05-28 12:35 ` [PULL 10/21] hw/display/vmware_vga: Replace printf() calls by qemu_log_mask(ERROR) Gerd Hoffmann
2020-05-28 12:35 ` [PULL 11/21] hw/display/vmware_vga: Let the PCI device own its I/O MemoryRegion Gerd Hoffmann
2020-05-28 12:36 ` [PULL 12/21] hw/display/exynos4210_fimd: Use qemu_log_mask(GUEST_ERROR) Gerd Hoffmann
2020-05-28 12:36 ` [PULL 13/21] hw/display/omap_dss: Replace fprintf() call by qemu_log_mask(LOG_UNIMP) Gerd Hoffmann
2020-05-28 12:36 ` [PULL 14/21] hw/display/pxa2xx_lcd: Replace printf() call by qemu_log_mask() Gerd Hoffmann
2020-05-28 12:36 ` [PULL 15/21] sm501: Convert printf + abort to qemu_log_mask Gerd Hoffmann
2020-05-28 12:36 ` [PULL 16/21] sm501: Shorten long variable names in sm501_2d_operation Gerd Hoffmann
2020-05-28 12:36 ` [PULL 17/21] sm501: Use BIT(x) macro to shorten constant Gerd Hoffmann
2020-05-28 12:36 ` [PULL 18/21] sm501: Clean up local variables in sm501_2d_operation Gerd Hoffmann
2020-05-28 12:36 ` [PULL 19/21] sm501: Replace hand written implementation with pixman where possible Gerd Hoffmann
2020-05-28 12:36 ` [PULL 20/21] sm501: Optimize small overlapping blits Gerd Hoffmann
2020-05-28 12:36 ` [PULL 21/21] sm501: Remove obsolete changelog and todo comment Gerd Hoffmann
2020-05-28 19:25 ` [PULL 00/21] Vga 20200528 patches no-reply
2020-05-29 10:29 ` Peter Maydell
2020-05-29 16:15   ` Philippe Mathieu-Daudé
2020-05-29 16:36     ` Peter Maydell
2020-05-29 16:47       ` Philippe Mathieu-Daudé
2020-06-02  9:48       ` Gerd Hoffmann

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.