From: Anthony Liguori <anthony@codemonkey.ws>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-devel@nongnu.org, Paul Brook <paul@codesourcery.com>
Subject: Re: [Qemu-devel] [PULL 00/22] arm-devs queue
Date: Fri, 17 Feb 2012 07:53:12 -0600 [thread overview]
Message-ID: <4F3E5BC8.10109@codemonkey.ws> (raw)
In-Reply-To: <1329478177-14650-1-git-send-email-peter.maydell@linaro.org>
On 02/17/2012 05:29 AM, Peter Maydell wrote:
> Hi; this is a pullreq for my arm-devs queue. Changes in
> the queue are
> * exynos4 model
> * vexpress-a15 model
> * the addition of a Highbank section to MAINTAINERS
> * a few minor cleanup patches
>
> Please pull (before somebody lands another whole-tree change that
> means it needs rebasing again :-))
Pulled. Thanks.
Regards,
Anthony Liguori
>
> thanks
> -- PMM
>
> The following changes since commit 9de36b1a7cf61aa8be365f13c81668b3e19fbc7f:
>
> Make -machine/-enable-kvm options merge into a single list (2012-02-17 09:10:13 +0100)
>
> are available in the git repository at:
> git://git.linaro.org/people/pmaydell/qemu-arm.git arm-devs.for-upstream
>
> Evgeny Voevodin (7):
> ARM: exynos4210: IRQ subsystem support.
> ARM: Samsung exynos4210-based boards emulation
> ARM: exynos4210: PWM support.
> ARM: exynos4210: MCT support.
> hw/lan9118: Add basic 16-bit mode support.
> hw/exynos4210.c: Add LAN support for SMDKC210.
> MAINTAINERS: Add maintainers for Exynos SOC.
>
> Maksim Kozlov (2):
> ARM: exynos4210: UART support
> ARM: exynos4210: basic Power Management Unit implementation
>
> Mark Langsdorf (1):
> MAINTAINERS: Add hw/highbank.c maintainer
>
> Mitsyanko Igor (1):
> Exynos4210: added display controller implementation
>
> Peter Maydell (11):
> hw/a15mpcore.c: Add Cortex-A15 private peripheral model
> hw/vexpress.c: Make motherboard peripheral memory map table-driven
> hw/vexpress.c: Move secondary CPU boot code to SRAM
> hw/vexpress.c: Factor out daughterboard-specific initialization
> hw/vexpress.c: Instantiate the motherboard CLCD
> arm_boot: Pass base address of GIC CPU interface, not whole GIC
> hw/vexpress.c: Add vexpress-a15 machine
> hw/arm_sysctl: Drop legacy init function
> hw/primecell.h: Remove obsolete pl080_init() declaration
> Remove unnecessary includes of primecell.h
> hw/pl031: Actually raise interrupt on timer expiry
>
> MAINTAINERS | 14 +
> Makefile.target | 5 +-
> hw/a15mpcore.c | 103 +++
> hw/arm-misc.h | 2 +-
> hw/arm_boot.c | 8 +-
> hw/arm_sysctl.c | 16 +-
> hw/exynos4210.c | 270 +++++++
> hw/exynos4210.h | 131 ++++
> hw/exynos4210_combiner.c | 469 +++++++++++
> hw/exynos4210_fimd.c | 1928 ++++++++++++++++++++++++++++++++++++++++++++++
> hw/exynos4210_gic.c | 458 +++++++++++
> hw/exynos4210_mct.c | 1488 +++++++++++++++++++++++++++++++++++
> hw/exynos4210_pmu.c | 499 ++++++++++++
> hw/exynos4210_pwm.c | 422 ++++++++++
> hw/exynos4210_uart.c | 676 ++++++++++++++++
> hw/exynos4_boards.c | 177 +++++
> hw/highbank.c | 1 -
> hw/integratorcp.c | 1 -
> hw/lan9118.c | 124 +++-
> hw/pl022.c | 1 -
> hw/pl031.c | 2 +-
> hw/primecell.h | 6 -
> hw/realview.c | 12 +-
> hw/versatilepb.c | 1 -
> hw/vexpress.c | 410 ++++++++--
> 25 files changed, 7101 insertions(+), 123 deletions(-)
> create mode 100644 hw/a15mpcore.c
> create mode 100644 hw/exynos4210.c
> create mode 100644 hw/exynos4210.h
> create mode 100644 hw/exynos4210_combiner.c
> create mode 100644 hw/exynos4210_fimd.c
> create mode 100644 hw/exynos4210_gic.c
> create mode 100644 hw/exynos4210_mct.c
> create mode 100644 hw/exynos4210_pmu.c
> create mode 100644 hw/exynos4210_pwm.c
> create mode 100644 hw/exynos4210_uart.c
> create mode 100644 hw/exynos4_boards.c
>
>
prev parent reply other threads:[~2012-02-17 13:53 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-17 11:29 [Qemu-devel] [PULL 00/22] arm-devs queue Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 01/22] ARM: exynos4210: IRQ subsystem support Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 02/22] ARM: Samsung exynos4210-based boards emulation Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 03/22] ARM: exynos4210: UART support Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 04/22] ARM: exynos4210: PWM support Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 05/22] ARM: exynos4210: basic Power Management Unit implementation Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 06/22] ARM: exynos4210: MCT support Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 07/22] hw/lan9118: Add basic 16-bit mode support Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 08/22] hw/exynos4210.c: Add LAN support for SMDKC210 Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 09/22] Exynos4210: added display controller implementation Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 10/22] MAINTAINERS: Add maintainers for Exynos SOC Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 11/22] hw/a15mpcore.c: Add Cortex-A15 private peripheral model Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 12/22] hw/vexpress.c: Make motherboard peripheral memory map table-driven Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 13/22] hw/vexpress.c: Move secondary CPU boot code to SRAM Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 14/22] hw/vexpress.c: Factor out daughterboard-specific initialization Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 15/22] hw/vexpress.c: Instantiate the motherboard CLCD Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 16/22] arm_boot: Pass base address of GIC CPU interface, not whole GIC Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 17/22] hw/vexpress.c: Add vexpress-a15 machine Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 18/22] hw/arm_sysctl: Drop legacy init function Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 19/22] hw/primecell.h: Remove obsolete pl080_init() declaration Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 20/22] Remove unnecessary includes of primecell.h Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 21/22] MAINTAINERS: Add hw/highbank.c maintainer Peter Maydell
2012-02-17 11:29 ` [Qemu-devel] [PATCH 22/22] hw/pl031: Actually raise interrupt on timer expiry Peter Maydell
2012-02-17 13:53 ` Anthony Liguori [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=4F3E5BC8.10109@codemonkey.ws \
--to=anthony@codemonkey.ws \
--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 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.