VirtualBox

source: vbox/trunk/src/VBox/VMM/IOM.cpp@ 10473

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

MMIO instruction emulation for OR, BT and XOR added.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 80.1 KB
Line 
1/* $Id: IOM.cpp 10473 2008-07-10 15:02:53Z vboxsync $ */
2/** @file
3 * IOM - Input / Output Monitor.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/** @page pg_iom IOM - The Input/Output Monitor
24 *
25 * The input/output monitor will handle I/O exceptions routing them to the
26 * appropriate device. It implements an API to register and deregister
27 * virtual port I/O handler and memory mapped I/O handlers. A handler is
28 * PDM devices and a set of callback functions.
29 *
30 * Port I/O (PIO) is easily trapped by ensuring IOPL is 0, thus causing \#GP(0) on
31 * any access to I/O ports. Using the dissassembler (DIS) the faulting
32 * instruction will be interpreted determing the port and if there is a handler
33 * for it. If a handler exists it will be called, else default action will be
34 * performed.
35 *
36 * Memory Mapped I/O (MMIO) is gonna be worse since there are numerous instructions
37 * which can access memory. I'm afraid we might have to emulate each
38 * instruction which faults. The Execution Monitor (EM) will provide facilities
39 * for doing this using DIS.
40 *
41 * Emulating I/O port access is less complex and sligtly faster than emulating MMIO,
42 * so in most cases we should encourage the OS to use PIO. Devices which are freqently
43 * accessed should register GC handlers to speed up execution.
44 *
45 */
46
47
48/*******************************************************************************
49* Header Files *
50*******************************************************************************/
51#define LOG_GROUP LOG_GROUP_IOM
52#include <VBox/iom.h>
53#include <VBox/cpum.h>
54#include <VBox/pgm.h>
55#include <VBox/sup.h>
56#include <VBox/mm.h>
57#include <VBox/stam.h>
58#include <VBox/dbgf.h>
59#include <VBox/pdm.h>
60#include "IOMInternal.h"
61#include <VBox/vm.h>
62
63#include <VBox/param.h>
64#include <iprt/assert.h>
65#include <iprt/alloc.h>
66#include <iprt/string.h>
67#include <VBox/log.h>
68#include <VBox/err.h>
69
70
71/*******************************************************************************
72* Internal Functions *
73*******************************************************************************/
74static void iomR3FlushCache(PVM pVM);
75static DECLCALLBACK(int) iomr3RelocateIOPortCallback(PAVLROIOPORTNODECORE pNode, void *pvUser);
76static DECLCALLBACK(int) iomr3RelocateMMIOCallback(PAVLROGCPHYSNODECORE pNode, void *pvUser);
77static DECLCALLBACK(void) iomR3IOPortInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
78static DECLCALLBACK(void) iomR3MMIOInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs);
79static DECLCALLBACK(int) iomR3IOPortDummyIn(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb);
80static DECLCALLBACK(int) iomR3IOPortDummyOut(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb);
81static DECLCALLBACK(int) iomR3IOPortDummyInStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrDst, PRTGCUINTREG pcTransfer, unsigned cb);
82static DECLCALLBACK(int) iomR3IOPortDummyOutStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrSrc, PRTGCUINTREG pcTransfer, unsigned cb);
83
84#ifdef VBOX_WITH_STATISTICS
85static const char *iomr3IOPortGetStandardName(RTIOPORT Port);
86#endif
87
88
89/**
90 * Initializes the IOM.
91 *
92 * @returns VBox status code.
93 * @param pVM The VM to operate on.
94 */
95IOMR3DECL(int) IOMR3Init(PVM pVM)
96{
97 LogFlow(("IOMR3Init:\n"));
98
99 /*
100 * Assert alignment and sizes.
101 */
102 AssertRelease(!(RT_OFFSETOF(VM, iom.s) & 31));
103 AssertRelease(sizeof(pVM->iom.s) <= sizeof(pVM->iom.padding));
104
105 /*
106 * Setup any fixed pointers and offsets.
107 */
108 pVM->iom.s.offVM = RT_OFFSETOF(VM, iom);
109
110 /*
111 * Allocate the trees structure.
112 */
113 int rc = MMHyperAlloc(pVM, sizeof(*pVM->iom.s.pTreesHC), 0, MM_TAG_IOM, (void **)&pVM->iom.s.pTreesHC);
114 if (VBOX_SUCCESS(rc))
115 {
116 pVM->iom.s.pTreesGC = MMHyperHC2GC(pVM, pVM->iom.s.pTreesHC);
117 pVM->iom.s.pfnMMIOHandlerGC = NIL_RTGCPTR;
118 pVM->iom.s.pfnMMIOHandlerR0 = NIL_RTR0PTR;
119
120 /*
121 * Info.
122 */
123 DBGFR3InfoRegisterInternal(pVM, "ioport", "Dumps all IOPort ranges. No arguments.", &iomR3IOPortInfo);
124 DBGFR3InfoRegisterInternal(pVM, "mmio", "Dumps all MMIO ranges. No arguments.", &iomR3MMIOInfo);
125
126 /*
127 * Statistics.
128 */
129 STAM_REG(pVM, &pVM->iom.s.StatGCMMIOHandler, STAMTYPE_PROFILE, "/IOM/GC/MMIOHandler", STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMGCMMIOHandler() body, only success calls.");
130 STAM_REG(pVM, &pVM->iom.s.StatGCMMIOFailures, STAMTYPE_COUNTER, "/IOM/GC/MMIOFailures", STAMUNIT_OCCURENCES, "Number of times IOMGCMMIOHandler() didn't service the request.");
131 STAM_REG(pVM, &pVM->iom.s.StatGCInstMov, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOV", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOV instruction emulation.");
132 STAM_REG(pVM, &pVM->iom.s.StatGCInstCmp, STAMTYPE_PROFILE, "/IOM/GC/Inst/CMP", STAMUNIT_TICKS_PER_CALL, "Profiling of the CMP instruction emulation.");
133 STAM_REG(pVM, &pVM->iom.s.StatGCInstAnd, STAMTYPE_PROFILE, "/IOM/GC/Inst/AND", STAMUNIT_TICKS_PER_CALL, "Profiling of the AND instruction emulation.");
134 STAM_REG(pVM, &pVM->iom.s.StatGCInstOr, STAMTYPE_PROFILE, "/IOM/GC/Inst/OR", STAMUNIT_TICKS_PER_CALL, "Profiling of the OR instruction emulation.");
135 STAM_REG(pVM, &pVM->iom.s.StatGCInstXor, STAMTYPE_PROFILE, "/IOM/GC/Inst/XOR", STAMUNIT_TICKS_PER_CALL, "Profiling of the XOR instruction emulation.");
136 STAM_REG(pVM, &pVM->iom.s.StatGCInstBt, STAMTYPE_PROFILE, "/IOM/GC/Inst/BT", STAMUNIT_TICKS_PER_CALL, "Profiling of the BT instruction emulation.");
137 STAM_REG(pVM, &pVM->iom.s.StatGCInstTest, STAMTYPE_PROFILE, "/IOM/GC/Inst/TEST", STAMUNIT_TICKS_PER_CALL, "Profiling of the TEST instruction emulation.");
138 STAM_REG(pVM, &pVM->iom.s.StatGCInstXchg, STAMTYPE_PROFILE, "/IOM/GC/Inst/XCHG", STAMUNIT_TICKS_PER_CALL, "Profiling of the XCHG instruction emulation.");
139 STAM_REG(pVM, &pVM->iom.s.StatGCInstStos, STAMTYPE_PROFILE, "/IOM/GC/Inst/STOS", STAMUNIT_TICKS_PER_CALL, "Profiling of the STOS instruction emulation.");
140 STAM_REG(pVM, &pVM->iom.s.StatGCInstLods, STAMTYPE_PROFILE, "/IOM/GC/Inst/LODS", STAMUNIT_TICKS_PER_CALL, "Profiling of the LODS instruction emulation.");
141 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovs, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation.");
142 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovsToMMIO, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS/ToMMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - Mem2MMIO.");
143 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovsFromMMIO, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS/FromMMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - MMIO2Mem.");
144 STAM_REG(pVM, &pVM->iom.s.StatGCInstMovsMMIO, STAMTYPE_PROFILE, "/IOM/GC/Inst/MOVS/MMIO2MMIO", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOVS instruction emulation - MMIO2MMIO.");
145 STAM_REG(pVM, &pVM->iom.s.StatGCInstOther, STAMTYPE_COUNTER, "/IOM/GC/Inst/Other", STAMUNIT_OCCURENCES, "Other instructions counter.");
146 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO1Byte, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access1", STAMUNIT_OCCURENCES, "MMIO access by 1 byte counter.");
147 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO2Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access2", STAMUNIT_OCCURENCES, "MMIO access by 2 bytes counter.");
148 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO4Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access4", STAMUNIT_OCCURENCES, "MMIO access by 4 bytes counter.");
149 STAM_REG(pVM, &pVM->iom.s.StatGCMMIO8Bytes, STAMTYPE_COUNTER, "/IOM/GC/MMIO/Access8", STAMUNIT_OCCURENCES, "MMIO access by 8 bytes counter.");
150 STAM_REG(pVM, &pVM->iom.s.StatGCIOPortHandler, STAMTYPE_PROFILE, "/IOM/GC/PortIOHandler", STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMGCPortIOHandler() body, only success calls.");
151 STAM_REG(pVM, &pVM->iom.s.StatGCInstIn, STAMTYPE_COUNTER, "/IOM/GC/Inst/In", STAMUNIT_OCCURENCES, "Counter of any IN instructions.");
152 STAM_REG(pVM, &pVM->iom.s.StatGCInstOut, STAMTYPE_COUNTER, "/IOM/GC/Inst/Out", STAMUNIT_OCCURENCES, "Counter of any OUT instructions.");
153 STAM_REG(pVM, &pVM->iom.s.StatGCInstIns, STAMTYPE_COUNTER, "/IOM/GC/Inst/Ins", STAMUNIT_OCCURENCES, "Counter of any INS instructions.");
154 STAM_REG(pVM, &pVM->iom.s.StatGCInstOuts, STAMTYPE_COUNTER, "/IOM/GC/Inst/Outs", STAMUNIT_OCCURENCES, "Counter of any OUTS instructions.");
155 }
156
157 /* Redundant, but just in case we change something in the future */
158 iomR3FlushCache(pVM);
159
160 LogFlow(("IOMR3Init: returns %Vrc\n", rc));
161 return rc;
162}
163
164
165/**
166 * Flushes the IOM port & statistics lookup cache
167 *
168 * @param pVM The VM.
169 */
170static void iomR3FlushCache(PVM pVM)
171{
172 /*
173 * Caching of port and statistics (saves some time in rep outs/ins instruction emulation)
174 */
175 pVM->iom.s.pRangeLastReadR0 = NIL_RTR0PTR;
176 pVM->iom.s.pRangeLastWriteR0 = NIL_RTR0PTR;
177 pVM->iom.s.pStatsLastReadR0 = NIL_RTR0PTR;
178 pVM->iom.s.pStatsLastWriteR0 = NIL_RTR0PTR;
179 pVM->iom.s.pMMIORangeLastR0 = NIL_RTR0PTR;
180 pVM->iom.s.pMMIOStatsLastR0 = NIL_RTR0PTR;
181
182 pVM->iom.s.pRangeLastReadR3 = NULL;
183 pVM->iom.s.pRangeLastWriteR3 = NULL;
184 pVM->iom.s.pStatsLastReadR3 = NULL;
185 pVM->iom.s.pStatsLastWriteR3 = NULL;
186 pVM->iom.s.pMMIORangeLastR3 = NULL;
187 pVM->iom.s.pMMIOStatsLastR3 = NULL;
188
189 pVM->iom.s.pRangeLastReadGC = NIL_RTGCPTR;
190 pVM->iom.s.pRangeLastWriteGC = NIL_RTGCPTR;
191 pVM->iom.s.pStatsLastReadGC = NIL_RTGCPTR;
192 pVM->iom.s.pStatsLastWriteGC = NIL_RTGCPTR;
193 pVM->iom.s.pMMIORangeLastGC = NIL_RTGCPTR;
194 pVM->iom.s.pMMIOStatsLastGC = NIL_RTGCPTR;
195}
196
197
198/**
199 * The VM is being reset.
200 *
201 * @param pVM VM handle.
202 */
203IOMR3DECL(void) IOMR3Reset(PVM pVM)
204{
205 iomR3FlushCache(pVM);
206}
207
208
209/**
210 * Applies relocations to data and code managed by this
211 * component. This function will be called at init and
212 * whenever the VMM need to relocate it self inside the GC.
213 *
214 * The IOM will update the addresses used by the switcher.
215 *
216 * @param pVM The VM.
217 * @param offDelta Relocation delta relative to old location.
218 */
219IOMR3DECL(void) IOMR3Relocate(PVM pVM, RTGCINTPTR offDelta)
220{
221 LogFlow(("IOMR3Relocate: offDelta=%d\n", offDelta));
222
223 /*
224 * Apply relocations to the GC callbacks.
225 */
226 pVM->iom.s.pTreesGC = MMHyperHC2GC(pVM, pVM->iom.s.pTreesHC);
227 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesHC->IOPortTreeGC, true, iomr3RelocateIOPortCallback, &offDelta);
228 RTAvlroGCPhysDoWithAll(&pVM->iom.s.pTreesHC->MMIOTree, true, iomr3RelocateMMIOCallback, &offDelta);
229
230 if (pVM->iom.s.pfnMMIOHandlerGC)
231 pVM->iom.s.pfnMMIOHandlerGC += offDelta;
232
233 /*
234 * Apply relocations to the cached GC handlers
235 */
236 if (pVM->iom.s.pRangeLastReadGC)
237 pVM->iom.s.pRangeLastReadGC += offDelta;
238 if (pVM->iom.s.pRangeLastWriteGC)
239 pVM->iom.s.pRangeLastWriteGC += offDelta;
240 if (pVM->iom.s.pStatsLastReadGC)
241 pVM->iom.s.pStatsLastReadGC += offDelta;
242 if (pVM->iom.s.pStatsLastWriteGC)
243 pVM->iom.s.pStatsLastWriteGC += offDelta;
244 if (pVM->iom.s.pMMIORangeLastGC)
245 pVM->iom.s.pMMIORangeLastGC += offDelta;
246 if (pVM->iom.s.pMMIOStatsLastGC)
247 pVM->iom.s.pMMIOStatsLastGC += offDelta;
248}
249
250
251/**
252 * Callback function for relocating a I/O port range.
253 *
254 * @returns 0 (continue enum)
255 * @param pNode Pointer to a IOMIOPORTRANGEGC node.
256 * @param pvUser Pointer to the offDelta. This is a pointer to the delta since we're
257 * not certain the delta will fit in a void pointer for all possible configs.
258 */
259static DECLCALLBACK(int) iomr3RelocateIOPortCallback(PAVLROIOPORTNODECORE pNode, void *pvUser)
260{
261 PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)pNode;
262 RTGCINTPTR offDelta = *(PRTGCINTPTR)pvUser;
263
264 Assert(pRange->pDevIns);
265 pRange->pDevIns += offDelta;
266 if (pRange->pfnOutCallback)
267 pRange->pfnOutCallback += offDelta;
268 if (pRange->pfnInCallback)
269 pRange->pfnInCallback += offDelta;
270 if (pRange->pfnOutStrCallback)
271 pRange->pfnOutStrCallback += offDelta;
272 if (pRange->pfnInStrCallback)
273 pRange->pfnInStrCallback += offDelta;
274 if (pRange->pvUser > _64K)
275 pRange->pvUser += offDelta;
276 return 0;
277}
278
279
280/**
281 * Callback function for relocating a MMIO range.
282 *
283 * @returns 0 (continue enum)
284 * @param pNode Pointer to a IOMMMIORANGE node.
285 * @param pvUser Pointer to the offDelta. This is a pointer to the delta since we're
286 * not certain the delta will fit in a void pointer for all possible configs.
287 */
288static DECLCALLBACK(int) iomr3RelocateMMIOCallback(PAVLROGCPHYSNODECORE pNode, void *pvUser)
289{
290 PIOMMMIORANGE pRange = (PIOMMMIORANGE)pNode;
291 RTGCINTPTR offDelta = *(PRTGCINTPTR)pvUser;
292
293 if (pRange->pDevInsGC)
294 pRange->pDevInsGC += offDelta;
295 if (pRange->pfnWriteCallbackGC)
296 pRange->pfnWriteCallbackGC += offDelta;
297 if (pRange->pfnReadCallbackGC)
298 pRange->pfnReadCallbackGC += offDelta;
299 if (pRange->pfnFillCallbackGC)
300 pRange->pfnFillCallbackGC += offDelta;
301 if (pRange->pvUserGC > _64K)
302 pRange->pvUserGC += offDelta;
303
304 return 0;
305}
306
307
308/**
309 * Terminates the IOM.
310 *
311 * Termination means cleaning up and freeing all resources,
312 * the VM it self is at this point powered off or suspended.
313 *
314 * @returns VBox status code.
315 * @param pVM The VM to operate on.
316 */
317IOMR3DECL(int) IOMR3Term(PVM pVM)
318{
319 /*
320 * IOM is not owning anything but automatically freed resources,
321 * so there's nothing to do here.
322 */
323 return VINF_SUCCESS;
324}
325
326
327#ifdef VBOX_WITH_STATISTICS
328/**
329 * Create the statistics node for an I/O port.
330 *
331 * @returns Pointer to new stats node.
332 *
333 * @param pVM VM handle.
334 * @param Port Port.
335 * @param pszDesc Description.
336 */
337PIOMIOPORTSTATS iomr3IOPortStatsCreate(PVM pVM, RTIOPORT Port, const char *pszDesc)
338{
339 /* check if it already exists. */
340 PIOMIOPORTSTATS pPort = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.pTreesHC->IOPortStatTree, Port);
341 if (pPort)
342 return pPort;
343
344 /* allocate stats node. */
345 int rc = MMHyperAlloc(pVM, sizeof(*pPort), 0, MM_TAG_IOM_STATS, (void **)&pPort);
346 AssertRC(rc);
347 if (VBOX_SUCCESS(rc))
348 {
349 /* insert into the tree. */
350 pPort->Core.Key = Port;
351 if (RTAvloIOPortInsert(&pVM->iom.s.pTreesHC->IOPortStatTree, &pPort->Core))
352 {
353 /* put a name on common ports. */
354 if (!pszDesc)
355 pszDesc = iomr3IOPortGetStandardName(Port);
356
357 /* register the statistics counters. */
358 char szName[64];
359 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R3", Port);
360 rc = STAMR3Register(pVM, &pPort->InR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
361 AssertRC(rc);
362
363 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R3", Port);
364 rc = STAMR3Register(pVM, &pPort->OutR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
365 AssertRC(rc);
366
367 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-GC", Port);
368 rc = STAMR3Register(pVM, &pPort->InGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
369 AssertRC(rc);
370
371 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-GC", Port);
372 rc = STAMR3Register(pVM, &pPort->OutGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
373 AssertRC(rc);
374
375 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-GC-2-R3", Port);
376 rc = STAMR3Register(pVM, &pPort->InGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
377 AssertRC(rc);
378
379 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-GC-2-R3", Port);
380 rc = STAMR3Register(pVM, &pPort->OutGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
381 AssertRC(rc);
382
383 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R0", Port);
384 rc = STAMR3Register(pVM, &pPort->InR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
385 AssertRC(rc);
386
387 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R0", Port);
388 rc = STAMR3Register(pVM, &pPort->OutR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
389 AssertRC(rc);
390
391 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R0-2-R3", Port);
392 rc = STAMR3Register(pVM, &pPort->InR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
393 AssertRC(rc);
394
395 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R0-2-R3", Port);
396 rc = STAMR3Register(pVM, &pPort->OutR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, szName, STAMUNIT_OCCURENCES, pszDesc);
397 AssertRC(rc);
398
399 /* Profiling */
400 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R3/Prof", Port);
401 rc = STAMR3Register(pVM, &pPort->ProfInR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc);
402 AssertRC(rc);
403
404 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R3/Prof", Port);
405 rc = STAMR3Register(pVM, &pPort->ProfOutR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc);
406 AssertRC(rc);
407
408 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-GC/Prof", Port);
409 rc = STAMR3Register(pVM, &pPort->ProfInGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc);
410 AssertRC(rc);
411
412 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-GC/Prof", Port);
413 rc = STAMR3Register(pVM, &pPort->ProfOutGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc);
414 AssertRC(rc);
415
416 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-In-R0/Prof", Port);
417 rc = STAMR3Register(pVM, &pPort->ProfInR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc);
418 AssertRC(rc);
419
420 RTStrPrintf(szName, sizeof(szName), "/IOM/Ports/%04x-Out-R0/Prof", Port);
421 rc = STAMR3Register(pVM, &pPort->ProfOutR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, szName, STAMUNIT_TICKS_PER_CALL, pszDesc);
422 AssertRC(rc);
423
424 return pPort;
425 }
426 AssertMsgFailed(("what! Port=%d\n", Port));
427 MMHyperFree(pVM, pPort);
428 }
429 return NULL;
430}
431
432
433/**
434 * Create the statistics node for an MMIO address.
435 *
436 * @returns Pointer to new stats node.
437 *
438 * @param pVM VM handle.
439 * @param GCPhys The address.
440 * @param pszDesc Description.
441 */
442PIOMMMIOSTATS iomR3MMIOStatsCreate(PVM pVM, RTGCPHYS GCPhys, const char *pszDesc)
443{
444#ifdef DEBUG_sandervl
445 AssertGCPhys32(GCPhys);
446#endif
447 /* check if it already exists. */
448 PIOMMMIOSTATS pStats = (PIOMMMIOSTATS)RTAvloGCPhysGet(&pVM->iom.s.pTreesHC->MMIOStatTree, GCPhys);
449 if (pStats)
450 return pStats;
451
452 /* allocate stats node. */
453 int rc = MMHyperAlloc(pVM, sizeof(*pStats), 0, MM_TAG_IOM_STATS, (void **)&pStats);
454 AssertRC(rc);
455 if (VBOX_SUCCESS(rc))
456 {
457 /* insert into the tree. */
458 pStats->Core.Key = GCPhys;
459 if (RTAvloGCPhysInsert(&pVM->iom.s.pTreesHC->MMIOStatTree, &pStats->Core))
460 {
461 /* register the statistics counters. */
462 rc = STAMR3RegisterF(pVM, &pStats->ReadR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R3", GCPhys);
463 AssertRC(rc);
464 rc = STAMR3RegisterF(pVM, &pStats->WriteR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R3", GCPhys);
465 AssertRC(rc);
466 rc = STAMR3RegisterF(pVM, &pStats->ReadGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-GC", GCPhys);
467 AssertRC(rc);
468 rc = STAMR3RegisterF(pVM, &pStats->WriteGC, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-GC", GCPhys);
469 AssertRC(rc);
470 rc = STAMR3RegisterF(pVM, &pStats->ReadGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-GC-2-R3", GCPhys);
471 AssertRC(rc);
472 rc = STAMR3RegisterF(pVM, &pStats->WriteGCToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-GC-2-R3", GCPhys);
473 AssertRC(rc);
474 rc = STAMR3RegisterF(pVM, &pStats->ReadR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R0", GCPhys);
475 AssertRC(rc);
476 rc = STAMR3RegisterF(pVM, &pStats->WriteR0, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R0", GCPhys);
477 AssertRC(rc);
478 rc = STAMR3RegisterF(pVM, &pStats->ReadR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Read-R0-2-R3", GCPhys);
479 AssertRC(rc);
480 rc = STAMR3RegisterF(pVM, &pStats->WriteR0ToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp-Write-R0-2-R3", GCPhys);
481 AssertRC(rc);
482
483 /* Profiling */
484 rc = STAMR3RegisterF(pVM, &pStats->ProfReadR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-R3/Prof", GCPhys);
485 AssertRC(rc);
486 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-R3/Prof", GCPhys);
487 AssertRC(rc);
488 rc = STAMR3RegisterF(pVM, &pStats->ProfReadGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-GC/Prof", GCPhys);
489 AssertRC(rc);
490 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteGC, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-GC/Prof", GCPhys);
491 AssertRC(rc);
492 rc = STAMR3RegisterF(pVM, &pStats->ProfReadR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Read-R0/Prof", GCPhys);
493 AssertRC(rc);
494 rc = STAMR3RegisterF(pVM, &pStats->ProfWriteR0, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp-Write-R0/Prof", GCPhys);
495 AssertRC(rc);
496
497 return pStats;
498 }
499 AssertMsgFailed(("what! GCPhys=%RGp\n", GCPhys));
500 MMHyperFree(pVM, pStats);
501 }
502 return NULL;
503}
504#endif /* VBOX_WITH_STATISTICS */
505
506
507/**
508 * Registers a I/O port ring-3 handler.
509 *
510 * This API is called by PDM on behalf of a device. Devices must first register
511 * ring-3 ranges before any GC and R0 ranges can be registerd using IOMR3IOPortRegisterGC()
512 * and IOMR3IOPortRegisterR0().
513 *
514 *
515 * @returns VBox status code.
516 *
517 * @param pVM VM handle.
518 * @param pDevIns PDM device instance owning the port range.
519 * @param PortStart First port number in the range.
520 * @param cPorts Number of ports to register.
521 * @param pvUser User argument for the callbacks.
522 * @param pfnOutCallback Pointer to function which is gonna handle OUT operations in R3.
523 * @param pfnInCallback Pointer to function which is gonna handle IN operations in R3.
524 * @param pfnOutStrCallback Pointer to function which is gonna handle string OUT operations in R3.
525 * @param pfnInStrCallback Pointer to function which is gonna handle string IN operations in R3.
526 * @param pszDesc Pointer to description string. This must not be freed.
527 */
528IOMR3DECL(int) IOMR3IOPortRegisterR3(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTHCPTR pvUser,
529 R3PTRTYPE(PFNIOMIOPORTOUT) pfnOutCallback, R3PTRTYPE(PFNIOMIOPORTIN) pfnInCallback,
530 R3PTRTYPE(PFNIOMIOPORTOUTSTRING) pfnOutStrCallback, R3PTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback, const char *pszDesc)
531{
532 LogFlow(("IOMR3IOPortRegisterR3: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%VHv pfnOutCallback=%#x pfnInCallback=%#x pfnOutStrCallback=%#x pfnInStrCallback=%#x pszDesc=%s\n",
533 pDevIns, PortStart, cPorts, pvUser, pfnOutCallback, pfnInCallback, pszDesc, pfnOutStrCallback, pfnInStrCallback));
534
535 /*
536 * Validate input.
537 */
538 if ( (RTUINT)PortStart + cPorts <= (RTUINT)PortStart
539 || (RTUINT)PortStart + cPorts > 0x10000)
540 {
541 AssertMsgFailed(("Invalid port range %#x-%#x (inclusive)! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
542 return VERR_IOM_INVALID_IOPORT_RANGE;
543 }
544 if (!pfnOutCallback && !pfnInCallback)
545 {
546 AssertMsgFailed(("no handlers specfied for %#x-%#x (inclusive)! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
547 return VERR_INVALID_PARAMETER;
548 }
549 if (!pfnOutCallback)
550 pfnOutCallback = iomR3IOPortDummyOut;
551 if (!pfnInCallback)
552 pfnInCallback = iomR3IOPortDummyIn;
553 if (!pfnOutStrCallback)
554 pfnOutStrCallback = iomR3IOPortDummyOutStr;
555 if (!pfnInStrCallback)
556 pfnInStrCallback = iomR3IOPortDummyInStr;
557
558 /* Flush the IO port lookup cache */
559 iomR3FlushCache(pVM);
560
561 /*
562 * Allocate new range record and initialize it.
563 */
564 PIOMIOPORTRANGER3 pRange;
565 int rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange);
566 if (VBOX_SUCCESS(rc))
567 {
568 pRange->Core.Key = PortStart;
569 pRange->Core.KeyLast = PortStart + (cPorts - 1);
570 pRange->Port = PortStart;
571 pRange->cPorts = cPorts;
572 pRange->pvUser = pvUser;
573 pRange->pDevIns = pDevIns;
574 pRange->pfnOutCallback = pfnOutCallback;
575 pRange->pfnInCallback = pfnInCallback;
576 pRange->pfnOutStrCallback = pfnOutStrCallback;
577 pRange->pfnInStrCallback = pfnInStrCallback;
578 pRange->pszDesc = pszDesc;
579
580 /*
581 * Try Insert it.
582 */
583 if (RTAvlroIOPortInsert(&pVM->iom.s.pTreesHC->IOPortTreeR3, &pRange->Core))
584 {
585 #ifdef VBOX_WITH_STATISTICS
586 for (unsigned iPort = 0; iPort < cPorts; iPort++)
587 iomr3IOPortStatsCreate(pVM, PortStart + iPort, pszDesc);
588 #endif
589 return VINF_SUCCESS;
590 }
591
592 /* conflict. */
593 DBGFR3Info(pVM, "ioport", NULL, NULL);
594 AssertMsgFailed(("Port range %#x-%#x (%s) conflicts with existing range(s)!\n", PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
595 MMHyperFree(pVM, pRange);
596 rc = VERR_IOM_IOPORT_RANGE_CONFLICT;
597 }
598
599 return rc;
600}
601
602
603/**
604 * Registers a Port IO GC handler.
605 *
606 * This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
607 * using IOMIOPortRegisterR3() before calling this function.
608 *
609 *
610 * @returns VBox status code.
611 *
612 * @param pVM VM handle.
613 * @param pDevIns PDM device instance owning the port range.
614 * @param PortStart First port number in the range.
615 * @param cPorts Number of ports to register.
616 * @param pvUser User argument for the callbacks.
617 * @param pfnOutCallback Pointer to function which is gonna handle OUT operations in GC.
618 * @param pfnInCallback Pointer to function which is gonna handle IN operations in GC.
619 * @param pfnOutStrCallback Pointer to function which is gonna handle string OUT operations in GC.
620 * @param pfnInStrCallback Pointer to function which is gonna handle string IN operations in GC.
621 * @param pszDesc Pointer to description string. This must not be freed.
622 */
623IOMR3DECL(int) IOMR3IOPortRegisterGC(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTRCPTR pvUser,
624 RCPTRTYPE(PFNIOMIOPORTOUT) pfnOutCallback, RCPTRTYPE(PFNIOMIOPORTIN) pfnInCallback,
625 RCPTRTYPE(PFNIOMIOPORTOUTSTRING) pfnOutStrCallback, RCPTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback, const char *pszDesc)
626{
627 LogFlow(("IOMR3IOPortRegisterGC: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%VRv pfnOutCallback=%VGv pfnInCallback=%VRv pfnOutStrCallback=%VRv pfnInStrCallback=%VRv pszDesc=%s\n",
628 pDevIns, PortStart, cPorts, pvUser, pfnOutCallback, pfnInCallback, pfnOutStrCallback, pfnInStrCallback, pszDesc));
629
630 /*
631 * Validate input.
632 */
633 if ( (RTUINT)PortStart + cPorts <= (RTUINT)PortStart
634 || (RTUINT)PortStart + cPorts > 0x10000)
635 {
636 AssertMsgFailed(("Invalid port range %#x-%#x! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
637 return VERR_IOM_INVALID_IOPORT_RANGE;
638 }
639 RTIOPORT PortLast = PortStart + (cPorts - 1);
640 if (!pfnOutCallback && !pfnInCallback)
641 {
642 AssertMsgFailed(("Invalid port range %#x-%#x! No callbacks! (%s)\n", PortStart, PortLast, pszDesc));
643 return VERR_INVALID_PARAMETER;
644 }
645
646 /*
647 * Validate that there are ring-3 ranges for the ports.
648 */
649 RTIOPORT Port = PortStart;
650 while (Port <= PortLast && Port >= PortStart)
651 {
652 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTXSUFF(pTrees)->IOPortTreeR3, Port);
653 if (!pRange)
654 {
655 AssertMsgFailed(("No R3! Port=#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
656 return VERR_IOM_NO_HC_IOPORT_RANGE;
657 }
658#ifndef IOM_NO_PDMINS_CHECKS
659# ifndef IN_GC
660 if (pRange->pDevIns != pDevIns)
661# else
662 if (pRange->pDevIns != MMHyperGC2HC(pVM, pDevIns))
663# endif
664 {
665 AssertMsgFailed(("Not owner! Port=%#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
666 return VERR_IOM_NOT_IOPORT_RANGE_OWNER;
667 }
668#endif
669 Port = pRange->Core.KeyLast + 1;
670 }
671
672 /* Flush the IO port lookup cache */
673 iomR3FlushCache(pVM);
674
675 /*
676 * Allocate new range record and initialize it.
677 */
678 PIOMIOPORTRANGEGC pRange;
679 int rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange);
680 if (VBOX_SUCCESS(rc))
681 {
682 pRange->Core.Key = PortStart;
683 pRange->Core.KeyLast = PortLast;
684 pRange->Port = PortStart;
685 pRange->cPorts = cPorts;
686 pRange->pvUser = pvUser;
687 pRange->pfnOutCallback = pfnOutCallback;
688 pRange->pfnInCallback = pfnInCallback;
689 pRange->pfnOutStrCallback = pfnOutStrCallback;
690 pRange->pfnInStrCallback = pfnInStrCallback;
691#ifdef IN_GC
692 pRange->pDevIns = pDevIns;
693 pRange->pszDesc = MMHyperGC2HC(pVM, (void *)pszDesc);
694#else
695 pRange->pDevIns = MMHyperHC2GC(pVM, pDevIns);
696 pRange->pszDesc = pszDesc;
697#endif
698
699 /*
700 * Insert it.
701 */
702 if (RTAvlroIOPortInsert(&pVM->iom.s.CTXSUFF(pTrees)->IOPortTreeGC, &pRange->Core))
703 return VINF_SUCCESS;
704
705 /* conflict. */
706 AssertMsgFailed(("Port range %#x-%#x (%s) conflicts with existing range(s)!\n", PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
707 MMHyperFree(pVM, pRange);
708 rc = VERR_IOM_IOPORT_RANGE_CONFLICT;
709 }
710
711 return rc;
712}
713
714
715/**
716 * Registers a Port IO R0 handler.
717 *
718 * This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
719 * using IOMR3IOPortRegisterR3() before calling this function.
720 *
721 *
722 * @returns VBox status code.
723 *
724 * @param pVM VM handle.
725 * @param pDevIns PDM device instance owning the port range.
726 * @param PortStart First port number in the range.
727 * @param cPorts Number of ports to register.
728 * @param pvUser User argument for the callbacks.
729 * @param pfnOutCallback Pointer to function which is gonna handle OUT operations in GC.
730 * @param pfnInCallback Pointer to function which is gonna handle IN operations in GC.
731 * @param pfnOutStrCallback Pointer to function which is gonna handle OUT operations in GC.
732 * @param pfnInStrCallback Pointer to function which is gonna handle IN operations in GC.
733 * @param pszDesc Pointer to description string. This must not be freed.
734 */
735IOMR3DECL(int) IOMR3IOPortRegisterR0(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTR0PTR pvUser,
736 R0PTRTYPE(PFNIOMIOPORTOUT) pfnOutCallback, R0PTRTYPE(PFNIOMIOPORTIN) pfnInCallback,
737 R0PTRTYPE(PFNIOMIOPORTOUTSTRING) pfnOutStrCallback, R0PTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback,
738 const char *pszDesc)
739{
740 LogFlow(("IOMR3IOPortRegisterR0: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%VHv pfnOutCallback=%VHv pfnInCallback=%VHv pfnOutStrCallback=%VHv pfnInStrCallback=%VHv pszDesc=%s\n",
741 pDevIns, PortStart, cPorts, pvUser, pfnOutCallback, pfnInCallback, pfnOutStrCallback, pfnInStrCallback, pszDesc));
742
743 /*
744 * Validate input.
745 */
746 if ( (RTUINT)PortStart + cPorts <= (RTUINT)PortStart
747 || (RTUINT)PortStart + cPorts > 0x10000)
748 {
749 AssertMsgFailed(("Invalid port range %#x-%#x! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
750 return VERR_IOM_INVALID_IOPORT_RANGE;
751 }
752 RTIOPORT PortLast = PortStart + (cPorts - 1);
753 if (!pfnOutCallback && !pfnInCallback)
754 {
755 AssertMsgFailed(("Invalid port range %#x-%#x! No callbacks! (%s)\n", PortStart, PortLast, pszDesc));
756 return VERR_INVALID_PARAMETER;
757 }
758
759 /*
760 * Validate that there are ring-3 ranges for the ports.
761 */
762 RTIOPORT Port = PortStart;
763 while (Port <= PortLast && Port >= PortStart)
764 {
765 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTXSUFF(pTrees)->IOPortTreeR3, Port);
766 if (!pRange)
767 {
768 AssertMsgFailed(("No R3! Port=#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
769 return VERR_IOM_NO_HC_IOPORT_RANGE;
770 }
771#ifndef IOM_NO_PDMINS_CHECKS
772# ifndef IN_GC
773 if (pRange->pDevIns != pDevIns)
774# else
775 if (pRange->pDevIns != MMHyperGC2HC(pVM, pDevIns))
776# endif
777 {
778 AssertMsgFailed(("Not owner! Port=%#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
779 return VERR_IOM_NOT_IOPORT_RANGE_OWNER;
780 }
781#endif
782 Port = pRange->Core.KeyLast + 1;
783 }
784
785 /* Flush the IO port lookup cache */
786 iomR3FlushCache(pVM);
787
788 /*
789 * Allocate new range record and initialize it.
790 */
791 PIOMIOPORTRANGER0 pRange;
792 int rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange);
793 if (VBOX_SUCCESS(rc))
794 {
795 pRange->Core.Key = PortStart;
796 pRange->Core.KeyLast = PortLast;
797 pRange->Port = PortStart;
798 pRange->cPorts = cPorts;
799 pRange->pvUser = pvUser;
800 pRange->pfnOutCallback = pfnOutCallback;
801 pRange->pfnInCallback = pfnInCallback;
802 pRange->pfnOutStrCallback = pfnOutStrCallback;
803 pRange->pfnInStrCallback = pfnInStrCallback;
804#ifdef IN_GC
805 pRange->pDevIns = MMHyperGCToR0(pVM, pDevIns);
806 pRange->pszDesc = MMHyperGCToR3(pVM, (void *)pszDesc);
807#elif defined(IN_RING3)
808 pRange->pDevIns = MMHyperR3ToR0(pVM, pDevIns);
809 pRange->pszDesc = pszDesc;
810#else
811 pRange->pDevIns = pDevIns;
812 pRange->pszDesc = MMHyperR0ToR3(pVM, (RTR0PTR)pszDesc);
813#endif
814
815 /*
816 * Insert it.
817 */
818 if (RTAvlroIOPortInsert(&pVM->iom.s.CTXSUFF(pTrees)->IOPortTreeR0, &pRange->Core))
819 return VINF_SUCCESS;
820
821 /* conflict. */
822 AssertMsgFailed(("Port range %#x-%#x (%s) conflicts with existing range(s)!\n", PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
823 MMHyperFree(pVM, pRange);
824 rc = VERR_IOM_IOPORT_RANGE_CONFLICT;
825 }
826
827 return rc;
828}
829
830
831/**
832 * Deregisters a I/O Port range.
833 *
834 * The specified range must be registered using IOMR3IOPortRegister previous to
835 * this call. The range does can be a smaller part of the range specified to
836 * IOMR3IOPortRegister, but it can never be larger.
837 *
838 * This function will remove GC, R0 and R3 context port handlers for this range.
839 *
840 * @returns VBox status code.
841 *
842 * @param pVM The virtual machine.
843 * @param pDevIns The device instance associated with the range.
844 * @param PortStart First port number in the range.
845 * @param cPorts Number of ports to remove starting at PortStart.
846 *
847 * @remark This function mainly for PCI PnP Config and will not do
848 * all the checks you might expect it to do.
849 */
850IOMR3DECL(int) IOMR3IOPortDeregister(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts)
851{
852 LogFlow(("IOMR3IOPortDeregister: pDevIns=%p PortStart=%#x cPorts=%#x\n", pDevIns, PortStart, cPorts));
853
854 /*
855 * Validate input.
856 */
857 if ( (RTUINT)PortStart + cPorts < (RTUINT)PortStart
858 || (RTUINT)PortStart + cPorts > 0x10000)
859 {
860 AssertMsgFailed(("Invalid port range %#x-%#x!\n", PortStart, (unsigned)PortStart + cPorts - 1));
861 return VERR_IOM_INVALID_IOPORT_RANGE;
862 }
863
864 /* Flush the IO port lookup cache */
865 iomR3FlushCache(pVM);
866
867 /*
868 * Check ownership.
869 */
870 RTIOPORT PortLast = PortStart + (cPorts - 1);
871 RTIOPORT Port = PortStart;
872 while (Port <= PortLast && Port >= PortStart)
873 {
874 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesHC->IOPortTreeR3, Port);
875 if (pRange)
876 {
877 Assert(Port <= pRange->Core.KeyLast);
878#ifndef IOM_NO_PDMINS_CHECKS
879 if (pRange->pDevIns != pDevIns)
880 {
881 AssertMsgFailed(("Removal of ports in range %#x-%#x rejected because not owner of %#x-%#x (%s)\n",
882 PortStart, PortLast, pRange->Core.Key, pRange->Core.KeyLast, pRange->pszDesc));
883 return VERR_IOM_NOT_IOPORT_RANGE_OWNER;
884 }
885#endif /* !IOM_NO_PDMINS_CHECKS */
886 Port = pRange->Core.KeyLast;
887 }
888 Port++;
889 }
890
891 /*
892 * Remove any GC ranges first.
893 */
894 int rc = VINF_SUCCESS;
895 Port = PortStart;
896 while (Port <= PortLast && Port >= PortStart)
897 {
898 /*
899 * Try find range.
900 */
901 PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesHC->IOPortTreeGC, Port);
902 if (pRange)
903 {
904 if ( pRange->Core.Key == Port
905 && pRange->Core.KeyLast <= PortLast)
906 {
907 /*
908 * Kick out the entire range.
909 */
910 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTreesHC->IOPortTreeGC, Port);
911 Assert(pv == (void *)pRange); NOREF(pv);
912 Port += pRange->cPorts;
913 MMHyperFree(pVM, pRange);
914 }
915 else if (pRange->Core.Key == Port)
916 {
917 /*
918 * Cut of the head of the range, done.
919 */
920 pRange->cPorts -= Port - pRange->Port;
921 pRange->Core.Key = Port;
922 pRange->Port = Port;
923 break;
924 }
925 else if (pRange->Core.KeyLast <= PortLast)
926 {
927 /*
928 * Just cut of the tail.
929 */
930 unsigned c = pRange->Core.KeyLast - Port + 1;
931 pRange->Core.KeyLast -= c;
932 pRange->cPorts -= c;
933 Port += c;
934 }
935 else
936 {
937 /*
938 * Split the range, done.
939 */
940 Assert(pRange->Core.KeyLast > PortLast && pRange->Core.Key < Port);
941 /* create tail. */
942 PIOMIOPORTRANGEGC pRangeNew;
943 int rc = MMHyperAlloc(pVM, sizeof(*pRangeNew), 0, MM_TAG_IOM, (void **)&pRangeNew);
944 if (VBOX_FAILURE(rc))
945 return rc;
946
947 *pRangeNew = *pRange;
948 pRangeNew->Core.Key = PortLast;
949 pRangeNew->Port = PortLast;
950 pRangeNew->cPorts = pRangeNew->Core.KeyLast - PortLast + 1;
951
952 /* adjust head */
953 pRange->Core.KeyLast = Port - 1;
954 pRange->cPorts = Port - pRange->Port;
955
956 /* insert */
957 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTreesHC->IOPortTreeGC, &pRangeNew->Core))
958 {
959 AssertMsgFailed(("This cannot happen!\n"));
960 MMHyperFree(pVM, pRangeNew);
961 rc = VERR_INTERNAL_ERROR;
962 }
963 break;
964 }
965 }
966 else /* next port */
967 Port++;
968 } /* for all ports - GC. */
969
970
971 /*
972 * Remove any R0 ranges first.
973 */
974 rc = VINF_SUCCESS;
975 Port = PortStart;
976 while (Port <= PortLast && Port >= PortStart)
977 {
978 /*
979 * Try find range.
980 */
981 PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesHC->IOPortTreeR0, Port);
982 if (pRange)
983 {
984 if ( pRange->Core.Key == Port
985 && pRange->Core.KeyLast <= PortLast)
986 {
987 /*
988 * Kick out the entire range.
989 */
990 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTreesHC->IOPortTreeR0, Port);
991 Assert(pv == (void *)pRange); NOREF(pv);
992 Port += pRange->cPorts;
993 MMHyperFree(pVM, pRange);
994 }
995 else if (pRange->Core.Key == Port)
996 {
997 /*
998 * Cut of the head of the range, done.
999 */
1000 pRange->cPorts -= Port - pRange->Port;
1001 pRange->Core.Key = Port;
1002 pRange->Port = Port;
1003 break;
1004 }
1005 else if (pRange->Core.KeyLast <= PortLast)
1006 {
1007 /*
1008 * Just cut of the tail.
1009 */
1010 unsigned c = pRange->Core.KeyLast - Port + 1;
1011 pRange->Core.KeyLast -= c;
1012 pRange->cPorts -= c;
1013 Port += c;
1014 }
1015 else
1016 {
1017 /*
1018 * Split the range, done.
1019 */
1020 Assert(pRange->Core.KeyLast > PortLast && pRange->Core.Key < Port);
1021 /* create tail. */
1022 PIOMIOPORTRANGER0 pRangeNew;
1023 int rc = MMHyperAlloc(pVM, sizeof(*pRangeNew), 0, MM_TAG_IOM, (void **)&pRangeNew);
1024 if (VBOX_FAILURE(rc))
1025 return rc;
1026
1027 *pRangeNew = *pRange;
1028 pRangeNew->Core.Key = PortLast;
1029 pRangeNew->Port = PortLast;
1030 pRangeNew->cPorts = pRangeNew->Core.KeyLast - PortLast + 1;
1031
1032 /* adjust head */
1033 pRange->Core.KeyLast = Port - 1;
1034 pRange->cPorts = Port - pRange->Port;
1035
1036 /* insert */
1037 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTreesHC->IOPortTreeR0, &pRangeNew->Core))
1038 {
1039 AssertMsgFailed(("This cannot happen!\n"));
1040 MMHyperFree(pVM, pRangeNew);
1041 rc = VERR_INTERNAL_ERROR;
1042 }
1043 break;
1044 }
1045 }
1046 else /* next port */
1047 Port++;
1048 } /* for all ports - R0. */
1049
1050 /*
1051 * And the same procedure for ring-3 ranges.
1052 */
1053 Port = PortStart;
1054 while (Port <= PortLast && Port >= PortStart)
1055 {
1056 /*
1057 * Try find range.
1058 */
1059 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesHC->IOPortTreeR3, Port);
1060 if (pRange)
1061 {
1062 if ( pRange->Core.Key == Port
1063 && pRange->Core.KeyLast <= PortLast)
1064 {
1065 /*
1066 * Kick out the entire range.
1067 */
1068 void *pv = RTAvlroIOPortRemove(&pVM->iom.s.pTreesHC->IOPortTreeR3, Port);
1069 Assert(pv == (void *)pRange); NOREF(pv);
1070 Port += pRange->cPorts;
1071 MMHyperFree(pVM, pRange);
1072 }
1073 else if (pRange->Core.Key == Port)
1074 {
1075 /*
1076 * Cut of the head of the range, done.
1077 */
1078 pRange->cPorts -= Port - pRange->Port;
1079 pRange->Core.Key = Port;
1080 pRange->Port = Port;
1081 break;
1082 }
1083 else if (pRange->Core.KeyLast <= PortLast)
1084 {
1085 /*
1086 * Just cut of the tail.
1087 */
1088 unsigned c = pRange->Core.KeyLast - Port + 1;
1089 pRange->Core.KeyLast -= c;
1090 pRange->cPorts -= c;
1091 Port += c;
1092 }
1093 else
1094 {
1095 /*
1096 * Split the range, done.
1097 */
1098 Assert(pRange->Core.KeyLast > PortLast && pRange->Core.Key < Port);
1099 /* create tail. */
1100 PIOMIOPORTRANGER3 pRangeNew;
1101 int rc = MMHyperAlloc(pVM, sizeof(*pRangeNew), 0, MM_TAG_IOM, (void **)&pRangeNew);
1102 if (VBOX_FAILURE(rc))
1103 return rc;
1104
1105 *pRangeNew = *pRange;
1106 pRangeNew->Core.Key = PortLast;
1107 pRangeNew->Port = PortLast;
1108 pRangeNew->cPorts = pRangeNew->Core.KeyLast - PortLast + 1;
1109
1110 /* adjust head */
1111 pRange->Core.KeyLast = Port - 1;
1112 pRange->cPorts = Port - pRange->Port;
1113
1114 /* insert */
1115 if (!RTAvlroIOPortInsert(&pVM->iom.s.pTreesHC->IOPortTreeR3, &pRangeNew->Core))
1116 {
1117 AssertMsgFailed(("This cannot happen!\n"));
1118 MMHyperFree(pVM, pRangeNew);
1119 rc = VERR_INTERNAL_ERROR;
1120 }
1121 break;
1122 }
1123 }
1124 else /* next port */
1125 Port++;
1126 } /* for all ports - ring-3. */
1127
1128 /* done */
1129 return rc;
1130}
1131
1132
1133/**
1134 * Dummy Port I/O Handler for IN operations.
1135 *
1136 * @returns VBox status code.
1137 *
1138 * @param pDevIns The device instance.
1139 * @param pvUser User argument.
1140 * @param Port Port number used for the IN operation.
1141 * @param pu32 Where to store the result.
1142 * @param cb Number of bytes read.
1143 */
1144static DECLCALLBACK(int) iomR3IOPortDummyIn(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb)
1145{
1146 switch (cb)
1147 {
1148 case 1: *pu32 = 0xff; break;
1149 case 2: *pu32 = 0xffff; break;
1150 case 4: *pu32 = 0xffffffff; break;
1151 default:
1152 AssertReleaseMsgFailed(("cb=%d\n", cb));
1153 return VERR_INTERNAL_ERROR;
1154 }
1155 return VINF_SUCCESS;
1156}
1157
1158
1159/**
1160 * Dummy Port I/O Handler for string IN operations.
1161 *
1162 * @returns VBox status code.
1163 *
1164 * @param pDevIns The device instance.
1165 * @param pvUser User argument.
1166 * @param Port Port number used for the string IN operation.
1167 * @param pGCPtrDst Pointer to the destination buffer (GC, incremented appropriately).
1168 * @param pcTransfer Pointer to the number of transfer units to read, on return remaining transfer units.
1169 * @param cb Size of the transfer unit (1, 2 or 4 bytes).
1170 */
1171static DECLCALLBACK(int) iomR3IOPortDummyInStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrDst, PRTGCUINTREG pcTransfer, unsigned cb)
1172{
1173 return VINF_SUCCESS;
1174}
1175
1176
1177/**
1178 * Dummy Port I/O Handler for OUT operations.
1179 *
1180 * @returns VBox status code.
1181 *
1182 * @param pDevIns The device instance.
1183 * @param pvUser User argument.
1184 * @param Port Port number used for the OUT operation.
1185 * @param u32 The value to output.
1186 * @param cb The value size in bytes.
1187 */
1188static DECLCALLBACK(int) iomR3IOPortDummyOut(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
1189{
1190 return VINF_SUCCESS;
1191}
1192
1193
1194/**
1195 * Dummy Port I/O Handler for string OUT operations.
1196 *
1197 * @returns VBox status code.
1198 *
1199 * @param pDevIns The device instance.
1200 * @param pvUser User argument.
1201 * @param Port Port number used for the string OUT operation.
1202 * @param pGCPtrSrc Pointer to the source buffer (GC, incremented appropriately).
1203 * @param pcTransfer Pointer to the number of transfer units to write, on return remaining transfer units.
1204 * @param cb Size of the transfer unit (1, 2 or 4 bytes).
1205 */
1206static DECLCALLBACK(int) iomR3IOPortDummyOutStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrSrc, PRTGCUINTREG pcTransfer, unsigned cb)
1207{
1208 return VINF_SUCCESS;
1209}
1210
1211
1212/**
1213 * Display a single I/O port ring-3 range.
1214 *
1215 * @returns 0
1216 * @param pNode Pointer to I/O port HC range.
1217 * @param pvUser Pointer to info output callback structure.
1218 */
1219static DECLCALLBACK(int) iomR3IOPortInfoOneR3(PAVLROIOPORTNODECORE pNode, void *pvUser)
1220{
1221 PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)pNode;
1222 PCDBGFINFOHLP pHlp = (PCDBGFINFOHLP)pvUser;
1223 pHlp->pfnPrintf(pHlp,
1224 "%04x-%04x %VHv %VHv %VHv %VHv %s\n",
1225 pRange->Core.Key,
1226 pRange->Core.KeyLast,
1227 pRange->pDevIns,
1228 pRange->pfnInCallback,
1229 pRange->pfnOutCallback,
1230 pRange->pvUser,
1231 pRange->pszDesc);
1232 return 0;
1233}
1234
1235
1236/**
1237 * Display a single I/O port GC range.
1238 *
1239 * @returns 0
1240 * @param pNode Pointer to IOPORT GC range.
1241 * @param pvUser Pointer to info output callback structure.
1242 */
1243static DECLCALLBACK(int) iomR3IOPortInfoOneGC(PAVLROIOPORTNODECORE pNode, void *pvUser)
1244{
1245 PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)pNode;
1246 PCDBGFINFOHLP pHlp = (PCDBGFINFOHLP)pvUser;
1247 pHlp->pfnPrintf(pHlp,
1248 "%04x-%04x %VRv %VRv %VRv %VRv %s\n",
1249 pRange->Core.Key,
1250 pRange->Core.KeyLast,
1251 pRange->pDevIns,
1252 pRange->pfnInCallback,
1253 pRange->pfnOutCallback,
1254 pRange->pvUser,
1255 pRange->pszDesc);
1256 return 0;
1257}
1258
1259
1260/**
1261 * Display all registered I/O port ranges.
1262 *
1263 * @param pVM VM Handle.
1264 * @param pHlp The info helpers.
1265 * @param pszArgs Arguments, ignored.
1266 */
1267static DECLCALLBACK(void) iomR3IOPortInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
1268{
1269 NOREF(pszArgs);
1270 pHlp->pfnPrintf(pHlp,
1271 "I/O Port R3 ranges (pVM=%p)\n"
1272 "Range %.*s %.*s %.*s %.*s Description\n",
1273 pVM,
1274 sizeof(RTHCPTR) * 2, "pDevIns ",
1275 sizeof(RTHCPTR) * 2, "In ",
1276 sizeof(RTHCPTR) * 2, "Out ",
1277 sizeof(RTHCPTR) * 2, "pvUser ");
1278 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesHC->IOPortTreeR3, true, iomR3IOPortInfoOneR3, (void *)pHlp);
1279
1280 pHlp->pfnPrintf(pHlp,
1281 "I/O Port R0 ranges (pVM=%p)\n"
1282 "Range %.*s %.*s %.*s %.*s Description\n",
1283 pVM,
1284 sizeof(RTHCPTR) * 2, "pDevIns ",
1285 sizeof(RTHCPTR) * 2, "In ",
1286 sizeof(RTHCPTR) * 2, "Out ",
1287 sizeof(RTHCPTR) * 2, "pvUser ");
1288 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesHC->IOPortTreeR0, true, iomR3IOPortInfoOneR3, (void *)pHlp);
1289
1290 pHlp->pfnPrintf(pHlp,
1291 "I/O Port GC ranges (pVM=%p)\n"
1292 "Range %.*s %.*s %.*s %.*s Description\n",
1293 pVM,
1294 sizeof(RTRCPTR) * 2, "pDevIns ",
1295 sizeof(RTRCPTR) * 2, "In ",
1296 sizeof(RTRCPTR) * 2, "Out ",
1297 sizeof(RTRCPTR) * 2, "pvUser ");
1298 RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesHC->IOPortTreeGC, true, iomR3IOPortInfoOneGC, (void *)pHlp);
1299
1300 if (pVM->iom.s.pRangeLastReadGC)
1301 {
1302 PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastReadGC);
1303 pHlp->pfnPrintf(pHlp, "GC Read Ports: %#04x-%#04x %VRv %s\n",
1304 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastReadGC, pRange->pszDesc);
1305 }
1306 if (pVM->iom.s.pStatsLastReadGC)
1307 {
1308 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperGC2HC(pVM, pVM->iom.s.pStatsLastReadGC);
1309 pHlp->pfnPrintf(pHlp, "GC Read Stats: %#04x %VRv\n",
1310 pRange->Core.Key, pVM->iom.s.pStatsLastReadGC);
1311 }
1312
1313 if (pVM->iom.s.pRangeLastWriteGC)
1314 {
1315 PIOMIOPORTRANGEGC pRange = (PIOMIOPORTRANGEGC)MMHyperGC2HC(pVM, pVM->iom.s.pRangeLastWriteGC);
1316 pHlp->pfnPrintf(pHlp, "GC Write Ports: %#04x-%#04x %VRv %s\n",
1317 pRange->Port, pRange->Port + pRange->cPorts, pVM->iom.s.pRangeLastWriteGC, pRange->pszDesc);
1318 }
1319 if (pVM->iom.s.pStatsLastWriteGC)
1320 {
1321 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperGC2HC(pVM, pVM->iom.s.pStatsLastWriteGC);
1322 pHlp->pfnPrintf(pHlp, "GC Write Stats: %#04x %VRv\n",
1323 pRange->Core.Key, pVM->iom.s.pStatsLastWriteGC);
1324 }
1325
1326 if (pVM->iom.s.pRangeLastReadR3)
1327 {
1328 PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastReadR3;
1329 pHlp->pfnPrintf(pHlp, "HC Read Ports: %#04x-%#04x %VHv %s\n",
1330 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc);
1331 }
1332 if (pVM->iom.s.pStatsLastReadR3)
1333 {
1334 PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastReadR3;
1335 pHlp->pfnPrintf(pHlp, "HC Read Stats: %#04x %VHv\n",
1336 pRange->Core.Key, pRange);
1337 }
1338
1339 if (pVM->iom.s.pRangeLastWriteR3)
1340 {
1341 PIOMIOPORTRANGER3 pRange = pVM->iom.s.pRangeLastWriteR3;
1342 pHlp->pfnPrintf(pHlp, "HC Write Ports: %#04x-%#04x %VHv %s\n",
1343 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc);
1344 }
1345 if (pVM->iom.s.pStatsLastWriteR3)
1346 {
1347 PIOMIOPORTSTATS pRange = pVM->iom.s.pStatsLastWriteR3;
1348 pHlp->pfnPrintf(pHlp, "HC Write Stats: %#04x %VHv\n",
1349 pRange->Core.Key, pRange);
1350 }
1351
1352 if (pVM->iom.s.pRangeLastReadR0)
1353 {
1354 PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)MMHyperR0ToCC(pVM, pVM->iom.s.pRangeLastReadR0);
1355 pHlp->pfnPrintf(pHlp, "R0 Read Ports: %#04x-%#04x %VHv %s\n",
1356 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc);
1357 }
1358 if (pVM->iom.s.pStatsLastReadR0)
1359 {
1360 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperR0ToCC(pVM, pVM->iom.s.pStatsLastReadR0);
1361 pHlp->pfnPrintf(pHlp, "R0 Read Stats: %#04x %VHv\n",
1362 pRange->Core.Key, pRange);
1363 }
1364
1365 if (pVM->iom.s.pRangeLastWriteR0)
1366 {
1367 PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)MMHyperR0ToCC(pVM, pVM->iom.s.pRangeLastWriteR0);
1368 pHlp->pfnPrintf(pHlp, "R0 Write Ports: %#04x-%#04x %VGv %s\n",
1369 pRange->Port, pRange->Port + pRange->cPorts, pRange, pRange->pszDesc);
1370 }
1371 if (pVM->iom.s.pStatsLastWriteR0)
1372 {
1373 PIOMIOPORTSTATS pRange = (PIOMIOPORTSTATS)MMHyperR0ToCC(pVM, pVM->iom.s.pStatsLastWriteR0);
1374 pHlp->pfnPrintf(pHlp, "R0 Write Stats: %#04x %VHv\n",
1375 pRange->Core.Key, pRange);
1376 }
1377}
1378
1379
1380/**
1381 * Registers a Memory Mapped I/O R3 handler.
1382 *
1383 * This API is called by PDM on behalf of a device. Devices must register ring-3 ranges
1384 * before any GC and R0 ranges can be registered using IOMR3MMIORegisterGC() and IOMR3MMIORegisterR0().
1385 *
1386 * @returns VBox status code.
1387 *
1388 * @param pVM VM handle.
1389 * @param pDevIns PDM device instance owning the MMIO range.
1390 * @param GCPhysStart First physical address in the range.
1391 * @param cbRange The size of the range (in bytes).
1392 * @param pvUser User argument for the callbacks.
1393 * @param pfnWriteCallback Pointer to function which is gonna handle Write operations.
1394 * @param pfnReadCallback Pointer to function which is gonna handle Read operations.
1395 * @param pfnFillCallback Pointer to function which is gonna handle Fill/memset operations.
1396 * @param pszDesc Pointer to description string. This must not be freed.
1397 */
1398IOMR3DECL(int) IOMR3MMIORegisterR3(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTHCPTR pvUser,
1399 R3PTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallback, R3PTRTYPE(PFNIOMMMIOREAD) pfnReadCallback,
1400 R3PTRTYPE(PFNIOMMMIOFILL) pfnFillCallback, const char *pszDesc)
1401{
1402 LogFlow(("IOMR3MMIORegisterR3: pDevIns=%p GCPhysStart=%VGp cbRange=%#x pvUser=%VHv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x pszDesc=%s\n",
1403 pDevIns, GCPhysStart, cbRange, pvUser, pfnWriteCallback, pfnReadCallback, pfnFillCallback, pszDesc));
1404 int rc;
1405
1406 /*
1407 * Validate input.
1408 */
1409 if (GCPhysStart + (cbRange - 1) < GCPhysStart)
1410 {
1411 AssertMsgFailed(("Wrapped! %VGp %#x bytes\n", GCPhysStart, cbRange));
1412 return VERR_IOM_INVALID_MMIO_RANGE;
1413 }
1414
1415 /*
1416 * Resolve the GC/R0 handler addresses lazily because of init order.
1417 */
1418 if (pVM->iom.s.pfnMMIOHandlerR0 == NIL_RTR0PTR)
1419 {
1420 rc = PDMR3GetSymbolGCLazy(pVM, NULL, "IOMMMIOHandler", &pVM->iom.s.pfnMMIOHandlerGC);
1421 AssertLogRelRCReturn(rc, rc);
1422 rc = PDMR3GetSymbolR0Lazy(pVM, NULL, "IOMMMIOHandler", &pVM->iom.s.pfnMMIOHandlerR0);
1423 AssertLogRelRCReturn(rc, rc);
1424 }
1425
1426 /*
1427 * Allocate new range record and initialize it.
1428 */
1429 PIOMMMIORANGE pRange;
1430 rc = MMHyperAlloc(pVM, sizeof(*pRange), 0, MM_TAG_IOM, (void **)&pRange);
1431 if (VBOX_SUCCESS(rc))
1432 {
1433 pRange->Core.Key = GCPhysStart;
1434 pRange->Core.KeyLast = GCPhysStart + (cbRange - 1);
1435 pRange->GCPhys = GCPhysStart;
1436 pRange->cb = cbRange;
1437 pRange->pszDesc = pszDesc;
1438
1439 pRange->pvUserR3 = pvUser;
1440 pRange->pDevInsR3 = pDevIns;
1441 pRange->pfnReadCallbackR3 = pfnReadCallback;
1442 pRange->pfnWriteCallbackR3 = pfnWriteCallback;
1443 pRange->pfnFillCallbackR3 = pfnFillCallback;
1444
1445 //pRange->pvUserR0 = NIL_RTR0PTR;
1446 //pRange->pDevInsR0 = NIL_RTR0PTR;
1447 //pRange->pfnReadCallbackR0 = NIL_RTR0PTR;
1448 //pRange->pfnWriteCallbackR0 = NIL_RTR0PTR;
1449 //pRange->pfnFillCallbackR0 = NIL_RTR0PTR;
1450
1451 //pRange->pvUserGC = NIL_RTGCPTR;
1452 //pRange->pDevInsGC = NIL_RTGCPTR;
1453 //pRange->pfnReadCallbackGC = NIL_RTGCPTR;
1454 //pRange->pfnWriteCallbackGC = NIL_RTGCPTR;
1455 //pRange->pfnFillCallbackGC = NIL_RTGCPTR;
1456
1457 /*
1458 * Try register it with PGM and then insert it into the tree.
1459 */
1460 rc = PGMR3PhysMMIORegister(pVM, GCPhysStart, cbRange,
1461 /*IOMR3MMIOHandler*/ NULL, pRange,
1462 pVM->iom.s.pfnMMIOHandlerR0, MMHyperR3ToR0(pVM, pRange),
1463 pVM->iom.s.pfnMMIOHandlerGC, MMHyperR3ToGC(pVM, pRange), pszDesc);
1464 if (RT_SUCCESS(rc))
1465 {
1466 if (RTAvlroGCPhysInsert(&pVM->iom.s.pTreesHC->MMIOTree, &pRange->Core))
1467 return VINF_SUCCESS;
1468
1469 DBGFR3Info(pVM, "mmio", NULL, NULL);
1470 AssertMsgFailed(("This cannot happen!\n"));
1471 rc = VERR_INTERNAL_ERROR;
1472 }
1473 MMHyperFree(pVM, pRange);
1474 }
1475
1476 return rc;
1477}
1478
1479
1480/**
1481 * Registers a Memory Mapped I/O GC handler range.
1482 *
1483 * This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
1484 * using IOMMMIORegisterR3() before calling this function.
1485 *
1486 *
1487 * @returns VBox status code.
1488 *
1489 * @param pVM VM handle.
1490 * @param pDevIns PDM device instance owning the MMIO range.
1491 * @param GCPhysStart First physical address in the range.
1492 * @param cbRange The size of the range (in bytes).
1493 * @param pvUser User argument for the callbacks.
1494 * @param pfnWriteCallback Pointer to function which is gonna handle Write operations.
1495 * @param pfnReadCallback Pointer to function which is gonna handle Read operations.
1496 * @param pfnFillCallback Pointer to function which is gonna handle Fill/memset operations.
1497 */
1498IOMR3DECL(int) IOMR3MMIORegisterGC(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser,
1499 RCPTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallback, RCPTRTYPE(PFNIOMMMIOREAD) pfnReadCallback,
1500 RCPTRTYPE(PFNIOMMMIOFILL) pfnFillCallback)
1501{
1502 LogFlow(("IOMR3MMIORegisterGC: pDevIns=%p GCPhysStart=%VGp cbRange=%#x pvUser=%VGv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x\n",
1503 pDevIns, GCPhysStart, cbRange, pvUser, pfnWriteCallback, pfnReadCallback, pfnFillCallback));
1504
1505 /*
1506 * Validate input.
1507 */
1508 if (!pfnWriteCallback && !pfnReadCallback)
1509 {
1510 AssertMsgFailed(("No callbacks! %VGp LB%#x %s\n", GCPhysStart, cbRange));
1511 return VERR_INVALID_PARAMETER;
1512 }
1513
1514 /*
1515 * Find the MMIO range and check that the input matches.
1516 */
1517 PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhysStart);
1518 AssertReturn(pRange, VERR_IOM_MMIO_RANGE_NOT_FOUND);
1519 AssertReturn(pRange->pDevInsR3 == pDevIns, VERR_IOM_NOT_MMIO_RANGE_OWNER);
1520 AssertReturn(pRange->GCPhys == GCPhysStart, VERR_IOM_INVALID_MMIO_RANGE);
1521 AssertReturn(pRange->cb == cbRange, VERR_IOM_INVALID_MMIO_RANGE);
1522
1523 pRange->pvUserGC = pvUser;
1524 pRange->pfnReadCallbackGC = pfnReadCallback;
1525 pRange->pfnWriteCallbackGC= pfnWriteCallback;
1526 pRange->pfnFillCallbackGC = pfnFillCallback;
1527 pRange->pDevInsGC = MMHyperCCToGC(pVM, pDevIns);
1528
1529 return VINF_SUCCESS;
1530}
1531
1532
1533/**
1534 * Registers a Memory Mapped I/O R0 handler range.
1535 *
1536 * This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
1537 * using IOMMR3MIORegisterHC() before calling this function.
1538 *
1539 *
1540 * @returns VBox status code.
1541 *
1542 * @param pVM VM handle.
1543 * @param pDevIns PDM device instance owning the MMIO range.
1544 * @param GCPhysStart First physical address in the range.
1545 * @param cbRange The size of the range (in bytes).
1546 * @param pvUser User argument for the callbacks.
1547 * @param pfnWriteCallback Pointer to function which is gonna handle Write operations.
1548 * @param pfnReadCallback Pointer to function which is gonna handle Read operations.
1549 * @param pfnFillCallback Pointer to function which is gonna handle Fill/memset operations.
1550 */
1551IOMR3DECL(int) IOMR3MMIORegisterR0(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTR0PTR pvUser,
1552 R0PTRTYPE(PFNIOMMMIOWRITE) pfnWriteCallback,
1553 R0PTRTYPE(PFNIOMMMIOREAD) pfnReadCallback,
1554 R0PTRTYPE(PFNIOMMMIOFILL) pfnFillCallback)
1555{
1556 LogFlow(("IOMR3MMIORegisterR0: pDevIns=%p GCPhysStart=%VGp cbRange=%#x pvUser=%VHv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x\n",
1557 pDevIns, GCPhysStart, cbRange, pvUser, pfnWriteCallback, pfnReadCallback, pfnFillCallback));
1558
1559 /*
1560 * Validate input.
1561 */
1562 if (!pfnWriteCallback && !pfnReadCallback)
1563 {
1564 AssertMsgFailed(("No callbacks! %VGp LB%#x %s\n", GCPhysStart, cbRange));
1565 return VERR_INVALID_PARAMETER;
1566 }
1567
1568 /*
1569 * Find the MMIO range and check that the input matches.
1570 */
1571 PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhysStart);
1572 AssertReturn(pRange, VERR_IOM_MMIO_RANGE_NOT_FOUND);
1573 AssertReturn(pRange->pDevInsR3 == pDevIns, VERR_IOM_NOT_MMIO_RANGE_OWNER);
1574 AssertReturn(pRange->GCPhys == GCPhysStart, VERR_IOM_INVALID_MMIO_RANGE);
1575 AssertReturn(pRange->cb == cbRange, VERR_IOM_INVALID_MMIO_RANGE);
1576
1577 pRange->pvUserR0 = pvUser;
1578 pRange->pfnReadCallbackR0 = pfnReadCallback;
1579 pRange->pfnWriteCallbackR0= pfnWriteCallback;
1580 pRange->pfnFillCallbackR0 = pfnFillCallback;
1581 pRange->pDevInsR0 = MMHyperCCToR0(pVM, pDevIns);
1582
1583 return VINF_SUCCESS;
1584}
1585
1586
1587/**
1588 * Deregisters a Memory Mapped I/O handler range.
1589 *
1590 * Registered GC, R0, and R3 ranges are affected.
1591 *
1592 * @returns VBox status code.
1593 *
1594 * @param pVM The virtual machine.
1595 * @param pDevIns Device instance which the MMIO region is registered.
1596 * @param GCPhysStart First physical address (GC) in the range.
1597 * @param cbRange Number of bytes to deregister.
1598 *
1599 * @remark This function mainly for PCI PnP Config and will not do
1600 * all the checks you might expect it to do.
1601 */
1602IOMR3DECL(int) IOMR3MMIODeregister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange)
1603{
1604 LogFlow(("IOMR3MMIODeregister: pDevIns=%p GCPhysStart=%VGp cbRange=%#x\n", pDevIns, GCPhysStart, cbRange));
1605
1606 /*
1607 * Validate input.
1608 */
1609 RTGCPHYS GCPhysLast = GCPhysStart + (cbRange - 1);
1610 if (GCPhysLast < GCPhysStart)
1611 {
1612 AssertMsgFailed(("Wrapped! %#x LB%#x\n", GCPhysStart, cbRange));
1613 return VERR_IOM_INVALID_MMIO_RANGE;
1614 }
1615
1616 /*
1617 * Check ownership and such for the entire area.
1618 */
1619 RTGCPHYS GCPhys = GCPhysStart;
1620 while (GCPhys <= GCPhysLast && GCPhys >= GCPhysStart)
1621 {
1622 PIOMMMIORANGE pRange = iomMMIOGetRange(&pVM->iom.s, GCPhys);
1623 if (!pRange)
1624 return VERR_IOM_MMIO_RANGE_NOT_FOUND;
1625 AssertMsgReturn(pRange->pDevInsR3 == pDevIns,
1626 ("Not owner! GCPhys=%VGp %VGp LB%#x %s\n", GCPhys, GCPhysStart, cbRange, pRange->pszDesc),
1627 VERR_IOM_NOT_MMIO_RANGE_OWNER);
1628 AssertMsgReturn(pRange->Core.KeyLast <= GCPhysLast,
1629 ("Incomplete R3 range! GCPhys=%VGp %VGp LB%#x %s\n", GCPhys, GCPhysStart, cbRange, pRange->pszDesc),
1630 VERR_IOM_INCOMPLETE_MMIO_RANGE);
1631
1632 /* next */
1633 Assert(GCPhys <= pRange->Core.KeyLast);
1634 GCPhys = pRange->Core.KeyLast + 1;
1635 }
1636
1637 /*
1638 * Do the actual removing of the MMIO ranges.
1639 */
1640 GCPhys = GCPhysStart;
1641 while (GCPhys <= GCPhysLast && GCPhys >= GCPhysStart)
1642 {
1643 PIOMMMIORANGE pRange = (PIOMMMIORANGE)RTAvlroGCPhysRemove(&pVM->iom.s.pTreesHC->MMIOTree, GCPhys);
1644 Assert(pRange);
1645 Assert(pRange->Core.Key == GCPhys && pRange->Core.KeyLast <= GCPhysLast);
1646
1647 /* remove it from PGM */
1648 int rc = PGMR3PhysMMIODeregister(pVM, GCPhys, pRange->cb);
1649 AssertRC(rc);
1650
1651 /* advance and free. */
1652 GCPhys = pRange->Core.KeyLast + 1;
1653 MMHyperFree(pVM, pRange);
1654 }
1655
1656 iomR3FlushCache(pVM);
1657 return VINF_SUCCESS;
1658}
1659
1660
1661/**
1662 * Display a single MMIO range.
1663 *
1664 * @returns 0
1665 * @param pNode Pointer to MMIO R3 range.
1666 * @param pvUser Pointer to info output callback structure.
1667 */
1668static DECLCALLBACK(int) iomR3MMIOInfoOne(PAVLROGCPHYSNODECORE pNode, void *pvUser)
1669{
1670 PIOMMMIORANGE pRange = (PIOMMMIORANGE)pNode;
1671 PCDBGFINFOHLP pHlp = (PCDBGFINFOHLP)pvUser;
1672 pHlp->pfnPrintf(pHlp,
1673 "%VGp-%VGp %VHv %VHv %VHv %VHv %VHv %s\n",
1674 pRange->Core.Key,
1675 pRange->Core.KeyLast,
1676 pRange->pDevInsR3,
1677 pRange->pfnReadCallbackR3,
1678 pRange->pfnWriteCallbackR3,
1679 pRange->pfnFillCallbackR3,
1680 pRange->pvUserR3,
1681 pRange->pszDesc);
1682 pHlp->pfnPrintf(pHlp,
1683 "%*s %VHv %VHv %VHv %VHv %VHv\n",
1684 sizeof(RTGCPHYS) * 2 * 2 + 1, "R0",
1685 pRange->pDevInsR0,
1686 pRange->pfnReadCallbackR0,
1687 pRange->pfnWriteCallbackR0,
1688 pRange->pfnFillCallbackR0,
1689 pRange->pvUserR0);
1690 pHlp->pfnPrintf(pHlp,
1691 "%*s %VRv %VRv %VRv %VRv %VRv\n",
1692 sizeof(RTGCPHYS) * 2 * 2 + 1, "GC",
1693 pRange->pDevInsGC,
1694 pRange->pfnReadCallbackGC,
1695 pRange->pfnWriteCallbackGC,
1696 pRange->pfnFillCallbackGC,
1697 pRange->pvUserGC);
1698 return 0;
1699}
1700
1701
1702/**
1703 * Display registered MMIO ranges to the log.
1704 *
1705 * @param pVM VM Handle.
1706 * @param pHlp The info helpers.
1707 * @param pszArgs Arguments, ignored.
1708 */
1709static DECLCALLBACK(void) iomR3MMIOInfo(PVM pVM, PCDBGFINFOHLP pHlp, const char *pszArgs)
1710{
1711 NOREF(pszArgs);
1712 pHlp->pfnPrintf(pHlp,
1713 "MMIO ranges (pVM=%p)\n"
1714 "%.*s %.*s %.*s %.*s %.*s %.*s %s\n",
1715 pVM,
1716 sizeof(RTGCPHYS) * 4 + 1, "GC Phys Range ",
1717 sizeof(RTHCPTR) * 2, "pDevIns ",
1718 sizeof(RTHCPTR) * 2, "Read ",
1719 sizeof(RTHCPTR) * 2, "Write ",
1720 sizeof(RTHCPTR) * 2, "Fill ",
1721 sizeof(RTHCPTR) * 2, "pvUser ",
1722 "Description");
1723 RTAvlroGCPhysDoWithAll(&pVM->iom.s.pTreesHC->MMIOTree, true, iomR3MMIOInfoOne, (void *)pHlp);
1724}
1725
1726
1727#ifdef VBOX_WITH_STATISTICS
1728/**
1729 * Tries to come up with the standard name for a port.
1730 *
1731 * @returns Pointer to readonly string if known.
1732 * @returns NULL if unknown port number.
1733 *
1734 * @param Port The port to name.
1735 */
1736static const char *iomr3IOPortGetStandardName(RTIOPORT Port)
1737{
1738 switch (Port)
1739 {
1740 case 0x00: case 0x10: case 0x20: case 0x30: case 0x40: case 0x50: case 0x70:
1741 case 0x01: case 0x11: case 0x21: case 0x31: case 0x41: case 0x51: case 0x61: case 0x71:
1742 case 0x02: case 0x12: case 0x22: case 0x32: case 0x42: case 0x52: case 0x62: case 0x72:
1743 case 0x03: case 0x13: case 0x23: case 0x33: case 0x43: case 0x53: case 0x63: case 0x73:
1744 case 0x04: case 0x14: case 0x24: case 0x34: case 0x44: case 0x54: case 0x74:
1745 case 0x05: case 0x15: case 0x25: case 0x35: case 0x45: case 0x55: case 0x65: case 0x75:
1746 case 0x06: case 0x16: case 0x26: case 0x36: case 0x46: case 0x56: case 0x66: case 0x76:
1747 case 0x07: case 0x17: case 0x27: case 0x37: case 0x47: case 0x57: case 0x67: case 0x77:
1748 case 0x08: case 0x18: case 0x28: case 0x38: case 0x48: case 0x58: case 0x68: case 0x78:
1749 case 0x09: case 0x19: case 0x29: case 0x39: case 0x49: case 0x59: case 0x69: case 0x79:
1750 case 0x0a: case 0x1a: case 0x2a: case 0x3a: case 0x4a: case 0x5a: case 0x6a: case 0x7a:
1751 case 0x0b: case 0x1b: case 0x2b: case 0x3b: case 0x4b: case 0x5b: case 0x6b: case 0x7b:
1752 case 0x0c: case 0x1c: case 0x2c: case 0x3c: case 0x4c: case 0x5c: case 0x6c: case 0x7c:
1753 case 0x0d: case 0x1d: case 0x2d: case 0x3d: case 0x4d: case 0x5d: case 0x6d: case 0x7d:
1754 case 0x0e: case 0x1e: case 0x2e: case 0x3e: case 0x4e: case 0x5e: case 0x6e: case 0x7e:
1755 case 0x0f: case 0x1f: case 0x2f: case 0x3f: case 0x4f: case 0x5f: case 0x6f: case 0x7f:
1756
1757 case 0x80: case 0x90: case 0xa0: case 0xb0: case 0xc0: case 0xd0: case 0xe0: case 0xf0:
1758 case 0x81: case 0x91: case 0xa1: case 0xb1: case 0xc1: case 0xd1: case 0xe1: case 0xf1:
1759 case 0x82: case 0x92: case 0xa2: case 0xb2: case 0xc2: case 0xd2: case 0xe2: case 0xf2:
1760 case 0x83: case 0x93: case 0xa3: case 0xb3: case 0xc3: case 0xd3: case 0xe3: case 0xf3:
1761 case 0x84: case 0x94: case 0xa4: case 0xb4: case 0xc4: case 0xd4: case 0xe4: case 0xf4:
1762 case 0x85: case 0x95: case 0xa5: case 0xb5: case 0xc5: case 0xd5: case 0xe5: case 0xf5:
1763 case 0x86: case 0x96: case 0xa6: case 0xb6: case 0xc6: case 0xd6: case 0xe6: case 0xf6:
1764 case 0x87: case 0x97: case 0xa7: case 0xb7: case 0xc7: case 0xd7: case 0xe7: case 0xf7:
1765 case 0x88: case 0x98: case 0xa8: case 0xb8: case 0xc8: case 0xd8: case 0xe8: case 0xf8:
1766 case 0x89: case 0x99: case 0xa9: case 0xb9: case 0xc9: case 0xd9: case 0xe9: case 0xf9:
1767 case 0x8a: case 0x9a: case 0xaa: case 0xba: case 0xca: case 0xda: case 0xea: case 0xfa:
1768 case 0x8b: case 0x9b: case 0xab: case 0xbb: case 0xcb: case 0xdb: case 0xeb: case 0xfb:
1769 case 0x8c: case 0x9c: case 0xac: case 0xbc: case 0xcc: case 0xdc: case 0xec: case 0xfc:
1770 case 0x8d: case 0x9d: case 0xad: case 0xbd: case 0xcd: case 0xdd: case 0xed: case 0xfd:
1771 case 0x8e: case 0x9e: case 0xae: case 0xbe: case 0xce: case 0xde: case 0xee: case 0xfe:
1772 case 0x8f: case 0x9f: case 0xaf: case 0xbf: case 0xcf: case 0xdf: case 0xef: case 0xff:
1773 return "System Reserved";
1774
1775 case 0x60:
1776 case 0x64:
1777 return "Keyboard & Mouse";
1778
1779 case 0x378:
1780 case 0x379:
1781 case 0x37a:
1782 case 0x37b:
1783 case 0x37c:
1784 case 0x37d:
1785 case 0x37e:
1786 case 0x37f:
1787 case 0x3bc:
1788 case 0x3bd:
1789 case 0x3be:
1790 case 0x3bf:
1791 case 0x278:
1792 case 0x279:
1793 case 0x27a:
1794 case 0x27b:
1795 case 0x27c:
1796 case 0x27d:
1797 case 0x27e:
1798 case 0x27f:
1799 return "LPT1/2/3";
1800
1801 case 0x3f8:
1802 case 0x3f9:
1803 case 0x3fa:
1804 case 0x3fb:
1805 case 0x3fc:
1806 case 0x3fd:
1807 case 0x3fe:
1808 case 0x3ff:
1809 return "COM1";
1810
1811 case 0x2f8:
1812 case 0x2f9:
1813 case 0x2fa:
1814 case 0x2fb:
1815 case 0x2fc:
1816 case 0x2fd:
1817 case 0x2fe:
1818 case 0x2ff:
1819 return "COM2";
1820
1821 case 0x3e8:
1822 case 0x3e9:
1823 case 0x3ea:
1824 case 0x3eb:
1825 case 0x3ec:
1826 case 0x3ed:
1827 case 0x3ee:
1828 case 0x3ef:
1829 return "COM3";
1830
1831 case 0x2e8:
1832 case 0x2e9:
1833 case 0x2ea:
1834 case 0x2eb:
1835 case 0x2ec:
1836 case 0x2ed:
1837 case 0x2ee:
1838 case 0x2ef:
1839 return "COM4";
1840
1841 case 0x200:
1842 case 0x201:
1843 case 0x202:
1844 case 0x203:
1845 case 0x204:
1846 case 0x205:
1847 case 0x206:
1848 case 0x207:
1849 return "Joystick";
1850
1851 case 0x3f0:
1852 case 0x3f1:
1853 case 0x3f2:
1854 case 0x3f3:
1855 case 0x3f4:
1856 case 0x3f5:
1857 case 0x3f6:
1858 case 0x3f7:
1859 return "Floppy";
1860
1861 case 0x1f0:
1862 case 0x1f1:
1863 case 0x1f2:
1864 case 0x1f3:
1865 case 0x1f4:
1866 case 0x1f5:
1867 case 0x1f6:
1868 case 0x1f7:
1869 //case 0x3f6:
1870 //case 0x3f7:
1871 return "IDE 1st";
1872
1873 case 0x170:
1874 case 0x171:
1875 case 0x172:
1876 case 0x173:
1877 case 0x174:
1878 case 0x175:
1879 case 0x176:
1880 case 0x177:
1881 case 0x376:
1882 case 0x377:
1883 return "IDE 2nd";
1884
1885 case 0x1e0:
1886 case 0x1e1:
1887 case 0x1e2:
1888 case 0x1e3:
1889 case 0x1e4:
1890 case 0x1e5:
1891 case 0x1e6:
1892 case 0x1e7:
1893 case 0x3e6:
1894 case 0x3e7:
1895 return "IDE 3rd";
1896
1897 case 0x160:
1898 case 0x161:
1899 case 0x162:
1900 case 0x163:
1901 case 0x164:
1902 case 0x165:
1903 case 0x166:
1904 case 0x167:
1905 case 0x366:
1906 case 0x367:
1907 return "IDE 4th";
1908
1909 case 0x130: case 0x140: case 0x150:
1910 case 0x131: case 0x141: case 0x151:
1911 case 0x132: case 0x142: case 0x152:
1912 case 0x133: case 0x143: case 0x153:
1913 case 0x134: case 0x144: case 0x154:
1914 case 0x135: case 0x145: case 0x155:
1915 case 0x136: case 0x146: case 0x156:
1916 case 0x137: case 0x147: case 0x157:
1917 case 0x138: case 0x148: case 0x158:
1918 case 0x139: case 0x149: case 0x159:
1919 case 0x13a: case 0x14a: case 0x15a:
1920 case 0x13b: case 0x14b: case 0x15b:
1921 case 0x13c: case 0x14c: case 0x15c:
1922 case 0x13d: case 0x14d: case 0x15d:
1923 case 0x13e: case 0x14e: case 0x15e:
1924 case 0x13f: case 0x14f: case 0x15f:
1925 case 0x220: case 0x230:
1926 case 0x221: case 0x231:
1927 case 0x222: case 0x232:
1928 case 0x223: case 0x233:
1929 case 0x224: case 0x234:
1930 case 0x225: case 0x235:
1931 case 0x226: case 0x236:
1932 case 0x227: case 0x237:
1933 case 0x228: case 0x238:
1934 case 0x229: case 0x239:
1935 case 0x22a: case 0x23a:
1936 case 0x22b: case 0x23b:
1937 case 0x22c: case 0x23c:
1938 case 0x22d: case 0x23d:
1939 case 0x22e: case 0x23e:
1940 case 0x22f: case 0x23f:
1941 case 0x330: case 0x340: case 0x350:
1942 case 0x331: case 0x341: case 0x351:
1943 case 0x332: case 0x342: case 0x352:
1944 case 0x333: case 0x343: case 0x353:
1945 case 0x334: case 0x344: case 0x354:
1946 case 0x335: case 0x345: case 0x355:
1947 case 0x336: case 0x346: case 0x356:
1948 case 0x337: case 0x347: case 0x357:
1949 case 0x338: case 0x348: case 0x358:
1950 case 0x339: case 0x349: case 0x359:
1951 case 0x33a: case 0x34a: case 0x35a:
1952 case 0x33b: case 0x34b: case 0x35b:
1953 case 0x33c: case 0x34c: case 0x35c:
1954 case 0x33d: case 0x34d: case 0x35d:
1955 case 0x33e: case 0x34e: case 0x35e:
1956 case 0x33f: case 0x34f: case 0x35f:
1957 return "SCSI (typically)";
1958
1959 case 0x320:
1960 case 0x321:
1961 case 0x322:
1962 case 0x323:
1963 case 0x324:
1964 case 0x325:
1965 case 0x326:
1966 case 0x327:
1967 return "XT HD";
1968
1969 case 0x3b0:
1970 case 0x3b1:
1971 case 0x3b2:
1972 case 0x3b3:
1973 case 0x3b4:
1974 case 0x3b5:
1975 case 0x3b6:
1976 case 0x3b7:
1977 case 0x3b8:
1978 case 0x3b9:
1979 case 0x3ba:
1980 case 0x3bb:
1981 return "VGA";
1982
1983 case 0x3c0: case 0x3d0:
1984 case 0x3c1: case 0x3d1:
1985 case 0x3c2: case 0x3d2:
1986 case 0x3c3: case 0x3d3:
1987 case 0x3c4: case 0x3d4:
1988 case 0x3c5: case 0x3d5:
1989 case 0x3c6: case 0x3d6:
1990 case 0x3c7: case 0x3d7:
1991 case 0x3c8: case 0x3d8:
1992 case 0x3c9: case 0x3d9:
1993 case 0x3ca: case 0x3da:
1994 case 0x3cb: case 0x3db:
1995 case 0x3cc: case 0x3dc:
1996 case 0x3cd: case 0x3dd:
1997 case 0x3ce: case 0x3de:
1998 case 0x3cf: case 0x3df:
1999 return "VGA/EGA";
2000
2001 case 0x240: case 0x260: case 0x280:
2002 case 0x241: case 0x261: case 0x281:
2003 case 0x242: case 0x262: case 0x282:
2004 case 0x243: case 0x263: case 0x283:
2005 case 0x244: case 0x264: case 0x284:
2006 case 0x245: case 0x265: case 0x285:
2007 case 0x246: case 0x266: case 0x286:
2008 case 0x247: case 0x267: case 0x287:
2009 case 0x248: case 0x268: case 0x288:
2010 case 0x249: case 0x269: case 0x289:
2011 case 0x24a: case 0x26a: case 0x28a:
2012 case 0x24b: case 0x26b: case 0x28b:
2013 case 0x24c: case 0x26c: case 0x28c:
2014 case 0x24d: case 0x26d: case 0x28d:
2015 case 0x24e: case 0x26e: case 0x28e:
2016 case 0x24f: case 0x26f: case 0x28f:
2017 case 0x300:
2018 case 0x301:
2019 case 0x388:
2020 case 0x389:
2021 case 0x38a:
2022 case 0x38b:
2023 return "Sound Card (typically)";
2024
2025 default:
2026 return NULL;
2027 }
2028}
2029#endif /* VBOX_WITH_STATISTICS */
2030
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