qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Blue Swirl <blauwirbel@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Anthony Liguori <aliguori@us.ibm.com>,
	qemu-devel@nongnu.org, Paul Brook <paul@codesourcery.com>
Subject: Re: [Qemu-devel] [PULL 00/17] arm-devs queue
Date: Sun, 17 Mar 2013 20:48:43 +0000	[thread overview]
Message-ID: <CAAu8pHurPMd58CvhtaK_kiqoNFJXm5-cC2bdsLizwPoPLPfj-A@mail.gmail.com> (raw)
In-Reply-To: <1363366599-24238-1-git-send-email-peter.maydell@linaro.org>

Thanks, pulled.

On Fri, Mar 15, 2013 at 4:56 PM, Peter Maydell <peter.maydell@linaro.org> wrote:
> Another arm-devs pullreq: xilinx fixes from Peter C, the pl330
> model, and my vexpress fixes for the system control regs.
> Please pull.
>
> thanks
> -- PMM
>
>
> The following changes since commit dc0b0616f726956001be09e9a65a6e0b0bd939db:
>
>   Merge remote-tracking branch 'stefanha/block' into staging (2013-03-15 10:47:21 -0500)
>
> are available in the git repository at:
>
>
>   git://git.linaro.org/people/pmaydell/qemu-arm.git arm-devs.next
>
> for you to fetch changes up to f8b9fe249a706bfed61e0bb66c73394553696382:
>
>   xilinx_spips: QOM styling fixes (2013-03-15 16:41:59 +0000)
>
> ----------------------------------------------------------------
> Nathan Rossi (2):
>       xilinx_spips: Fix bus setup conditional check
>       xilinx_spips: Add missing dual-bus snoop commands
>
> Peter Crosthwaite (5):
>       iov: Factor out hexdumper
>       pl330: Initial version
>       xilinx_zynq: added pl330 to machine model
>       xilinx_spips: Set unused IRQs to NULL
>       xilinx_spips: QOM styling fixes
>
> Peter Maydell (10):
>       hw/vexpress: Pass proc_id via VEDBoardInfo
>       hw/arm_sysctl: Handle SYS_CFGCTRL in a more structured way
>       hw/arm_sysctl: Implement SYS_CFG_MUXFPGA writes as a no-op
>       hw/arm_sysctl: Implement SYS_CFG_DVIMODE as a no-op
>       hw/arm_sysctl: Convert from qdev init to instance_init
>       qdev: Implement (variable length) array properties
>       hw/arm_sysctl: Implement SYS_CFG_VOLT
>       hw/vexpress: Pass voltage sensor properties to sysctl device
>       hw/arm_sysctl: Implement SYS_CFG_OSC function
>       hw/vexpress: Set reset values for daughterboard oscillators
>
>  default-configs/arm-softmmu.mak |    1 +
>  hw/Makefile.objs                |    1 +
>  hw/arm/vexpress.c               |   81 +-
>  hw/arm/xilinx_zynq.c            |   24 +
>  hw/arm_sysctl.c                 |  261 +++++-
>  hw/pl330.c                      | 1654 +++++++++++++++++++++++++++++++++++++++
>  hw/qdev-core.h                  |    3 +
>  hw/qdev-properties.c            |  104 +++
>  hw/qdev-properties.h            |   39 +
>  hw/xilinx_spips.c               |   64 +-
>  include/qemu-common.h           |    6 +
>  util/Makefile.objs              |    1 +
>  util/hexdump.c                  |   37 +
>  util/iov.c                      |   36 +-
>  14 files changed, 2234 insertions(+), 78 deletions(-)
>  create mode 100644 hw/pl330.c
>  create mode 100644 util/hexdump.c

      parent reply	other threads:[~2013-03-17 20:49 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-15 16:56 [Qemu-devel] [PULL 00/17] arm-devs queue Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 01/17] hw/vexpress: Pass proc_id via VEDBoardInfo Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 02/17] hw/arm_sysctl: Handle SYS_CFGCTRL in a more structured way Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 03/17] hw/arm_sysctl: Implement SYS_CFG_MUXFPGA writes as a no-op Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 04/17] hw/arm_sysctl: Implement SYS_CFG_DVIMODE " Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 05/17] hw/arm_sysctl: Convert from qdev init to instance_init Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 06/17] qdev: Implement (variable length) array properties Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 07/17] hw/arm_sysctl: Implement SYS_CFG_VOLT Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 08/17] hw/vexpress: Pass voltage sensor properties to sysctl device Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 09/17] hw/arm_sysctl: Implement SYS_CFG_OSC function Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 10/17] hw/vexpress: Set reset values for daughterboard oscillators Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 11/17] iov: Factor out hexdumper Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 12/17] pl330: Initial version Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 13/17] xilinx_zynq: added pl330 to machine model Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 14/17] xilinx_spips: Set unused IRQs to NULL Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 15/17] xilinx_spips: Fix bus setup conditional check Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 16/17] xilinx_spips: Add missing dual-bus snoop commands Peter Maydell
2013-03-15 16:56 ` [Qemu-devel] [PATCH 17/17] xilinx_spips: QOM styling fixes Peter Maydell
2013-03-17 20:48 ` Blue Swirl [this message]

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=CAAu8pHurPMd58CvhtaK_kiqoNFJXm5-cC2bdsLizwPoPLPfj-A@mail.gmail.com \
    --to=blauwirbel@gmail.com \
    --cc=aliguori@us.ibm.com \
    --cc=paul@codesourcery.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).