1 | /** @file
|
---|
2 | * HWACCM - Intel/AMD VM Hardware Support Manager
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | *
|
---|
16 | * The contents of this file may alternatively be used under the terms
|
---|
17 | * of the Common Development and Distribution License Version 1.0
|
---|
18 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
19 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
20 | * CDDL are applicable instead of those of the GPL.
|
---|
21 | *
|
---|
22 | * You may elect to license modified versions of this file under the
|
---|
23 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
24 | *
|
---|
25 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
26 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
27 | * additional information or have any questions.
|
---|
28 | */
|
---|
29 |
|
---|
30 | #ifndef ___VBox_hwaccm_h
|
---|
31 | #define ___VBox_hwaccm_h
|
---|
32 |
|
---|
33 | #include <VBox/cdefs.h>
|
---|
34 | #include <VBox/types.h>
|
---|
35 | #include <VBox/pgm.h>
|
---|
36 | #include <VBox/cpum.h>
|
---|
37 | #include <iprt/mp.h>
|
---|
38 |
|
---|
39 |
|
---|
40 | /** @defgroup grp_hwaccm The VM Hardware Manager API
|
---|
41 | * @{
|
---|
42 | */
|
---|
43 |
|
---|
44 | /**
|
---|
45 | * HWACCM state
|
---|
46 | */
|
---|
47 | typedef enum HWACCMSTATE
|
---|
48 | {
|
---|
49 | /* Not yet set */
|
---|
50 | HWACCMSTATE_UNINITIALIZED = 0,
|
---|
51 | /* Enabled */
|
---|
52 | HWACCMSTATE_ENABLED,
|
---|
53 | /* Disabled */
|
---|
54 | HWACCMSTATE_DISABLED,
|
---|
55 | /** The usual 32-bit hack. */
|
---|
56 | HWACCMSTATE_32BIT_HACK = 0x7fffffff
|
---|
57 | } HWACCMSTATE;
|
---|
58 |
|
---|
59 | __BEGIN_DECLS
|
---|
60 |
|
---|
61 | /**
|
---|
62 | * Query HWACCM state (enabled/disabled)
|
---|
63 | *
|
---|
64 | * @returns 0 - disabled, 1 - enabled
|
---|
65 | * @param pVM The VM to operate on.
|
---|
66 | */
|
---|
67 | #define HWACCMIsEnabled(pVM) ((pVM)->fHWACCMEnabled)
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * Check if the current CPU state is valid for emulating IO blocks in the recompiler
|
---|
71 | *
|
---|
72 | * @returns boolean
|
---|
73 | * @param pCtx CPU context
|
---|
74 | */
|
---|
75 | #define HWACCMCanEmulateIoBlock(pVCpu) (!CPUMIsGuestInPagedProtectedMode(pVCpu))
|
---|
76 | #define HWACCMCanEmulateIoBlockEx(pCtx) (!CPUMIsGuestInPagedProtectedModeEx(pCtx))
|
---|
77 |
|
---|
78 | VMMDECL(int) HWACCMInvalidatePage(PVM pVM, RTGCPTR GCVirt);
|
---|
79 | VMMDECL(bool) HWACCMHasPendingIrq(PVM pVM);
|
---|
80 |
|
---|
81 | #ifndef IN_RC
|
---|
82 | VMMDECL(int) HWACCMFlushTLB(PVM pVM);
|
---|
83 | VMMDECL(int) HWACCMInvalidatePhysPage(PVM pVM, RTGCPHYS GCPhys);
|
---|
84 | VMMDECL(bool) HWACCMIsNestedPagingActive(PVM pVM);
|
---|
85 | VMMDECL(PGMMODE) HWACCMGetShwPagingMode(PVM pVM);
|
---|
86 | #else
|
---|
87 | /* Nop in GC */
|
---|
88 | # define HWACCMFlushTLB(pVM) do { } while (0)
|
---|
89 | # define HWACCMIsNestedPagingActive(pVM) false
|
---|
90 | #endif
|
---|
91 |
|
---|
92 | #ifdef IN_RING0
|
---|
93 | /** @defgroup grp_hwaccm_r0 The VM Hardware Manager API
|
---|
94 | * @ingroup grp_hwaccm
|
---|
95 | * @{
|
---|
96 | */
|
---|
97 | VMMR0DECL(int) HWACCMR0Init(void);
|
---|
98 | VMMR0DECL(int) HWACCMR0Term(void);
|
---|
99 | VMMR0DECL(int) HWACCMR0InitVM(PVM pVM);
|
---|
100 | VMMR0DECL(int) HWACCMR0TermVM(PVM pVM);
|
---|
101 | VMMR0DECL(int) HWACCMR0EnableAllCpus(PVM pVM);
|
---|
102 | VMMR0DECL(int) HWACCMR0EnterSwitcher(PVM pVM, bool *pfVTxDisabled);
|
---|
103 | VMMR0DECL(int) HWACCMR0LeaveSwitcher(PVM pVM, bool fVTxDisabled);
|
---|
104 |
|
---|
105 | VMMR0DECL(PVMCPU) HWACCMR0GetVMCPU(PVM pVM);
|
---|
106 | VMMR0DECL(VMCPUID) HWACCMR0GetVMCPUId(PVM pVM);
|
---|
107 |
|
---|
108 | /** @} */
|
---|
109 | #endif /* IN_RING0 */
|
---|
110 |
|
---|
111 |
|
---|
112 | #ifdef IN_RING3
|
---|
113 | /** @defgroup grp_hwaccm_r3 The VM Hardware Manager API
|
---|
114 | * @ingroup grp_hwaccm
|
---|
115 | * @{
|
---|
116 | */
|
---|
117 | VMMR3DECL(bool) HWACCMR3IsEventPending(PVM pVM);
|
---|
118 | VMMR3DECL(int) HWACCMR3Init(PVM pVM);
|
---|
119 | VMMR3DECL(int) HWACCMR3InitCPU(PVM pVM);
|
---|
120 | VMMR3DECL(int) HWACCMR3InitFinalizeR0(PVM pVM);
|
---|
121 | VMMR3DECL(void) HWACCMR3Relocate(PVM pVM);
|
---|
122 | VMMR3DECL(int) HWACCMR3Term(PVM pVM);
|
---|
123 | VMMR3DECL(int) HWACCMR3TermCPU(PVM pVM);
|
---|
124 | VMMR3DECL(void) HWACCMR3Reset(PVM pVM);
|
---|
125 | VMMR3DECL(void) HWACCMR3CheckError(PVM pVM, int iStatusCode);
|
---|
126 | VMMR3DECL(bool) HWACCMR3CanExecuteGuest(PVM pVM, PCPUMCTX pCtx);
|
---|
127 | VMMR3DECL(void) HWACCMR3NotifyScheduled(PVMCPU pVCpu);
|
---|
128 | VMMR3DECL(void) HWACCMR3NotifyEmulated(PVMCPU pVCpu);
|
---|
129 | VMMR3DECL(bool) HWACCMR3IsActive(PVM pVM);
|
---|
130 | VMMR3DECL(bool) HWACCMR3IsNestedPagingActive(PVM pVM);
|
---|
131 | VMMR3DECL(bool) HWACCMR3IsAllowed(PVM pVM);
|
---|
132 | VMMR3DECL(void) HWACCMR3PagingModeChanged(PVM pVM, PVMCPU pVCpu, PGMMODE enmShadowMode, PGMMODE enmGuestMode);
|
---|
133 | VMMR3DECL(bool) HWACCMR3IsVPIDActive(PVM pVM);
|
---|
134 | VMMR3DECL(int) HWACCMR3InjectNMI(PVM pVM);
|
---|
135 | VMMR3DECL(int) HWACCMR3EmulateIoBlock(PVM pVM, PCPUMCTX pCtx);
|
---|
136 |
|
---|
137 | /** @} */
|
---|
138 | #endif /* IN_RING3 */
|
---|
139 |
|
---|
140 | #ifdef IN_RING0
|
---|
141 | /** @addtogroup grp_hwaccm_r0
|
---|
142 | * @{
|
---|
143 | */
|
---|
144 | VMMR0DECL(int) HWACCMR0SetupVM(PVM pVM);
|
---|
145 | VMMR0DECL(int) HWACCMR0RunGuestCode(PVM pVM, PVMCPU pVCpu);
|
---|
146 | VMMR0DECL(int) HWACCMR0Enter(PVM pVM, PVMCPU pVCpu);
|
---|
147 | VMMR0DECL(int) HWACCMR0Leave(PVM pVM, PVMCPU pVCpu);
|
---|
148 | VMMR0DECL(int) HWACCMR0InvalidatePage(PVM pVM, PVMCPU pVCpu);
|
---|
149 | VMMR0DECL(int) HWACCMR0FlushTLB(PVM pVM);
|
---|
150 | VMMR0DECL(bool) HWACCMR0SuspendPending();
|
---|
151 |
|
---|
152 | # if HC_ARCH_BITS == 32 && defined(VBOX_WITH_64_BITS_GUESTS)
|
---|
153 | VMMR0DECL(int) HWACCMR0SaveFPUState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
|
---|
154 | VMMR0DECL(int) HWACCMR0SaveDebugState(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx);
|
---|
155 | VMMR0DECL(int) HWACCMR0TestSwitcher3264(PVM pVM);
|
---|
156 | # endif
|
---|
157 |
|
---|
158 | /** @} */
|
---|
159 | #endif /* IN_RING0 */
|
---|
160 |
|
---|
161 |
|
---|
162 | /** @} */
|
---|
163 | __END_DECLS
|
---|
164 |
|
---|
165 |
|
---|
166 | #endif
|
---|
167 |
|
---|