]>
Commit | Line | Data |
---|---|---|
ef1df130 TH |
1 | /* |
2 | * S390x machine definitions and functions | |
3 | * | |
4 | * Copyright IBM Corp. 2014 | |
5 | * | |
6 | * Authors: | |
7 | * Thomas Huth <thuth@linux.vnet.ibm.com> | |
8 | * Christian Borntraeger <borntraeger@de.ibm.com> | |
9 | * Jason J. Herne <jjherne@us.ibm.com> | |
10 | * | |
11 | * This work is free software; you can redistribute it and/or modify | |
12 | * it under the terms of the GNU General Public License as published | |
13 | * by the Free Software Foundation; either version 2 of the License, | |
14 | * or (at your option) any later version. | |
15 | */ | |
16 | ||
17 | #include "hw/hw.h" | |
18 | #include "cpu.h" | |
19 | #include "sysemu/kvm.h" | |
20 | ||
21 | static int cpu_post_load(void *opaque, int version_id) | |
22 | { | |
23 | S390CPU *cpu = opaque; | |
24 | ||
25 | /* | |
26 | * As the cpu state is pushed to kvm via kvm_set_mp_state rather | |
27 | * than via cpu_synchronize_state, we need update kvm here. | |
28 | */ | |
29 | if (kvm_enabled()) { | |
30 | kvm_s390_set_cpu_state(cpu, cpu->env.cpu_state); | |
3cda44f7 | 31 | return kvm_s390_vcpu_interrupt_post_load(cpu); |
ef1df130 TH |
32 | } |
33 | ||
34 | return 0; | |
35 | } | |
3cda44f7 JF |
36 | static void cpu_pre_save(void *opaque) |
37 | { | |
38 | S390CPU *cpu = opaque; | |
39 | ||
40 | if (kvm_enabled()) { | |
41 | kvm_s390_vcpu_interrupt_pre_save(cpu); | |
42 | } | |
43 | } | |
ef1df130 | 44 | |
46c804de DH |
45 | const VMStateDescription vmstate_fpu = { |
46 | .name = "cpu/fpu", | |
47 | .version_id = 1, | |
48 | .minimum_version_id = 1, | |
49 | .fields = (VMStateField[]) { | |
fcb79802 EF |
50 | VMSTATE_UINT64(env.vregs[0][0].ll, S390CPU), |
51 | VMSTATE_UINT64(env.vregs[1][0].ll, S390CPU), | |
52 | VMSTATE_UINT64(env.vregs[2][0].ll, S390CPU), | |
53 | VMSTATE_UINT64(env.vregs[3][0].ll, S390CPU), | |
54 | VMSTATE_UINT64(env.vregs[4][0].ll, S390CPU), | |
55 | VMSTATE_UINT64(env.vregs[5][0].ll, S390CPU), | |
56 | VMSTATE_UINT64(env.vregs[6][0].ll, S390CPU), | |
57 | VMSTATE_UINT64(env.vregs[7][0].ll, S390CPU), | |
58 | VMSTATE_UINT64(env.vregs[8][0].ll, S390CPU), | |
59 | VMSTATE_UINT64(env.vregs[9][0].ll, S390CPU), | |
60 | VMSTATE_UINT64(env.vregs[10][0].ll, S390CPU), | |
61 | VMSTATE_UINT64(env.vregs[11][0].ll, S390CPU), | |
62 | VMSTATE_UINT64(env.vregs[12][0].ll, S390CPU), | |
63 | VMSTATE_UINT64(env.vregs[13][0].ll, S390CPU), | |
64 | VMSTATE_UINT64(env.vregs[14][0].ll, S390CPU), | |
65 | VMSTATE_UINT64(env.vregs[15][0].ll, S390CPU), | |
46c804de DH |
66 | VMSTATE_UINT32(env.fpc, S390CPU), |
67 | VMSTATE_END_OF_LIST() | |
68 | } | |
69 | }; | |
70 | ||
71 | static inline bool fpu_needed(void *opaque) | |
72 | { | |
73 | return true; | |
74 | } | |
75 | ||
b2ac0ff5 EF |
76 | const VMStateDescription vmstate_vregs = { |
77 | .name = "cpu/vregs", | |
78 | .version_id = 1, | |
79 | .minimum_version_id = 1, | |
80 | .fields = (VMStateField[]) { | |
81 | /* vregs[0][0] -> vregs[15][0] and fregs are overlays */ | |
82 | VMSTATE_UINT64(env.vregs[16][0].ll, S390CPU), | |
83 | VMSTATE_UINT64(env.vregs[17][0].ll, S390CPU), | |
84 | VMSTATE_UINT64(env.vregs[18][0].ll, S390CPU), | |
85 | VMSTATE_UINT64(env.vregs[19][0].ll, S390CPU), | |
86 | VMSTATE_UINT64(env.vregs[20][0].ll, S390CPU), | |
87 | VMSTATE_UINT64(env.vregs[21][0].ll, S390CPU), | |
88 | VMSTATE_UINT64(env.vregs[22][0].ll, S390CPU), | |
89 | VMSTATE_UINT64(env.vregs[23][0].ll, S390CPU), | |
90 | VMSTATE_UINT64(env.vregs[24][0].ll, S390CPU), | |
91 | VMSTATE_UINT64(env.vregs[25][0].ll, S390CPU), | |
92 | VMSTATE_UINT64(env.vregs[26][0].ll, S390CPU), | |
93 | VMSTATE_UINT64(env.vregs[27][0].ll, S390CPU), | |
94 | VMSTATE_UINT64(env.vregs[28][0].ll, S390CPU), | |
95 | VMSTATE_UINT64(env.vregs[29][0].ll, S390CPU), | |
96 | VMSTATE_UINT64(env.vregs[30][0].ll, S390CPU), | |
97 | VMSTATE_UINT64(env.vregs[31][0].ll, S390CPU), | |
98 | VMSTATE_UINT64(env.vregs[0][1].ll, S390CPU), | |
99 | VMSTATE_UINT64(env.vregs[1][1].ll, S390CPU), | |
100 | VMSTATE_UINT64(env.vregs[2][1].ll, S390CPU), | |
101 | VMSTATE_UINT64(env.vregs[3][1].ll, S390CPU), | |
102 | VMSTATE_UINT64(env.vregs[4][1].ll, S390CPU), | |
103 | VMSTATE_UINT64(env.vregs[5][1].ll, S390CPU), | |
104 | VMSTATE_UINT64(env.vregs[6][1].ll, S390CPU), | |
105 | VMSTATE_UINT64(env.vregs[7][1].ll, S390CPU), | |
106 | VMSTATE_UINT64(env.vregs[8][1].ll, S390CPU), | |
107 | VMSTATE_UINT64(env.vregs[9][1].ll, S390CPU), | |
108 | VMSTATE_UINT64(env.vregs[10][1].ll, S390CPU), | |
109 | VMSTATE_UINT64(env.vregs[11][1].ll, S390CPU), | |
110 | VMSTATE_UINT64(env.vregs[12][1].ll, S390CPU), | |
111 | VMSTATE_UINT64(env.vregs[13][1].ll, S390CPU), | |
112 | VMSTATE_UINT64(env.vregs[14][1].ll, S390CPU), | |
113 | VMSTATE_UINT64(env.vregs[15][1].ll, S390CPU), | |
114 | VMSTATE_UINT64(env.vregs[16][1].ll, S390CPU), | |
115 | VMSTATE_UINT64(env.vregs[17][1].ll, S390CPU), | |
116 | VMSTATE_UINT64(env.vregs[18][1].ll, S390CPU), | |
117 | VMSTATE_UINT64(env.vregs[19][1].ll, S390CPU), | |
118 | VMSTATE_UINT64(env.vregs[20][1].ll, S390CPU), | |
119 | VMSTATE_UINT64(env.vregs[21][1].ll, S390CPU), | |
120 | VMSTATE_UINT64(env.vregs[22][1].ll, S390CPU), | |
121 | VMSTATE_UINT64(env.vregs[23][1].ll, S390CPU), | |
122 | VMSTATE_UINT64(env.vregs[24][1].ll, S390CPU), | |
123 | VMSTATE_UINT64(env.vregs[25][1].ll, S390CPU), | |
124 | VMSTATE_UINT64(env.vregs[26][1].ll, S390CPU), | |
125 | VMSTATE_UINT64(env.vregs[27][1].ll, S390CPU), | |
126 | VMSTATE_UINT64(env.vregs[28][1].ll, S390CPU), | |
127 | VMSTATE_UINT64(env.vregs[29][1].ll, S390CPU), | |
128 | VMSTATE_UINT64(env.vregs[30][1].ll, S390CPU), | |
129 | VMSTATE_UINT64(env.vregs[31][1].ll, S390CPU), | |
130 | VMSTATE_END_OF_LIST() | |
131 | } | |
132 | }; | |
133 | ||
46c804de DH |
134 | const VMStateDescription vmstate_s390_cpu = { |
135 | .name = "cpu", | |
136 | .post_load = cpu_post_load, | |
3cda44f7 JF |
137 | .pre_save = cpu_pre_save, |
138 | .version_id = 4, | |
46c804de DH |
139 | .minimum_version_id = 3, |
140 | .fields = (VMStateField[]) { | |
ef1df130 TH |
141 | VMSTATE_UINT64_ARRAY(env.regs, S390CPU, 16), |
142 | VMSTATE_UINT64(env.psw.mask, S390CPU), | |
143 | VMSTATE_UINT64(env.psw.addr, S390CPU), | |
144 | VMSTATE_UINT64(env.psa, S390CPU), | |
ef1df130 TH |
145 | VMSTATE_UINT32(env.todpr, S390CPU), |
146 | VMSTATE_UINT64(env.pfault_token, S390CPU), | |
147 | VMSTATE_UINT64(env.pfault_compare, S390CPU), | |
148 | VMSTATE_UINT64(env.pfault_select, S390CPU), | |
149 | VMSTATE_UINT64(env.cputm, S390CPU), | |
150 | VMSTATE_UINT64(env.ckc, S390CPU), | |
151 | VMSTATE_UINT64(env.gbea, S390CPU), | |
152 | VMSTATE_UINT64(env.pp, S390CPU), | |
153 | VMSTATE_UINT32_ARRAY(env.aregs, S390CPU, 16), | |
154 | VMSTATE_UINT64_ARRAY(env.cregs, S390CPU, 16), | |
155 | VMSTATE_UINT8(env.cpu_state, S390CPU), | |
18ff9494 | 156 | VMSTATE_UINT8(env.sigp_order, S390CPU), |
3cda44f7 JF |
157 | VMSTATE_UINT32_V(irqstate_saved_size, S390CPU, 4), |
158 | VMSTATE_VBUFFER_UINT32(irqstate, S390CPU, 4, NULL, 0, | |
159 | irqstate_saved_size), | |
ef1df130 TH |
160 | VMSTATE_END_OF_LIST() |
161 | }, | |
46c804de DH |
162 | .subsections = (VMStateSubsection[]) { |
163 | { | |
164 | .vmsd = &vmstate_fpu, | |
165 | .needed = fpu_needed, | |
b2ac0ff5 EF |
166 | } , { |
167 | .vmsd = &vmstate_vregs, | |
168 | .needed = vregs_needed, | |
46c804de DH |
169 | } , { |
170 | /* empty */ | |
171 | } | |
172 | }, | |
ef1df130 | 173 | }; |