4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
22 #include "exec/helper-proto.h"
26 #if defined(CONFIG_USER_ONLY)
28 void do_smm_enter(X86CPU
*cpu
)
32 void helper_rsm(CPUX86State
*env
)
39 #define SMM_REVISION_ID 0x00020064
41 #define SMM_REVISION_ID 0x00020000
44 void cpu_smm_update(X86CPU
*cpu
)
46 CPUX86State
*env
= &cpu
->env
;
47 bool smm_enabled
= (env
->hflags
& HF_SMM_MASK
);
50 memory_region_set_enabled(cpu
->smram
, smm_enabled
);
54 void do_smm_enter(X86CPU
*cpu
)
56 CPUX86State
*env
= &cpu
->env
;
57 CPUState
*cs
= CPU(cpu
);
58 target_ulong sm_state
;
62 qemu_log_mask(CPU_LOG_INT
, "SMM: enter\n");
63 log_cpu_state_mask(CPU_LOG_INT
, CPU(cpu
), CPU_DUMP_CCOP
);
65 env
->hflags
|= HF_SMM_MASK
;
66 if (env
->hflags2
& HF2_NMI_MASK
) {
67 env
->hflags2
|= HF2_SMM_INSIDE_NMI_MASK
;
69 env
->hflags2
|= HF2_NMI_MASK
;
73 sm_state
= env
->smbase
+ 0x8000;
76 for (i
= 0; i
< 6; i
++) {
78 offset
= 0x7e00 + i
* 16;
79 x86_stw_phys(cs
, sm_state
+ offset
, dt
->selector
);
80 x86_stw_phys(cs
, sm_state
+ offset
+ 2, (dt
->flags
>> 8) & 0xf0ff);
81 x86_stl_phys(cs
, sm_state
+ offset
+ 4, dt
->limit
);
82 x86_stq_phys(cs
, sm_state
+ offset
+ 8, dt
->base
);
85 x86_stq_phys(cs
, sm_state
+ 0x7e68, env
->gdt
.base
);
86 x86_stl_phys(cs
, sm_state
+ 0x7e64, env
->gdt
.limit
);
88 x86_stw_phys(cs
, sm_state
+ 0x7e70, env
->ldt
.selector
);
89 x86_stq_phys(cs
, sm_state
+ 0x7e78, env
->ldt
.base
);
90 x86_stl_phys(cs
, sm_state
+ 0x7e74, env
->ldt
.limit
);
91 x86_stw_phys(cs
, sm_state
+ 0x7e72, (env
->ldt
.flags
>> 8) & 0xf0ff);
93 x86_stq_phys(cs
, sm_state
+ 0x7e88, env
->idt
.base
);
94 x86_stl_phys(cs
, sm_state
+ 0x7e84, env
->idt
.limit
);
96 x86_stw_phys(cs
, sm_state
+ 0x7e90, env
->tr
.selector
);
97 x86_stq_phys(cs
, sm_state
+ 0x7e98, env
->tr
.base
);
98 x86_stl_phys(cs
, sm_state
+ 0x7e94, env
->tr
.limit
);
99 x86_stw_phys(cs
, sm_state
+ 0x7e92, (env
->tr
.flags
>> 8) & 0xf0ff);
101 x86_stq_phys(cs
, sm_state
+ 0x7ed0, env
->efer
);
103 x86_stq_phys(cs
, sm_state
+ 0x7ff8, env
->regs
[R_EAX
]);
104 x86_stq_phys(cs
, sm_state
+ 0x7ff0, env
->regs
[R_ECX
]);
105 x86_stq_phys(cs
, sm_state
+ 0x7fe8, env
->regs
[R_EDX
]);
106 x86_stq_phys(cs
, sm_state
+ 0x7fe0, env
->regs
[R_EBX
]);
107 x86_stq_phys(cs
, sm_state
+ 0x7fd8, env
->regs
[R_ESP
]);
108 x86_stq_phys(cs
, sm_state
+ 0x7fd0, env
->regs
[R_EBP
]);
109 x86_stq_phys(cs
, sm_state
+ 0x7fc8, env
->regs
[R_ESI
]);
110 x86_stq_phys(cs
, sm_state
+ 0x7fc0, env
->regs
[R_EDI
]);
111 for (i
= 8; i
< 16; i
++) {
112 x86_stq_phys(cs
, sm_state
+ 0x7ff8 - i
* 8, env
->regs
[i
]);
114 x86_stq_phys(cs
, sm_state
+ 0x7f78, env
->eip
);
115 x86_stl_phys(cs
, sm_state
+ 0x7f70, cpu_compute_eflags(env
));
116 x86_stl_phys(cs
, sm_state
+ 0x7f68, env
->dr
[6]);
117 x86_stl_phys(cs
, sm_state
+ 0x7f60, env
->dr
[7]);
119 x86_stl_phys(cs
, sm_state
+ 0x7f48, env
->cr
[4]);
120 x86_stq_phys(cs
, sm_state
+ 0x7f50, env
->cr
[3]);
121 x86_stl_phys(cs
, sm_state
+ 0x7f58, env
->cr
[0]);
123 x86_stl_phys(cs
, sm_state
+ 0x7efc, SMM_REVISION_ID
);
124 x86_stl_phys(cs
, sm_state
+ 0x7f00, env
->smbase
);
126 x86_stl_phys(cs
, sm_state
+ 0x7ffc, env
->cr
[0]);
127 x86_stl_phys(cs
, sm_state
+ 0x7ff8, env
->cr
[3]);
128 x86_stl_phys(cs
, sm_state
+ 0x7ff4, cpu_compute_eflags(env
));
129 x86_stl_phys(cs
, sm_state
+ 0x7ff0, env
->eip
);
130 x86_stl_phys(cs
, sm_state
+ 0x7fec, env
->regs
[R_EDI
]);
131 x86_stl_phys(cs
, sm_state
+ 0x7fe8, env
->regs
[R_ESI
]);
132 x86_stl_phys(cs
, sm_state
+ 0x7fe4, env
->regs
[R_EBP
]);
133 x86_stl_phys(cs
, sm_state
+ 0x7fe0, env
->regs
[R_ESP
]);
134 x86_stl_phys(cs
, sm_state
+ 0x7fdc, env
->regs
[R_EBX
]);
135 x86_stl_phys(cs
, sm_state
+ 0x7fd8, env
->regs
[R_EDX
]);
136 x86_stl_phys(cs
, sm_state
+ 0x7fd4, env
->regs
[R_ECX
]);
137 x86_stl_phys(cs
, sm_state
+ 0x7fd0, env
->regs
[R_EAX
]);
138 x86_stl_phys(cs
, sm_state
+ 0x7fcc, env
->dr
[6]);
139 x86_stl_phys(cs
, sm_state
+ 0x7fc8, env
->dr
[7]);
141 x86_stl_phys(cs
, sm_state
+ 0x7fc4, env
->tr
.selector
);
142 x86_stl_phys(cs
, sm_state
+ 0x7f64, env
->tr
.base
);
143 x86_stl_phys(cs
, sm_state
+ 0x7f60, env
->tr
.limit
);
144 x86_stl_phys(cs
, sm_state
+ 0x7f5c, (env
->tr
.flags
>> 8) & 0xf0ff);
146 x86_stl_phys(cs
, sm_state
+ 0x7fc0, env
->ldt
.selector
);
147 x86_stl_phys(cs
, sm_state
+ 0x7f80, env
->ldt
.base
);
148 x86_stl_phys(cs
, sm_state
+ 0x7f7c, env
->ldt
.limit
);
149 x86_stl_phys(cs
, sm_state
+ 0x7f78, (env
->ldt
.flags
>> 8) & 0xf0ff);
151 x86_stl_phys(cs
, sm_state
+ 0x7f74, env
->gdt
.base
);
152 x86_stl_phys(cs
, sm_state
+ 0x7f70, env
->gdt
.limit
);
154 x86_stl_phys(cs
, sm_state
+ 0x7f58, env
->idt
.base
);
155 x86_stl_phys(cs
, sm_state
+ 0x7f54, env
->idt
.limit
);
157 for (i
= 0; i
< 6; i
++) {
160 offset
= 0x7f84 + i
* 12;
162 offset
= 0x7f2c + (i
- 3) * 12;
164 x86_stl_phys(cs
, sm_state
+ 0x7fa8 + i
* 4, dt
->selector
);
165 x86_stl_phys(cs
, sm_state
+ offset
+ 8, dt
->base
);
166 x86_stl_phys(cs
, sm_state
+ offset
+ 4, dt
->limit
);
167 x86_stl_phys(cs
, sm_state
+ offset
, (dt
->flags
>> 8) & 0xf0ff);
169 x86_stl_phys(cs
, sm_state
+ 0x7f14, env
->cr
[4]);
171 x86_stl_phys(cs
, sm_state
+ 0x7efc, SMM_REVISION_ID
);
172 x86_stl_phys(cs
, sm_state
+ 0x7ef8, env
->smbase
);
174 /* init SMM cpu state */
177 cpu_load_efer(env
, 0);
179 cpu_load_eflags(env
, 0, ~(CC_O
| CC_S
| CC_Z
| CC_A
| CC_P
| CC_C
|
181 env
->eip
= 0x00008000;
182 cpu_x86_update_cr0(env
,
183 env
->cr
[0] & ~(CR0_PE_MASK
| CR0_EM_MASK
| CR0_TS_MASK
|
185 cpu_x86_update_cr4(env
, 0);
186 env
->dr
[7] = 0x00000400;
188 cpu_x86_load_seg_cache(env
, R_CS
, (env
->smbase
>> 4) & 0xffff, env
->smbase
,
190 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
191 DESC_G_MASK
| DESC_A_MASK
);
192 cpu_x86_load_seg_cache(env
, R_DS
, 0, 0, 0xffffffff,
193 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
194 DESC_G_MASK
| DESC_A_MASK
);
195 cpu_x86_load_seg_cache(env
, R_ES
, 0, 0, 0xffffffff,
196 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
197 DESC_G_MASK
| DESC_A_MASK
);
198 cpu_x86_load_seg_cache(env
, R_SS
, 0, 0, 0xffffffff,
199 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
200 DESC_G_MASK
| DESC_A_MASK
);
201 cpu_x86_load_seg_cache(env
, R_FS
, 0, 0, 0xffffffff,
202 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
203 DESC_G_MASK
| DESC_A_MASK
);
204 cpu_x86_load_seg_cache(env
, R_GS
, 0, 0, 0xffffffff,
205 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
206 DESC_G_MASK
| DESC_A_MASK
);
209 void helper_rsm(CPUX86State
*env
)
211 X86CPU
*cpu
= x86_env_get_cpu(env
);
212 CPUState
*cs
= CPU(cpu
);
213 target_ulong sm_state
;
217 sm_state
= env
->smbase
+ 0x8000;
219 cpu_load_efer(env
, x86_ldq_phys(cs
, sm_state
+ 0x7ed0));
221 env
->gdt
.base
= x86_ldq_phys(cs
, sm_state
+ 0x7e68);
222 env
->gdt
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7e64);
224 env
->ldt
.selector
= x86_lduw_phys(cs
, sm_state
+ 0x7e70);
225 env
->ldt
.base
= x86_ldq_phys(cs
, sm_state
+ 0x7e78);
226 env
->ldt
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7e74);
227 env
->ldt
.flags
= (x86_lduw_phys(cs
, sm_state
+ 0x7e72) & 0xf0ff) << 8;
229 env
->idt
.base
= x86_ldq_phys(cs
, sm_state
+ 0x7e88);
230 env
->idt
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7e84);
232 env
->tr
.selector
= x86_lduw_phys(cs
, sm_state
+ 0x7e90);
233 env
->tr
.base
= x86_ldq_phys(cs
, sm_state
+ 0x7e98);
234 env
->tr
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7e94);
235 env
->tr
.flags
= (x86_lduw_phys(cs
, sm_state
+ 0x7e92) & 0xf0ff) << 8;
237 env
->regs
[R_EAX
] = x86_ldq_phys(cs
, sm_state
+ 0x7ff8);
238 env
->regs
[R_ECX
] = x86_ldq_phys(cs
, sm_state
+ 0x7ff0);
239 env
->regs
[R_EDX
] = x86_ldq_phys(cs
, sm_state
+ 0x7fe8);
240 env
->regs
[R_EBX
] = x86_ldq_phys(cs
, sm_state
+ 0x7fe0);
241 env
->regs
[R_ESP
] = x86_ldq_phys(cs
, sm_state
+ 0x7fd8);
242 env
->regs
[R_EBP
] = x86_ldq_phys(cs
, sm_state
+ 0x7fd0);
243 env
->regs
[R_ESI
] = x86_ldq_phys(cs
, sm_state
+ 0x7fc8);
244 env
->regs
[R_EDI
] = x86_ldq_phys(cs
, sm_state
+ 0x7fc0);
245 for (i
= 8; i
< 16; i
++) {
246 env
->regs
[i
] = x86_ldq_phys(cs
, sm_state
+ 0x7ff8 - i
* 8);
248 env
->eip
= x86_ldq_phys(cs
, sm_state
+ 0x7f78);
249 cpu_load_eflags(env
, x86_ldl_phys(cs
, sm_state
+ 0x7f70),
250 ~(CC_O
| CC_S
| CC_Z
| CC_A
| CC_P
| CC_C
| DF_MASK
));
251 env
->dr
[6] = x86_ldl_phys(cs
, sm_state
+ 0x7f68);
252 env
->dr
[7] = x86_ldl_phys(cs
, sm_state
+ 0x7f60);
254 cpu_x86_update_cr4(env
, x86_ldl_phys(cs
, sm_state
+ 0x7f48));
255 cpu_x86_update_cr3(env
, x86_ldq_phys(cs
, sm_state
+ 0x7f50));
256 cpu_x86_update_cr0(env
, x86_ldl_phys(cs
, sm_state
+ 0x7f58));
258 for (i
= 0; i
< 6; i
++) {
259 offset
= 0x7e00 + i
* 16;
260 cpu_x86_load_seg_cache(env
, i
,
261 x86_lduw_phys(cs
, sm_state
+ offset
),
262 x86_ldq_phys(cs
, sm_state
+ offset
+ 8),
263 x86_ldl_phys(cs
, sm_state
+ offset
+ 4),
264 (x86_lduw_phys(cs
, sm_state
+ offset
+ 2) &
268 val
= x86_ldl_phys(cs
, sm_state
+ 0x7efc); /* revision ID */
270 env
->smbase
= x86_ldl_phys(cs
, sm_state
+ 0x7f00);
273 cpu_x86_update_cr0(env
, x86_ldl_phys(cs
, sm_state
+ 0x7ffc));
274 cpu_x86_update_cr3(env
, x86_ldl_phys(cs
, sm_state
+ 0x7ff8));
275 cpu_load_eflags(env
, x86_ldl_phys(cs
, sm_state
+ 0x7ff4),
276 ~(CC_O
| CC_S
| CC_Z
| CC_A
| CC_P
| CC_C
| DF_MASK
));
277 env
->eip
= x86_ldl_phys(cs
, sm_state
+ 0x7ff0);
278 env
->regs
[R_EDI
] = x86_ldl_phys(cs
, sm_state
+ 0x7fec);
279 env
->regs
[R_ESI
] = x86_ldl_phys(cs
, sm_state
+ 0x7fe8);
280 env
->regs
[R_EBP
] = x86_ldl_phys(cs
, sm_state
+ 0x7fe4);
281 env
->regs
[R_ESP
] = x86_ldl_phys(cs
, sm_state
+ 0x7fe0);
282 env
->regs
[R_EBX
] = x86_ldl_phys(cs
, sm_state
+ 0x7fdc);
283 env
->regs
[R_EDX
] = x86_ldl_phys(cs
, sm_state
+ 0x7fd8);
284 env
->regs
[R_ECX
] = x86_ldl_phys(cs
, sm_state
+ 0x7fd4);
285 env
->regs
[R_EAX
] = x86_ldl_phys(cs
, sm_state
+ 0x7fd0);
286 env
->dr
[6] = x86_ldl_phys(cs
, sm_state
+ 0x7fcc);
287 env
->dr
[7] = x86_ldl_phys(cs
, sm_state
+ 0x7fc8);
289 env
->tr
.selector
= x86_ldl_phys(cs
, sm_state
+ 0x7fc4) & 0xffff;
290 env
->tr
.base
= x86_ldl_phys(cs
, sm_state
+ 0x7f64);
291 env
->tr
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7f60);
292 env
->tr
.flags
= (x86_ldl_phys(cs
, sm_state
+ 0x7f5c) & 0xf0ff) << 8;
294 env
->ldt
.selector
= x86_ldl_phys(cs
, sm_state
+ 0x7fc0) & 0xffff;
295 env
->ldt
.base
= x86_ldl_phys(cs
, sm_state
+ 0x7f80);
296 env
->ldt
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7f7c);
297 env
->ldt
.flags
= (x86_ldl_phys(cs
, sm_state
+ 0x7f78) & 0xf0ff) << 8;
299 env
->gdt
.base
= x86_ldl_phys(cs
, sm_state
+ 0x7f74);
300 env
->gdt
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7f70);
302 env
->idt
.base
= x86_ldl_phys(cs
, sm_state
+ 0x7f58);
303 env
->idt
.limit
= x86_ldl_phys(cs
, sm_state
+ 0x7f54);
305 for (i
= 0; i
< 6; i
++) {
307 offset
= 0x7f84 + i
* 12;
309 offset
= 0x7f2c + (i
- 3) * 12;
311 cpu_x86_load_seg_cache(env
, i
,
313 sm_state
+ 0x7fa8 + i
* 4) & 0xffff,
314 x86_ldl_phys(cs
, sm_state
+ offset
+ 8),
315 x86_ldl_phys(cs
, sm_state
+ offset
+ 4),
317 sm_state
+ offset
) & 0xf0ff) << 8);
319 cpu_x86_update_cr4(env
, x86_ldl_phys(cs
, sm_state
+ 0x7f14));
321 val
= x86_ldl_phys(cs
, sm_state
+ 0x7efc); /* revision ID */
323 env
->smbase
= x86_ldl_phys(cs
, sm_state
+ 0x7ef8);
326 if ((env
->hflags2
& HF2_SMM_INSIDE_NMI_MASK
) == 0) {
327 env
->hflags2
&= ~HF2_NMI_MASK
;
329 env
->hflags2
&= ~HF2_SMM_INSIDE_NMI_MASK
;
330 env
->hflags
&= ~HF_SMM_MASK
;
333 qemu_log_mask(CPU_LOG_INT
, "SMM: after RSM\n");
334 log_cpu_state_mask(CPU_LOG_INT
, CPU(cpu
), CPU_DUMP_CCOP
);
337 #endif /* !CONFIG_USER_ONLY */