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