]> git.proxmox.com Git - mirror_qemu.git/blame - target-lm32/machine.c
Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging
[mirror_qemu.git] / target-lm32 / machine.c
CommitLineData
ea99dde1 1#include "qemu/osdep.h"
33c11879
PB
2#include "qemu-common.h"
3#include "cpu.h"
c6af5693
MW
4#include "hw/hw.h"
5#include "hw/boards.h"
1e00b8d5 6#include "migration/cpu.h"
c6af5693 7
0ad6773f
AF
8static const VMStateDescription vmstate_env = {
9 .name = "env",
10 .version_id = 1,
c6af5693 11 .minimum_version_id = 1,
35d08458 12 .fields = (VMStateField[]) {
6393c08d
AF
13 VMSTATE_UINT32_ARRAY(regs, CPULM32State, 32),
14 VMSTATE_UINT32(pc, CPULM32State),
15 VMSTATE_UINT32(ie, CPULM32State),
16 VMSTATE_UINT32(icc, CPULM32State),
17 VMSTATE_UINT32(dcc, CPULM32State),
18 VMSTATE_UINT32(cc, CPULM32State),
19 VMSTATE_UINT32(eba, CPULM32State),
20 VMSTATE_UINT32(dc, CPULM32State),
21 VMSTATE_UINT32(deba, CPULM32State),
22 VMSTATE_UINT32_ARRAY(bp, CPULM32State, 4),
23 VMSTATE_UINT32_ARRAY(wp, CPULM32State, 4),
c6af5693
MW
24 VMSTATE_END_OF_LIST()
25 }
26};
27
0ad6773f
AF
28const VMStateDescription vmstate_lm32_cpu = {
29 .name = "cpu",
30 .version_id = 1,
31 .minimum_version_id = 1,
35d08458 32 .fields = (VMStateField[]) {
0ad6773f
AF
33 VMSTATE_STRUCT(env, LM32CPU, 1, vmstate_env, CPULM32State),
34 VMSTATE_END_OF_LIST()
35 }
36};