VirtualBox

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

Last change on this file since 20060 was 19793, checked in by vboxsync, 15 years ago

Deal with critical section nesting when trying to clean up after a guru meditation.

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