qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/28] arm-devs queue
@ 2012-10-30  8:43 Peter Maydell
  2012-10-30  8:43 ` [Qemu-devel] [PATCH 01/28] hw/armv7m_nvic: Implement byte/halfword access for NVIC SCB_SHPRx registers Peter Maydell
                   ` (28 more replies)
  0 siblings, 29 replies; 33+ messages in thread
From: Peter Maydell @ 2012-10-30  8:43 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, Paul Brook

Last arm-devs pullreq (probably) before softfreeze. Apologies to those
whose last minute patches didn't make it in but I didn't want to submit
this pullreq right on the freeze deadline, given its length. (Most of
that length is some pretty trivial patches for logging and refactoring
some init functions, though.) Please pull.

thanks
-- PMM


The following changes since commit 38c4718392fda2bda1e084366b9aa41b49b9d8cf:

  Merge branch 's390-for-upstream' of git://repo.or.cz/qemu/agraf (2012-10-30 00:35:43 +0100)

are available in the git repository at:


  git://git.linaro.org/people/pmaydell/qemu-arm.git arm-devs.for-upstream

for you to fetch changes up to 50a5be6c3d50c7684a417da4eb5f9587dace0a44:

  hw/sd.c: add SD card save/load support (2012-10-30 07:45:12 +0000)

----------------------------------------------------------------
Andre Beckus (1):
      hw/armv7m_nvic: Implement byte/halfword access for NVIC SCB_SHPRx registers

Igor Mitsyanko (2):
      hw/sd.c: Fix erase for high capacity cards
      hw/sd.c: add SD card save/load support

Peter Crosthwaite (4):
      pflash_cfi0x: remove unused base field
      pflash_cfi01: remove unused total_len field
      pflash_cfi0x: QOMified
      pflash_cfi01: Fix debug mode printfery

Peter Maydell (21):
      hw/vexpress.c: Don't prematurely explode QEMUMachineInitArgs
      hw/realview.c: Don't prematurely explode QEMUMachineInitArgs
      hw/versatilepb: Don't prematurely explode QEMUMachineInitArgs
      hw/spitz: Don't prematurely explode QEMUMachineInitArgs
      hw/omap_sx1: Don't prematurely explode QEMUMachineInitArgs
      hw/nseries: Don't prematurely explode QEMUMachineInitArgs
      hw/mainstone: Don't prematurely explode QEMUMachineInitArgs
      hw/exynos4_boards: Don't prematurely explode QEMUMachineInitArgs
      hw/pl050: Use LOG_GUEST_ERROR
      hw/pl061: Use LOG_GUEST_ERROR
      hw/pl080: Use LOG_GUEST_ERROR and LOG_UNIMP
      hw/pl110: Use LOG_GUEST_ERROR rather than hw_error()
      hw/pl190: Use LOG_UNIMP rather than hw_error()
      hw/arm11mpcore: Use LOG_GUEST_ERROR rather than hw_error()
      hw/arm_gic: Use LOG_GUEST_ERROR
      hw/arm_timer: Use LOG_GUEST_ERROR and LOG_UNIMP
      hw/armv7m_nvic: Use LOG_GUEST_ERROR and LOG_UNIMP
      hw/arm_sysctl: Use LOG_GUEST_ERROR
      hw/arm_l2x0: Use LOG_GUEST_ERROR
      hw/versatile_i2c: Use LOG_GUEST_ERROR
      vmstate: Add support for saving/loading bitmaps

 hw/arm11mpcore.c    |    7 ++-
 hw/arm_gic.c        |   12 ++--
 hw/arm_l2x0.c       |    6 +-
 hw/arm_sysctl.c     |    8 ++-
 hw/arm_timer.c      |   19 ++++--
 hw/armv7m_nvic.c    |   87 ++++++++++++++-------------
 hw/exynos4_boards.c |   32 ++++------
 hw/mainstone.c      |   21 +++----
 hw/nseries.c        |   39 ++++---------
 hw/omap_sx1.c       |   36 +++---------
 hw/pflash_cfi01.c   |  148 +++++++++++++++++++++++++++++++---------------
 hw/pflash_cfi02.c   |  162 ++++++++++++++++++++++++++++++++++++---------------
 hw/pl050.c          |    6 +-
 hw/pl061.c          |    6 +-
 hw/pl080.c          |   11 ++--
 hw/pl110.c          |    6 +-
 hw/pl190.c          |    2 +-
 hw/realview.c       |   68 ++++++---------------
 hw/sd.c             |  106 ++++++++++++++++++++++++---------
 hw/sd.h             |    1 +
 hw/spitz.c          |   45 ++++----------
 hw/versatile_i2c.c  |    6 +-
 hw/versatilepb.c    |   44 ++++----------
 hw/vexpress.c       |   38 +++---------
 savevm.c            |   41 +++++++++++++
 vmstate.h           |   13 +++++
 26 files changed, 541 insertions(+), 429 deletions(-)

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

end of thread, other threads:[~2013-03-07 12:36 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-30  8:43 [Qemu-devel] [PULL 00/28] arm-devs queue Peter Maydell
2012-10-30  8:43 ` [Qemu-devel] [PATCH 01/28] hw/armv7m_nvic: Implement byte/halfword access for NVIC SCB_SHPRx registers Peter Maydell
2012-10-30  8:43 ` [Qemu-devel] [PATCH 02/28] hw/vexpress.c: Don't prematurely explode QEMUMachineInitArgs Peter Maydell
2012-10-30  8:43 ` [Qemu-devel] [PATCH 03/28] hw/realview.c: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 04/28] hw/versatilepb: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 05/28] hw/spitz: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 06/28] hw/omap_sx1: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 07/28] hw/nseries: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 08/28] hw/mainstone: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 09/28] hw/exynos4_boards: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 10/28] hw/pl050: Use LOG_GUEST_ERROR Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 11/28] hw/pl061: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 12/28] hw/pl080: Use LOG_GUEST_ERROR and LOG_UNIMP Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 13/28] hw/pl110: Use LOG_GUEST_ERROR rather than hw_error() Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 14/28] hw/pl190: Use LOG_UNIMP " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 15/28] hw/arm11mpcore: Use LOG_GUEST_ERROR " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 16/28] hw/arm_gic: Use LOG_GUEST_ERROR Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 17/28] hw/arm_timer: Use LOG_GUEST_ERROR and LOG_UNIMP Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 18/28] hw/armv7m_nvic: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 19/28] hw/arm_sysctl: Use LOG_GUEST_ERROR Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 20/28] hw/arm_l2x0: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 21/28] hw/versatile_i2c: " Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 22/28] pflash_cfi0x: remove unused base field Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 23/28] pflash_cfi01: remove unused total_len field Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 24/28] pflash_cfi0x: QOMified Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 25/28] pflash_cfi01: Fix debug mode printfery Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 26/28] hw/sd.c: Fix erase for high capacity cards Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 27/28] vmstate: Add support for saving/loading bitmaps Peter Maydell
2012-10-30  8:44 ` [Qemu-devel] [PATCH 28/28] hw/sd.c: add SD card save/load support Peter Maydell
2013-03-06 18:31   ` Michael Walle
2013-03-06 18:52     ` Peter Maydell
2013-03-07 12:35       ` Igor Mitsyanko
2012-11-01 16:02 ` [Qemu-devel] [PULL 00/28] arm-devs queue Aurelien Jarno

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