VirtualBox

source: vbox/trunk/include/VBox/pgm.h@ 8155

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

The Big Sun Rebranding Header Change

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 25.5 KB
Line 
1/** @file
2 * PGM - Page Monitor/Monitor.
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_pgm_h
31#define ___VBox_pgm_h
32
33#include <VBox/cdefs.h>
34#include <VBox/types.h>
35#include <VBox/sup.h>
36#include <VBox/vmapi.h>
37#include <VBox/x86.h>
38
39__BEGIN_DECLS
40
41/** @defgroup grp_pgm The Page Monitor/Manager API
42 * @{
43 */
44
45/** Chunk size for dynamically allocated physical memory. */
46#define PGM_DYNAMIC_CHUNK_SIZE (1*1024*1024)
47/** Shift GC physical address by 20 bits to get the offset into the pvHCChunkHC array. */
48#define PGM_DYNAMIC_CHUNK_SHIFT 20
49/** Dynamic chunk offset mask. */
50#define PGM_DYNAMIC_CHUNK_OFFSET_MASK 0xfffff
51/** Dynamic chunk base mask. */
52#define PGM_DYNAMIC_CHUNK_BASE_MASK (~(RTGCPHYS)PGM_DYNAMIC_CHUNK_OFFSET_MASK)
53
54
55/** Page flags used for PGMHyperSetPageFlags
56 * @deprecated
57 * @{ */
58#define PGMPAGE_READ 1
59#define PGMPAGE_WRITE 2
60#define PGMPAGE_USER 4
61#define PGMPAGE_SYSTEM 8
62#define PGMPAGE_NOTPRESENT 16
63/** @} */
64
65
66/**
67 * FNPGMRELOCATE callback mode.
68 */
69typedef enum PGMRELOCATECALL
70{
71 /** The callback is for checking if the suggested address is suitable. */
72 PGMRELOCATECALL_SUGGEST = 1,
73 /** The callback is for executing the relocation. */
74 PGMRELOCATECALL_RELOCATE
75} PGMRELOCATECALL;
76
77
78/**
79 * Callback function which will be called when PGM is trying to find
80 * a new location for the mapping.
81 *
82 * The callback is called in two modes, 1) the check mode and 2) the relocate mode.
83 * In 1) the callback should say if it objects to a suggested new location. If it
84 * accepts the new location, it is called again for doing it's relocation.
85 *
86 *
87 * @returns true if the location is ok.
88 * @returns false if another location should be found.
89 * @param GCPtrOld The old virtual address.
90 * @param GCPtrNew The new virtual address.
91 * @param enmMode Used to indicate the callback mode.
92 * @param pvUser User argument.
93 * @remark The return value is no a failure indicator, it's an acceptance
94 * indicator. Relocation can not fail!
95 */
96typedef DECLCALLBACK(bool) FNPGMRELOCATE(PVM pVM, RTGCPTR GCPtrOld, RTGCPTR GCPtrNew, PGMRELOCATECALL enmMode, void *pvUser);
97/** Pointer to a relocation callback function. */
98typedef FNPGMRELOCATE *PFNPGMRELOCATE;
99
100
101/**
102 * Physical page access handler type.
103 */
104typedef enum PGMPHYSHANDLERTYPE
105{
106 /** MMIO range. Pages are not present, all access is done in interpreter or recompiler. */
107 PGMPHYSHANDLERTYPE_MMIO = 1,
108 /** Handler all write access to a physical page range. */
109 PGMPHYSHANDLERTYPE_PHYSICAL_WRITE,
110 /** Handler all access to a physical page range. */
111 PGMPHYSHANDLERTYPE_PHYSICAL_ALL
112
113} PGMPHYSHANDLERTYPE;
114
115/**
116 * \#PF Handler callback for physical access handler ranges (MMIO among others) in GC.
117 *
118 * @returns VBox status code (appropriate for GC return).
119 * @param pVM VM Handle.
120 * @param uErrorCode CPU Error code.
121 * @param pRegFrame Trap register frame.
122 * NULL on DMA and other non CPU access.
123 * @param pvFault The fault address (cr2).
124 * @param GCPhysFault The GC physical address corresponding to pvFault.
125 * @param pvUser User argument.
126 */
127typedef DECLCALLBACK(int) FNPGMGCPHYSHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser);
128/** Pointer to PGM access callback. */
129typedef FNPGMGCPHYSHANDLER *PFNPGMGCPHYSHANDLER;
130
131/**
132 * \#PF Handler callback for physical access handler ranges (MMIO among others) in R0.
133 *
134 * @returns VBox status code (appropriate for GC return).
135 * @param pVM VM Handle.
136 * @param uErrorCode CPU Error code.
137 * @param pRegFrame Trap register frame.
138 * NULL on DMA and other non CPU access.
139 * @param pvFault The fault address (cr2).
140 * @param GCPhysFault The GC physical address corresponding to pvFault.
141 * @param pvUser User argument.
142 */
143typedef DECLCALLBACK(int) FNPGMR0PHYSHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPHYS GCPhysFault, void *pvUser);
144/** Pointer to PGM access callback. */
145typedef FNPGMR0PHYSHANDLER *PFNPGMR0PHYSHANDLER;
146
147/**
148 * Guest Access type
149 */
150typedef enum PGMACCESSTYPE
151{
152 /** Read access. */
153 PGMACCESSTYPE_READ = 1,
154 /** Write access. */
155 PGMACCESSTYPE_WRITE
156} PGMACCESSTYPE;
157
158/**
159 * \#PF Handler callback for physical access handler ranges (MMIO among others) in HC.
160 *
161 * The handler can not raise any faults, it's mainly for monitoring write access
162 * to certain pages.
163 *
164 * @returns VINF_SUCCESS if the handler have carried out the operation.
165 * @returns VINF_PGM_HANDLER_DO_DEFAULT if the caller should carry out the access operation.
166 * @param pVM VM Handle.
167 * @param GCPhys The physical address the guest is writing to.
168 * @param pvPhys The HC mapping of that address.
169 * @param pvBuf What the guest is reading/writing.
170 * @param cbBuf How much it's reading/writing.
171 * @param enmAccessType The access type.
172 * @param pvUser User argument.
173 */
174typedef DECLCALLBACK(int) FNPGMR3PHYSHANDLER(PVM pVM, RTGCPHYS GCPhys, void *pvPhys, void *pvBuf, size_t cbBuf, PGMACCESSTYPE enmAccessType, void *pvUser);
175/** Pointer to PGM access callback. */
176typedef FNPGMR3PHYSHANDLER *PFNPGMR3PHYSHANDLER;
177
178
179/**
180 * Virtual access handler type.
181 */
182typedef enum PGMVIRTHANDLERTYPE
183{
184 /** Write access handled. */
185 PGMVIRTHANDLERTYPE_WRITE = 1,
186 /** All access handled. */
187 PGMVIRTHANDLERTYPE_ALL,
188 /** Hypervisor write access handled.
189 * This is used to catch the guest trying to write to LDT, TSS and any other
190 * system structure which the brain dead intel guys let unprivilegde code find. */
191 PGMVIRTHANDLERTYPE_HYPERVISOR
192} PGMVIRTHANDLERTYPE;
193
194/**
195 * \#PF Handler callback for virtual access handler ranges.
196 *
197 * Important to realize that a physical page in a range can have aliases, and
198 * for ALL and WRITE handlers these will also trigger.
199 *
200 * @returns VBox status code (appropriate for GC return).
201 * @param pVM VM Handle.
202 * @param uErrorCode CPU Error code.
203 * @param pRegFrame Trap register frame.
204 * @param pvFault The fault address (cr2).
205 * @param pvRange The base address of the handled virtual range.
206 * @param offRange The offset of the access into this range.
207 * (If it's a EIP range this's the EIP, if not it's pvFault.)
208 */
209typedef DECLCALLBACK(int) FNPGMGCVIRTHANDLER(PVM pVM, RTGCUINT uErrorCode, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault, RTGCPTR pvRange, uintptr_t offRange);
210/** Pointer to PGM access callback. */
211typedef FNPGMGCVIRTHANDLER *PFNPGMGCVIRTHANDLER;
212
213/**
214 * \#PF Handler callback for virtual access handler ranges.
215 *
216 * Important to realize that a physical page in a range can have aliases, and
217 * for ALL and WRITE handlers these will also trigger.
218 *
219 * @returns VINF_SUCCESS if the handler have carried out the operation.
220 * @returns VINF_PGM_HANDLER_DO_DEFAULT if the caller should carry out the access operation.
221 * @param pVM VM Handle.
222 * @param GCPtr The virtual address the guest is writing to. (not correct if it's an alias!)
223 * @param pvPtr The HC mapping of that address.
224 * @param pvBuf What the guest is reading/writing.
225 * @param cbBuf How much it's reading/writing.
226 * @param enmAccessType The access type.
227 * @param pvUser User argument.
228 */
229typedef DECLCALLBACK(int) FNPGMHCVIRTHANDLER(PVM pVM, RTGCPTR GCPtr, void *pvPtr, void *pvBuf, size_t cbBuf, PGMACCESSTYPE enmAccessType, void *pvUser);
230/** Pointer to PGM access callback. */
231typedef FNPGMHCVIRTHANDLER *PFNPGMHCVIRTHANDLER;
232
233
234/**
235 * \#PF Handler callback for invalidation of virtual access handler ranges.
236 *
237 * @param pVM VM Handle.
238 * @param GCPtr The virtual address the guest has changed.
239 */
240typedef DECLCALLBACK(int) FNPGMHCVIRTINVALIDATE(PVM pVM, RTGCPTR GCPtr);
241/** Pointer to PGM invalidation callback. */
242typedef FNPGMHCVIRTINVALIDATE *PFNPGMHCVIRTINVALIDATE;
243
244/**
245 * Paging mode.
246 */
247typedef enum PGMMODE
248{
249 /** The usual invalid value. */
250 PGMMODE_INVALID = 0,
251 /** Real mode. */
252 PGMMODE_REAL,
253 /** Protected mode, no paging. */
254 PGMMODE_PROTECTED,
255 /** 32-bit paging. */
256 PGMMODE_32_BIT,
257 /** PAE paging. */
258 PGMMODE_PAE,
259 /** PAE paging with NX enabled. */
260 PGMMODE_PAE_NX,
261 /** 64-bit AMD paging (long mode). */
262 PGMMODE_AMD64,
263 /** 64-bit AMD paging (long mode) with NX enabled. */
264 PGMMODE_AMD64_NX,
265 /** The max number of modes */
266 PGMMODE_MAX,
267 /** 32bit hackishness. */
268 PGMMODE_32BIT_HACK = 0x7fffffff
269} PGMMODE;
270
271/**
272 * The current ROM page protection.
273 */
274typedef enum PGMROMPROT
275{
276 /** The customary invalid value. */
277 PGMROMPROT_INVALID = 0,
278 /** Read from the virgin ROM page, ignore writes.
279 * Map the virgin page, use write access handler to ignore writes. */
280 PGMROMPROT_READ_ROM_WRITE_IGNORE,
281 /** Read from the virgin ROM page, write to the shadow RAM.
282 * Map the virgin page, use write access handler change the RAM. */
283 PGMROMPROT_READ_ROM_WRITE_RAM,
284 /** Read from the shadow ROM page, ignore writes.
285 * Map the shadow page read-only, use write access handler to ignore writes. */
286 PGMROMPROT_READ_RAM_WRITE_IGNORE,
287 /** Read from the shadow ROM page, ignore writes.
288 * Map the shadow page read-write, disabled write access handler. */
289 PGMROMPROT_READ_RAM_WRITE_RAM,
290 /** The end of valid values. */
291 PGMROMPROT_END,
292 /** The usual 32-bit type size hack. */
293 PGMROMPROT_32BIT_HACK = 0x7fffffff
294} PGMROMPROT;
295
296/**
297 * Is the ROM mapped (true) or is the shadow RAM mapped (false).
298 *
299 * @returns boolean.
300 * @param enmProt The PGMROMPROT value, must be valid.
301 */
302#define PGMROMPROT_IS_ROM(enmProt) \
303 ( (enmProt) == PGMROMPROT_READ_ROM_WRITE_IGNORE \
304 || (enmProt) == PGMROMPROT_READ_ROM_WRITE_RAM )
305
306
307PGMDECL(uint32_t) PGMGetHyperCR3(PVM pVM);
308PGMDECL(uint32_t) PGMGetHyper32BitCR3(PVM pVM);
309PGMDECL(uint32_t) PGMGetHyperPaeCR3(PVM pVM);
310PGMDECL(uint32_t) PGMGetHyperAmd64CR3(PVM pVM);
311PGMDECL(uint32_t) PGMGetInterHCCR3(PVM pVM);
312PGMDECL(uint32_t) PGMGetInterGCCR3(PVM pVM);
313PGMDECL(uint32_t) PGMGetInter32BitCR3(PVM pVM);
314PGMDECL(uint32_t) PGMGetInterPaeCR3(PVM pVM);
315PGMDECL(uint32_t) PGMGetInterAmd64CR3(PVM pVM);
316PGMDECL(int) PGMTrap0eHandler(PVM pVM, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault);
317PGMDECL(int) PGMPrefetchPage(PVM pVM, RTGCPTR GCPtrPage);
318PGMDECL(int) PGMVerifyAccess(PVM pVM, RTGCUINTPTR Addr, uint32_t cbSize, uint32_t fAccess);
319PGMDECL(int) PGMIsValidAccess(PVM pVM, RTGCUINTPTR Addr, uint32_t cbSize, uint32_t fAccess);
320PGMDECL(int) PGMInterpretInstruction(PVM pVM, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault);
321PGMDECL(int) PGMMap(PVM pVM, RTGCUINTPTR GCPtr, RTHCPHYS HCPhys, uint32_t cbPages, unsigned fFlags);
322PGMDECL(int) PGMMapSetPage(PVM pVM, RTGCPTR GCPtr, uint64_t cb, uint64_t fFlags);
323PGMDECL(int) PGMMapModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
324PGMDECL(int) PGMShwGetPage(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTHCPHYS pHCPhys);
325PGMDECL(int) PGMShwSetPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags);
326PGMDECL(int) PGMShwModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
327PGMDECL(int) PGMGstGetPage(PVM pVM, RTGCPTR GCPtr, uint64_t *pfFlags, PRTGCPHYS pGCPhys);
328PGMDECL(bool) PGMGstIsPagePresent(PVM pVM, RTGCPTR GCPtr);
329PGMDECL(int) PGMGstSetPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags);
330PGMDECL(int) PGMGstModifyPage(PVM pVM, RTGCPTR GCPtr, size_t cb, uint64_t fFlags, uint64_t fMask);
331PGMDECL(int) PGMFlushTLB(PVM pVM, uint64_t cr3, bool fGlobal);
332PGMDECL(int) PGMSyncCR3(PVM pVM, uint64_t cr0, uint64_t cr3, uint64_t cr4, bool fGlobal);
333PGMDECL(int) PGMChangeMode(PVM pVM, uint64_t cr0, uint64_t cr4, uint64_t efer);
334PGMDECL(PGMMODE) PGMGetGuestMode(PVM pVM);
335PGMDECL(PGMMODE) PGMGetShadowMode(PVM pVM);
336PGMDECL(PGMMODE) PGMGetHostMode(PVM pVM);
337PGMDECL(const char *) PGMGetModeName(PGMMODE enmMode);
338PGMDECL(int) PGMHandlerPhysicalRegisterEx(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast,
339 R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTR3PTR pvUserR3,
340 R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTR0PTR pvUserR0,
341 GCPTRTYPE(PFNPGMGCPHYSHANDLER) pfnHandlerGC, RTGCPTR pvUserGC,
342 R3PTRTYPE(const char *) pszDesc);
343PGMDECL(int) PGMHandlerPhysicalModify(PVM pVM, RTGCPHYS GCPhysCurrent, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast);
344PGMDECL(int) PGMHandlerPhysicalDeregister(PVM pVM, RTGCPHYS GCPhys);
345PGMDECL(int) PGMHandlerPhysicalChangeCallbacks(PVM pVM, RTGCPHYS GCPhys,
346 R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTR3PTR pvUserR3,
347 R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTR0PTR pvUserR0,
348 GCPTRTYPE(PFNPGMGCPHYSHANDLER) pfnHandlerGC, RTGCPTR pvUserGC,
349 R3PTRTYPE(const char *) pszDesc);
350PGMDECL(int) PGMHandlerPhysicalSplit(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysSplit);
351PGMDECL(int) PGMHandlerPhysicalJoin(PVM pVM, RTGCPHYS GCPhys1, RTGCPHYS GCPhys2);
352PGMDECL(int) PGMHandlerPhysicalPageTempOff(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysPage);
353PGMDECL(int) PGMHandlerPhysicalReset(PVM pVM, RTGCPHYS GCPhys);
354PGMDECL(int) PGMHandlerPhysicalPageReset(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS GCPhysPage);
355PGMDECL(bool) PGMHandlerPhysicalIsRegistered(PVM pVM, RTGCPHYS GCPhys);
356PGMDECL(bool) PGMPhysIsA20Enabled(PVM pVM);
357PGMDECL(bool) PGMPhysIsGCPhysValid(PVM pVM, RTGCPHYS GCPhys);
358PGMDECL(bool) PGMPhysIsGCPhysNormal(PVM pVM, RTGCPHYS GCPhys);
359PGMDECL(int) PGMPhysGCPhys2HCPhys(PVM pVM, RTGCPHYS GCPhys, PRTHCPHYS pHCPhys);
360PGMDECL(int) PGMPhysGCPtr2GCPhys(PVM pVM, RTGCPTR GCPtr, PRTGCPHYS pGCPhys);
361PGMDECL(int) PGMPhysGCPtr2HCPhys(PVM pVM, RTGCPTR GCPtr, PRTHCPHYS pHCPhys);
362PDMDECL(void) PGMPhysInvalidatePageGCMapTLB(PVM pVM);
363PDMDECL(void) PGMPhysInvalidatePageR0MapTLB(PVM pVM);
364PDMDECL(void) PGMPhysInvalidatePageR3MapTLB(PVM pVM);
365
366/**
367 * Page mapping lock.
368 *
369 * @remarks This doesn't work in structures shared between
370 * ring-3, ring-0 and/or GC.
371 */
372typedef struct PGMPAGEMAPLOCK
373{
374 /** @todo see PGMPhysIsPageMappingLockValid for possibly incorrect assumptions */
375#ifdef IN_GC
376 /** Just a dummy for the time being. */
377 uint32_t u32Dummy;
378#else
379 /** Pointer to the PGMPAGE. */
380 void *pvPage;
381 /** Pointer to the PGMCHUNKR3MAP. */
382 void *pvMap;
383#endif
384} PGMPAGEMAPLOCK;
385/** Pointer to a page mapping lock. */
386typedef PGMPAGEMAPLOCK *PPGMPAGEMAPLOCK;
387
388PGMDECL(int) PGMPhysGCPhys2CCPtr(PVM pVM, RTGCPHYS GCPhys, void **ppv, PPGMPAGEMAPLOCK pLock);
389PGMDECL(int) PGMPhysGCPhys2CCPtrReadOnly(PVM pVM, RTGCPHYS GCPhys, void const **ppv, PPGMPAGEMAPLOCK pLock);
390PGMDECL(int) PGMPhysGCPtr2CCPtr(PVM pVM, RTGCPTR GCPtr, void **ppv, PPGMPAGEMAPLOCK pLock);
391PGMDECL(int) PGMPhysGCPtr2CCPtrReadOnly(PVM pVM, RTGCPTR GCPtr, void const **ppv, PPGMPAGEMAPLOCK pLock);
392PGMDECL(void) PGMPhysReleasePageMappingLock(PVM pVM, PPGMPAGEMAPLOCK pLock);
393
394/**
395 * Checks if the lock structure is valid
396 *
397 * @param pVM The VM handle.
398 * @param pLock The lock structure initialized by the mapping function.
399 */
400DECLINLINE(bool) PGMPhysIsPageMappingLockValid(PVM pVM, PPGMPAGEMAPLOCK pLock)
401{
402 /** @todo -> complete/change this */
403#ifdef IN_GC
404 return !!(pLock->u32Dummy);
405#else
406 return !!(pLock->pvPage);
407#endif
408}
409
410PGMDECL(int) PGMPhysGCPhys2HCPtr(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange, PRTHCPTR pHCPtr);
411PGMDECL(int) PGMPhysGCPtr2HCPtr(PVM pVM, RTGCPTR GCPtr, PRTHCPTR pHCPtr);
412PGMDECL(int) PGMPhysGCPtr2HCPtrByGstCR3(PVM pVM, RTGCPTR GCPtr, uint64_t cr3, unsigned fFlags, PRTHCPTR pHCPtr);
413PGMDECL(void) PGMPhysRead(PVM pVM, RTGCPHYS GCPhys, void *pvBuf, size_t cbRead);
414PGMDECL(void) PGMPhysWrite(PVM pVM, RTGCPHYS GCPhys, const void *pvBuf, size_t cbWrite);
415#ifndef IN_GC /* Only ring 0 & 3. */
416PGMDECL(int) PGMPhysReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb);
417PGMDECL(int) PGMPhysWriteGCPhys(PVM pVM, RTGCPHYS GCPhysDst, const void *pvSrc, size_t cb);
418PGMDECL(int) PGMPhysReadGCPtr(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
419PGMDECL(int) PGMPhysWriteGCPtr(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
420PGMDECL(int) PGMPhysReadGCPtrSafe(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
421PGMDECL(int) PGMPhysWriteGCPtrSafe(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
422PGMDECL(int) PGMPhysWriteGCPtrDirty(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
423PGMDECL(int) PGMInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
424#endif /* !IN_GC */
425PGMDECL(int) PGMPhysInterpretedRead(PVM pVM, PCPUMCTXCORE pCtxCore, void *pvDst, RTGCUINTPTR GCPtrSrc, size_t cb);
426#ifdef VBOX_STRICT
427PGMDECL(unsigned) PGMAssertHandlerAndFlagsInSync(PVM pVM);
428PGMDECL(unsigned) PGMAssertNoMappingConflicts(PVM pVM);
429PGMDECL(unsigned) PGMAssertCR3(PVM pVM, uint64_t cr3, uint64_t cr4);
430#endif /* VBOX_STRICT */
431
432
433#ifdef IN_GC
434/** @defgroup grp_pgm_gc The PGM Guest Context API
435 * @ingroup grp_pgm
436 * @{
437 */
438PGMGCDECL(int) PGMGCDynMapGCPage(PVM pVM, RTGCPHYS GCPhys, void **ppv);
439PGMGCDECL(int) PGMGCDynMapGCPageEx(PVM pVM, RTGCPHYS GCPhys, void **ppv);
440PGMGCDECL(int) PGMGCDynMapHCPage(PVM pVM, RTHCPHYS HCPhys, void **ppv);
441PGMGCDECL(int) PGMGCInvalidatePage(PVM pVM, RTGCPTR GCPtrPage);
442/** @} */
443#endif /* IN_GC */
444
445
446#ifdef IN_RING0
447/** @defgroup grp_pgm_r0 The PGM Host Context Ring-0 API
448 * @ingroup grp_pgm
449 * @{
450 */
451PGMR0DECL(int) PGMR0PhysAllocateHandyPages(PVM pVM);
452/** @} */
453#endif /* IN_RING0 */
454
455
456
457#ifdef IN_RING3
458/** @defgroup grp_pgm_r3 The PGM Host Context Ring-3 API
459 * @ingroup grp_pgm
460 * @{
461 */
462PGMR3DECL(int) PGMR3Init(PVM pVM);
463PGMR3DECL(int) PGMR3InitDynMap(PVM pVM);
464PGMR3DECL(int) PGMR3InitFinalize(PVM pVM);
465PGMR3DECL(void) PGMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
466PGMR3DECL(void) PGMR3Reset(PVM pVM);
467PGMR3DECL(int) PGMR3Term(PVM pVM);
468PDMR3DECL(int) PGMR3LockCall(PVM pVM);
469PGMR3DECL(int) PGMR3ChangeShwPDMappings(PVM pVM, bool fEnable);
470#ifndef VBOX_WITH_NEW_PHYS_CODE
471PGMR3DECL(int) PGM3PhysGrowRange(PVM pVM, PCRTGCPHYS GCPhys);
472#endif /* !VBOX_WITH_NEW_PHYS_CODE */
473PGMR3DECL(int) PGMR3PhysRegisterRam(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, const char *pszDesc);
474PDMR3DECL(int) PGMR3PhysMMIORegister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb,
475 R3PTRTYPE(PFNPGMR3PHYSHANDLER) pfnHandlerR3, RTR3PTR pvUserR3,
476 R0PTRTYPE(PFNPGMR0PHYSHANDLER) pfnHandlerR0, RTR0PTR pvUserR0,
477 GCPTRTYPE(PFNPGMGCPHYSHANDLER) pfnHandlerGC, RTGCPTR pvUserGC,
478 R3PTRTYPE(const char *) pszDesc);
479PDMR3DECL(int) PGMR3PhysMMIODeregister(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb);
480PDMR3DECL(int) PGMR3PhysMMIO2Register(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS cb, uint32_t fFlags, void **ppv, const char *pszDesc);
481PDMR3DECL(int) PGMR3PhysMMIO2Deregister(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion);
482PDMR3DECL(int) PGMR3PhysMMIO2Map(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys);
483PDMR3DECL(int) PGMR3PhysMMIO2Unmap(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS GCPhys);
484PDMR3DECL(bool) PGMR3PhysMMIO2IsBase(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys);
485PDMR3DECL(int) PGMR3PhysMMIO2GetHCPhys(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, PRTHCPHYS pHCPhys);
486
487/** @group PGMR3PhysRegisterRom flags.
488 * @{ */
489/** Inidicates that ROM shadowing should be enabled. */
490#define PGMPHYS_ROM_FLAG_SHADOWED RT_BIT_32(0)
491/** Indicates that what pvBinary points to won't go away
492 * and can be used for strictness checks. */
493#define PGMPHYS_ROM_FLAG_PERMANENT_BINARY RT_BIT_32(1)
494/** @} */
495
496PGMR3DECL(int) PGMR3PhysRomRegister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTGCPHYS cb,
497 const void *pvBinary, uint32_t fFlags, const char *pszDesc);
498PGMR3DECL(int) PGMR3PhysRomProtect(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cb, PGMROMPROT enmProt);
499PGMR3DECL(int) PGMR3PhysRegister(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc);
500#ifndef VBOX_WITH_NEW_PHYS_CODE
501PGMR3DECL(int) PGMR3PhysRegisterChunk(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc);
502#endif /* !VBOX_WITH_NEW_PHYS_CODE */
503PGMR3DECL(int) PGMR3PhysSetFlags(PVM pVM, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, unsigned fMask);
504PGMDECL(void) PGMR3PhysSetA20(PVM pVM, bool fEnable);
505PGMR3DECL(int) PGMR3MapPT(PVM pVM, RTGCPTR GCPtr, uint32_t cb, PFNPGMRELOCATE pfnRelocate, void *pvUser, const char *pszDesc);
506PGMR3DECL(int) PGMR3UnmapPT(PVM pVM, RTGCPTR GCPtr);
507PGMR3DECL(int) PGMR3MappingsSize(PVM pVM, uint32_t *pcb);
508PGMR3DECL(int) PGMR3MappingsFix(PVM pVM, RTGCPTR GCPtrBase, uint32_t cb);
509PGMR3DECL(int) PGMR3MappingsUnfix(PVM pVM);
510PGMR3DECL(int) PGMR3MapIntermediate(PVM pVM, RTUINTPTR Addr, RTHCPHYS HCPhys, unsigned cbPages);
511PGMR3DECL(bool) PGMR3MapHasConflicts(PVM pVM, uint64_t cr3, bool fRawR0);
512PGMR3DECL(int) PGMR3MapRead(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb);
513PGMR3DECL(int) PGMR3HandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS GCPhysLast,
514 PFNPGMR3PHYSHANDLER pfnHandlerR3, void *pvUserR3,
515 const char *pszModR0, const char *pszHandlerR0, RTR0PTR pvUserR0,
516 const char *pszModGC, const char *pszHandlerGC, RTGCPTR pvUserGC, const char *pszDesc);
517PGMDECL(int) PGMHandlerVirtualRegisterEx(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
518 PFNPGMHCVIRTINVALIDATE pfnInvalidateHC,
519 PFNPGMHCVIRTHANDLER pfnHandlerHC, RTGCPTR pfnHandlerGC,
520 R3PTRTYPE(const char *) pszDesc);
521PGMR3DECL(int) PGMR3HandlerVirtualRegister(PVM pVM, PGMVIRTHANDLERTYPE enmType, RTGCPTR GCPtr, RTGCPTR GCPtrLast,
522 PFNPGMHCVIRTINVALIDATE pfnInvalidateHC,
523 PFNPGMHCVIRTHANDLER pfnHandlerHC,
524 const char *pszHandlerGC, const char *pszModGC, const char *pszDesc);
525PGMDECL(int) PGMHandlerVirtualChangeInvalidateCallback(PVM pVM, RTGCPTR GCPtr, PFNPGMHCVIRTINVALIDATE pfnInvalidateHC);
526PGMDECL(int) PGMHandlerVirtualDeregister(PVM pVM, RTGCPTR GCPtr);
527PDMR3DECL(int) PGMR3PoolGrow(PVM pVM);
528#ifdef ___VBox_dbgf_h /** @todo fix this! */
529PGMR3DECL(int) PGMR3DumpHierarchyHC(PVM pVM, uint64_t cr3, uint64_t cr4, bool fLongMode, unsigned cMaxDepth, PCDBGFINFOHLP pHlp);
530#endif
531PGMR3DECL(int) PGMR3DumpHierarchyGC(PVM pVM, uint64_t cr3, uint64_t cr4, RTGCPHYS PhysSearch);
532
533/** @todo r=bird: s/Byte/U8/ s/Word/U16/ s/Dword/U32/ to match other functions names and returned types. */
534PGMR3DECL(uint8_t) PGMR3PhysReadByte(PVM pVM, RTGCPHYS GCPhys);
535PGMR3DECL(uint16_t) PGMR3PhysReadWord(PVM pVM, RTGCPHYS GCPhys);
536PGMR3DECL(uint32_t) PGMR3PhysReadDword(PVM pVM, RTGCPHYS GCPhys);
537PGMR3DECL(void) PGMR3PhysWriteByte(PVM pVM, RTGCPHYS GCPhys, uint8_t val);
538PGMR3DECL(void) PGMR3PhysWriteWord(PVM pVM, RTGCPHYS GCPhys, uint16_t val);
539PGMR3DECL(void) PGMR3PhysWriteDword(PVM pVM, RTGCPHYS GCPhys, uint32_t val);
540PDMR3DECL(int) PGMR3PhysChunkMap(PVM pVM, uint32_t idChunk);
541PGMR3DECL(void) PGMR3PhysChunkInvalidateTLB(PVM pVM);
542PDMR3DECL(int) PGMR3PhysAllocateHandyPages(PVM pVM);
543
544PDMR3DECL(int) PGMR3CheckIntegrity(PVM pVM);
545
546PGMR3DECL(int) PGMR3DbgHCPtr2GCPhys(PVM pVM, RTHCPTR HCPtr, PRTGCPHYS pGCPhys);
547PGMR3DECL(int) PGMR3DbgHCPtr2HCPhys(PVM pVM, RTHCPTR HCPtr, PRTHCPHYS pHCPhys);
548PGMR3DECL(int) PGMR3DbgHCPhys2GCPhys(PVM pVM, RTHCPHYS HCPhys, PRTGCPHYS pGCPhys);
549PDMR3DECL(int) PGMR3DbgScanPhysical(PVM pVM, RTGCPHYS GCPhys, RTGCPHYS cbRange, const uint8_t *pabNeedle, size_t cbNeedle, PRTGCPHYS pGCPhysHit);
550PDMR3DECL(int) PGMR3DbgScanVirtual(PVM pVM, RTGCUINTPTR GCPtr, RTGCUINTPTR cbRange, const uint8_t *pabNeedle, size_t cbNeedle, PRTGCUINTPTR pGCPhysHit);
551/** @} */
552#endif /* IN_RING3 */
553
554__END_DECLS
555
556/** @} */
557#endif
558
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use