Skip to content

Commit

Permalink
vmstate: port pxa2xx_mm
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Quintela <[email protected]>
  • Loading branch information
Juan Quintela authored and Anthony Liguori committed Apr 22, 2011
1 parent ae1f90d commit d102d49
Showing 1 changed file with 12 additions and 21 deletions.
33 changes: 12 additions & 21 deletions hw/pxa2xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,25 +516,16 @@ static CPUWriteMemoryFunc * const pxa2xx_mm_writefn[] = {
pxa2xx_mm_write,
};

static void pxa2xx_mm_save(QEMUFile *f, void *opaque)
{
PXA2xxState *s = (PXA2xxState *) opaque;
int i;

for (i = 0; i < 0x1a; i ++)
qemu_put_be32s(f, &s->mm_regs[i]);
}

static int pxa2xx_mm_load(QEMUFile *f, void *opaque, int version_id)
{
PXA2xxState *s = (PXA2xxState *) opaque;
int i;

for (i = 0; i < 0x1a; i ++)
qemu_get_be32s(f, &s->mm_regs[i]);

return 0;
}
static const VMStateDescription vmstate_pxa2xx_mm = {
.name = "pxa2xx_mm",
.version_id = 0,
.minimum_version_id = 0,
.minimum_version_id_old = 0,
.fields = (VMStateField[]) {
VMSTATE_UINT32_ARRAY(mm_regs, PXA2xxState, 0x1a),
VMSTATE_END_OF_LIST()
}
};

/* Synchronous Serial Ports */
typedef struct {
Expand Down Expand Up @@ -2171,7 +2162,7 @@ PXA2xxState *pxa270_init(unsigned int sdram_size, const char *revision)
iomemtype = cpu_register_io_memory(pxa2xx_mm_readfn,
pxa2xx_mm_writefn, s, DEVICE_NATIVE_ENDIAN);
cpu_register_physical_memory(s->mm_base, 0x1000, iomemtype);
register_savevm(NULL, "pxa2xx_mm", 0, 0, pxa2xx_mm_save, pxa2xx_mm_load, s);
vmstate_register(NULL, 0, &vmstate_pxa2xx_mm, s);

s->pm_base = 0x40f00000;
iomemtype = cpu_register_io_memory(pxa2xx_pm_readfn,
Expand Down Expand Up @@ -2307,7 +2298,7 @@ PXA2xxState *pxa255_init(unsigned int sdram_size)
iomemtype = cpu_register_io_memory(pxa2xx_mm_readfn,
pxa2xx_mm_writefn, s, DEVICE_NATIVE_ENDIAN);
cpu_register_physical_memory(s->mm_base, 0x1000, iomemtype);
register_savevm(NULL, "pxa2xx_mm", 0, 0, pxa2xx_mm_save, pxa2xx_mm_load, s);
vmstate_register(NULL, 0, &vmstate_pxa2xx_mm, s);

s->pm_base = 0x40f00000;
iomemtype = cpu_register_io_memory(pxa2xx_pm_readfn,
Expand Down

0 comments on commit d102d49

Please sign in to comment.