VirtualBox

source: vbox/trunk/include/VBox/mm.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: 14.2 KB
Line 
1/** @file
2 * MM - The Memory 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_mm_h
31#define ___VBox_mm_h
32
33#include <VBox/cdefs.h>
34#include <VBox/types.h>
35#include <VBox/x86.h>
36#include <VBox/sup.h>
37
38
39__BEGIN_DECLS
40
41/** @defgroup grp_mm The Memory Manager API
42 * @{
43 */
44
45/** @name RAM Page Flags
46 * Since internal ranges have a byte granularity it's possible for a
47 * page be flagged for several uses. The access virtualization in PGM
48 * will choose the most restricted one and use EM to emulate access to
49 * the less restricted areas of the page.
50 *
51 * Bits 0-11 only since they are fitted into the offset part of a physical memory address.
52 * @{
53 */
54#if 1
55/** Reserved - Not RAM, ROM nor MMIO2.
56 * If this bit is cleared the memory is assumed to be some kind of RAM.
57 * Normal MMIO may set it but that depends on whether the RAM range was
58 * created specially for the MMIO or not.
59 *
60 * @remarks The current implementation will always reserve backing
61 * memory for reserved ranges to simplify things.
62 */
63#define MM_RAM_FLAGS_RESERVED RT_BIT(0)
64/** ROM - Read Only Memory.
65 * The page have a HC physical address which contains the BIOS code. All write
66 * access is trapped and ignored.
67 *
68 * HACK: Writable shadow ROM is indicated by both ROM and MMIO2 being
69 * set. (We're out of bits.)
70 */
71#define MM_RAM_FLAGS_ROM RT_BIT(1)
72/** MMIO - Memory Mapped I/O.
73 * All access is trapped and emulated. No physical backing is required, but
74 * might for various reasons be present.
75 */
76#define MM_RAM_FLAGS_MMIO RT_BIT(2)
77/** MMIO2 - Memory Mapped I/O, variation 2.
78 * The virtualization is performed using real memory and only catching
79 * a few accesses for like keeping track for dirty pages.
80 * @remark Involved in the shadow ROM hack.
81 */
82#define MM_RAM_FLAGS_MMIO2 RT_BIT(3)
83#endif
84
85#ifndef VBOX_WITH_NEW_PHYS_CODE
86/** Physical backing memory is allocated dynamically. Not set implies a one time static allocation. */
87#define MM_RAM_FLAGS_DYNAMIC_ALLOC RT_BIT(11)
88#endif /* !VBOX_WITH_NEW_PHYS_CODE */
89
90/** The shift used to get the reference count. */
91#define MM_RAM_FLAGS_CREFS_SHIFT 62
92/** The mask applied to the the page pool idx after using MM_RAM_FLAGS_CREFS_SHIFT to shift it down. */
93#define MM_RAM_FLAGS_CREFS_MASK 0x3
94/** The (shifted) cRef value used to indiciate that the idx is the head of a
95 * physical cross reference extent list. */
96#define MM_RAM_FLAGS_CREFS_PHYSEXT MM_RAM_FLAGS_CREFS_MASK
97/** The shift used to get the page pool idx. (Apply MM_RAM_FLAGS_IDX_MASK to the result when shifting down). */
98#define MM_RAM_FLAGS_IDX_SHIFT 48
99/** The mask applied to the the page pool idx after using MM_RAM_FLAGS_IDX_SHIFT to shift it down. */
100#define MM_RAM_FLAGS_IDX_MASK 0x3fff
101/** The idx value when we're out of of extents or there are simply too many mappings of this page. */
102#define MM_RAM_FLAGS_IDX_OVERFLOWED MM_RAM_FLAGS_IDX_MASK
103
104/** Mask for masking off any references to the page. */
105#define MM_RAM_FLAGS_NO_REFS_MASK UINT64_C(0x0000ffffffffffff)
106/** @} */
107
108#ifndef VBOX_WITH_NEW_PHYS_CODE
109/** @name MMR3PhysRegisterEx registration type
110 * @{
111 */
112typedef enum
113{
114 /** Normal physical region (flags specify exact page type) */
115 MM_PHYS_TYPE_NORMAL = 0,
116 /** Allocate part of a dynamically allocated physical region */
117 MM_PHYS_TYPE_DYNALLOC_CHUNK,
118
119 MM_PHYS_TYPE_32BIT_HACK = 0x7fffffff
120} MMPHYSREG;
121/** @} */
122#endif
123
124/**
125 * Memory Allocation Tags.
126 * For use with MMHyperAlloc(), MMR3HeapAlloc(), MMR3HeapAllocEx(),
127 * MMR3HeapAllocZ() and MMR3HeapAllocZEx().
128 *
129 * @remark Don't forget to update the dump command in MMHeap.cpp!
130 */
131typedef enum MMTAG
132{
133 MM_TAG_INVALID = 0,
134
135 MM_TAG_CFGM,
136 MM_TAG_CFGM_BYTES,
137 MM_TAG_CFGM_STRING,
138 MM_TAG_CFGM_USER,
139
140 MM_TAG_CSAM,
141 MM_TAG_CSAM_PATCH,
142
143 MM_TAG_DBGF,
144 MM_TAG_DBGF_INFO,
145 MM_TAG_DBGF_LINE,
146 MM_TAG_DBGF_LINE_DUP,
147 MM_TAG_DBGF_STACK,
148 MM_TAG_DBGF_SYMBOL,
149 MM_TAG_DBGF_SYMBOL_DUP,
150 MM_TAG_DBGF_MODULE,
151
152 MM_TAG_EM,
153
154 MM_TAG_IOM,
155 MM_TAG_IOM_STATS,
156
157 MM_TAG_MM,
158 MM_TAG_MM_LOOKUP_GUEST,
159 MM_TAG_MM_LOOKUP_PHYS,
160 MM_TAG_MM_LOOKUP_VIRT,
161 MM_TAG_MM_PAGE,
162
163 MM_TAG_PATM,
164 MM_TAG_PATM_PATCH,
165
166 MM_TAG_PDM,
167 MM_TAG_PDM_ASYNC_COMPLETION,
168 MM_TAG_PDM_DEVICE,
169 MM_TAG_PDM_DEVICE_USER,
170 MM_TAG_PDM_DRIVER,
171 MM_TAG_PDM_DRIVER_USER,
172 MM_TAG_PDM_USB,
173 MM_TAG_PDM_USB_USER,
174 MM_TAG_PDM_LUN,
175 MM_TAG_PDM_QUEUE,
176 MM_TAG_PDM_THREAD,
177
178 MM_TAG_PGM,
179 MM_TAG_PGM_CHUNK_MAPPING,
180 MM_TAG_PGM_HANDLERS,
181 MM_TAG_PGM_PHYS,
182 MM_TAG_PGM_POOL,
183
184 MM_TAG_REM,
185
186 MM_TAG_SELM,
187
188 MM_TAG_SSM,
189
190 MM_TAG_STAM,
191
192 MM_TAG_TM,
193
194 MM_TAG_TRPM,
195
196 MM_TAG_VM,
197 MM_TAG_VM_REQ,
198
199 MM_TAG_VMM,
200
201 MM_TAG_HWACCM,
202
203 MM_TAG_32BIT_HACK = 0x7fffffff
204} MMTAG;
205
206
207
208
209/** @defgroup grp_mm_hyper Hypervisor Memory Management
210 * @ingroup grp_mm
211 * @{ */
212
213MMDECL(RTR3PTR) MMHyperR0ToR3(PVM pVM, RTR0PTR R0Ptr);
214MMDECL(RTGCPTR) MMHyperR0ToGC(PVM pVM, RTR0PTR R0Ptr);
215#ifndef IN_RING0
216MMDECL(void *) MMHyperR0ToCC(PVM pVM, RTR0PTR R0Ptr);
217#endif
218MMDECL(RTR0PTR) MMHyperR3ToR0(PVM pVM, RTR3PTR R3Ptr);
219MMDECL(RTGCPTR) MMHyperR3ToGC(PVM pVM, RTR3PTR R3Ptr);
220MMDECL(RTR3PTR) MMHyperGCToR3(PVM pVM, RTGCPTR GCPtr);
221MMDECL(RTR0PTR) MMHyperGCToR0(PVM pVM, RTGCPTR GCPtr);
222
223#ifndef IN_RING3
224MMDECL(void *) MMHyperR3ToCC(PVM pVM, RTR3PTR R3Ptr);
225#else
226DECLINLINE(void *) MMHyperR3ToCC(PVM pVM, RTR3PTR R3Ptr)
227{
228 NOREF(pVM);
229 return R3Ptr;
230}
231#endif
232
233
234#ifndef IN_GC
235MMDECL(void *) MMHyperGCToCC(PVM pVM, RTGCPTR GCPtr);
236#else
237DECLINLINE(void *) MMHyperGCToCC(PVM pVM, RTGCPTR GCPtr)
238{
239 NOREF(pVM);
240 return GCPtr;
241}
242#endif
243
244#ifndef IN_RING3
245MMDECL(RTR3PTR) MMHyperCCToR3(PVM pVM, void *pv);
246#else
247DECLINLINE(RTR3PTR) MMHyperCCToR3(PVM pVM, void *pv)
248{
249 NOREF(pVM);
250 return pv;
251}
252#endif
253
254#ifndef IN_RING0
255MMDECL(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv);
256#else
257DECLINLINE(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv)
258{
259 NOREF(pVM);
260 return pv;
261}
262#endif
263
264#ifndef IN_GC
265MMDECL(RTGCPTR) MMHyperCCToGC(PVM pVM, void *pv);
266#else
267DECLINLINE(RTGCPTR) MMHyperCCToGC(PVM pVM, void *pv)
268{
269 NOREF(pVM);
270 return pv;
271}
272#endif
273
274
275#ifdef IN_GC
276MMDECL(RTHCPTR) MMHyper2HC(PVM pVM, uintptr_t Ptr);
277#else
278DECLINLINE(RTHCPTR) MMHyper2HC(PVM pVM, uintptr_t Ptr)
279{
280 NOREF(pVM);
281 return (RTHCPTR)Ptr;
282}
283#endif
284
285#ifndef IN_GC
286MMDECL(RTGCPTR) MMHyper2GC(PVM pVM, uintptr_t Ptr);
287#else
288DECLINLINE(RTGCPTR) MMHyper2GC(PVM pVM, uintptr_t Ptr)
289{
290 NOREF(pVM);
291 return (RTGCPTR)Ptr;
292}
293#endif
294
295MMDECL(RTGCPTR) MMHyperHC2GC(PVM pVM, RTHCPTR HCPtr);
296MMDECL(RTHCPTR) MMHyperGC2HC(PVM pVM, RTGCPTR GCPtr);
297MMDECL(int) MMHyperAlloc(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, void **ppv);
298MMDECL(int) MMHyperFree(PVM pVM, void *pv);
299MMDECL(void) MMHyperHeapCheck(PVM pVM);
300#ifdef DEBUG
301MMDECL(void) MMHyperHeapDump(PVM pVM);
302#endif
303MMDECL(size_t) MMHyperHeapGetFreeSize(PVM pVM);
304MMDECL(size_t) MMHyperHeapGetSize(PVM pVM);
305MMDECL(RTGCPTR) MMHyperGetArea(PVM pVM, size_t *pcb);
306MMDECL(bool) MMHyperIsInsideArea(PVM pVM, RTGCPTR GCPtr);
307
308
309MMDECL(RTHCPHYS) MMPage2Phys(PVM pVM, void *pvPage);
310MMDECL(void *) MMPagePhys2Page(PVM pVM, RTHCPHYS HCPhysPage);
311MMDECL(int) MMPagePhys2PageEx(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
312MMDECL(int) MMPagePhys2PageTry(PVM pVM, RTHCPHYS HCPhysPage, void **ppvPage);
313MMDECL(void *) MMPhysGCPhys2HCVirt(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange);
314
315
316/** @def MMHYPER_GC_ASSERT_GCPTR
317 * Asserts that an address is either NULL or inside the hypervisor memory area.
318 * This assertion only works while IN_GC, it's a NOP everywhere else.
319 * @thread The Emulation Thread.
320 */
321#ifdef IN_GC
322# define MMHYPER_GC_ASSERT_GCPTR(pVM, GCPtr) Assert(MMHyperIsInsideArea((pVM), (GCPtr)) || !(GCPtr))
323#else
324# define MMHYPER_GC_ASSERT_GCPTR(pVM, GCPtr) do { } while (0)
325#endif
326
327/** @} */
328
329
330#ifdef IN_RING3
331/** @defgroup grp_mm_r3 The MM Host Context Ring-3 API
332 * @ingroup grp_mm
333 * @{
334 */
335
336MMR3DECL(int) MMR3InitUVM(PUVM pUVM);
337MMR3DECL(int) MMR3Init(PVM pVM);
338MMR3DECL(int) MMR3InitPaging(PVM pVM);
339MMR3DECL(int) MMR3HyperInitFinalize(PVM pVM);
340MMR3DECL(int) MMR3Term(PVM pVM);
341MMR3DECL(void) MMR3TermUVM(PUVM pUVM);
342MMR3DECL(void) MMR3Reset(PVM pVM);
343MMR3DECL(int) MMR3IncreaseBaseReservation(PVM pVM, uint64_t cAddBasePages);
344MMR3DECL(int) MMR3AdjustFixedReservation(PVM pVM, int32_t cDeltaFixedPages, const char *pszDesc);
345MMR3DECL(int) MMR3UpdateShadowReservation(PVM pVM, uint32_t cShadowPages);
346
347MMR3DECL(int) MMR3HCPhys2HCVirt(PVM pVM, RTHCPHYS HCPhys, void **ppv);
348MMR3DECL(int) MMR3ReadGCVirt(PVM pVM, void *pvDst, RTGCPTR GCPtr, size_t cb);
349MMR3DECL(int) MMR3WriteGCVirt(PVM pVM, RTGCPTR GCPtrDst, const void *pvSrc, size_t cb);
350
351
352/** @defgroup grp_mm_r3_hyper Hypervisor Memory Manager (HC R3 Portion)
353 * @ingroup grp_mm_r3
354 * @{ */
355MMDECL(int) MMR3HyperAllocOnceNoRel(PVM pVM, size_t cb, uint32_t uAlignment, MMTAG enmTag, void **ppv);
356MMR3DECL(int) MMR3HyperMapHCPhys(PVM pVM, void *pvHC, RTHCPHYS HCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
357MMR3DECL(int) MMR3HyperMapGCPhys(PVM pVM, RTGCPHYS GCPhys, size_t cb, const char *pszDesc, PRTGCPTR pGCPtr);
358MMR3DECL(int) MMR3HyperMapMMIO2(PVM pVM, PPDMDEVINS pDevIns, uint32_t iRegion, RTGCPHYS off, RTGCPHYS cb, const char *pszDesc, PRTGCPTR pGCPtr);
359MMR3DECL(int) MMR3HyperMapHCRam(PVM pVM, void *pvHC, size_t cb, bool fFree, const char *pszDesc, PRTGCPTR pGCPtr);
360MMR3DECL(int) MMR3HyperMapPages(PVM pVM, void *pvR3, RTR0PTR pvR0, size_t cPages, PCSUPPAGE paPages, const char *pszDesc, PRTGCPTR pGCPtr);
361MMR3DECL(int) MMR3HyperReserve(PVM pVM, unsigned cb, const char *pszDesc, PRTGCPTR pGCPtr);
362MMR3DECL(RTHCPHYS) MMR3HyperHCVirt2HCPhys(PVM pVM, void *pvHC);
363MMR3DECL(int) MMR3HyperHCVirt2HCPhysEx(PVM pVM, void *pvHC, PRTHCPHYS pHCPhys);
364MMR3DECL(void *) MMR3HyperHCPhys2HCVirt(PVM pVM, RTHCPHYS HCPhys);
365MMR3DECL(int) MMR3HyperHCPhys2HCVirtEx(PVM pVM, RTHCPHYS HCPhys, void **ppv);
366MMR3DECL(int) MMR3HyperReadGCVirt(PVM pVM, void *pvDst, RTGCPTR GCPtr, size_t cb);
367/** @} */
368
369
370/** @defgroup grp_mm_phys Guest Physical Memory Manager
371 * @ingroup grp_mm_r3
372 * @{ */
373MMR3DECL(int) MMR3PhysRegister(PVM pVM, void *pvRam, RTGCPHYS GCPhys, unsigned cb, unsigned fFlags, const char *pszDesc);
374#ifndef VBOX_WITH_NEW_PHYS_CODE
375MMR3DECL(int) MMR3PhysRegisterEx(PVM pVM, void *pvRam, RTGCPHYS GCPhys, unsigned cb, unsigned fFlags, MMPHYSREG enmType, const char *pszDesc);
376#endif
377MMR3DECL(int) MMR3PhysRomRegister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTUINT cbRange, const void *pvBinary, bool fShadow, const char *pszDesc);
378MMR3DECL(int) MMR3PhysRomProtect(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange);
379MMR3DECL(int) MMR3PhysReserve(PVM pVM, RTGCPHYS GCPhys, RTUINT cbRange, const char *pszDesc);
380MMR3DECL(uint64_t) MMR3PhysGetRamSize(PVM pVM);
381/** @} */
382
383
384/** @defgroup grp_mm_page Physical Page Pool
385 * @ingroup grp_mm_r3
386 * @{ */
387MMR3DECL(void *) MMR3PageAlloc(PVM pVM);
388MMR3DECL(RTHCPHYS) MMR3PageAllocPhys(PVM pVM);
389MMR3DECL(void) MMR3PageFree(PVM pVM, void *pvPage);
390MMR3DECL(void *) MMR3PageAllocLow(PVM pVM);
391MMR3DECL(void) MMR3PageFreeLow(PVM pVM, void *pvPage);
392MMR3DECL(void) MMR3PageFreeByPhys(PVM pVM, RTHCPHYS HCPhysPage);
393MMR3DECL(void *) MMR3PageDummyHCPtr(PVM pVM);
394MMR3DECL(RTHCPHYS) MMR3PageDummyHCPhys(PVM pVM);
395/** @} */
396
397
398/** @defgroup grp_mm_heap Heap Manager
399 * @ingroup grp_mm_r3
400 * @{ */
401MMR3DECL(void *) MMR3HeapAlloc(PVM pVM, MMTAG enmTag, size_t cbSize);
402MMR3DECL(void *) MMR3HeapAllocU(PUVM pUVM, MMTAG enmTag, size_t cbSize);
403MMR3DECL(int) MMR3HeapAllocEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
404MMR3DECL(int) MMR3HeapAllocExU(PUVM pUVM, MMTAG enmTag, size_t cbSize, void **ppv);
405MMR3DECL(void *) MMR3HeapAllocZ(PVM pVM, MMTAG enmTag, size_t cbSize);
406MMR3DECL(void *) MMR3HeapAllocZU(PUVM pUVM, MMTAG enmTag, size_t cbSize);
407MMR3DECL(int) MMR3HeapAllocZEx(PVM pVM, MMTAG enmTag, size_t cbSize, void **ppv);
408MMR3DECL(int) MMR3HeapAllocZExU(PUVM pUVM, MMTAG enmTag, size_t cbSize, void **ppv);
409MMR3DECL(void *) MMR3HeapRealloc(void *pv, size_t cbNewSize);
410MMR3DECL(char *) MMR3HeapStrDup(PVM pVM, MMTAG enmTag, const char *psz);
411MMR3DECL(char *) MMR3HeapStrDupU(PUVM pUVM, MMTAG enmTag, const char *psz);
412MMR3DECL(void) MMR3HeapFree(void *pv);
413/** @} */
414
415/** @} */
416#endif /* IN_RING3 */
417
418
419
420#ifdef IN_GC
421/** @defgroup grp_mm_gc The MM Guest Context API
422 * @ingroup grp_mm
423 * @{
424 */
425
426MMGCDECL(void) MMGCRamRegisterTrapHandler(PVM pVM);
427MMGCDECL(void) MMGCRamDeregisterTrapHandler(PVM pVM);
428MMGCDECL(int) MMGCRamReadNoTrapHandler(void *pDst, void *pSrc, size_t cb);
429MMGCDECL(int) MMGCRamWriteNoTrapHandler(void *pDst, void *pSrc, size_t cb);
430MMGCDECL(int) MMGCRamRead(PVM pVM, void *pDst, void *pSrc, size_t cb);
431MMGCDECL(int) MMGCRamWrite(PVM pVM, void *pDst, void *pSrc, size_t cb);
432
433/** @} */
434#endif /* IN_GC */
435
436/** @} */
437__END_DECLS
438
439
440#endif
441
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use