[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCHv2 1/7] macio.c: include parent PCIDevice state in VMSt
From: |
Mark Cave-Ayland |
Subject: |
[Qemu-ppc] [PATCHv2 1/7] macio.c: include parent PCIDevice state in VMStateDescription |
Date: |
Wed, 21 Jan 2015 16:01:06 +0000 |
This ensures that the macio PCI device is correctly configured when restoring
from a VM snapshot.
Signed-off-by: Mark Cave-Ayland <address@hidden>
---
hw/misc/macio/macio.c | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/hw/misc/macio/macio.c b/hw/misc/macio/macio.c
index e0f1e88..9bc3f2d 100644
--- a/hw/misc/macio/macio.c
+++ b/hw/misc/macio/macio.c
@@ -336,20 +336,44 @@ static void macio_instance_init(Object *obj)
memory_region_add_subregion(&s->bar, 0x08000, dbdma_mem);
}
+static const VMStateDescription vmstate_macio_oldworld = {
+ .name = "macio-oldworld",
+ .version_id = 0,
+ .minimum_version_id = 0,
+ .fields = (VMStateField[]) {
+ VMSTATE_PCI_DEVICE(parent_obj.parent, OldWorldMacIOState),
+ VMSTATE_END_OF_LIST()
+ }
+};
+
static void macio_oldworld_class_init(ObjectClass *oc, void *data)
{
PCIDeviceClass *pdc = PCI_DEVICE_CLASS(oc);
+ DeviceClass *dc = DEVICE_CLASS(oc);
pdc->init = macio_oldworld_initfn;
pdc->device_id = PCI_DEVICE_ID_APPLE_343S1201;
+ dc->vmsd = &vmstate_macio_oldworld;
}
+static const VMStateDescription vmstate_macio_newworld = {
+ .name = "macio-newworld",
+ .version_id = 0,
+ .minimum_version_id = 0,
+ .fields = (VMStateField[]) {
+ VMSTATE_PCI_DEVICE(parent_obj.parent, NewWorldMacIOState),
+ VMSTATE_END_OF_LIST()
+ }
+};
+
static void macio_newworld_class_init(ObjectClass *oc, void *data)
{
PCIDeviceClass *pdc = PCI_DEVICE_CLASS(oc);
+ DeviceClass *dc = DEVICE_CLASS(oc);
pdc->init = macio_newworld_initfn;
pdc->device_id = PCI_DEVICE_ID_APPLE_UNI_N_KEYL;
+ dc->vmsd = &vmstate_macio_newworld;
}
static Property macio_properties[] = {
--
1.7.10.4
- [Qemu-ppc] [PATCHv2 0/7] ppc: loadvm/savevm fixups for -M g3beige and -M mac99, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 1/7] macio.c: include parent PCIDevice state in VMStateDescription,
Mark Cave-Ayland <=
- [Qemu-ppc] [PATCHv2 4/7] target-ppc: move sdr1 value change detection logic to helper_store_sdr1(), Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 6/7] openpic: fix segfault on -M mac99 savevm, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 2/7] adb.c: include ADBDevice parent state in KBDState and MouseState, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 3/7] cuda.c: include adb_poll_timer in VMStateDescription, Mark Cave-Ayland, 2015/01/21
- [Qemu-ppc] [PATCHv2 7/7] openpic: fix up loadvm under -M mac99, Mark Cave-Ayland, 2015/01/21