VirtualBox

source: vbox/trunk/src/VBox/VMM/PGMPhys.cpp@ 400

Last change on this file since 400 was 323, checked in by vboxsync, 18 years ago

drop the default, there's just one other call.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 19.5 KB
Line 
1/* $Id: PGMPhys.cpp 323 2007-01-25 17:25:01Z vboxsync $ */
2/** @file
3 * PGM - Page Manager and Monitor, Physical Memory Addressing.
4 */
5
6/*
7 * Copyright (C) 2006 InnoTek Systemberatung GmbH
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_PGM
27#include <VBox/pgm.h>
28#include <VBox/cpum.h>
29#include <VBox/iom.h>
30#include <VBox/sup.h>
31#include <VBox/mm.h>
32#include <VBox/pdm.h>
33#include <VBox/stam.h>
34#include <VBox/rem.h>
35#include <VBox/csam.h>
36#include "PGMInternal.h"
37#include <VBox/vm.h>
38#include <VBox/dbg.h>
39#include <VBox/param.h>
40#include <VBox/err.h>
41#include <iprt/assert.h>
42#include <iprt/alloc.h>
43#include <iprt/asm.h>
44#include <VBox/log.h>
45#include <iprt/thread.h>
46#include <iprt/string.h>
47
48
49
50
51/**
52 * Interface MMR3RamRegister(), MMR3RomRegister() and MMIO handler
53 * registration calls.
54 *
55 * It registers the physical memory range with PGM. MM is responsible
56 * for the toplevel things - allocation and locking - while PGM is taking
57 * care of all the details and implements the physical address space virtualization.
58 *
59 * @returns VBox status.
60 * @param pVM The VM handle.
61 * @param pvRam HC virtual address of the RAM range. (page aligned)
62 * @param GCPhys GC physical address of the RAM range. (page aligned)
63 * @param cb Size of the RAM range. (page aligned)
64 * @param fFlags Flags, MM_RAM_*.
65 * @param paPages Pointer an array of physical page descriptors.
66 * @param pszDesc Description string.
67 */
68PGMR3DECL(int) PGMR3PhysRegister(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc)
69{
70 /*
71 * Validate input.
72 * (Not so important because callers are only MMR3PhysRegister()
73 * and PGMR3HandlerPhysicalRegisterEx(), but anyway...)
74 */
75 Log(("PGMR3PhysRegister %08X %x bytes flags %x %s\n", GCPhys, cb, fFlags, pszDesc));
76
77 Assert((fFlags & (MM_RAM_FLAGS_RESERVED | MM_RAM_FLAGS_MMIO | MM_RAM_FLAGS_DYNAMIC_ALLOC)) || paPages);
78 /*Assert(!(fFlags & MM_RAM_FLAGS_RESERVED) || !paPages);*/
79 Assert((fFlags == (MM_RAM_FLAGS_RESERVED | MM_RAM_FLAGS_MMIO)) || (fFlags & MM_RAM_FLAGS_DYNAMIC_ALLOC) || pvRam);
80 /*Assert(!(fFlags & MM_RAM_FLAGS_RESERVED) || !pvRam);*/
81 Assert(!(fFlags & ~0xfff));
82 Assert(RT_ALIGN_Z(cb, PAGE_SIZE) == cb && cb);
83 Assert(RT_ALIGN_P(pvRam, PAGE_SIZE) == pvRam);
84 Assert(!(fFlags & ~(MM_RAM_FLAGS_RESERVED | MM_RAM_FLAGS_ROM | MM_RAM_FLAGS_MMIO | MM_RAM_FLAGS_MMIO2 | MM_RAM_FLAGS_DYNAMIC_ALLOC)));
85 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
86 RTGCPHYS GCPhysLast = GCPhys + (cb - 1);
87 if (GCPhysLast < GCPhys)
88 {
89 AssertMsgFailed(("The range wraps! GCPhys=%VGp cb=%#x\n", GCPhys, cb));
90 return VERR_INVALID_PARAMETER;
91 }
92
93 /*
94 * Find range location and check for conflicts.
95 */
96 PPGMRAMRANGE pPrev = NULL;
97 PPGMRAMRANGE pCur = pVM->pgm.s.pRamRangesHC;
98 while (pCur)
99 {
100 if (GCPhys <= pCur->GCPhysLast && GCPhysLast >= pCur->GCPhys)
101 {
102 AssertMsgFailed(("Conflict! This cannot happen!\n"));
103 return VERR_PGM_RAM_CONFLICT;
104 }
105 if (GCPhysLast < pCur->GCPhys)
106 break;
107
108 /* next */
109 pPrev = pCur;
110 pCur = pCur->pNextHC;
111 }
112
113 /*
114 * Allocate RAM range.
115 * Small ranges are allocated from the heap, big ones have separate mappings.
116 */
117 size_t cbRam = RT_OFFSETOF(PGMRAMRANGE, aHCPhys[cb >> PAGE_SHIFT]);
118 PPGMRAMRANGE pNew;
119 RTGCPTR GCPtrNew;
120 int rc;
121 if (cbRam > PAGE_SIZE / 2)
122 { /* large */
123 cbRam = RT_ALIGN_Z(cbRam, PAGE_SIZE);
124 rc = SUPPageAlloc(cbRam >> PAGE_SHIFT, (void **)&pNew);
125 if (VBOX_SUCCESS(rc))
126 {
127 rc = MMR3HyperMapHCRam(pVM, pNew, cbRam, true, pszDesc, &GCPtrNew);
128 if (VBOX_SUCCESS(rc))
129 {
130 Assert(MMHyperHC2GC(pVM, pNew) == GCPtrNew);
131 rc = MMR3HyperReserve(pVM, PAGE_SIZE, "fence", NULL);
132 }
133 else
134 {
135 AssertMsgFailed(("MMR3HyperMapHCRam(,,%#x,,,) -> %Vrc\n", cbRam, rc));
136 SUPPageFree(pNew);
137 }
138 }
139 else
140 AssertMsgFailed(("SUPPageAlloc(%#x,,) -> %Vrc\n", cbRam >> PAGE_SHIFT, rc));
141 }
142 else
143 { /* small */
144 rc = MMHyperAlloc(pVM, cbRam, 16, MM_TAG_PGM, (void **)&pNew);
145 if (VBOX_SUCCESS(rc))
146 GCPtrNew = MMHyperHC2GC(pVM, pNew);
147 else
148 AssertMsgFailed(("MMHyperAlloc(,%#x,,,) -> %Vrc\n", cbRam, cb));
149 }
150 if (VBOX_SUCCESS(rc))
151 {
152 /*
153 * Initialize the range.
154 */
155 pNew->pvHC = pvRam;
156 pNew->GCPhys = GCPhys;
157 pNew->GCPhysLast = GCPhysLast;
158 pNew->cb = cb;
159 pNew->fFlags = fFlags;
160 pNew->pavHCChunkHC = NULL;
161 pNew->pavHCChunkGC = 0;
162
163 unsigned iPage = cb >> PAGE_SHIFT;
164 if (paPages)
165 {
166 while (iPage-- > 0)
167 pNew->aHCPhys[iPage] = (paPages[iPage].Phys & X86_PTE_PAE_PG_MASK) | fFlags;
168 }
169 else if (fFlags & MM_RAM_FLAGS_DYNAMIC_ALLOC)
170 {
171 /* Allocate memory for chunk to HC ptr lookup array. */
172 rc = MMHyperAlloc(pVM, (cb >> PGM_DYNAMIC_CHUNK_SHIFT) * sizeof(void *), 16, MM_TAG_PGM, (void **)&pNew->pavHCChunkHC);
173 AssertMsgReturn(rc == VINF_SUCCESS, ("MMHyperAlloc(,%#x,,,) -> %Vrc\n", cbRam, cb), rc);
174
175 pNew->pavHCChunkGC = MMHyperHC2GC(pVM, pNew->pavHCChunkHC);
176 Assert(pNew->pavHCChunkGC);
177
178 /* Physical memory will be allocated on demand. */
179 while (iPage-- > 0)
180 pNew->aHCPhys[iPage] = fFlags;
181 }
182 else
183 {
184 Assert(fFlags == (MM_RAM_FLAGS_RESERVED | MM_RAM_FLAGS_MMIO));
185 RTHCPHYS HCPhysDummyPage = (MMR3PageDummyHCPhys(pVM) & X86_PTE_PAE_PG_MASK) | fFlags;
186 while (iPage-- > 0)
187 pNew->aHCPhys[iPage] = HCPhysDummyPage;
188 }
189
190 /*
191 * Insert the new RAM range.
192 */
193 pgmLock(pVM);
194 pNew->pNextHC = pCur;
195 pNew->pNextGC = pCur ? MMHyperHC2GC(pVM, pCur) : 0;
196 if (pPrev)
197 {
198 pPrev->pNextHC = pNew;
199 pPrev->pNextGC = GCPtrNew;
200 }
201 else
202 {
203 pVM->pgm.s.pRamRangesHC = pNew;
204 pVM->pgm.s.pRamRangesGC = GCPtrNew;
205 }
206 pgmUnlock(pVM);
207 }
208 return rc;
209}
210
211
212/**
213 * Register a chunk of a the physical memory range with PGM. MM is responsible
214 * for the toplevel things - allocation and locking - while PGM is taking
215 * care of all the details and implements the physical address space virtualization.
216 *
217 *
218 * @returns VBox status.
219 * @param pVM The VM handle.
220 * @param pvRam HC virtual address of the RAM range. (page aligned)
221 * @param GCPhys GC physical address of the RAM range. (page aligned)
222 * @param cb Size of the RAM range. (page aligned)
223 * @param fFlags Flags, MM_RAM_*.
224 * @param paPages Pointer an array of physical page descriptors.
225 * @param pszDesc Description string.
226 */
227PGMR3DECL(int) PGMR3PhysRegisterChunk(PVM pVM, void *pvRam, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, const SUPPAGE *paPages, const char *pszDesc)
228{
229#ifdef PGM_DYNAMIC_RAM_ALLOC
230 NOREF(pszDesc);
231
232 /*
233 * Validate input.
234 * (Not so important because callers are only MMR3PhysRegister()
235 * and PGMR3HandlerPhysicalRegisterEx(), but anyway...)
236 */
237 Log(("PGMR3PhysRegisterChunk %08X %x bytes flags %x %s\n", GCPhys, cb, fFlags, pszDesc));
238
239 Assert(paPages);
240 Assert(pvRam);
241 Assert(!(fFlags & ~0xfff));
242 Assert(RT_ALIGN_Z(cb, PAGE_SIZE) == cb && cb);
243 Assert(RT_ALIGN_P(pvRam, PAGE_SIZE) == pvRam);
244 Assert(!(fFlags & ~(MM_RAM_FLAGS_RESERVED | MM_RAM_FLAGS_ROM | MM_RAM_FLAGS_MMIO | MM_RAM_FLAGS_MMIO2 | MM_RAM_FLAGS_DYNAMIC_ALLOC)));
245 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
246 Assert(VM_IS_EMT(pVM));
247 Assert(!(GCPhys & PGM_DYNAMIC_CHUNK_OFFSET_MASK));
248 Assert(cb == PGM_DYNAMIC_CHUNK_SIZE);
249
250 RTGCPHYS GCPhysLast = GCPhys + (cb - 1);
251 if (GCPhysLast < GCPhys)
252 {
253 AssertMsgFailed(("The range wraps! GCPhys=%VGp cb=%#x\n", GCPhys, cb));
254 return VERR_INVALID_PARAMETER;
255 }
256
257 /*
258 * Find existing range location.
259 */
260 PPGMRAMRANGE pRam = CTXSUFF(pVM->pgm.s.pRamRanges);
261 while (pRam)
262 {
263 RTGCPHYS off = GCPhys - pRam->GCPhys;
264 if ( off < pRam->cb
265 && (pRam->fFlags & MM_RAM_FLAGS_DYNAMIC_ALLOC))
266 break;
267
268 pRam = CTXSUFF(pRam->pNext);
269 }
270 AssertReturn(pRam, VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS);
271
272 unsigned off = (GCPhys - pRam->GCPhys) >> PAGE_SHIFT;
273 unsigned iPage = cb >> PAGE_SHIFT;
274 if (paPages)
275 {
276 while (iPage-- > 0)
277 pRam->aHCPhys[off + iPage] = (paPages[iPage].Phys & X86_PTE_PAE_PG_MASK) | fFlags;
278 }
279 off >>= (PGM_DYNAMIC_CHUNK_SHIFT - PAGE_SHIFT);
280 pRam->pavHCChunkHC[off] = pvRam;
281
282 /* Notify the recompiler. */
283 REMR3NotifyPhysRamChunkRegister(pVM, GCPhys, PGM_DYNAMIC_CHUNK_SIZE, (RTHCUINTPTR)pvRam, fFlags);
284
285 return VINF_SUCCESS;
286#else /* !PGM_DYNAMIC_RAM_ALLOC */
287 AssertReleaseMsgFailed(("Shouldn't ever get here when PGM_DYNAMIC_RAM_ALLOC isn't defined!\n"));
288 return VERR_INTERNAL_ERROR;
289#endif /* !PGM_DYNAMIC_RAM_ALLOC */
290}
291
292
293/**
294 * Allocate missing physical pages for an existing guest RAM range.
295 *
296 * @returns VBox status.
297 * @param pVM The VM handle.
298 * @param GCPhys GC physical address of the RAM range. (page aligned)
299 */
300PGMR3DECL(int) PGM3PhysGrowRange(PVM pVM, RTGCPHYS GCPhys)
301{
302 /*
303 * Walk range list.
304 */
305 pgmLock(pVM);
306
307 PPGMRAMRANGE pRam = CTXSUFF(pVM->pgm.s.pRamRanges);
308 while (pRam)
309 {
310 RTGCPHYS off = GCPhys - pRam->GCPhys;
311 if ( off < pRam->cb
312 && (pRam->fFlags & MM_RAM_FLAGS_DYNAMIC_ALLOC))
313 {
314 bool fRangeExists = false;
315 unsigned off = (GCPhys - pRam->GCPhys) >> PGM_DYNAMIC_CHUNK_SHIFT;
316
317 /** @note A request made from another thread may end up in EMT after somebody else has already allocated the range. */
318 if (pRam->pavHCChunkHC[off])
319 fRangeExists = true;
320
321 pgmUnlock(pVM);
322 if (fRangeExists)
323 return VINF_SUCCESS;
324 return pgmr3PhysGrowRange(pVM, GCPhys);
325 }
326
327 pRam = CTXSUFF(pRam->pNext);
328 }
329 pgmUnlock(pVM);
330 return VERR_PGM_INVALID_GC_PHYSICAL_ADDRESS;
331}
332
333
334/**
335 * Allocate missing physical pages for an existing guest RAM range.
336 *
337 * @returns VBox status.
338 * @param pVM The VM handle.
339 * @param pRamRange RAM range
340 * @param GCPhys GC physical address of the RAM range. (page aligned)
341 */
342int pgmr3PhysGrowRange(PVM pVM, RTGCPHYS GCPhys)
343{
344 void *pvRam;
345 int rc;
346
347 /* We must execute this function in the EMT thread, otherwise we'll run into problems. */
348 if (!VM_IS_EMT(pVM))
349 {
350 PVMREQ pReq;
351
352 AssertMsg(!PDMCritSectIsOwner(&pVM->pgm.s.CritSect), ("We own the PGM lock -> deadlock danger!!\n"));
353
354 rc = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)PGM3PhysGrowRange, 2, pVM, GCPhys);
355 if (VBOX_SUCCESS(rc))
356 {
357 rc = pReq->iStatus;
358 VMR3ReqFree(pReq);
359 }
360 return rc;
361 }
362
363 /* Round down to chunk boundary */
364 GCPhys = GCPhys & PGM_DYNAMIC_CHUNK_BASE_MASK;
365
366 STAM_COUNTER_INC(&pVM->pgm.s.StatDynRamGrow);
367 STAM_COUNTER_ADD(&pVM->pgm.s.StatDynRamTotal, PGM_DYNAMIC_CHUNK_SIZE/(1024*1024));
368
369 Log(("pgmr3PhysGrowRange: allocate chunk of size 0x%X at %VGp\n", PGM_DYNAMIC_CHUNK_SIZE, GCPhys));
370
371 unsigned cPages = PGM_DYNAMIC_CHUNK_SIZE >> PAGE_SHIFT;
372 rc = SUPPageAlloc(cPages, &pvRam);
373 if (VBOX_SUCCESS(rc))
374 {
375 rc = MMR3PhysRegisterEx(pVM, pvRam, GCPhys, PGM_DYNAMIC_CHUNK_SIZE, 0, MM_PHYS_TYPE_DYNALLOC_CHUNK, "Main Memory");
376 if (VBOX_SUCCESS(rc))
377 return rc;
378
379 SUPPageFree(pvRam);
380
381 LogRel(("pgmr3PhysGrowRange: out of memory. pause until the user resumes execution.\n"));
382 VMSetRuntimeError(pVM, false, "HostMemoryLow", "Unable to allocate and lock memory. The virtual machine will be paused. Please close applications to free up memory or save and close the VM.");
383
384 rc = VMR3Suspend(pVM);
385 AssertRC(rc);
386
387 /* Wait for resume event; will only return in that case. If the VM is stopped, the EMT thread will be destroyed. */
388 rc = VMR3WaitForResume(pVM);
389
390 /* Retry */
391 LogRel(("pgmr3PhysGrowRange: VM execution resumed -> retry.\n"));
392 return pgmr3PhysGrowRange(pVM, GCPhys);
393 }
394 return rc;
395}
396
397
398/**
399 * Interface MMIO handler relocation calls.
400 *
401 * It relocates an existing physical memory range with PGM.
402 *
403 * @returns VBox status.
404 * @param pVM The VM handle.
405 * @param GCPhysOld Previous GC physical address of the RAM range. (page aligned)
406 * @param GCPhysNew New GC physical address of the RAM range. (page aligned)
407 * @param cb Size of the RAM range. (page aligned)
408 */
409PGMR3DECL(int) PGMR3PhysRelocate(PVM pVM, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, size_t cb)
410{
411 /*
412 * Validate input.
413 * (Not so important because callers are only MMR3PhysRelocate(),
414 * but anyway...)
415 */
416 Log(("PGMR3PhysRelocate Old %VGp New %VGp (%#x bytes)\n", GCPhysOld, GCPhysNew, cb));
417
418 Assert(RT_ALIGN_Z(cb, PAGE_SIZE) == cb && cb);
419 Assert(RT_ALIGN_T(GCPhysOld, PAGE_SIZE, RTGCPHYS) == GCPhysOld);
420 Assert(RT_ALIGN_T(GCPhysNew, PAGE_SIZE, RTGCPHYS) == GCPhysNew);
421 RTGCPHYS GCPhysLast;
422 GCPhysLast = GCPhysOld + (cb - 1);
423 if (GCPhysLast < GCPhysOld)
424 {
425 AssertMsgFailed(("The old range wraps! GCPhys=%VGp cb=%#x\n", GCPhysOld, cb));
426 return VERR_INVALID_PARAMETER;
427 }
428 GCPhysLast = GCPhysNew + (cb - 1);
429 if (GCPhysLast < GCPhysNew)
430 {
431 AssertMsgFailed(("The new range wraps! GCPhys=%VGp cb=%#x\n", GCPhysNew, cb));
432 return VERR_INVALID_PARAMETER;
433 }
434
435 /*
436 * Find and remove old range location.
437 */
438 pgmLock(pVM);
439 PPGMRAMRANGE pPrev = NULL;
440 PPGMRAMRANGE pCur = pVM->pgm.s.pRamRangesHC;
441 while (pCur)
442 {
443 if (pCur->GCPhys == GCPhysOld && pCur->cb == cb)
444 break;
445
446 /* next */
447 pPrev = pCur;
448 pCur = pCur->pNextHC;
449 }
450 if (pPrev)
451 {
452 pPrev->pNextHC = pCur->pNextHC;
453 pPrev->pNextGC = pCur->pNextGC;
454 }
455 else
456 {
457 pVM->pgm.s.pRamRangesHC = pCur->pNextHC;
458 pVM->pgm.s.pRamRangesGC = pCur->pNextGC;
459 }
460
461 /*
462 * Update the range.
463 */
464 pCur->GCPhys = GCPhysNew;
465 pCur->GCPhysLast= GCPhysLast;
466 PPGMRAMRANGE pNew = pCur;
467
468 /*
469 * Find range location and check for conflicts.
470 */
471 pPrev = NULL;
472 pCur = pVM->pgm.s.pRamRangesHC;
473 while (pCur)
474 {
475 if (GCPhysNew <= pCur->GCPhysLast && GCPhysLast >= pCur->GCPhys)
476 {
477 AssertMsgFailed(("Conflict! This cannot happen!\n"));
478 pgmUnlock(pVM);
479 return VERR_PGM_RAM_CONFLICT;
480 }
481 if (GCPhysLast < pCur->GCPhys)
482 break;
483
484 /* next */
485 pPrev = pCur;
486 pCur = pCur->pNextHC;
487 }
488
489 /*
490 * Reinsert the RAM range.
491 */
492 pNew->pNextHC = pCur;
493 pNew->pNextGC = pCur ? MMHyperHC2GC(pVM, pCur) : 0;
494 if (pPrev)
495 {
496 pPrev->pNextHC = pNew;
497 pPrev->pNextGC = MMHyperHC2GC(pVM, pNew);
498 }
499 else
500 {
501 pVM->pgm.s.pRamRangesHC = pNew;
502 pVM->pgm.s.pRamRangesGC = MMHyperHC2GC(pVM, pNew);
503 }
504
505 pgmUnlock(pVM);
506 return VINF_SUCCESS;
507}
508
509
510/**
511 * Interface MMR3RomRegister() and MMR3PhysReserve calls to update the
512 * flags of existing RAM ranges.
513 *
514 * @returns VBox status.
515 * @param pVM The VM handle.
516 * @param GCPhys GC physical address of the RAM range. (page aligned)
517 * @param cb Size of the RAM range. (page aligned)
518 * @param fFlags The Or flags, MM_RAM_* \#defines.
519 * @param fMask The and mask for the flags.
520 */
521PGMR3DECL(int) PGMR3PhysSetFlags(PVM pVM, RTGCPHYS GCPhys, size_t cb, unsigned fFlags, unsigned fMask)
522{
523 Log(("PGMR3PhysSetFlags %08X %x %x %x\n", GCPhys, cb, fFlags, fMask));
524
525 /*
526 * Validate input.
527 * (Not so important because caller is always MMR3RomRegister() and MMR3PhysReserve(), but anyway...)
528 */
529 Assert(!(fFlags & ~(MM_RAM_FLAGS_RESERVED | MM_RAM_FLAGS_ROM | MM_RAM_FLAGS_MMIO | MM_RAM_FLAGS_MMIO2)));
530 Assert(RT_ALIGN_Z(cb, PAGE_SIZE) == cb && cb);
531 Assert(RT_ALIGN_T(GCPhys, PAGE_SIZE, RTGCPHYS) == GCPhys);
532 RTGCPHYS GCPhysLast = GCPhys + (cb - 1);
533 AssertReturn(GCPhysLast > GCPhys, VERR_INVALID_PARAMETER);
534
535 /*
536 * Lookup the range.
537 */
538 PPGMRAMRANGE pRam = CTXSUFF(pVM->pgm.s.pRamRanges);
539 while (pRam && GCPhys > pRam->GCPhysLast)
540 pRam = CTXSUFF(pRam->pNext);
541 if ( !pRam
542 || GCPhys > pRam->GCPhysLast
543 || GCPhysLast < pRam->GCPhys)
544 {
545 AssertMsgFailed(("No RAM range for %VGp-%VGp\n", GCPhys, GCPhysLast));
546 return VERR_INVALID_PARAMETER;
547 }
548
549 /*
550 * Update the requested flags.
551 */
552 RTHCPHYS fFullMask = ~(RTHCPHYS)(MM_RAM_FLAGS_RESERVED | MM_RAM_FLAGS_ROM | MM_RAM_FLAGS_MMIO | MM_RAM_FLAGS_MMIO2)
553 | fMask;
554 unsigned iPageEnd = (GCPhysLast - pRam->GCPhys + 1) >> PAGE_SHIFT;
555 unsigned iPage = (GCPhys - pRam->GCPhys) >> PAGE_SHIFT;
556 for ( ; iPage < iPageEnd; iPage++)
557 pRam->aHCPhys[iPage] = (pRam->aHCPhys[iPage] & fFullMask) | fFlags;
558
559 return VINF_SUCCESS;
560}
561
562
563/**
564 * Sets the Address Gate 20 state.
565 *
566 * @param pVM VM handle.
567 * @param fEnable True if the gate should be enabled.
568 * False if the gate should be disabled.
569 */
570PGMDECL(void) PGMR3PhysSetA20(PVM pVM, bool fEnable)
571{
572 LogFlow(("PGMR3PhysSetA20 %d (was %d)\n", fEnable, pVM->pgm.s.fA20Enabled));
573 if (pVM->pgm.s.fA20Enabled != (RTUINT)fEnable)
574 {
575 pVM->pgm.s.fA20Enabled = fEnable;
576 pVM->pgm.s.GCPhysA20Mask = ~(RTGCPHYS)(!fEnable << 20);
577 REMR3A20Set(pVM, fEnable);
578 }
579}
580
581
582/*
583 * PGMR3PhysReadByte/Word/Dword
584 * PGMR3PhysWriteByte/Word/Dword
585 */
586
587#define PGMPHYSFN_READNAME PGMR3PhysReadByte
588#define PGMPHYSFN_WRITENAME PGMR3PhysWriteByte
589#define PGMPHYS_DATASIZE 1
590#define PGMPHYS_DATATYPE uint8_t
591#include "PGMPhys.h"
592
593#define PGMPHYSFN_READNAME PGMR3PhysReadWord
594#define PGMPHYSFN_WRITENAME PGMR3PhysWriteWord
595#define PGMPHYS_DATASIZE 2
596#define PGMPHYS_DATATYPE uint16_t
597#include "PGMPhys.h"
598
599#define PGMPHYSFN_READNAME PGMR3PhysReadDword
600#define PGMPHYSFN_WRITENAME PGMR3PhysWriteDword
601#define PGMPHYS_DATASIZE 4
602#define PGMPHYS_DATATYPE uint32_t
603#include "PGMPhys.h"
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