All of lore.kernel.org
 help / color / mirror / Atom feed
From: BALATON Zoltan <balaton@eik.bme.hu>
To: qemu-devel@nongnu.org, qemu-trivial@nongnu.org
Cc: Magnus Damm <magnus.damm@gmail.com>,
	Aurelien Jarno <aurelien@aurel32.net>,
	Peter Maydell <peter.maydell@linaro.org>,
	David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-trivial] [PATCH v5 00/13] Improvements for SM501 display controller emulation
Date: Thu, 20 Apr 2017 22:43:46 +0200	[thread overview]
Message-ID: <cover.1492721026.git.balaton@eik.bme.hu> (raw)

Addressing all last review comments so hopefully this can get merged
now that tree is thawed.

BALATON Zoltan (13):
  sm501: Fixed code style and a few typos in comments
  sm501: Use defined constants instead of literal values where available
  sm501: Add missing arbitration control register
  sm501: QOMify
  sm501: Get rid of base address in draw_hwc_line
  sm501: Add emulation of chip connected via PCI
  sm501: Fix device endianness
  sm501: Fix hardware cursor
  sm501: Misc clean ups
  sm501: Add support for panel layer
  sm501: Add some more missing registers
  sm501: Add vmstate descriptor
  ppc: Add SM501 device in ppc softmmu targets default configs

 default-configs/ppc-softmmu.mak    |    1 +
 default-configs/ppc64-softmmu.mak  |    1 +
 default-configs/ppcemb-softmmu.mak |    1 +
 hw/display/sm501.c                 | 1784 ++++++++++++++++++++++--------------
 hw/display/sm501_template.h        |   90 +-
 hw/sh4/r2d.c                       |   11 +-
 include/hw/devices.h               |    5 -
 include/hw/pci/pci_ids.h           |    3 +
 8 files changed, 1150 insertions(+), 746 deletions(-)

-- 
2.7.4



WARNING: multiple messages have this Message-ID (diff)
From: BALATON Zoltan <balaton@eik.bme.hu>
To: qemu-devel@nongnu.org, qemu-trivial@nongnu.org
Cc: Magnus Damm <magnus.damm@gmail.com>,
	Aurelien Jarno <aurelien@aurel32.net>,
	Peter Maydell <peter.maydell@linaro.org>,
	David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PATCH v5 00/13] Improvements for SM501 display controller emulation
Date: Thu, 20 Apr 2017 22:43:46 +0200	[thread overview]
Message-ID: <cover.1492721026.git.balaton@eik.bme.hu> (raw)

Addressing all last review comments so hopefully this can get merged
now that tree is thawed.

BALATON Zoltan (13):
  sm501: Fixed code style and a few typos in comments
  sm501: Use defined constants instead of literal values where available
  sm501: Add missing arbitration control register
  sm501: QOMify
  sm501: Get rid of base address in draw_hwc_line
  sm501: Add emulation of chip connected via PCI
  sm501: Fix device endianness
  sm501: Fix hardware cursor
  sm501: Misc clean ups
  sm501: Add support for panel layer
  sm501: Add some more missing registers
  sm501: Add vmstate descriptor
  ppc: Add SM501 device in ppc softmmu targets default configs

 default-configs/ppc-softmmu.mak    |    1 +
 default-configs/ppc64-softmmu.mak  |    1 +
 default-configs/ppcemb-softmmu.mak |    1 +
 hw/display/sm501.c                 | 1784 ++++++++++++++++++++++--------------
 hw/display/sm501_template.h        |   90 +-
 hw/sh4/r2d.c                       |   11 +-
 include/hw/devices.h               |    5 -
 include/hw/pci/pci_ids.h           |    3 +
 8 files changed, 1150 insertions(+), 746 deletions(-)

-- 
2.7.4

             reply	other threads:[~2017-04-20 20:56 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-20 20:43 BALATON Zoltan [this message]
2017-04-20 20:43 ` [Qemu-devel] [PATCH v5 00/13] Improvements for SM501 display controller emulation BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 08/13] sm501: Fix hardware cursor BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 13/13] ppc: Add SM501 device in ppc softmmu targets default configs BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-21  0:24   ` [Qemu-trivial] " David Gibson
2017-04-21  0:24     ` [Qemu-devel] " David Gibson
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 10/13] sm501: Add support for panel layer BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 11/13] sm501: Add some more missing registers BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 05/13] sm501: Get rid of base address in draw_hwc_line BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 06/13] sm501: Add emulation of chip connected via PCI BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 02/13] sm501: Use defined constants instead of literal values where available BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 01/13] sm501: Fixed code style and a few typos in comments BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 12/13] sm501: Add vmstate descriptor BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 03/13] sm501: Add missing arbitration control register BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 04/13] sm501: QOMify BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 07/13] sm501: Fix device endianness BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan
2017-04-20 21:47   ` [Qemu-trivial] " Peter Maydell
2017-04-20 21:47     ` [Qemu-devel] " Peter Maydell
2017-04-20 20:43 ` [Qemu-trivial] [PATCH v5 09/13] sm501: Misc clean ups BALATON Zoltan
2017-04-20 20:43   ` [Qemu-devel] " BALATON Zoltan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1492721026.git.balaton@eik.bme.hu \
    --to=balaton@eik.bme.hu \
    --cc=aurelien@aurel32.net \
    --cc=david@gibson.dropbear.id.au \
    --cc=magnus.damm@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.