VirtualBox

source: vbox/trunk/src/VBox/VMM/include/IOMInline.h@ 43667

Last change on this file since 43667 was 41783, checked in by vboxsync, 12 years ago

Doxygen, comment typos.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.6 KB
Line 
1/* $Id: IOMInline.h 41783 2012-06-16 19:24:15Z vboxsync $ */
2/** @file
3 * IOM - Inlined functions.
4 */
5
6/*
7 * Copyright (C) 2006-2011 Oracle Corporation
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 (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef ___IOMInline_h
19#define ___IOMInline_h
20
21/** @addtogroup grp_iom_int Internals
22 * @internal
23 * @{
24 */
25
26/**
27 * Gets the I/O port range for the specified I/O port in the current context.
28 *
29 * @returns Pointer to I/O port range.
30 * @returns NULL if no port registered.
31 *
32 * @param pVM Pointer to the VM.
33 * @param Port The I/O port lookup.
34 */
35DECLINLINE(CTX_SUFF(PIOMIOPORTRANGE)) iomIOPortGetRange(PVM pVM, RTIOPORT Port)
36{
37 Assert(PDMCritSectIsOwner(&pVM->iom.s.CritSect));
38 return (CTX_SUFF(PIOMIOPORTRANGE))RTAvlroIOPortRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->CTX_SUFF(IOPortTree), Port);
39}
40
41
42/**
43 * Gets the I/O port range for the specified I/O port in the HC.
44 *
45 * @returns Pointer to I/O port range.
46 * @returns NULL if no port registered.
47 *
48 * @param pVM Pointer to the VM.
49 * @param Port The I/O port to lookup.
50 */
51DECLINLINE(PIOMIOPORTRANGER3) iomIOPortGetRangeR3(PVM pVM, RTIOPORT Port)
52{
53 Assert(PDMCritSectIsOwner(&pVM->iom.s.CritSect));
54 return (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortTreeR3, Port);
55}
56
57
58/**
59 * Gets the MMIO range for the specified physical address in the current context.
60 *
61 * @returns Pointer to MMIO range.
62 * @returns NULL if address not in a MMIO range.
63 *
64 * @param pVM Pointer to the VM.
65 * @param GCPhys Physical address to lookup.
66 */
67DECLINLINE(PIOMMMIORANGE) iomMmioGetRange(PVM pVM, RTGCPHYS GCPhys)
68{
69 Assert(PDMCritSectIsOwner(&pVM->iom.s.CritSect));
70 PIOMMMIORANGE pRange = pVM->iom.s.CTX_SUFF(pMMIORangeLast);
71 if ( !pRange
72 || GCPhys - pRange->GCPhys >= pRange->cb)
73 pVM->iom.s.CTX_SUFF(pMMIORangeLast) = pRange
74 = (PIOMMMIORANGE)RTAvlroGCPhysRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->MMIOTree, GCPhys);
75 return pRange;
76}
77
78/**
79 * Retain a MMIO range.
80 *
81 * @param pRange The range to release.
82 */
83DECLINLINE(void) iomMmioRetainRange(PIOMMMIORANGE pRange)
84{
85 uint32_t cRefs = ASMAtomicIncU32(&pRange->cRefs);
86 Assert(cRefs > 1);
87 Assert(cRefs < _1M);
88 NOREF(cRefs);
89}
90
91
92/**
93 * Gets the referenced MMIO range for the specified physical address in the
94 * current context.
95 *
96 * @returns Pointer to MMIO range.
97 * @returns NULL if address not in a MMIO range.
98 *
99 * @param pVM Pointer to the VM.
100 * @param GCPhys Physical address to lookup.
101 */
102DECLINLINE(PIOMMMIORANGE) iomMmioGetRangeWithRef(PVM pVM, RTGCPHYS GCPhys)
103{
104 int rc = PDMCritSectEnter(&pVM->iom.s.CritSect, VINF_SUCCESS);
105 AssertRCReturn(rc, NULL);
106
107 PIOMMMIORANGE pRange = pVM->iom.s.CTX_SUFF(pMMIORangeLast);
108 if ( !pRange
109 || GCPhys - pRange->GCPhys >= pRange->cb)
110 pVM->iom.s.CTX_SUFF(pMMIORangeLast) = pRange
111 = (PIOMMMIORANGE)RTAvlroGCPhysRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->MMIOTree, GCPhys);
112 if (pRange)
113 iomMmioRetainRange(pRange);
114
115 PDMCritSectLeave(&pVM->iom.s.CritSect);
116 return pRange;
117}
118
119
120/**
121 * Releases a MMIO range.
122 *
123 * @param pVM Pointer to the VM.
124 * @param pRange The range to release.
125 */
126DECLINLINE(void) iomMmioReleaseRange(PVM pVM, PIOMMMIORANGE pRange)
127{
128 uint32_t cRefs = ASMAtomicDecU32(&pRange->cRefs);
129 if (!cRefs)
130 iomMmioFreeRange(pVM, pRange);
131}
132
133
134#ifdef VBOX_STRICT
135/**
136 * Gets the MMIO range for the specified physical address in the current context.
137 *
138 * @returns Pointer to MMIO range.
139 * @returns NULL if address not in a MMIO range.
140 *
141 * @param pVM Pointer to the VM.
142 * @param GCPhys Physical address to lookup.
143 */
144DECLINLINE(PIOMMMIORANGE) iomMMIOGetRangeUnsafe(PVM pVM, RTGCPHYS GCPhys)
145{
146 PIOMMMIORANGE pRange = pVM->iom.s.CTX_SUFF(pMMIORangeLast);
147 if ( !pRange
148 || GCPhys - pRange->GCPhys >= pRange->cb)
149 pVM->iom.s.CTX_SUFF(pMMIORangeLast) = pRange
150 = (PIOMMMIORANGE)RTAvlroGCPhysRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->MMIOTree, GCPhys);
151 return pRange;
152}
153#endif /* VBOX_STRICT */
154
155
156#ifdef VBOX_WITH_STATISTICS
157/**
158 * Gets the MMIO statistics record.
159 *
160 * In ring-3 this will lazily create missing records, while in GC/R0 the caller has to
161 * return the appropriate status to defer the operation to ring-3.
162 *
163 * @returns Pointer to MMIO stats.
164 * @returns NULL if not found (R0/GC), or out of memory (R3).
165 *
166 * @param pVM Pointer to the VM.
167 * @param GCPhys Physical address to lookup.
168 * @param pRange The MMIO range.
169 */
170DECLINLINE(PIOMMMIOSTATS) iomMmioGetStats(PVM pVM, RTGCPHYS GCPhys, PIOMMMIORANGE pRange)
171{
172 PDMCritSectEnter(&pVM->iom.s.CritSect, VINF_SUCCESS);
173
174 /* For large ranges, we'll put everything on the first byte. */
175 if (pRange->cb > PAGE_SIZE)
176 GCPhys = pRange->GCPhys;
177
178 PIOMMMIOSTATS pStats = pVM->iom.s.CTX_SUFF(pMMIOStatsLast);
179 if ( !pStats
180 || pStats->Core.Key != GCPhys)
181 {
182 pStats = (PIOMMMIOSTATS)RTAvloGCPhysGet(&pVM->iom.s.CTX_SUFF(pTrees)->MmioStatTree, GCPhys);
183# ifdef IN_RING3
184 if (!pStats)
185 pStats = iomR3MMIOStatsCreate(pVM, GCPhys, pRange->pszDesc);
186# endif
187 }
188
189 PDMCritSectLeave(&pVM->iom.s.CritSect);
190 return pStats;
191}
192#endif /* VBOX_WITH_STATISTICS */
193
194
195/** @} */
196
197#endif
198
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use