IOM.cpp revision f9b497e69ddcaecfc0c5b88173ae54402dcc341b
/* $Id$ */
/** @file
* IOM - Input / Output Monitor.
*/
/*
* Copyright (C) 2006-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*/
/** @page pg_iom IOM - The Input / Output Monitor
*
* appropriate device. It implements an API to register and deregister virtual
* I/0 port handlers and memory mapped I/O handlers. A handler is PDM devices
* and a set of callback functions.
*
* @see grp_iom
*
*
* @section sec_iom_rawmode Raw-Mode
*
* In raw-mode I/O port access is trapped (\#GP(0)) by ensuring that the actual
* IOPL is 0 regardless of what the guest IOPL is. The \#GP handler use the
* disassembler (DIS) to figure which instruction caused it (there are a number
* of instructions in addition to the I/O ones) and if it's an I/O port access
* it will hand it to IOMRCIOPortHandler (via EMInterpretPortIO).
* IOMRCIOPortHandler will lookup the port in the AVL tree of registered
* handlers. If found, the handler will be called otherwise default action is
* taken. (Default action is to write into the void and read all set bits.)
*
* Memory Mapped I/O (MMIO) is implemented as a slightly special case of PGM
* access handlers. An MMIO range is registered with IOM which then registers it
* with the PGM access handler sub-system. The access handler catches all
* access and will be called in the context of a \#PF handler. In RC and R0 this
* handler is IOMMMIOHandler while in ring-3 it's IOMR3MMIOHandler (although in
* ring-3 there can be alternative ways). IOMMMIOHandler will attempt to emulate
* the instruction that is doing the access and pass the corresponding reads /
* writes to the device.
*
* Emulating I/O port access is less complex and should be slightly faster than
* emulating MMIO, so in most cases we should encourage the OS to use port I/O.
* Devices which are frequently accessed should register GC handlers to speed up
* execution.
*
*
* @section sec_iom_hm Hardware Assisted Virtualization Mode
*
* When running in hardware assisted virtualization mode we'll be doing much the
* same things as in raw-mode. The main difference is that we're running in the
* host ring-0 context and that we don't get faults (\#GP(0) and \#PG) but
* exits.
*
*
* @section sec_iom_rem Recompiled Execution Mode
*
* When running in the recompiler things are different. I/O port access is
* handled by calling IOMIOPortRead and IOMIOPortWrite directly. While MMIO can
* be handled in one of two ways. The normal way is that we have a registered a
* special RAM range with the recompiler and in the three callbacks (for byte,
* word and dword access) we call IOMMMIORead and IOMMMIOWrite directly. The
* alternative ways that the physical memory access which goes via PGM will take
* care of it by calling IOMR3MMIOHandler via the PGM access handler machinery
* - this shouldn't happen but it is an alternative...
*
*
* @section sec_iom_other Other Accesses
*
* I/O ports aren't really exposed in any other way, unless you count the
* instruction interpreter in EM, but that's just what we're doing in the
* raw-mode \#GP(0) case really. Now, it's possible to call IOMIOPortRead and
* IOMIOPortWrite directly to talk to a device, but this is really bad behavior
* and should only be done as temporary hacks (the PC BIOS device used to setup
* the CMOS this way back in the dark ages).
*
* MMIO has similar direct routes as the I/O ports and these shouldn't be used
* for the same reasons and with the same restrictions. OTOH since MMIO is
* mapped into the physical memory address space, it can be accessed in a number
* of ways thru PGM.
*
*/
/** @todo MMIO - simplifying the device end.
* - Add a return status for doing DBGFSTOP on access where there are no known
* registers.
* -
*
* */
/*******************************************************************************
* Header Files *
*******************************************************************************/
#define LOG_GROUP LOG_GROUP_IOM
#include "IOMInternal.h"
#include "IOMInline.h"
/*******************************************************************************
* Internal Functions *
*******************************************************************************/
static DECLCALLBACK(int) iomR3IOPortDummyIn(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb);
static DECLCALLBACK(int) iomR3IOPortDummyOut(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb);
static DECLCALLBACK(int) iomR3IOPortDummyInStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrDst, PRTGCUINTREG pcTransfer, unsigned cb);
static DECLCALLBACK(int) iomR3IOPortDummyOutStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrSrc, PRTGCUINTREG pcTransfer, unsigned cb);
#ifdef VBOX_WITH_STATISTICS
#endif
/**
* Initializes the IOM.
*
* @returns VBox status code.
* @param pVM Pointer to the VM.
*/
{
LogFlow(("IOMR3Init:\n"));
/*
* Assert alignment and sizes.
*/
/*
* Setup any fixed pointers and offsets.
*/
/*
* Initialize the REM critical section.
*/
/*
* Allocate the trees structure.
*/
if (RT_SUCCESS(rc))
{
/*
* Info.
*/
DBGFR3InfoRegisterInternal(pVM, "ioport", "Dumps all IOPort ranges. No arguments.", &iomR3IOPortInfo);
/*
* Statistics.
*/
STAM_REG(pVM, &pVM->iom.s.StatRZMMIOHandler, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler", STAMUNIT_TICKS_PER_CALL, "Profiling of the IOMMMIOHandler() body, only success calls.");
STAM_REG(pVM, &pVM->iom.s.StatRZMMIO1Byte, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access1", STAMUNIT_OCCURENCES, "MMIO access by 1 byte counter.");
STAM_REG(pVM, &pVM->iom.s.StatRZMMIO2Bytes, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access2", STAMUNIT_OCCURENCES, "MMIO access by 2 bytes counter.");
STAM_REG(pVM, &pVM->iom.s.StatRZMMIO4Bytes, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access4", STAMUNIT_OCCURENCES, "MMIO access by 4 bytes counter.");
STAM_REG(pVM, &pVM->iom.s.StatRZMMIO8Bytes, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Access8", STAMUNIT_OCCURENCES, "MMIO access by 8 bytes counter.");
STAM_REG(pVM, &pVM->iom.s.StatRZMMIOFailures, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/MMIOFailures", STAMUNIT_OCCURENCES, "Number of times IOMMMIOHandler() didn't service the request.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstMov, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/MOV", STAMUNIT_TICKS_PER_CALL, "Profiling of the MOV instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstCmp, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/CMP", STAMUNIT_TICKS_PER_CALL, "Profiling of the CMP instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstAnd, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/AND", STAMUNIT_TICKS_PER_CALL, "Profiling of the AND instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstOr, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/OR", STAMUNIT_TICKS_PER_CALL, "Profiling of the OR instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstXor, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/XOR", STAMUNIT_TICKS_PER_CALL, "Profiling of the XOR instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstBt, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/BT", STAMUNIT_TICKS_PER_CALL, "Profiling of the BT instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstTest, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/TEST", STAMUNIT_TICKS_PER_CALL, "Profiling of the TEST instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstXchg, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/XCHG", STAMUNIT_TICKS_PER_CALL, "Profiling of the XCHG instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstStos, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/STOS", STAMUNIT_TICKS_PER_CALL, "Profiling of the STOS instruction emulation.");
STAM_REG(pVM, &pVM->iom.s.StatRZInstLods, STAMTYPE_PROFILE, "/IOM/RZ-MMIOHandler/Inst/LODS", STAMUNIT_TICKS_PER_CALL, "Profiling of the LODS instruction emulation.");
#ifdef IOM_WITH_MOVS_SUPPORT
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.");
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.");
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.");
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.");
#endif
STAM_REG(pVM, &pVM->iom.s.StatRZInstOther, STAMTYPE_COUNTER, "/IOM/RZ-MMIOHandler/Inst/Other", STAMUNIT_OCCURENCES, "Other instructions counter.");
STAM_REG(pVM, &pVM->iom.s.StatR3MMIOHandler, STAMTYPE_COUNTER, "/IOM/R3-MMIOHandler", STAMUNIT_OCCURENCES, "Number of calls to IOMR3MMIOHandler.");
STAM_REG(pVM, &pVM->iom.s.StatInstIn, STAMTYPE_COUNTER, "/IOM/IOWork/In", STAMUNIT_OCCURENCES, "Counter of any IN instructions.");
STAM_REG(pVM, &pVM->iom.s.StatInstOut, STAMTYPE_COUNTER, "/IOM/IOWork/Out", STAMUNIT_OCCURENCES, "Counter of any OUT instructions.");
STAM_REG(pVM, &pVM->iom.s.StatInstIns, STAMTYPE_COUNTER, "/IOM/IOWork/Ins", STAMUNIT_OCCURENCES, "Counter of any INS instructions.");
STAM_REG(pVM, &pVM->iom.s.StatInstOuts, STAMTYPE_COUNTER, "/IOM/IOWork/Outs", STAMUNIT_OCCURENCES, "Counter of any OUTS instructions.");
}
/* Redundant, but just in case we change something in the future */
return rc;
}
/**
* Flushes the IOM port & statistics lookup cache
*
* @param pVM The VM.
*/
{
/*
*/
}
/**
* The VM is being reset.
*
* @param pVM Pointer to the VM.
*/
{
}
/**
* Applies relocations to data and code managed by this
* component. This function will be called at init and
* whenever the VMM need to relocate it self inside the GC.
*
* The IOM will update the addresses used by the switcher.
*
* @param pVM The VM.
* @param offDelta Relocation delta relative to old location.
*/
{
/*
* Apply relocations to the GC callbacks.
*/
RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeRC, true, iomR3RelocateIOPortCallback, &offDelta);
/*
* Apply relocations to the cached GC handlers
*/
}
/**
* Callback function for relocating a I/O port range.
*
* @returns 0 (continue enum)
* @param pNode Pointer to a IOMIOPORTRANGERC node.
* @param pvUser Pointer to the offDelta. This is a pointer to the delta since we're
* not certain the delta will fit in a void pointer for all possible configs.
*/
{
if (pRange->pfnOutCallback)
if (pRange->pfnInCallback)
if (pRange->pfnOutStrCallback)
if (pRange->pfnInStrCallback)
return 0;
}
/**
* Callback function for relocating a MMIO range.
*
* @returns 0 (continue enum)
* @param pNode Pointer to a IOMMMIORANGE node.
* @param pvUser Pointer to the offDelta. This is a pointer to the delta since we're
* not certain the delta will fit in a void pointer for all possible configs.
*/
{
if (pRange->pfnWriteCallbackRC)
if (pRange->pfnReadCallbackRC)
if (pRange->pfnFillCallbackRC)
return 0;
}
/**
* Terminates the IOM.
*
* Termination means cleaning up and freeing all resources,
* the VM it self is at this point powered off or suspended.
*
* @returns VBox status code.
* @param pVM Pointer to the VM.
*/
{
/*
* IOM is not owning anything but automatically freed resources,
* so there's nothing to do here.
*/
return VINF_SUCCESS;
}
#ifdef VBOX_WITH_STATISTICS
/**
* Create the statistics node for an I/O port.
*
* @returns Pointer to new stats node.
*
* @param pVM Pointer to the VM.
* @param Port Port.
* @param pszDesc Description.
*/
{
/* check if it already exists. */
PIOMIOPORTSTATS pPort = (PIOMIOPORTSTATS)RTAvloIOPortGet(&pVM->iom.s.pTreesR3->IOPortStatTree, Port);
if (pPort)
return pPort;
/* allocate stats node. */
if (RT_SUCCESS(rc))
{
/* insert into the tree. */
{
/* put a name on common ports. */
if (!pszDesc)
/* register the statistics counters. */
rc = STAMR3RegisterF(pVM, &pPort->InR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-In-R3", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->OutR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-Out-R3", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->InRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-In-RZ", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->OutRZ, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-Out-RZ", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->InRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-In-RZtoR3", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->OutRZToR3,STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/Ports/%04x-Out-RZtoR3", Port); AssertRC(rc);
/* Profiling */
rc = STAMR3RegisterF(pVM, &pPort->ProfInR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-In-R3/Prof", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->ProfOutR3,STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-Out-R3/Prof", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->ProfInRZ, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-In-RZ/Prof", Port); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pPort->ProfOutRZ,STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc,"/IOM/Ports/%04x-Out-RZ/Prof", Port); AssertRC(rc);
return pPort;
}
}
return NULL;
}
/**
* Create the statistics node for an MMIO address.
*
* @returns Pointer to new stats node.
*
* @param pVM Pointer to the VM.
* @param GCPhys The address.
* @param pszDesc Description.
*/
{
#ifdef DEBUG_sandervl
#endif
/* check if it already exists. */
if (pStats)
return pStats;
/* allocate stats node. */
if (RT_SUCCESS(rc))
{
/* insert into the tree. */
{
rc = STAMR3RegisterF(pVM, &pStats->Accesses, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp", GCPhys); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pStats->ProfReadR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp/Read-R3", GCPhys); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pStats->ProfWriteR3, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp/Write-R3", GCPhys); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pStats->ProfReadRZ, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp/Read-RZ", GCPhys); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pStats->ProfWriteRZ, STAMTYPE_PROFILE, STAMVISIBILITY_USED, STAMUNIT_TICKS_PER_CALL, pszDesc, "/IOM/MMIO/%RGp/Write-RZ", GCPhys); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pStats->ReadRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp/Read-RZtoR3", GCPhys); AssertRC(rc);
rc = STAMR3RegisterF(pVM, &pStats->WriteRZToR3, STAMTYPE_COUNTER, STAMVISIBILITY_USED, STAMUNIT_OCCURENCES, pszDesc, "/IOM/MMIO/%RGp/Write-RZtoR3", GCPhys); AssertRC(rc);
return pStats;
}
}
return NULL;
}
#endif /* VBOX_WITH_STATISTICS */
/**
* Registers a I/O port ring-3 handler.
*
* This API is called by PDM on behalf of a device. Devices must first register
* ring-3 ranges before any GC and R0 ranges can be registered using IOMR3IOPortRegisterRC()
* and IOMR3IOPortRegisterR0().
*
*
* @returns VBox status code.
*
* @param pVM Pointer to the VM.
* @param pDevIns PDM device instance owning the port range.
* @param PortStart First port number in the range.
* @param cPorts Number of ports to register.
* @param pvUser User argument for the callbacks.
* @param pfnOutCallback Pointer to function which is gonna handle OUT operations in R3.
* @param pfnInCallback Pointer to function which is gonna handle IN operations in R3.
* @param pfnOutStrCallback Pointer to function which is gonna handle string OUT operations in R3.
* @param pfnInStrCallback Pointer to function which is gonna handle string IN operations in R3.
* @param pszDesc Pointer to description string. This must not be freed.
*/
VMMR3_INT_DECL(int) IOMR3IOPortRegisterR3(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTHCPTR pvUser,
R3PTRTYPE(PFNIOMIOPORTOUTSTRING) pfnOutStrCallback, R3PTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback, const char *pszDesc)
{
LogFlow(("IOMR3IOPortRegisterR3: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%RHv pfnOutCallback=%#x pfnInCallback=%#x pfnOutStrCallback=%#x pfnInStrCallback=%#x pszDesc=%s\n",
pDevIns, PortStart, cPorts, pvUser, pfnOutCallback, pfnInCallback, pfnOutStrCallback, pfnInStrCallback, pszDesc));
/*
* Validate input.
*/
{
AssertMsgFailed(("Invalid port range %#x-%#x (inclusive)! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
return VERR_IOM_INVALID_IOPORT_RANGE;
}
if (!pfnOutCallback && !pfnInCallback)
{
AssertMsgFailed(("no handlers specfied for %#x-%#x (inclusive)! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
return VERR_INVALID_PARAMETER;
}
if (!pfnOutCallback)
if (!pfnInCallback)
if (!pfnOutStrCallback)
if (!pfnInStrCallback)
/* Flush the IO port lookup cache */
/*
* Allocate new range record and initialize it.
*/
if (RT_SUCCESS(rc))
{
/*
* Try Insert it.
*/
{
#ifdef VBOX_WITH_STATISTICS
#endif
return VINF_SUCCESS;
}
/* conflict. */
AssertMsgFailed(("Port range %#x-%#x (%s) conflicts with existing range(s)!\n", PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
}
return rc;
}
/**
* Registers a I/O port RC handler.
*
* This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
* using IOMIOPortRegisterR3() before calling this function.
*
*
* @returns VBox status code.
*
* @param pVM Pointer to the VM.
* @param pDevIns PDM device instance owning the port range.
* @param PortStart First port number in the range.
* @param cPorts Number of ports to register.
* @param pvUser User argument for the callbacks.
* @param pfnOutCallback Pointer to function which is gonna handle OUT operations in GC.
* @param pfnInCallback Pointer to function which is gonna handle IN operations in GC.
* @param pfnOutStrCallback Pointer to function which is gonna handle string OUT operations in GC.
* @param pfnInStrCallback Pointer to function which is gonna handle string IN operations in GC.
* @param pszDesc Pointer to description string. This must not be freed.
*/
VMMR3_INT_DECL(int) IOMR3IOPortRegisterRC(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTRCPTR pvUser,
RCPTRTYPE(PFNIOMIOPORTOUTSTRING) pfnOutStrCallback, RCPTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback, const char *pszDesc)
{
LogFlow(("IOMR3IOPortRegisterRC: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%RRv pfnOutCallback=%RRv pfnInCallback=%RRv pfnOutStrCallback=%RRv pfnInStrCallback=%RRv pszDesc=%s\n",
pDevIns, PortStart, cPorts, pvUser, pfnOutCallback, pfnInCallback, pfnOutStrCallback, pfnInStrCallback, pszDesc));
/*
* Validate input.
*/
{
AssertMsgFailed(("Invalid port range %#x-%#x! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
return VERR_IOM_INVALID_IOPORT_RANGE;
}
if (!pfnOutCallback && !pfnInCallback)
{
AssertMsgFailed(("Invalid port range %#x-%#x! No callbacks! (%s)\n", PortStart, PortLast, pszDesc));
return VERR_INVALID_PARAMETER;
}
/*
* Validate that there are ring-3 ranges for the ports.
*/
{
PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortTreeR3, Port);
if (!pRange)
{
AssertMsgFailed(("No R3! Port=#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
return VERR_IOM_NO_R3_IOPORT_RANGE;
}
#ifndef IOM_NO_PDMINS_CHECKS
# ifndef IN_RC
# else
# endif
{
AssertMsgFailed(("Not owner! Port=%#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
return VERR_IOM_NOT_IOPORT_RANGE_OWNER;
}
#endif
}
/* Flush the IO port lookup cache */
/*
* Allocate new range record and initialize it.
*/
if (RT_SUCCESS(rc))
{
/*
* Insert it.
*/
{
return VINF_SUCCESS;
}
/* conflict. */
AssertMsgFailed(("Port range %#x-%#x (%s) conflicts with existing range(s)!\n", PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
}
return rc;
}
/**
* Registers a Port IO R0 handler.
*
* This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
* using IOMR3IOPortRegisterR3() before calling this function.
*
*
* @returns VBox status code.
*
* @param pVM Pointer to the VM.
* @param pDevIns PDM device instance owning the port range.
* @param PortStart First port number in the range.
* @param cPorts Number of ports to register.
* @param pvUser User argument for the callbacks.
* @param pfnOutCallback Pointer to function which is gonna handle OUT operations in GC.
* @param pfnInCallback Pointer to function which is gonna handle IN operations in GC.
* @param pfnOutStrCallback Pointer to function which is gonna handle OUT operations in GC.
* @param pfnInStrCallback Pointer to function which is gonna handle IN operations in GC.
* @param pszDesc Pointer to description string. This must not be freed.
*/
VMMR3_INT_DECL(int) IOMR3IOPortRegisterR0(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts, RTR0PTR pvUser,
R0PTRTYPE(PFNIOMIOPORTOUTSTRING) pfnOutStrCallback, R0PTRTYPE(PFNIOMIOPORTINSTRING) pfnInStrCallback,
const char *pszDesc)
{
LogFlow(("IOMR3IOPortRegisterR0: pDevIns=%p PortStart=%#x cPorts=%#x pvUser=%RHv pfnOutCallback=%RHv pfnInCallback=%RHv pfnOutStrCallback=%RHv pfnInStrCallback=%RHv pszDesc=%s\n",
pDevIns, PortStart, cPorts, pvUser, pfnOutCallback, pfnInCallback, pfnOutStrCallback, pfnInStrCallback, pszDesc));
/*
* Validate input.
*/
{
AssertMsgFailed(("Invalid port range %#x-%#x! (%s)\n", PortStart, (RTUINT)PortStart + (cPorts - 1), pszDesc));
return VERR_IOM_INVALID_IOPORT_RANGE;
}
if (!pfnOutCallback && !pfnInCallback)
{
AssertMsgFailed(("Invalid port range %#x-%#x! No callbacks! (%s)\n", PortStart, PortLast, pszDesc));
return VERR_INVALID_PARAMETER;
}
/*
* Validate that there are ring-3 ranges for the ports.
*/
{
PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.CTX_SUFF(pTrees)->IOPortTreeR3, Port);
if (!pRange)
{
AssertMsgFailed(("No R3! Port=#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
return VERR_IOM_NO_R3_IOPORT_RANGE;
}
#ifndef IOM_NO_PDMINS_CHECKS
# ifndef IN_RC
# else
# endif
{
AssertMsgFailed(("Not owner! Port=%#x %#x-%#x! (%s)\n", Port, PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
return VERR_IOM_NOT_IOPORT_RANGE_OWNER;
}
#endif
}
/* Flush the IO port lookup cache */
/*
* Allocate new range record and initialize it.
*/
if (RT_SUCCESS(rc))
{
/*
* Insert it.
*/
{
return VINF_SUCCESS;
}
/* conflict. */
AssertMsgFailed(("Port range %#x-%#x (%s) conflicts with existing range(s)!\n", PortStart, (unsigned)PortStart + cPorts - 1, pszDesc));
}
return rc;
}
/**
* Deregisters a I/O Port range.
*
* The specified range must be registered using IOMR3IOPortRegister previous to
* this call. The range does can be a smaller part of the range specified to
* IOMR3IOPortRegister, but it can never be larger.
*
* This function will remove GC, R0 and R3 context port handlers for this range.
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pDevIns The device instance associated with the range.
* @param PortStart First port number in the range.
* @param cPorts Number of ports to remove starting at PortStart.
*
* @remark This function mainly for PCI PnP Config and will not do
* all the checks you might expect it to do.
*/
VMMR3_INT_DECL(int) IOMR3IOPortDeregister(PVM pVM, PPDMDEVINS pDevIns, RTIOPORT PortStart, RTUINT cPorts)
{
LogFlow(("IOMR3IOPortDeregister: pDevIns=%p PortStart=%#x cPorts=%#x\n", pDevIns, PortStart, cPorts));
/*
* Validate input.
*/
{
return VERR_IOM_INVALID_IOPORT_RANGE;
}
/* Flush the IO port lookup cache */
/*
* Check ownership.
*/
{
PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeR3, Port);
if (pRange)
{
#ifndef IOM_NO_PDMINS_CHECKS
{
AssertMsgFailed(("Removal of ports in range %#x-%#x rejected because not owner of %#x-%#x (%s)\n",
return VERR_IOM_NOT_IOPORT_RANGE_OWNER;
}
#endif /* !IOM_NO_PDMINS_CHECKS */
}
Port++;
}
/*
* Remove any RC ranges first.
*/
int rc = VINF_SUCCESS;
{
/*
* Try find range.
*/
PIOMIOPORTRANGERC pRange = (PIOMIOPORTRANGERC)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeRC, Port);
if (pRange)
{
{
/*
* Kick out the entire range.
*/
}
{
/*
* Cut of the head of the range, done.
*/
break;
}
{
/*
* Just cut of the tail.
*/
Port += c;
}
else
{
/*
* Split the range, done.
*/
/* create tail. */
if (RT_FAILURE(rc2))
{
return rc2;
}
/* adjust head */
/* insert */
{
AssertMsgFailed(("This cannot happen!\n"));
}
break;
}
}
else /* next port */
Port++;
} /* for all ports - RC. */
/*
* Remove any R0 ranges.
*/
{
/*
* Try find range.
*/
PIOMIOPORTRANGER0 pRange = (PIOMIOPORTRANGER0)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeR0, Port);
if (pRange)
{
{
/*
* Kick out the entire range.
*/
}
{
/*
* Cut of the head of the range, done.
*/
break;
}
{
/*
* Just cut of the tail.
*/
Port += c;
}
else
{
/*
* Split the range, done.
*/
/* create tail. */
if (RT_FAILURE(rc2))
{
return rc2;
}
/* adjust head */
/* insert */
{
AssertMsgFailed(("This cannot happen!\n"));
}
break;
}
}
else /* next port */
Port++;
} /* for all ports - R0. */
/*
* And the same procedure for ring-3 ranges.
*/
{
/*
* Try find range.
*/
PIOMIOPORTRANGER3 pRange = (PIOMIOPORTRANGER3)RTAvlroIOPortRangeGet(&pVM->iom.s.pTreesR3->IOPortTreeR3, Port);
if (pRange)
{
{
/*
* Kick out the entire range.
*/
}
{
/*
* Cut of the head of the range, done.
*/
break;
}
{
/*
* Just cut of the tail.
*/
Port += c;
}
else
{
/*
* Split the range, done.
*/
/* create tail. */
if (RT_FAILURE(rc2))
{
return rc2;
}
/* adjust head */
/* insert */
{
AssertMsgFailed(("This cannot happen!\n"));
}
break;
}
}
else /* next port */
Port++;
} /* for all ports - ring-3. */
/* done */
return rc;
}
/**
* Dummy Port I/O Handler for IN operations.
*
* @returns VBox status code.
*
* @param pDevIns The device instance.
* @param pvUser User argument.
* @param Port Port number used for the IN operation.
* @param pu32 Where to store the result.
* @param cb Number of bytes read.
*/
static DECLCALLBACK(int) iomR3IOPortDummyIn(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb)
{
switch (cb)
{
default:
return VERR_IOM_IOPORT_IPE_2;
}
return VINF_SUCCESS;
}
/**
* Dummy Port I/O Handler for string IN operations.
*
* @returns VBox status code.
*
* @param pDevIns The device instance.
* @param pvUser User argument.
* @param Port Port number used for the string IN operation.
* @param pGCPtrDst Pointer to the destination buffer (GC, incremented appropriately).
* @param pcTransfer Pointer to the number of transfer units to read, on return remaining transfer units.
* @param cb Size of the transfer unit (1, 2 or 4 bytes).
*/
static DECLCALLBACK(int) iomR3IOPortDummyInStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrDst,
{
return VINF_SUCCESS;
}
/**
* Dummy Port I/O Handler for OUT operations.
*
* @returns VBox status code.
*
* @param pDevIns The device instance.
* @param pvUser User argument.
* @param Port Port number used for the OUT operation.
* @param u32 The value to output.
* @param cb The value size in bytes.
*/
static DECLCALLBACK(int) iomR3IOPortDummyOut(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t u32, unsigned cb)
{
return VINF_SUCCESS;
}
/**
* Dummy Port I/O Handler for string OUT operations.
*
* @returns VBox status code.
*
* @param pDevIns The device instance.
* @param pvUser User argument.
* @param Port Port number used for the string OUT operation.
* @param pGCPtrSrc Pointer to the source buffer (GC, incremented appropriately).
* @param pcTransfer Pointer to the number of transfer units to write, on return remaining transfer units.
* @param cb Size of the transfer unit (1, 2 or 4 bytes).
*/
static DECLCALLBACK(int) iomR3IOPortDummyOutStr(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, RTGCPTR *pGCPtrSrc,
{
return VINF_SUCCESS;
}
/**
* Display a single I/O port ring-3 range.
*
* @returns 0
* @param pNode Pointer to I/O port HC range.
* @param pvUser Pointer to info output callback structure.
*/
{
"%04x-%04x %p %p %p %p %s\n",
return 0;
}
/**
* Display a single I/O port GC range.
*
* @returns 0
* @param pNode Pointer to IOPORT GC range.
* @param pvUser Pointer to info output callback structure.
*/
{
"%04x-%04x %RRv %RRv %RRv %RRv %s\n",
return 0;
}
/**
* Display all registered I/O port ranges.
*
* @param pVM Pointer to the VM.
* @param pHlp The info helpers.
* @param pszArgs Arguments, ignored.
*/
{
"I/O Port R3 ranges (pVM=%p)\n"
"Range %.*s %.*s %.*s %.*s Description\n",
pVM,
RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeR3, true, iomR3IOPortInfoOneR3, (void *)pHlp);
"I/O Port R0 ranges (pVM=%p)\n"
"Range %.*s %.*s %.*s %.*s Description\n",
pVM,
RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeR0, true, iomR3IOPortInfoOneR3, (void *)pHlp);
"I/O Port GC ranges (pVM=%p)\n"
"Range %.*s %.*s %.*s %.*s Description\n",
pVM,
RTAvlroIOPortDoWithAll(&pVM->iom.s.pTreesR3->IOPortTreeRC, true, iomR3IOPortInfoOneRC, (void *)pHlp);
{
}
{
}
{
}
{
}
{
}
{
}
{
}
{
}
{
}
{
}
{
}
{
}
}
/**
* Registers a Memory Mapped I/O R3 handler.
*
* This API is called by PDM on behalf of a device. Devices must register ring-3 ranges
* before any GC and R0 ranges can be registered using IOMR3MMIORegisterRC() and IOMR3MMIORegisterR0().
*
* @returns VBox status code.
*
* @param pVM Pointer to the VM.
* @param pDevIns PDM device instance owning the MMIO range.
* @param GCPhysStart First physical address in the range.
* @param cbRange The size of the range (in bytes).
* @param pvUser User argument for the callbacks.
* @param pfnWriteCallback Pointer to function which is gonna handle Write operations.
* @param pfnReadCallback Pointer to function which is gonna handle Read operations.
* @param pszDesc Pointer to description string. This must not be freed.
*/
VMMR3_INT_DECL(int)
IOMR3MmioRegisterR3(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTHCPTR pvUser,
{
LogFlow(("IOMR3MmioRegisterR3: pDevIns=%p GCPhysStart=%RGp cbRange=%#x pvUser=%RHv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x fFlags=%#x pszDesc=%s\n",
pDevIns, GCPhysStart, cbRange, pvUser, pfnWriteCallback, pfnReadCallback, pfnFillCallback, fFlags, pszDesc));
int rc;
/*
* Validate input.
*/
AssertMsgReturn(GCPhysStart + (cbRange - 1) >= GCPhysStart,("Wrapped! %RGp %#x bytes\n", GCPhysStart, cbRange),
("%#x\n", fFlags),
/*
*/
{
}
/*
* Allocate new range record and initialize it.
*/
if (RT_SUCCESS(rc))
{
//pRange->pvUserR0 = NIL_RTR0PTR;
//pRange->pDevInsR0 = NIL_RTR0PTR;
//pRange->pfnReadCallbackR0 = NIL_RTR0PTR;
//pRange->pfnWriteCallbackR0 = NIL_RTR0PTR;
//pRange->pfnFillCallbackR0 = NIL_RTR0PTR;
//pRange->pvUserRC = NIL_RTRCPTR;
//pRange->pDevInsRC = NIL_RTRCPTR;
//pRange->pfnReadCallbackRC = NIL_RTRCPTR;
//pRange->pfnWriteCallbackRC = NIL_RTRCPTR;
//pRange->pfnFillCallbackRC = NIL_RTRCPTR;
/*
* Try register it with PGM and then insert it into the tree.
*/
if (RT_SUCCESS(rc))
{
{
return VINF_SUCCESS;
}
/* bail out */
AssertMsgFailed(("This cannot happen!\n"));
}
else
}
MMR3HeapFree((void *)pszDesc);
return rc;
}
/**
* Registers a Memory Mapped I/O RC handler range.
*
* This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
* using IOMMMIORegisterR3() before calling this function.
*
*
* @returns VBox status code.
*
* @param pVM Pointer to the VM.
* @param pDevIns PDM device instance owning the MMIO range.
* @param GCPhysStart First physical address in the range.
* @param cbRange The size of the range (in bytes).
* @param pvUser User argument for the callbacks.
* @param pfnWriteCallback Pointer to function which is gonna handle Write operations.
* @param pfnReadCallback Pointer to function which is gonna handle Read operations.
*/
VMMR3_INT_DECL(int)
IOMR3MmioRegisterRC(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTGCPTR pvUser,
{
LogFlow(("IOMR3MmioRegisterRC: pDevIns=%p GCPhysStart=%RGp cbRange=%#x pvUser=%RGv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x\n",
/*
* Validate input.
*/
if (!pfnWriteCallback && !pfnReadCallback)
{
return VERR_INVALID_PARAMETER;
}
/*
* Find the MMIO range and check that the input matches.
*/
return VINF_SUCCESS;
}
/**
* Registers a Memory Mapped I/O R0 handler range.
*
* This API is called by PDM on behalf of a device. Devices must first register ring-3 ranges
* using IOMMR3MIORegisterHC() before calling this function.
*
*
* @returns VBox status code.
*
* @param pVM Pointer to the VM.
* @param pDevIns PDM device instance owning the MMIO range.
* @param GCPhysStart First physical address in the range.
* @param cbRange The size of the range (in bytes).
* @param pvUser User argument for the callbacks.
* @param pfnWriteCallback Pointer to function which is gonna handle Write operations.
* @param pfnReadCallback Pointer to function which is gonna handle Read operations.
*/
VMMR3_INT_DECL(int)
IOMR3MmioRegisterR0(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, RTR0PTR pvUser,
{
LogFlow(("IOMR3MmioRegisterR0: pDevIns=%p GCPhysStart=%RGp cbRange=%#x pvUser=%RHv pfnWriteCallback=%#x pfnReadCallback=%#x pfnFillCallback=%#x\n",
/*
* Validate input.
*/
if (!pfnWriteCallback && !pfnReadCallback)
{
return VERR_INVALID_PARAMETER;
}
/*
* Find the MMIO range and check that the input matches.
*/
return VINF_SUCCESS;
}
/**
* Deregisters a Memory Mapped I/O handler range.
*
* Registered GC, R0, and R3 ranges are affected.
*
* @returns VBox status code.
*
* @param pVM The virtual machine.
* @param pDevIns Device instance which the MMIO region is registered.
* @param GCPhysStart First physical address (GC) in the range.
* @param cbRange Number of bytes to deregister.
*
* @remark This function mainly for PCI PnP Config and will not do
* all the checks you might expect it to do.
*/
VMMR3_INT_DECL(int) IOMR3MmioDeregister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange)
{
LogFlow(("IOMR3MmioDeregister: pDevIns=%p GCPhysStart=%RGp cbRange=%#x\n", pDevIns, GCPhysStart, cbRange));
/*
* Validate input.
*/
if (GCPhysLast < GCPhysStart)
{
return VERR_IOM_INVALID_MMIO_RANGE;
}
/*
* Check ownership and such for the entire area.
*/
{
if (!pRange)
{
return VERR_IOM_MMIO_RANGE_NOT_FOUND;
}
("Incomplete R3 range! GCPhys=%RGp %RGp LB%#x %s\n", GCPhys, GCPhysStart, cbRange, pRange->pszDesc),
/* next */
}
/*
* Do the actual removing of the MMIO ranges.
*/
{
IOM_UNLOCK(pVM); /** @todo r=bird: Why are we leaving the lock here? We don't leave it when registering the range above... */
/* remove it from PGM */
/* advance and free. */
{
}
}
return VINF_SUCCESS;
}
/**
* Display a single MMIO range.
*
* @returns 0
* @param pNode Pointer to MMIO R3 range.
* @param pvUser Pointer to info output callback structure.
*/
{
"%RGp-%RGp %RHv %RHv %RHv %RHv %RHv %s\n",
"%*s %RHv %RHv %RHv %RHv %RHv\n",
"%*s %RRv %RRv %RRv %RRv %RRv\n",
return 0;
}
/**
* Display registered MMIO ranges to the log.
*
* @param pVM Pointer to the VM.
* @param pHlp The info helpers.
* @param pszArgs Arguments, ignored.
*/
{
"MMIO ranges (pVM=%p)\n"
"%.*s %.*s %.*s %.*s %.*s %.*s %s\n",
pVM,
"Description");
}
#ifdef VBOX_WITH_STATISTICS
/**
* Tries to come up with the standard name for a port.
*
* @returns Pointer to readonly string if known.
* @returns NULL if unknown port number.
*
* @param Port The port to name.
*/
{
switch (Port)
{
case 0x00: case 0x10: case 0x20: case 0x30: case 0x40: case 0x50: case 0x70:
case 0x01: case 0x11: case 0x21: case 0x31: case 0x41: case 0x51: case 0x61: case 0x71:
case 0x02: case 0x12: case 0x22: case 0x32: case 0x42: case 0x52: case 0x62: case 0x72:
case 0x03: case 0x13: case 0x23: case 0x33: case 0x43: case 0x53: case 0x63: case 0x73:
case 0x04: case 0x14: case 0x24: case 0x34: case 0x44: case 0x54: case 0x74:
case 0x05: case 0x15: case 0x25: case 0x35: case 0x45: case 0x55: case 0x65: case 0x75:
case 0x06: case 0x16: case 0x26: case 0x36: case 0x46: case 0x56: case 0x66: case 0x76:
case 0x07: case 0x17: case 0x27: case 0x37: case 0x47: case 0x57: case 0x67: case 0x77:
case 0x08: case 0x18: case 0x28: case 0x38: case 0x48: case 0x58: case 0x68: case 0x78:
case 0x09: case 0x19: case 0x29: case 0x39: case 0x49: case 0x59: case 0x69: case 0x79:
case 0x0a: case 0x1a: case 0x2a: case 0x3a: case 0x4a: case 0x5a: case 0x6a: case 0x7a:
case 0x0b: case 0x1b: case 0x2b: case 0x3b: case 0x4b: case 0x5b: case 0x6b: case 0x7b:
case 0x0c: case 0x1c: case 0x2c: case 0x3c: case 0x4c: case 0x5c: case 0x6c: case 0x7c:
case 0x0d: case 0x1d: case 0x2d: case 0x3d: case 0x4d: case 0x5d: case 0x6d: case 0x7d:
case 0x0e: case 0x1e: case 0x2e: case 0x3e: case 0x4e: case 0x5e: case 0x6e: case 0x7e:
case 0x0f: case 0x1f: case 0x2f: case 0x3f: case 0x4f: case 0x5f: case 0x6f: case 0x7f:
case 0x80: case 0x90: case 0xa0: case 0xb0: case 0xc0: case 0xd0: case 0xe0: case 0xf0:
case 0x81: case 0x91: case 0xa1: case 0xb1: case 0xc1: case 0xd1: case 0xe1: case 0xf1:
case 0x82: case 0x92: case 0xa2: case 0xb2: case 0xc2: case 0xd2: case 0xe2: case 0xf2:
case 0x83: case 0x93: case 0xa3: case 0xb3: case 0xc3: case 0xd3: case 0xe3: case 0xf3:
case 0x84: case 0x94: case 0xa4: case 0xb4: case 0xc4: case 0xd4: case 0xe4: case 0xf4:
case 0x85: case 0x95: case 0xa5: case 0xb5: case 0xc5: case 0xd5: case 0xe5: case 0xf5:
case 0x86: case 0x96: case 0xa6: case 0xb6: case 0xc6: case 0xd6: case 0xe6: case 0xf6:
case 0x87: case 0x97: case 0xa7: case 0xb7: case 0xc7: case 0xd7: case 0xe7: case 0xf7:
case 0x88: case 0x98: case 0xa8: case 0xb8: case 0xc8: case 0xd8: case 0xe8: case 0xf8:
case 0x89: case 0x99: case 0xa9: case 0xb9: case 0xc9: case 0xd9: case 0xe9: case 0xf9:
case 0x8a: case 0x9a: case 0xaa: case 0xba: case 0xca: case 0xda: case 0xea: case 0xfa:
case 0x8b: case 0x9b: case 0xab: case 0xbb: case 0xcb: case 0xdb: case 0xeb: case 0xfb:
case 0x8c: case 0x9c: case 0xac: case 0xbc: case 0xcc: case 0xdc: case 0xec: case 0xfc:
case 0x8d: case 0x9d: case 0xad: case 0xbd: case 0xcd: case 0xdd: case 0xed: case 0xfd:
case 0x8e: case 0x9e: case 0xae: case 0xbe: case 0xce: case 0xde: case 0xee: case 0xfe:
case 0x8f: case 0x9f: case 0xaf: case 0xbf: case 0xcf: case 0xdf: case 0xef: case 0xff:
return "System Reserved";
case 0x60:
case 0x64:
return "Keyboard & Mouse";
case 0x378:
case 0x379:
case 0x37a:
case 0x37b:
case 0x37c:
case 0x37d:
case 0x37e:
case 0x37f:
case 0x3bc:
case 0x3bd:
case 0x3be:
case 0x3bf:
case 0x278:
case 0x279:
case 0x27a:
case 0x27b:
case 0x27c:
case 0x27d:
case 0x27e:
case 0x27f:
return "LPT1/2/3";
case 0x3f8:
case 0x3f9:
case 0x3fa:
case 0x3fb:
case 0x3fc:
case 0x3fd:
case 0x3fe:
case 0x3ff:
return "COM1";
case 0x2f8:
case 0x2f9:
case 0x2fa:
case 0x2fb:
case 0x2fc:
case 0x2fd:
case 0x2fe:
case 0x2ff:
return "COM2";
case 0x3e8:
case 0x3e9:
case 0x3ea:
case 0x3eb:
case 0x3ec:
case 0x3ed:
case 0x3ee:
case 0x3ef:
return "COM3";
case 0x2e8:
case 0x2e9:
case 0x2ea:
case 0x2eb:
case 0x2ec:
case 0x2ed:
case 0x2ee:
case 0x2ef:
return "COM4";
case 0x200:
case 0x201:
case 0x202:
case 0x203:
case 0x204:
case 0x205:
case 0x206:
case 0x207:
return "Joystick";
case 0x3f0:
case 0x3f1:
case 0x3f2:
case 0x3f3:
case 0x3f4:
case 0x3f5:
case 0x3f6:
case 0x3f7:
return "Floppy";
case 0x1f0:
case 0x1f1:
case 0x1f2:
case 0x1f3:
case 0x1f4:
case 0x1f5:
case 0x1f6:
case 0x1f7:
//case 0x3f6:
//case 0x3f7:
return "IDE 1st";
case 0x170:
case 0x171:
case 0x172:
case 0x173:
case 0x174:
case 0x175:
case 0x176:
case 0x177:
case 0x376:
case 0x377:
return "IDE 2nd";
case 0x1e0:
case 0x1e1:
case 0x1e2:
case 0x1e3:
case 0x1e4:
case 0x1e5:
case 0x1e6:
case 0x1e7:
case 0x3e6:
case 0x3e7:
return "IDE 3rd";
case 0x160:
case 0x161:
case 0x162:
case 0x163:
case 0x164:
case 0x165:
case 0x166:
case 0x167:
case 0x366:
case 0x367:
return "IDE 4th";
case 0x130: case 0x140: case 0x150:
case 0x131: case 0x141: case 0x151:
case 0x132: case 0x142: case 0x152:
case 0x133: case 0x143: case 0x153:
case 0x134: case 0x144: case 0x154:
case 0x135: case 0x145: case 0x155:
case 0x136: case 0x146: case 0x156:
case 0x137: case 0x147: case 0x157:
case 0x138: case 0x148: case 0x158:
case 0x139: case 0x149: case 0x159:
case 0x13a: case 0x14a: case 0x15a:
case 0x13b: case 0x14b: case 0x15b:
case 0x13c: case 0x14c: case 0x15c:
case 0x13d: case 0x14d: case 0x15d:
case 0x13e: case 0x14e: case 0x15e:
case 0x13f: case 0x14f: case 0x15f:
case 0x220: case 0x230:
case 0x221: case 0x231:
case 0x222: case 0x232:
case 0x223: case 0x233:
case 0x224: case 0x234:
case 0x225: case 0x235:
case 0x226: case 0x236:
case 0x227: case 0x237:
case 0x228: case 0x238:
case 0x229: case 0x239:
case 0x22a: case 0x23a:
case 0x22b: case 0x23b:
case 0x22c: case 0x23c:
case 0x22d: case 0x23d:
case 0x22e: case 0x23e:
case 0x22f: case 0x23f:
case 0x330: case 0x340: case 0x350:
case 0x331: case 0x341: case 0x351:
case 0x332: case 0x342: case 0x352:
case 0x333: case 0x343: case 0x353:
case 0x334: case 0x344: case 0x354:
case 0x335: case 0x345: case 0x355:
case 0x336: case 0x346: case 0x356:
case 0x337: case 0x347: case 0x357:
case 0x338: case 0x348: case 0x358:
case 0x339: case 0x349: case 0x359:
case 0x33a: case 0x34a: case 0x35a:
case 0x33b: case 0x34b: case 0x35b:
case 0x33c: case 0x34c: case 0x35c:
case 0x33d: case 0x34d: case 0x35d:
case 0x33e: case 0x34e: case 0x35e:
case 0x33f: case 0x34f: case 0x35f:
return "SCSI (typically)";
case 0x320:
case 0x321:
case 0x322:
case 0x323:
case 0x324:
case 0x325:
case 0x326:
case 0x327:
return "XT HD";
case 0x3b0:
case 0x3b1:
case 0x3b2:
case 0x3b3:
case 0x3b4:
case 0x3b5:
case 0x3b6:
case 0x3b7:
case 0x3b8:
case 0x3b9:
case 0x3ba:
case 0x3bb:
return "VGA";
case 0x3c0: case 0x3d0:
case 0x3c1: case 0x3d1:
case 0x3c2: case 0x3d2:
case 0x3c3: case 0x3d3:
case 0x3c4: case 0x3d4:
case 0x3c5: case 0x3d5:
case 0x3c6: case 0x3d6:
case 0x3c7: case 0x3d7:
case 0x3c8: case 0x3d8:
case 0x3c9: case 0x3d9:
case 0x3ca: case 0x3da:
case 0x3cb: case 0x3db:
case 0x3cc: case 0x3dc:
case 0x3cd: case 0x3dd:
case 0x3ce: case 0x3de:
case 0x3cf: case 0x3df:
case 0x240: case 0x260: case 0x280:
case 0x241: case 0x261: case 0x281:
case 0x242: case 0x262: case 0x282:
case 0x243: case 0x263: case 0x283:
case 0x244: case 0x264: case 0x284:
case 0x245: case 0x265: case 0x285:
case 0x246: case 0x266: case 0x286:
case 0x247: case 0x267: case 0x287:
case 0x248: case 0x268: case 0x288:
case 0x249: case 0x269: case 0x289:
case 0x24a: case 0x26a: case 0x28a:
case 0x24b: case 0x26b: case 0x28b:
case 0x24c: case 0x26c: case 0x28c:
case 0x24d: case 0x26d: case 0x28d:
case 0x24e: case 0x26e: case 0x28e:
case 0x24f: case 0x26f: case 0x28f:
case 0x300:
case 0x301:
case 0x388:
case 0x389:
case 0x38a:
case 0x38b:
return "Sound Card (typically)";
default:
return NULL;
}
}
#endif /* VBOX_WITH_STATISTICS */