qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/32] VMState port of misc devices
@ 2011-03-10 11:47 Juan Quintela
  2011-03-10 11:47 ` [Qemu-devel] [PATCH 01/32] vmstate: port adb_kbd Juan Quintela
                   ` (31 more replies)
  0 siblings, 32 replies; 33+ messages in thread
From: Juan Quintela @ 2011-03-10 11:47 UTC (permalink / raw)
  To: qemu-devel

Hi

This are the devices that conversion was trivial.
Series is on top of my previous series:
      [PATCH 0/9] VMState infrastructure

All coments from Blue Swirl have been addressed (thanks for them).
Change for PCI Device from Isazu was not implemented because I can
test that it work.  I like the change but would prefer it to be
independent of this series

Later, Juan.

Juan Quintela (32):
  vmstate: port adb_kbd
  vmstate: port adb_mouse
  vmstate: port ads7846
  vmstate: port m48t59
  vmstate: port mipsnet
  vmstate: port arm sp804
  vmstate: port arm_timer
  vmstate: port sysborg_timer
  vmstate: port pmtimer
  vmstate: port syborg_rtc
  vmstate: port pxa2xx_keypad
  vmstate: port pl011
  vmstate: port armv7m nvic
  vmstate: port stellaris i2c
  vmstate: port stellaris ssi bus
  vmstate: port stellaris sys
  vmstate: port pl022 ssp
  vmstate: port heathrow_pic
  vmstate: port cuda
  vmstate: port stellaris gptm
  vmstate: port pxa2xx_i2s
  vmstate: port pxa2xx_cm
  vmstate: port pxa2xx_mm
  vmstate: port pxa2xx_pm
  vmstate: port ppce500_pci
  vmstate: port ppc4xx_pci
  vmstate: port syborg_pointer
  vmstate: port stellaris_adc
  vmstate: port syborg_serial
  vmstate: port syborg_keyboard
  vmstate: port stellaris gamepad
  vmstate: stellaris use unused for placeholder entries

 hw/adb.c             |   83 +++++---------
 hw/ads7846.c         |   41 +++----
 hw/arm_timer.c       |   66 ++++-------
 hw/armv7m_nvic.c     |   39 ++----
 hw/cuda.c            |  116 +++++++-----------
 hw/heathrow_pic.c    |   62 ++++------
 hw/hw.h              |   17 ++-
 hw/m48t59.c          |   36 ++----
 hw/mipsnet.c         |   53 +++------
 hw/pl011.c           |   76 ++++--------
 hw/pl022.c           |   84 ++++++--------
 hw/ppc4xx_pci.c      |   80 ++++++-------
 hw/ppce500_pci.c     |   87 ++++++--------
 hw/ptimer.c          |   59 +++-------
 hw/pxa2xx.c          |  158 +++++++++----------------
 hw/pxa2xx_keypad.c   |   53 +++------
 hw/stellaris.c       |  323 +++++++++++++++++---------------------------------
 hw/stellaris_input.c |   50 ++++----
 hw/syborg_keyboard.c |   57 +++------
 hw/syborg_pointer.c  |   73 +++++-------
 hw/syborg_rtc.c      |   34 ++----
 hw/syborg_serial.c   |   60 +++-------
 hw/syborg_timer.c    |   46 +++-----
 qemu-timer.h         |    2 -
 24 files changed, 654 insertions(+), 1101 deletions(-)

-- 
1.7.4

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

end of thread, other threads:[~2011-03-10 11:49 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-10 11:47 [Qemu-devel] [PATCH 00/32] VMState port of misc devices Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 01/32] vmstate: port adb_kbd Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 02/32] vmstate: port adb_mouse Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 03/32] vmstate: port ads7846 Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 04/32] vmstate: port m48t59 Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 05/32] vmstate: port mipsnet Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 06/32] vmstate: port arm sp804 Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 07/32] vmstate: port arm_timer Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 08/32] vmstate: port sysborg_timer Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 09/32] vmstate: port pmtimer Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 10/32] vmstate: port syborg_rtc Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 11/32] vmstate: port pxa2xx_keypad Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 12/32] vmstate: port pl011 Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 13/32] vmstate: port armv7m nvic Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 14/32] vmstate: port stellaris i2c Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 15/32] vmstate: port stellaris ssi bus Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 16/32] vmstate: port stellaris sys Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 17/32] vmstate: port pl022 ssp Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 18/32] vmstate: port heathrow_pic Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 19/32] vmstate: port cuda Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 20/32] vmstate: port stellaris gptm Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 21/32] vmstate: port pxa2xx_i2s Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 22/32] vmstate: port pxa2xx_cm Juan Quintela
2011-03-10 11:47 ` [Qemu-devel] [PATCH 23/32] vmstate: port pxa2xx_mm Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 24/32] vmstate: port pxa2xx_pm Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 25/32] vmstate: port ppce500_pci Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 26/32] vmstate: port ppc4xx_pci Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 27/32] vmstate: port syborg_pointer Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 28/32] vmstate: port stellaris_adc Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 29/32] vmstate: port syborg_serial Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 30/32] vmstate: port syborg_keyboard Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 31/32] vmstate: port stellaris gamepad Juan Quintela
2011-03-10 11:48 ` [Qemu-devel] [PATCH 32/32] vmstate: stellaris use unused for placeholder entries Juan Quintela

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