VirtualBox

source: vbox/trunk/include/VBox/vmm/nem.h@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 3 years ago

scm --update-copyright-year

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 10.8 KB
Line 
1/** @file
2 * NEM - The Native Execution Manager.
3 */
4
5/*
6 * Copyright (C) 2018-2022 Oracle Corporation
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
26#ifndef VBOX_INCLUDED_vmm_nem_h
27#define VBOX_INCLUDED_vmm_nem_h
28#ifndef RT_WITHOUT_PRAGMA_ONCE
29# pragma once
30#endif
31
32#include <VBox/types.h>
33#include <VBox/vmm/vmapi.h>
34#include <VBox/vmm/pgm.h>
35
36
37RT_C_DECLS_BEGIN
38
39/** @defgroup grp_nem The Native Execution Manager API
40 * @ingroup grp_vmm
41 * @{
42 */
43
44/** @defgroup grp_nem_r3 The NEM ring-3 Context API
45 * @{
46 */
47VMMR3_INT_DECL(int) NEMR3InitConfig(PVM pVM);
48VMMR3_INT_DECL(int) NEMR3Init(PVM pVM, bool fFallback, bool fForced);
49VMMR3_INT_DECL(int) NEMR3InitAfterCPUM(PVM pVM);
50#ifdef IN_RING3
51VMMR3_INT_DECL(int) NEMR3InitCompleted(PVM pVM, VMINITCOMPLETED enmWhat);
52#endif
53VMMR3_INT_DECL(int) NEMR3Term(PVM pVM);
54VMMR3DECL(bool) NEMR3IsEnabled(PUVM pVM);
55VMMR3_INT_DECL(bool) NEMR3NeedSpecialTscMode(PVM pVM);
56VMMR3_INT_DECL(void) NEMR3Reset(PVM pVM);
57VMMR3_INT_DECL(void) NEMR3ResetCpu(PVMCPU pVCpu, bool fInitIpi);
58VMMR3DECL(const char *) NEMR3GetExitName(uint32_t uExit);
59VMMR3_INT_DECL(VBOXSTRICTRC) NEMR3RunGC(PVM pVM, PVMCPU pVCpu);
60VMMR3_INT_DECL(bool) NEMR3CanExecuteGuest(PVM pVM, PVMCPU pVCpu);
61VMMR3_INT_DECL(bool) NEMR3SetSingleInstruction(PVM pVM, PVMCPU pVCpu, bool fEnable);
62VMMR3_INT_DECL(void) NEMR3NotifyFF(PVM pVM, PVMCPU pVCpu, uint32_t fFlags);
63
64/**
65 * Checks if dirty page tracking for MMIO2 ranges is supported.
66 *
67 * If it is, PGM will not install a physical write access handler for the MMIO2
68 * region and instead just forward dirty bit queries NEMR3QueryMmio2DirtyBits.
69 * The enable/disable control of the tracking will be ignored, and PGM will
70 * always set NEM_NOTIFY_PHYS_MMIO_EX_F_TRACK_DIRTY_PAGES for such ranges.
71 *
72 * @retval true if supported.
73 * @retval false if not.
74 * @param pVM The cross context VM structure.
75 */
76VMMR3_INT_DECL(bool) NEMR3IsMmio2DirtyPageTrackingSupported(PVM pVM);
77
78/**
79 * Worker for PGMR3PhysMmio2QueryAndResetDirtyBitmap.
80 *
81 * @returns VBox status code.
82 * @param pVM The cross context VM structure.
83 * @param GCPhys The address of the MMIO2 range.
84 * @param cb The size of the MMIO2 range.
85 * @param uNemRange The NEM internal range number.
86 * @param pvBitmap The output bitmap. Must be 8-byte aligned. Ignored
87 * when @a cbBitmap is zero.
88 * @param cbBitmap The size of the bitmap. Must be the size of the whole
89 * MMIO2 range, rounded up to the nearest 8 bytes.
90 * When zero only a reset is done.
91 */
92VMMR3_INT_DECL(int) NEMR3PhysMmio2QueryAndResetDirtyBitmap(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, uint32_t uNemRange,
93 void *pvBitmap, size_t cbBitmap);
94
95VMMR3_INT_DECL(int) NEMR3NotifyPhysRamRegister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, void *pvR3,
96 uint8_t *pu2State, uint32_t *puNemRange);
97VMMR3_INT_DECL(int) NEMR3NotifyPhysMmioExMapEarly(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, uint32_t fFlags,
98 void *pvRam, void *pvMmio2, uint8_t *pu2State, uint32_t *puNemRange);
99VMMR3_INT_DECL(int) NEMR3NotifyPhysMmioExMapLate(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, uint32_t fFlags,
100 void *pvRam, void *pvMmio2, uint32_t *puNemRange);
101VMMR3_INT_DECL(int) NEMR3NotifyPhysMmioExUnmap(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, uint32_t fFlags,
102 void *pvRam, void *pvMmio2, uint8_t *pu2State, uint32_t *puNemRange);
103/** @name Flags for NEMR3NotifyPhysMmioExMap and NEMR3NotifyPhysMmioExUnmap.
104 * @{ */
105/** Set if the range is replacing RAM rather that unused space. */
106#define NEM_NOTIFY_PHYS_MMIO_EX_F_REPLACE RT_BIT(0)
107/** Set if it's MMIO2 being mapped or unmapped. */
108#define NEM_NOTIFY_PHYS_MMIO_EX_F_MMIO2 RT_BIT(1)
109/** Set if MMIO2 and dirty page tracking is configured. */
110#define NEM_NOTIFY_PHYS_MMIO_EX_F_TRACK_DIRTY_PAGES RT_BIT(2)
111/** @} */
112
113/**
114 * Called very early during ROM registration, basically so an existing RAM range
115 * can be adjusted if desired.
116 *
117 * It will be succeeded by a number of NEMHCNotifyPhysPageProtChanged()
118 * calls and finally a call to NEMR3NotifyPhysRomRegisterLate().
119 *
120 * @returns VBox status code
121 * @param pVM The cross context VM structure.
122 * @param GCPhys The ROM address (page aligned).
123 * @param cb The size (page aligned).
124 * @param pvPages Pointer to the ROM (RAM) pages in simplified mode
125 * when NEM_NOTIFY_PHYS_ROM_F_REPLACE is set, otherwise
126 * NULL.
127 * @param fFlags NEM_NOTIFY_PHYS_ROM_F_XXX.
128 * @param pu2State New page state or UINT8_MAX to leave as-is.
129 * @param puNemRange Access to the relevant PGMRAMRANGE::uNemRange field.
130 */
131VMMR3_INT_DECL(int) NEMR3NotifyPhysRomRegisterEarly(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, void *pvPages,
132 uint32_t fFlags, uint8_t *pu2State, uint32_t *puNemRange);
133
134/**
135 * Called after the ROM range has been fully completed.
136 *
137 * This will be preceeded by a NEMR3NotifyPhysRomRegisterEarly() call as well a
138 * number of NEMHCNotifyPhysPageProtChanged calls.
139 *
140 * @returns VBox status code
141 * @param pVM The cross context VM structure.
142 * @param GCPhys The ROM address (page aligned).
143 * @param cb The size (page aligned).
144 * @param pvPages Pointer to the ROM pages.
145 * @param fFlags NEM_NOTIFY_PHYS_ROM_F_XXX.
146 * @param pu2State Where to return the new NEM page state, UINT8_MAX
147 * for unchanged.
148 * @param puNemRange Access to the relevant PGMRAMRANGE::uNemRange field.
149 */
150VMMR3_INT_DECL(int) NEMR3NotifyPhysRomRegisterLate(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, void *pvPages,
151 uint32_t fFlags, uint8_t *pu2State, uint32_t *puNemRange);
152
153/** @name Flags for NEMR3NotifyPhysRomRegisterEarly and NEMR3NotifyPhysRomRegisterLate.
154 * @{ */
155/** Set if the range is replacing RAM rather that unused space. */
156#define NEM_NOTIFY_PHYS_ROM_F_REPLACE RT_BIT(1)
157/** Set if it's MMIO2 being mapped or unmapped. */
158#define NEM_NOTIFY_PHYS_ROM_F_SHADOW RT_BIT(2)
159/** @} */
160
161VMMR3_INT_DECL(void) NEMR3NotifySetA20(PVMCPU pVCpu, bool fEnabled);
162/** @} */
163
164
165/** @defgroup grp_nem_r0 The NEM ring-0 Context API
166 * @{ */
167VMMR0_INT_DECL(int) NEMR0Init(void);
168VMMR0_INT_DECL(void) NEMR0Term(void);
169VMMR0_INT_DECL(int) NEMR0InitVM(PGVM pGVM);
170VMMR0_INT_DECL(int) NEMR0InitVMPart2(PGVM pGVM);
171VMMR0_INT_DECL(void) NEMR0CleanupVM(PGVM pGVM);
172VMMR0_INT_DECL(int) NEMR0MapPages(PGVM pGVM, VMCPUID idCpu);
173VMMR0_INT_DECL(int) NEMR0UnmapPages(PGVM pGVM, VMCPUID idCpu);
174VMMR0_INT_DECL(int) NEMR0ExportState(PGVM pGVM, VMCPUID idCpu);
175VMMR0_INT_DECL(int) NEMR0ImportState(PGVM pGVM, VMCPUID idCpu, uint64_t fWhat);
176VMMR0_INT_DECL(int) NEMR0QueryCpuTick(PGVM pGVM, VMCPUID idCpu);
177VMMR0_INT_DECL(int) NEMR0ResumeCpuTickOnAll(PGVM pGVM, VMCPUID idCpu, uint64_t uPausedTscValue);
178VMMR0_INT_DECL(VBOXSTRICTRC) NEMR0RunGuestCode(PGVM pGVM, VMCPUID idCpu);
179VMMR0_INT_DECL(int) NEMR0UpdateStatistics(PGVM pGVM, VMCPUID idCpu);
180VMMR0_INT_DECL(int) NEMR0DoExperiment(PGVM pGVM, VMCPUID idCpu, uint64_t u64Arg);
181#ifdef RT_OS_WINDOWS
182VMMR0_INT_DECL(int) NEMR0WinGetPartitionId(PGVM pGVM, uintptr_t uHandle);
183#endif
184/** @} */
185
186
187/** @defgroup grp_nem_hc The NEM Host Context API
188 * @{
189 */
190VMM_INT_DECL(bool) NEMHCIsLongModeAllowed(PVMCC pVM);
191VMM_INT_DECL(uint32_t) NEMHCGetFeatures(PVMCC pVM);
192VMM_INT_DECL(int) NEMImportStateOnDemand(PVMCPUCC pVCpu, uint64_t fWhat);
193
194/** @name NEM_FEAT_F_XXX - Features supported by the NEM backend
195 * @{ */
196/** NEM backend uses nested paging for the guest. */
197#define NEM_FEAT_F_NESTED_PAGING RT_BIT(0)
198/** NEM backend uses full (unrestricted) guest execution. */
199#define NEM_FEAT_F_FULL_GST_EXEC RT_BIT(1)
200/** NEM backend offers an xsave/xrstor interface. */
201#define NEM_FEAT_F_XSAVE_XRSTOR RT_BIT(2)
202/** @} */
203
204VMM_INT_DECL(void) NEMHCNotifyHandlerPhysicalRegister(PVMCC pVM, PGMPHYSHANDLERKIND enmKind, RTGCPHYS GCPhys, RTGCPHYS cb);
205VMM_INT_DECL(void) NEMHCNotifyHandlerPhysicalDeregister(PVMCC pVM, PGMPHYSHANDLERKIND enmKind, RTGCPHYS GCPhys, RTGCPHYS cb,
206 RTR3PTR pvMemR3, uint8_t *pu2State);
207VMM_INT_DECL(void) NEMHCNotifyHandlerPhysicalModify(PVMCC pVM, PGMPHYSHANDLERKIND enmKind, RTGCPHYS GCPhysOld,
208 RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fRestoreAsRAM);
209
210VMM_INT_DECL(int) NEMHCNotifyPhysPageAllocated(PVMCC pVM, RTGCPHYS GCPhys, RTHCPHYS HCPhys, uint32_t fPageProt,
211 PGMPAGETYPE enmType, uint8_t *pu2State);
212VMM_INT_DECL(void) NEMHCNotifyPhysPageProtChanged(PVMCC pVM, RTGCPHYS GCPhys, RTHCPHYS HCPhys, RTR3PTR pvR3, uint32_t fPageProt,
213 PGMPAGETYPE enmType, uint8_t *pu2State);
214VMM_INT_DECL(void) NEMHCNotifyPhysPageChanged(PVMCC pVM, RTGCPHYS GCPhys, RTHCPHYS HCPhysPrev, RTHCPHYS HCPhysNew,
215 RTR3PTR pvNewR3, uint32_t fPageProt, PGMPAGETYPE enmType, uint8_t *pu2State);
216/** @name NEM_PAGE_PROT_XXX - Page protection
217 * @{ */
218#define NEM_PAGE_PROT_NONE UINT32_C(0) /**< All access causes VM exits. */
219#define NEM_PAGE_PROT_READ RT_BIT(0) /**< Read access. */
220#define NEM_PAGE_PROT_EXECUTE RT_BIT(1) /**< Execute access. */
221#define NEM_PAGE_PROT_WRITE RT_BIT(2) /**< write access. */
222/** @} */
223
224VMM_INT_DECL(int) NEMHCQueryCpuTick(PVMCPUCC pVCpu, uint64_t *pcTicks, uint32_t *puAux);
225VMM_INT_DECL(int) NEMHCResumeCpuTickOnAll(PVMCC pVM, PVMCPUCC pVCpu, uint64_t uPausedTscValue);
226
227/** @} */
228
229/** @} */
230RT_C_DECLS_END
231
232
233#endif /* !VBOX_INCLUDED_vmm_nem_h */
234
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