qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/22] arm-devs queue
@ 2012-02-17 11:29 Peter Maydell
  2012-02-17 11:29 ` [Qemu-devel] [PATCH 01/22] ARM: exynos4210: IRQ subsystem support Peter Maydell
                   ` (22 more replies)
  0 siblings, 23 replies; 24+ messages in thread
From: Peter Maydell @ 2012-02-17 11:29 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, 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

^ permalink raw reply	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2012-02-17 13:53 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [Qemu-devel] [PULL 00/22] arm-devs queue Anthony Liguori

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).