All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Benoît Canet" <benoit.canet@gmail.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, "Benoît Canet" <benoit.canet@gmail.com>,
	quintela@redhat.com
Subject: [Qemu-devel] [PATCH 3/5] realview: convert realview i2c to VMState
Date: Tue, 25 Oct 2011 13:09:41 +0200	[thread overview]
Message-ID: <1319540983-4248-4-git-send-email-benoit.canet@gmail.com> (raw)
In-Reply-To: <1319540983-4248-1-git-send-email-benoit.canet@gmail.com>

Signed-off-by: Benoit Canet <benoit.canet@gmail.com>
---
 hw/realview.c |   21 +++++++++++++++++++--
 1 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/hw/realview.c b/hw/realview.c
index 11ffb8a..2120600 100644
--- a/hw/realview.c
+++ b/hw/realview.c
@@ -24,10 +24,26 @@
 typedef struct {
     SysBusDevice busdev;
     bitbang_i2c_interface *bitbang;
-    int out;
-    int in;
+    int32_t out;
+    int32_t in;
 } RealViewI2CState;
 
+extern VMStateDescription vmstate_bitbang_i2c;
+
+const VMStateDescription vmstate_realview_i2c = {
+    .name = "realview_i2c",
+    .version_id = 1,
+    .minimum_version_id = 1,
+    .minimum_version_id_old = 1,
+    .fields = (VMStateField[]) {
+        VMSTATE_STRUCT_POINTER(bitbang, RealViewI2CState, vmstate_bitbang_i2c,
+                       bitbang_i2c_interface *),
+        VMSTATE_INT32(out, RealViewI2CState),
+        VMSTATE_INT32(in, RealViewI2CState),
+        VMSTATE_END_OF_LIST()
+    }
+};
+
 static uint32_t realview_i2c_read(void *opaque, target_phys_addr_t offset)
 {
     RealViewI2CState *s = (RealViewI2CState *)opaque;
@@ -90,6 +106,7 @@ static SysBusDeviceInfo realview_i2c_info = {
     .init = realview_i2c_init,
     .qdev.name  = "realview_i2c",
     .qdev.size  = sizeof(RealViewI2CState),
+    .qdev.vmsd  = &vmstate_realview_i2c,
 };
 
 static void realview_register_devices(void)
-- 
1.7.5.4

  parent reply	other threads:[~2011-10-25 11:12 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-25 11:09 [Qemu-devel] [PATCH 0/5] arm: VMState conversion Benoît Canet
2011-10-25 11:09 ` [Qemu-devel] [PATCH 1/5] pl181: add vmstate Benoît Canet
2011-10-25 11:09 ` [Qemu-devel] [PATCH 2/5] bitbang_i2c: convert to VMState Benoît Canet
2011-10-25 11:09 ` Benoît Canet [this message]
2011-10-25 11:09 ` [Qemu-devel] [PATCH 4/5] integratorcp: convert integratorcm " Benoît Canet
2011-10-26 17:24   ` Peter Maydell
2011-11-08  2:07     ` Peter Maydell
2011-11-08  6:33       ` Avi Kivity
2011-11-08 10:08         ` Benoît Canet
2011-11-08 12:16           ` Peter Maydell
2011-11-08 12:15         ` Peter Maydell
2011-11-08 12:21           ` Avi Kivity
2011-11-08 12:30             ` Peter Maydell
2011-11-08 12:38               ` Avi Kivity
2011-11-08 12:47                 ` Peter Maydell
2011-11-08 13:50                 ` Anthony Liguori
2011-11-08 14:38                   ` Avi Kivity
2011-11-08 15:04                     ` Anthony Liguori
2011-11-08 15:15                       ` Avi Kivity
2011-11-08 15:32                         ` Anthony Liguori
2011-11-08 17:19                           ` Avi Kivity
2011-11-09 14:40                             ` Anthony Liguori
2011-11-09 15:05                               ` Avi Kivity
2011-11-09 15:20                                 ` Peter Maydell
2011-11-09 15:21                                   ` Avi Kivity
2011-11-09 15:49                                 ` Anthony Liguori
2011-11-09 15:56                                   ` Avi Kivity
2011-11-09 16:07                                     ` Peter Maydell
2011-11-09 17:43                                     ` Anthony Liguori
2011-11-09 18:09                                       ` Avi Kivity
2011-10-25 11:09 ` [Qemu-devel] [PATCH 5/5] integratorcp: convert icp_pic " Benoît Canet

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1319540983-4248-4-git-send-email-benoit.canet@gmail.com \
    --to=benoit.canet@gmail.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.