qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Andreas Färber" <afaerber@suse.de>
To: qemu-devel@nongnu.org
Cc: Peter Maydell <peter.maydell@linaro.org>,
	Peter Crosthwaite <peter.crosthwaite@xilinx.com>,
	"Mian M. Hamayun" <m.hamayun@virtualopensystems.com>,
	Hu Tao <hutao@cn.fujitsu.com>,
	Claudio Fontana <claudio.fontana@huawei.com>,
	Anthony Liguori <anthony@codemonkey.ws>,
	kvmarm@lists.cs.columbia.edu
Subject: [Qemu-devel] [PATCH v2 00/16] arm: A9MPCore+A15MPCore QOM'ification
Date: Tue, 23 Jul 2013 04:43:08 +0200	[thread overview]
Message-ID: <1374547404-11700-1-git-send-email-afaerber@suse.de> (raw)

From: Andreas Färber <andreas.faerber@web.de>

Hello Peter,

This series fully QOM'ifies A9MPCore so that it can be embedded for Tegra2.
It goes on to do the same for A15MPCore, which had previously been taken as
template for Cortex-A57 by John Rigby.

Separate headers are introduced to only expose device state to whom asks for it.

v2 improves internal vs. "public" header separation for GIC.
As before, no feedback was received to address PMM's QOM concerns,
so this is what we have as design patterns for the moment.

Regards,
Andreas

v1 -> v2:
* Renamed MP_TIMER to MPTIMER (Peter C.).
* Don't include gic_internal.h, introduce new arm_gic.h header (PMM).
* a9mpcore: Init only container MemoryRegion in instance_init (Peter C.).
* a9mpcore/a15mpcore: Replaced all qdev_init_nofail()s for error propagation.

Cc: Peter Maydell <peter.maydell@linaro.org>
Cc: Anthony Liguori <anthony@codemonkey.ws>
Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Cc: Hu Tao <hutao@cn.fujitsu.com>
Cc: Mian M. Hamayun <m.hamayun@virtualopensystems.com>
Cc: Claudio Fontana <claudio.fontana@huawei.com>
Cc: kvmarm@lists.cs.columbia.edu

Andreas Färber (16):
  cpu/a9mpcore: QOM casting cleanup
  cpu/a9mpcore: Split off instance_init
  intc/arm_gic: Extract public header hw/intc/arm_gic.h
  cpu/a9mpcore: Embed GICState
  misc/a9scu: QOM cleanups
  cpu/a9mpcore: Embed A9SCUState
  timer/arm_mptimer: QOM cast cleanup
  timer/arm_mptimer: Convert to QOM realize
  cpu/a9mpcore: Embed ARMMPTimerState
  cpu/a9mpcore: Convert to QOM realize
  cpu/a9mpcore: Prepare for QOM embedding
  cpu/a15mpcore: QOM cast cleanup
  cpu/a15mpcore: Split off instance_init
  cpu/a15mpcore: Embed GICState
  cpu/a15mpcore: Convert to QOM realize
  cpu/a15mpcore: Prepare for QOM embedding

 hw/cpu/a15mpcore.c             |  70 +++++++++++++-----------
 hw/cpu/a9mpcore.c              | 117 +++++++++++++++++++++++++----------------
 hw/intc/arm_gic_common.c       |  18 +++----
 hw/intc/gic_internal.h         |  77 +--------------------------
 hw/misc/a9scu.c                |  25 +++------
 hw/timer/arm_mptimer.c         |  62 +++++++++-------------
 include/hw/cpu/a15mpcore.h     |  44 ++++++++++++++++
 include/hw/cpu/a9mpcore.h      |  37 +++++++++++++
 include/hw/intc/arm_gic.h      | 108 +++++++++++++++++++++++++++++++++++++
 include/hw/misc/a9scu.h        |  31 +++++++++++
 include/hw/timer/arm_mptimer.h |  54 +++++++++++++++++++
 11 files changed, 425 insertions(+), 218 deletions(-)
 create mode 100644 include/hw/cpu/a15mpcore.h
 create mode 100644 include/hw/cpu/a9mpcore.h
 create mode 100644 include/hw/intc/arm_gic.h
 create mode 100644 include/hw/misc/a9scu.h
 create mode 100644 include/hw/timer/arm_mptimer.h

-- 
1.8.1.4

             reply	other threads:[~2013-07-23  2:43 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-23  2:43 Andreas Färber [this message]
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 01/16] cpu/a9mpcore: QOM casting cleanup Andreas Färber
2013-07-23 22:48   ` Peter Maydell
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 02/16] cpu/a9mpcore: Split off instance_init Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 03/16] intc/arm_gic: Extract public header hw/intc/arm_gic.h Andreas Färber
2013-07-25 15:40   ` Peter Maydell
2013-07-26 20:06   ` Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 04/16] cpu/a9mpcore: Embed GICState Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 05/16] misc/a9scu: QOM cleanups Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 06/16] cpu/a9mpcore: Embed A9SCUState Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 07/16] timer/arm_mptimer: QOM cast cleanup Andreas Färber
2013-07-23 22:50   ` Peter Maydell
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 08/16] timer/arm_mptimer: Convert to QOM realize Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 09/16] cpu/a9mpcore: Embed ARMMPTimerState Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 10/16] cpu/a9mpcore: Convert to QOM realize Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 11/16] cpu/a9mpcore: Prepare for QOM embedding Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 12/16] cpu/a15mpcore: QOM cast cleanup Andreas Färber
2013-07-23 22:49   ` Peter Maydell
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 13/16] cpu/a15mpcore: Split off instance_init Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 14/16] cpu/a15mpcore: Embed GICState Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 15/16] cpu/a15mpcore: Convert to QOM realize Andreas Färber
2013-07-23  2:43 ` [Qemu-devel] [PATCH v2 16/16] cpu/a15mpcore: Prepare for QOM embedding Andreas Färber
2013-07-23 19:15 ` [Qemu-devel] [PATCH v2 00/16] arm: A9MPCore+A15MPCore QOM'ification Peter Maydell
2013-07-23 21:16   ` Peter Maydell
2013-07-23 21:36     ` Alexander Graf
2013-07-23 21:52       ` Peter Maydell
2013-07-23 21:55         ` Alexander Graf
2013-07-23 22:12           ` Andreas Färber
2013-07-23 22:26             ` Peter Maydell
2013-07-23 22:08         ` Andreas Färber
2013-07-23 22:10           ` Peter Maydell
2013-07-23 22:18             ` Andreas Färber

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=1374547404-11700-1-git-send-email-afaerber@suse.de \
    --to=afaerber@suse.de \
    --cc=anthony@codemonkey.ws \
    --cc=claudio.fontana@huawei.com \
    --cc=hutao@cn.fujitsu.com \
    --cc=kvmarm@lists.cs.columbia.edu \
    --cc=m.hamayun@virtualopensystems.com \
    --cc=peter.crosthwaite@xilinx.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).