qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Benoît Canet" <benoit.canet@gmail.com>
To: Avi Kivity <avi@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
	qemu-devel@nongnu.org, quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH 4/5] integratorcp: convert integratorcm to VMState
Date: Tue, 8 Nov 2011 11:08:40 +0100	[thread overview]
Message-ID: <CAOh3yaxmkPDFdWhV1K4J2KjYpvHi9XWPr2cdiLBf+XD7WyKs1g@mail.gmail.com> (raw)
In-Reply-To: <4EB8CD52.1000008@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 3996 bytes --]

flash_mapped reflect the bit 2 of a control register.

Peter, does this patch look better ?

commit 2fa7b11ee2b2532d00056d6bbc928c5162925e1d
Author: Benoît Canet <benoit.canet@gmail.com>
Date:   Mon Oct 24 14:39:26 2011 +0200

    integratorcp: convert integratorcm to VMState

    Signed-off-by: Benoit Canet <benoit.canet@gmail.com>

diff --git a/hw/integratorcp.c b/hw/integratorcp.c
index 9a289b4..4e51579 100644
--- a/hw/integratorcp.c
+++ b/hw/integratorcp.c
@@ -34,6 +34,42 @@ typedef struct {
     uint32_t fiq_enabled;
 } integratorcm_state;

+static void integratorcm_do_remap(integratorcm_state *s, int flash);
+
+static int integratorcm_post_load(void *opaque, int version_id)
+{
+    integratorcm_state *s = opaque;
+
+    if (s->cm_ctrl & 4) {
+        integratorcm_do_remap(s, 0);
+    }
+    /* ??? tlb_flush (cpu_single_env, 1); */
+    return 0;
+}
+
+static const VMStateDescription vmstate_integratorcm = {
+    .name = "integratorcm",
+    .version_id = 1,
+    .minimum_version_id = 1,
+    .minimum_version_id_old = 1,
+    .post_load = integratorcm_post_load,
+    .fields = (VMStateField[]) {
+        VMSTATE_UINT32(memsz, integratorcm_state),
+        VMSTATE_UINT32(cm_osc, integratorcm_state),
+        VMSTATE_UINT32(cm_ctrl, integratorcm_state),
+        VMSTATE_UINT32(cm_lock, integratorcm_state),
+        VMSTATE_UINT32(cm_auxosc, integratorcm_state),
+        VMSTATE_UINT32(cm_sdram, integratorcm_state),
+        VMSTATE_UINT32(cm_init, integratorcm_state),
+        VMSTATE_UINT32(cm_flags, integratorcm_state),
+        VMSTATE_UINT32(cm_nvflags, integratorcm_state),
+        VMSTATE_UINT32(int_level, integratorcm_state),
+        VMSTATE_UINT32(irq_enabled, integratorcm_state),
+        VMSTATE_UINT32(fiq_enabled, integratorcm_state),
+        VMSTATE_END_OF_LIST()
+    }
+};
+
 static uint8_t integrator_spd[128] = {
    128, 8, 4, 11, 9, 1, 64, 0,  2, 0xa0, 0xa0, 0, 0, 8, 0, 1,
    0xe, 4, 0x1c, 1, 2, 0x20, 0xc0, 0, 0, 0, 0, 0x30, 0x28, 0x30, 0x28, 0x40
@@ -547,6 +583,7 @@ static SysBusDeviceInfo core_info = {
     .init = integratorcm_init,
     .qdev.name  = "integrator_core",
     .qdev.size  = sizeof(integratorcm_state),
+    .qdev.vmsd = &vmstate_integratorcm,
     .qdev.props = (Property[]) {
         DEFINE_PROP_UINT32("memsz", integratorcm_state, memsz, 0),
         DEFINE_PROP_END_OF_LIST(),


On Tue, Nov 8, 2011 at 7:33 AM, Avi Kivity <avi@redhat.com> wrote:

> On 11/08/2011 04:07 AM, Peter Maydell wrote:
> > 2011/10/26 Peter Maydell <peter.maydell@linaro.org>:
> > > On 25 October 2011 12:09, Benoît Canet <benoit.canet@gmail.com> wrote:
> > >> +static const VMStateDescription vmstate_integratorcm = {
> > >> +    .name = "integratorcm",
> > >> +    .version_id = 1,
> > >> +    .minimum_version_id = 1,
> > >> +    .minimum_version_id_old = 1,
> > >> +    .fields = (VMStateField[]) {
> > >> +        VMSTATE_UINT32(memsz, integratorcm_state),
> > >> +        VMSTATE_BOOL(flash_mapped, integratorcm_state),
> > >
> > > This raises a question. flash_mapped here is a flag which just
> > > tracks whether the associated MemoryRegion is currently mapped
> > > or unmapped. Do we need to do anything special to ensure that
> > > the MemoryRegion itself is reset to the correct mapped/unmapped
> > > state on restore?
> > >
> > > I recall discussing this kind of thing with Avi on IRC but I
> > > can't remember what the conclusion was.
> >
> > Avi, ping? I'm still interested in the answer to this question.
>
> Sorry, missed this. Yes, you need to ensure the memory region mapping
> reflects flash_mapped.
>
> btw, is flash_mapped a real device state (corresponds to a real memory
> bit on the device) or just an artefact?  It's usually a bad idea to cast
> implementation artefacts in vmstate concrete.
>
> --
> I have a truly marvellous patch that fixes the bug which this
> signature is too narrow to contain.
>
>

[-- Attachment #2: Type: text/html, Size: 5662 bytes --]

  reply	other threads:[~2011-11-08 10:08 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 ` [Qemu-devel] [PATCH 3/5] realview: convert realview i2c " Benoît Canet
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 [this message]
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=CAOh3yaxmkPDFdWhV1K4J2KjYpvHi9XWPr2cdiLBf+XD7WyKs1g@mail.gmail.com \
    --to=benoit.canet@gmail.com \
    --cc=avi@redhat.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 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).