From patchwork Fri Feb 17 11:29:15 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [PULL,00/22] arm-devs queue Date: Fri, 17 Feb 2012 01:29:15 -0000 From: Peter Maydell X-Patchwork-Id: 141790 Message-Id: <1329478177-14650-1-git-send-email-peter.maydell@linaro.org> To: Anthony Liguori Cc: qemu-devel@nongnu.org, Paul Brook 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 :-)) 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