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>
Subject: [Qemu-devel] [PATCH 11/15] pl181: add vmstate
Date: Mon, 24 Oct 2011 23:03:37 +0200 [thread overview]
Message-ID: <1319490221-5854-13-git-send-email-benoit.canet@gmail.com> (raw)
In-Reply-To: <1319490221-5854-1-git-send-email-benoit.canet@gmail.com>
Signed-off-by: Benoit Canet <benoit.canet@gmail.com>
---
hw/pl181.c | 40 ++++++++++++++++++++++++++++++++++++----
1 files changed, 36 insertions(+), 4 deletions(-)
diff --git a/hw/pl181.c b/hw/pl181.c
index e13ea8e..cef2530 100644
--- a/hw/pl181.c
+++ b/hw/pl181.c
@@ -38,20 +38,45 @@ typedef struct {
uint32_t datacnt;
uint32_t status;
uint32_t mask[2];
- int fifo_pos;
- int fifo_len;
+ int32_t fifo_pos;
+ int32_t fifo_len;
/* The linux 2.6.21 driver is buggy, and misbehaves if new data arrives
while it is reading the FIFO. We hack around this be defering
subsequent transfers until after the driver polls the status word.
http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=4446/1
*/
- int linux_hack;
+ int32_t linux_hack;
uint32_t fifo[PL181_FIFO_LEN];
qemu_irq irq[2];
/* GPIO outputs for 'card is readonly' and 'card inserted' */
qemu_irq cardstatus[2];
} pl181_state;
+static const VMStateDescription vmstate_pl181 = {
+ .name = "pl181",
+ .version_id = 1,
+ .minimum_version_id = 1,
+ .fields = (VMStateField[]) {
+ VMSTATE_UINT32(clock, pl181_state),
+ VMSTATE_UINT32(power, pl181_state),
+ VMSTATE_UINT32(cmdarg, pl181_state),
+ VMSTATE_UINT32(cmd, pl181_state),
+ VMSTATE_UINT32(datatimer, pl181_state),
+ VMSTATE_UINT32(datalength, pl181_state),
+ VMSTATE_UINT32(respcmd, pl181_state),
+ VMSTATE_UINT32_ARRAY(response, pl181_state, 4),
+ VMSTATE_UINT32(datactrl, pl181_state),
+ VMSTATE_UINT32(datacnt, pl181_state),
+ VMSTATE_UINT32(status, pl181_state),
+ VMSTATE_UINT32_ARRAY(mask, pl181_state, 2),
+ VMSTATE_INT32(fifo_pos, pl181_state),
+ VMSTATE_INT32(fifo_len, pl181_state),
+ VMSTATE_INT32(linux_hack, pl181_state),
+ VMSTATE_UINT32_ARRAY(fifo, pl181_state, PL181_FIFO_LEN),
+ VMSTATE_END_OF_LIST()
+ }
+};
+
#define PL181_CMD_INDEX 0x3f
#define PL181_CMD_RESPONSE (1 << 6)
#define PL181_CMD_LONGRESP (1 << 7)
@@ -465,9 +490,16 @@ static int pl181_init(SysBusDevice *dev)
return 0;
}
+static SysBusDeviceInfo pl181_info = {
+ .init = pl181_init,
+ .qdev.name = "pl181",
+ .qdev.size = sizeof(pl181_state),
+ .qdev.vmsd = &vmstate_pl181,
+};
+
static void pl181_register_devices(void)
{
- sysbus_register_dev("pl181", sizeof(pl181_state), pl181_init);
+ sysbus_register_withprop(&pl181_info);
}
device_init(pl181_register_devices)
--
1.7.4.1
next prev parent reply other threads:[~2011-10-24 21:02 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-24 21:03 [Qemu-devel] (no subject) Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH V2 00/15] V2 arm: more memory API and VMState conversion Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 01/15] marvell_88x8618_audio: convert to memory API Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 02/15] mst_fpga: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 03/15] syborg_fb: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 04/15] syborg_interrupt: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 05/15] syborg_keyboard: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 06/15] syborg_pointer: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 07/15] syborg_rtc: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 08/15] syborg_serial: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 09/15] syborg_timer: " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 10/15] syborg_virtio: " Benoît Canet
2011-10-24 21:03 ` Benoît Canet [this message]
2011-10-24 21:03 ` [Qemu-devel] [PATCH 12/15] bitbang_i2c: convert to VMState Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 13/15] realview: convert realview i2c " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 14/15] integratorcp: convert integratorcm " Benoît Canet
2011-10-24 21:03 ` [Qemu-devel] [PATCH 15/15] 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=1319490221-5854-13-git-send-email-benoit.canet@gmail.com \
--to=benoit.canet@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/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.