1 | /* $Id: PGMPhys.h 23 2007-01-15 14:08:28Z 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 | * Read physical memory. (one byte/word/dword)
|
---|
25 | *
|
---|
26 | * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
|
---|
27 | * want to ignore those.
|
---|
28 | *
|
---|
29 | * @param pVM VM Handle.
|
---|
30 | * @param GCPhys Physical address start reading from.
|
---|
31 | */
|
---|
32 | PGMDECL(PGMPHYS_DATATYPE) PGMPHYSFN_READNAME(PVM pVM, RTGCPHYS GCPhys)
|
---|
33 | {
|
---|
34 | uint32_t iCacheIndex;
|
---|
35 |
|
---|
36 | Assert(VM_IS_EMT(pVM));
|
---|
37 |
|
---|
38 | #ifdef PGM_PHYSMEMACCESS_CACHING
|
---|
39 | if (pVM->pgm.s.fPhysCacheFlushPending)
|
---|
40 | {
|
---|
41 | pVM->pgm.s.pgmphysreadcache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
|
---|
42 | pVM->pgm.s.pgmphyswritecache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
|
---|
43 | pVM->pgm.s.fPhysCacheFlushPending = false;
|
---|
44 | }
|
---|
45 | else
|
---|
46 | if ( ASMBitTest(&pVM->pgm.s.pgmphysreadcache.aEntries, (iCacheIndex = ((GCPhys >> PAGE_SHIFT) & PGM_MAX_PHYSCACHE_ENTRIES_MASK)))
|
---|
47 | && pVM->pgm.s.pgmphysreadcache.Entry[iCacheIndex].GCPhys == PAGE_ADDRESS(GCPhys) /** @todo r=bird: wrong macro. You don't want an uintptr_t! */
|
---|
48 | #if PGMPHYS_DATASIZE != 1
|
---|
49 | && PAGE_ADDRESS(GCPhys) == PAGE_ADDRESS(GCPhys + sizeof(PGMPHYS_DATATYPE) - 1) /** (GCPhys & PAGE_OFFSET_MASK) <= PAGE_SIZE - sizeof(PGMPHYS_DATATYPE) */
|
---|
50 | #endif
|
---|
51 | )
|
---|
52 | {
|
---|
53 | RTGCPHYS off = GCPhys - pVM->pgm.s.pgmphysreadcache.Entry[iCacheIndex].GCPhys;
|
---|
54 | return *(PGMPHYS_DATATYPE *)(pVM->pgm.s.pgmphysreadcache.Entry[iCacheIndex].pbHC + off);
|
---|
55 | }
|
---|
56 | #endif /* PGM_PHYSMEMACCESS_CACHING */
|
---|
57 | PGMPHYS_DATATYPE val;
|
---|
58 |
|
---|
59 | PGMPhysRead(pVM, GCPhys, &val, sizeof(val));
|
---|
60 | return val;
|
---|
61 | }
|
---|
62 |
|
---|
63 |
|
---|
64 | /**
|
---|
65 | * Write to physical memory. (one byte/word/dword)
|
---|
66 | *
|
---|
67 | * This API respects access handlers and MMIO. Use PGMPhysReadGCPhys() if you
|
---|
68 | * want to ignore those.
|
---|
69 | *
|
---|
70 | * @param pVM VM Handle.
|
---|
71 | * @param GCPhys Physical address to write to.
|
---|
72 | * @param val What to write.
|
---|
73 | */
|
---|
74 | PGMDECL(void) PGMPHYSFN_WRITENAME(PVM pVM, RTGCPHYS GCPhys, PGMPHYS_DATATYPE val)
|
---|
75 | {
|
---|
76 | uint32_t iCacheIndex;
|
---|
77 |
|
---|
78 | Assert(VM_IS_EMT(pVM));
|
---|
79 |
|
---|
80 | #ifdef PGM_PHYSMEMACCESS_CACHING
|
---|
81 | if (pVM->pgm.s.fPhysCacheFlushPending)
|
---|
82 | {
|
---|
83 | pVM->pgm.s.pgmphysreadcache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
|
---|
84 | pVM->pgm.s.pgmphyswritecache.aEntries = 0; /* flush cache; physical or virtual handlers have changed */
|
---|
85 | pVM->pgm.s.fPhysCacheFlushPending = false;
|
---|
86 | }
|
---|
87 | else
|
---|
88 | if ( ASMBitTest(&pVM->pgm.s.pgmphyswritecache.aEntries, (iCacheIndex = ((GCPhys >> PAGE_SHIFT) & PGM_MAX_PHYSCACHE_ENTRIES_MASK)))
|
---|
89 | && pVM->pgm.s.pgmphyswritecache.Entry[iCacheIndex].GCPhys == PAGE_ADDRESS(GCPhys)
|
---|
90 | #if PGMPHYS_DATASIZE != 1
|
---|
91 | && PAGE_ADDRESS(GCPhys) == PAGE_ADDRESS(GCPhys + sizeof(val) - 1)
|
---|
92 | #endif
|
---|
93 | )
|
---|
94 | {
|
---|
95 | RTGCPHYS off = GCPhys - pVM->pgm.s.pgmphyswritecache.Entry[iCacheIndex].GCPhys;
|
---|
96 | *(PGMPHYS_DATATYPE *)(pVM->pgm.s.pgmphyswritecache.Entry[iCacheIndex].pbHC + off) = val;
|
---|
97 | return;
|
---|
98 | }
|
---|
99 | #endif /* PGM_PHYSMEMACCESS_CACHING */
|
---|
100 | return PGMPhysWrite(pVM, GCPhys, &val, sizeof(val));
|
---|
101 | }
|
---|
102 |
|
---|
103 | #undef PGMPHYSFN_READNAME
|
---|
104 | #undef PGMPHYSFN_WRITENAME
|
---|
105 | #undef PGMPHYS_DATATYPE
|
---|
106 | #undef PGMPHYS_DATASIZE
|
---|
107 |
|
---|