qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Anthony Liguori <anthony@codemonkey.ws>
To: Avi Kivity <avi@redhat.com>
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Benoît Canet" <benoit.canet@gmail.com>,
	qemu-devel@nongnu.org, quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH 4/5] integratorcp: convert integratorcm to VMState
Date: Wed, 09 Nov 2011 09:49:00 -0600	[thread overview]
Message-ID: <4EBAA0EC.6030409@codemonkey.ws> (raw)
In-Reply-To: <4EBA96BD.5050904@redhat.com>

On 11/09/2011 09:05 AM, Avi Kivity wrote:
> On 11/09/2011 04:40 PM, Anthony Liguori wrote:
>>
>> typedef struct {
>>      SysBusDevice busdev;
>>      uint32_t memsz;
>>      MemoryRegion flash;
>>      bool flash_mapped;
>
> Both flash.has_parent and flash_mapped are slaved to a bit of one of the
> registers below.
>
>>      uint32_t cm_osc;
>>      uint32_t cm_ctrl;
>>      uint32_t cm_lock;
>>      uint32_t cm_auxosc;
>>      uint32_t cm_sdram;
>>      uint32_t cm_init;
>>      uint32_t cm_flags;
>>      uint32_t cm_nvflags;
>>      uint32_t int_level;
>>      uint32_t irq_enabled;
>>      uint32_t fiq_enabled;
>> } integratorcm_state;
>>
>> What I'm saying is let's do:
>>
>> VMSTATE_SYSBUS(integratorcm_state, busdev),
>> VMSTATE_UINT32(integratorcm, memsz),
>> VMSTATE_MEMORY_REGION(integratorcm, flash),
>
> Therefore this line is 100% redundant.

Yes, but the problem is that it's not obvious *why*.  That's what I'm trying to 
get at here.  If you have a VMSTATE_MEMORY_REGION() that has all of it's fields 
marked immutable and one field marked derived, now it becomes obvious *why* we 
don't save these fields.

Just not having it in the vmstate description makes it very non-obvious.  Is it 
a bug?  Is there some field in memory region that I'm responsible for setting in 
a post load hook?

>> This gives us a few things.  First, it means we're describing how to
>> marshal everything which I really believe is the direction we need to
>> go.  Second, it makes writing VMState descriptions easier to review.
>> Every field should be in the VMState description.  Any field that is
>> in the derived_fields array should have its value set in the post_load
>> function.  You could also have an immutable_fields array to indicate
>> which fields are immutable.
>
> 100% of the memory API's fields are either immutable or derived.

Ok, let's at least make the code make it obvious that that is the case.

>> BTW, I've thought about this in the past but never came up with
>> anything that really made sense.  Have you thought about what what a
>> Register class would do?
>>
>
> name (for the monitor)
> size
> ptr to storage (in device state)
> writeable bits mask
> clear-on-read mask

Really?  Is that all that common outside of PCI config?

> read function (if computed on demand; otherwise satisfied from storage)
> write function (if have side effects)

I tried something like this in Python at one point and the code ended up very 
big to write a device model.  It's hard to beat the conciseness of the dispatch 
functions with a switch() statement.

Regards,

Anthony Liguori

  parent reply	other threads:[~2011-11-09 15:49 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
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 [this message]
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=4EBAA0EC.6030409@codemonkey.ws \
    --to=anthony@codemonkey.ws \
    --cc=avi@redhat.com \
    --cc=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 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).