VirtualBox

source: vbox/trunk/src/VBox/VMM/HWACCMInternal.h@ 8170

Last change on this file since 8170 was 8155, checked in by vboxsync, 17 years ago

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 12.2 KB
Line 
1/* $Id: HWACCMInternal.h 8155 2008-04-18 15:16:47Z vboxsync $ */
2/** @file
3 * HWACCM - Internal header file.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ___HWACCMInternal_h
23#define ___HWACCMInternal_h
24
25#include <VBox/cdefs.h>
26#include <VBox/types.h>
27#include <VBox/em.h>
28#include <VBox/stam.h>
29#include <VBox/dis.h>
30#include <VBox/hwaccm.h>
31#include <VBox/pgm.h>
32#include <iprt/memobj.h>
33
34__BEGIN_DECLS
35
36
37/** @defgroup grp_hwaccm_int Internal
38 * @ingroup grp_hwaccm
39 * @internal
40 * @{
41 */
42
43
44/**
45 * Converts a HWACCM pointer into a VM pointer.
46 * @returns Pointer to the VM structure the EM is part of.
47 * @param pHWACCM Pointer to HWACCM instance data.
48 */
49#define HWACCM2VM(pHWACCM) ( (PVM)((char*)pHWACCM - pHWACCM->offVM) )
50
51/** Maximum number of exit reason statistics counters. */
52#define MAX_EXITREASON_STAT 0x100
53#define MASK_EXITREASON_STAT 0xff
54
55/** @name Changed flags
56 * These flags are used to keep track of which important registers that
57 * have been changed since last they were reset.
58 * @{
59 */
60#define HWACCM_CHANGED_GUEST_FPU RT_BIT(0)
61#define HWACCM_CHANGED_GUEST_CR0 RT_BIT(1)
62#define HWACCM_CHANGED_GUEST_CR3 RT_BIT(2)
63#define HWACCM_CHANGED_GUEST_CR4 RT_BIT(3)
64#define HWACCM_CHANGED_GUEST_GDTR RT_BIT(4)
65#define HWACCM_CHANGED_GUEST_IDTR RT_BIT(5)
66#define HWACCM_CHANGED_GUEST_LDTR RT_BIT(6)
67#define HWACCM_CHANGED_GUEST_TR RT_BIT(7)
68#define HWACCM_CHANGED_GUEST_SYSENTER_MSR RT_BIT(8)
69#define HWACCM_CHANGED_GUEST_SEGMENT_REGS RT_BIT(9)
70#define HWACCM_CHANGED_GUEST_DEBUG RT_BIT(10)
71#define HWACCM_CHANGED_HOST_CONTEXT RT_BIT(11)
72
73#define HWACCM_CHANGED_ALL ( HWACCM_CHANGED_GUEST_SEGMENT_REGS \
74 | HWACCM_CHANGED_GUEST_CR0 \
75 | HWACCM_CHANGED_GUEST_CR3 \
76 | HWACCM_CHANGED_GUEST_CR4 \
77 | HWACCM_CHANGED_GUEST_GDTR \
78 | HWACCM_CHANGED_GUEST_IDTR \
79 | HWACCM_CHANGED_GUEST_LDTR \
80 | HWACCM_CHANGED_GUEST_TR \
81 | HWACCM_CHANGED_GUEST_SYSENTER_MSR \
82 | HWACCM_CHANGED_GUEST_FPU \
83 | HWACCM_CHANGED_GUEST_DEBUG \
84 | HWACCM_CHANGED_HOST_CONTEXT)
85
86#define HWACCM_CHANGED_ALL_GUEST ( HWACCM_CHANGED_GUEST_SEGMENT_REGS \
87 | HWACCM_CHANGED_GUEST_CR0 \
88 | HWACCM_CHANGED_GUEST_CR3 \
89 | HWACCM_CHANGED_GUEST_CR4 \
90 | HWACCM_CHANGED_GUEST_GDTR \
91 | HWACCM_CHANGED_GUEST_IDTR \
92 | HWACCM_CHANGED_GUEST_LDTR \
93 | HWACCM_CHANGED_GUEST_TR \
94 | HWACCM_CHANGED_GUEST_SYSENTER_MSR \
95 | HWACCM_CHANGED_GUEST_DEBUG \
96 | HWACCM_CHANGED_GUEST_FPU)
97
98/** @} */
99
100/** @name Intercepted traps
101 * Traps that need to be intercepted so we can correctly dispatch them to the guest if required.
102 * Currently #NM and #PF only
103 */
104#ifdef VBOX_STRICT
105#define HWACCM_VMX_TRAP_MASK RT_BIT(0) | RT_BIT(7) | RT_BIT(14) | RT_BIT(6) | RT_BIT(11) | RT_BIT(12) | RT_BIT(13) | RT_BIT(16)
106#define HWACCM_SVM_TRAP_MASK HWACCM_VMX_TRAP_MASK
107#else
108#define HWACCM_VMX_TRAP_MASK RT_BIT(7) | RT_BIT(14)
109#define HWACCM_SVM_TRAP_MASK HWACCM_VMX_TRAP_MASK
110#endif
111/** @} */
112
113
114/** Maxium resume loops allowed in ring 0 (safety precaution) */
115#define HWACCM_MAX_RESUME_LOOPS 1024
116
117/** HWACCM SSM version
118 */
119#define HWACCM_SSM_VERSION 3
120
121/**
122 * HWACCM VM Instance data.
123 * Changes to this must checked against the padding of the cfgm union in VM!
124 */
125typedef struct HWACCM
126{
127 /** Offset to the VM structure.
128 * See HWACCM2VM(). */
129 RTUINT offVM;
130
131 /** Set when we've initialized VMX or SVM. */
132 bool fInitialized;
133 /** Set when we're using VMX/SVN at that moment. */
134 bool fActive;
135
136 /** Set when hardware acceleration is allowed. */
137 bool fAllowed;
138
139 /** HWACCM_CHANGED_* flags. */
140 uint32_t fContextUseFlags;
141
142 /** Old style FPU reporting trap mask override performed (optimization) */
143 uint32_t fFPUOldStyleOverride;
144
145 struct
146 {
147 /** Set by the ring-0 driver to indicate VMX is supported by the CPU. */
148 bool fSupported;
149
150 /** Set when we've enabled VMX. */
151 bool fEnabled;
152
153 /** Set if we can use VMXResume to execute guest code. */
154 bool fResumeVM;
155
156 /** R0 memory object for the VM control structure (VMCS). */
157 RTR0MEMOBJ pMemObjVMCS;
158 /** Physical address of the VM control structure (VMCS). */
159 RTHCPHYS pVMCSPhys;
160 /** Virtual address of the VM control structure (VMCS). */
161 R0PTRTYPE(void *) pVMCS;
162
163 /** R0 memory object for the TSS page used for real mode emulation. */
164 RTR0MEMOBJ pMemObjRealModeTSS;
165 /** Physical address of the TSS page used for real mode emulation. */
166 RTHCPHYS pRealModeTSSPhys;
167 /** Virtual address of the TSS page used for real mode emulation. */
168 R0PTRTYPE(PVBOXTSS) pRealModeTSS;
169
170 /** Host CR4 value (set by ring-0 VMX init) */
171 uint64_t hostCR4;
172
173 /** Current VMX_VMCS_CTRL_PROC_EXEC_CONTROLS. */
174 uint64_t proc_ctls;
175
176 /** Current CR0 mask. */
177 uint64_t cr0_mask;
178 /** Current CR4 mask. */
179 uint64_t cr4_mask;
180
181 /** VMX MSR values */
182 struct
183 {
184 uint64_t feature_ctrl;
185 uint64_t vmx_basic_info;
186 uint64_t vmx_pin_ctls;
187 uint64_t vmx_proc_ctls;
188 uint64_t vmx_exit;
189 uint64_t vmx_entry;
190 uint64_t vmx_misc;
191 uint64_t vmx_cr0_fixed0;
192 uint64_t vmx_cr0_fixed1;
193 uint64_t vmx_cr4_fixed0;
194 uint64_t vmx_cr4_fixed1;
195 uint64_t vmx_vmcs_enum;
196 } msr;
197
198 /* Last instruction error */
199 uint32_t ulLastInstrError;
200 } vmx;
201
202 struct
203 {
204 /** Set by the ring-0 driver to indicate SVM is supported by the CPU. */
205 bool fSupported;
206
207 /** Set when we've enabled SVM. */
208 bool fEnabled;
209
210 /** Set if we don't have to flush the TLB on VM entry. */
211 bool fResumeVM;
212
213 /** R0 memory object for the VM control block (VMCB). */
214 RTR0MEMOBJ pMemObjVMCB;
215 /** Physical address of the VM control block (VMCB). */
216 RTHCPHYS pVMCBPhys;
217 /** Virtual address of the VM control block (VMCB). */
218 R0PTRTYPE(void *) pVMCB;
219
220 /** R0 memory object for the host VM control block (VMCB). */
221 RTR0MEMOBJ pMemObjVMCBHost;
222 /** Physical address of the host VM control block (VMCB). */
223 RTHCPHYS pVMCBHostPhys;
224 /** Virtual address of the host VM control block (VMCB). */
225 R0PTRTYPE(void *) pVMCBHost;
226
227 /** R0 memory object for the IO bitmap (12kb). */
228 RTR0MEMOBJ pMemObjIOBitmap;
229 /** Physical address of the IO bitmap (12kb). */
230 RTHCPHYS pIOBitmapPhys;
231 /** Virtual address of the IO bitmap. */
232 R0PTRTYPE(void *) pIOBitmap;
233
234 /** R0 memory object for the MSR bitmap (8kb). */
235 RTR0MEMOBJ pMemObjMSRBitmap;
236 /** Physical address of the MSR bitmap (8kb). */
237 RTHCPHYS pMSRBitmapPhys;
238 /** Virtual address of the MSR bitmap. */
239 R0PTRTYPE(void *) pMSRBitmap;
240
241 /** SVM revision. */
242 uint32_t u32Rev;
243
244 /** Maximum ASID allowed. */
245 uint32_t u32MaxASID;
246 } svm;
247
248 struct
249 {
250 uint32_t u32AMDFeatureECX;
251 uint32_t u32AMDFeatureEDX;
252 } cpuid;
253
254 /* Event injection state. */
255 struct
256 {
257 uint32_t fPending;
258 uint32_t errCode;
259 uint64_t intInfo;
260 } Event;
261
262 /** Saved error from detection */
263 int32_t lLastError;
264
265 /** HWACCMR0Init was run */
266 bool fHWACCMR0Init;
267
268 /** Currenty shadow paging mode. */
269 PGMMODE enmShadowMode;
270
271 STAMPROFILEADV StatEntry;
272 STAMPROFILEADV StatExit;
273 STAMPROFILEADV StatInGC;
274
275 STAMCOUNTER StatIntInject;
276
277 STAMCOUNTER StatExitShadowNM;
278 STAMCOUNTER StatExitGuestNM;
279 STAMCOUNTER StatExitShadowPF;
280 STAMCOUNTER StatExitGuestPF;
281 STAMCOUNTER StatExitGuestUD;
282 STAMCOUNTER StatExitGuestSS;
283 STAMCOUNTER StatExitGuestNP;
284 STAMCOUNTER StatExitGuestGP;
285 STAMCOUNTER StatExitGuestDE;
286 STAMCOUNTER StatExitGuestMF;
287 STAMCOUNTER StatExitInvpg;
288 STAMCOUNTER StatExitInvd;
289 STAMCOUNTER StatExitCpuid;
290 STAMCOUNTER StatExitRdtsc;
291 STAMCOUNTER StatExitCRxWrite;
292 STAMCOUNTER StatExitCRxRead;
293 STAMCOUNTER StatExitDRxWrite;
294 STAMCOUNTER StatExitDRxRead;
295 STAMCOUNTER StatExitCLTS;
296 STAMCOUNTER StatExitLMSW;
297 STAMCOUNTER StatExitIOWrite;
298 STAMCOUNTER StatExitIORead;
299 STAMCOUNTER StatExitIOStringWrite;
300 STAMCOUNTER StatExitIOStringRead;
301 STAMCOUNTER StatExitIrqWindow;
302 STAMCOUNTER StatExitMaxResume;
303 STAMCOUNTER StatIntReinject;
304 STAMCOUNTER StatPendingHostIrq;
305
306 STAMCOUNTER StatSwitchGuestIrq;
307 STAMCOUNTER StatSwitchToR3;
308
309 R3PTRTYPE(PSTAMCOUNTER) pStatExitReason;
310 R0PTRTYPE(PSTAMCOUNTER) pStatExitReasonR0;
311} HWACCM;
312/** Pointer to HWACCM VM instance data. */
313typedef HWACCM *PHWACCM;
314
315
316#ifdef IN_RING0
317
318#ifdef VBOX_STRICT
319HWACCMR0DECL(void) HWACCMDumpRegs(PCPUMCTX pCtx);
320HWACCMR0DECL(void) HWACCMR0DumpDescriptor(PX86DESCHC Desc, RTSEL Sel, const char *pszMsg);
321#else
322#define HWACCMDumpRegs(a) do { } while (0)
323#define HWACCMR0DumpDescriptor(a, b, c) do { } while (0)
324#endif
325
326#endif
327
328/** @} */
329
330__END_DECLS
331
332#endif
333
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette