Changeset 12566 in vbox for trunk/src/VBox/VMM/PDMDevice.cpp
- Timestamp:
- Sep 18, 2008 12:42:54 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 36781
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMDevice.cpp
r12561 r12566 90 90 static DECLCALLBACK(int) pdmR3DevHlp_IOPortRegisterR0(PPDMDEVINS pDevIns, RTIOPORT Port, RTUINT cPorts, RTR0PTR pvUser, const char *pszOut, const char *pszIn, const char *pszOutStr, const char *pszInStr, const char *pszDesc); 91 91 static DECLCALLBACK(int) pdmR3DevHlp_IOPortDeregister(PPDMDEVINS pDevIns, RTIOPORT Port, RTUINT cPorts); 92 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegister(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange, RTHCPTR pvUser,92 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTHCPTR pvUser, 93 93 PFNIOMMMIOWRITE pfnWrite, PFNIOMMMIOREAD pfnRead, PFNIOMMMIOFILL pfnFill, 94 94 const char *pszDesc); 95 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterGC(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser,95 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterGC(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser, 96 96 const char *pszWrite, const char *pszRead, const char *pszFill, 97 97 const char *pszDesc); 98 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterR0(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange, RTR0PTR pvUser,98 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterR0(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTR0PTR pvUser, 99 99 const char *pszWrite, const char *pszRead, const char *pszFill, 100 100 const char *pszDesc); 101 static DECLCALLBACK(int) pdmR3DevHlp_MMIODeregister(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange);101 static DECLCALLBACK(int) pdmR3DevHlp_MMIODeregister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange); 102 102 static DECLCALLBACK(int) pdmR3DevHlp_ROMRegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, const void *pvBinary, bool fShadow, const char *pszDesc); 103 103 static DECLCALLBACK(int) pdmR3DevHlp_SSMRegister(PPDMDEVINS pDevIns, const char *pszName, uint32_t u32Instance, uint32_t u32Version, size_t cbGuess, … … 1356 1356 1357 1357 /** @copydoc PDMDEVHLP::pfnMMIORegister */ 1358 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegister(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange, RTHCPTR pvUser,1358 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTHCPTR pvUser, 1359 1359 PFNIOMMMIOWRITE pfnWrite, PFNIOMMMIOREAD pfnRead, PFNIOMMMIOFILL pfnFill, 1360 1360 const char *pszDesc) … … 1362 1362 PDMDEV_ASSERT_DEVINS(pDevIns); 1363 1363 VM_ASSERT_EMT(pDevIns->Internal.s.pVMHC); 1364 LogFlow(("pdmR3DevHlp_MMIORegister: caller='%s'/%d: CPU=%dGCPhysStart=%VGp cbRange=%#x pvUser=%p pfnWrite=%p pfnRead=%p pfnFill=%p pszDesc=%p:{%s}\n",1365 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, enmCtx,GCPhysStart, cbRange, pvUser, pfnWrite, pfnRead, pfnFill, pszDesc, pszDesc));1366 1367 int rc = IOMR3MMIORegisterR3(pDevIns->Internal.s.pVMHC, pDevIns, enmCtx,GCPhysStart, cbRange, pvUser, pfnWrite, pfnRead, pfnFill, pszDesc);1364 LogFlow(("pdmR3DevHlp_MMIORegister: caller='%s'/%d: GCPhysStart=%VGp cbRange=%#x pvUser=%p pfnWrite=%p pfnRead=%p pfnFill=%p pszDesc=%p:{%s}\n", 1365 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, GCPhysStart, cbRange, pvUser, pfnWrite, pfnRead, pfnFill, pszDesc, pszDesc)); 1366 1367 int rc = IOMR3MMIORegisterR3(pDevIns->Internal.s.pVMHC, pDevIns, GCPhysStart, cbRange, pvUser, pfnWrite, pfnRead, pfnFill, pszDesc); 1368 1368 1369 1369 LogFlow(("pdmR3DevHlp_MMIORegister: caller='%s'/%d: returns %Vrc\n", pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, rc)); … … 1373 1373 1374 1374 /** @copydoc PDMDEVHLP::pfnMMIORegisterGC */ 1375 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterGC(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser,1375 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterGC(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTGCPTR pvUser, 1376 1376 const char *pszWrite, const char *pszRead, const char *pszFill, 1377 1377 const char *pszDesc) … … 1379 1379 PDMDEV_ASSERT_DEVINS(pDevIns); 1380 1380 VM_ASSERT_EMT(pDevIns->Internal.s.pVMHC); 1381 LogFlow(("pdmR3DevHlp_MMIORegisterGC: caller='%s'/%d: CPU=%dGCPhysStart=%VGp cbRange=%#x pvUser=%p pszWrite=%p:{%s} pszRead=%p:{%s} pszFill=%p:{%s}\n",1382 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, enmCtx,GCPhysStart, cbRange, pvUser, pszWrite, pszWrite, pszRead, pszRead, pszFill, pszFill));1381 LogFlow(("pdmR3DevHlp_MMIORegisterGC: caller='%s'/%d: GCPhysStart=%VGp cbRange=%#x pvUser=%p pszWrite=%p:{%s} pszRead=%p:{%s} pszFill=%p:{%s}\n", 1382 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, GCPhysStart, cbRange, pvUser, pszWrite, pszWrite, pszRead, pszRead, pszFill, pszFill)); 1383 1383 1384 1384 /* … … 1402 1402 rc3 = PDMR3GetSymbolGCLazy(pDevIns->Internal.s.pVMHC, pDevIns->pDevReg->szGCMod, pszFill, &GCPtrFill); 1403 1403 if (VBOX_SUCCESS(rc) && VBOX_SUCCESS(rc2) && VBOX_SUCCESS(rc3)) 1404 rc = IOMR3MMIORegisterGC(pDevIns->Internal.s.pVMHC, pDevIns, enmCtx,GCPhysStart, cbRange, pvUser, GCPtrWrite, GCPtrRead, GCPtrFill);1404 rc = IOMR3MMIORegisterGC(pDevIns->Internal.s.pVMHC, pDevIns, GCPhysStart, cbRange, pvUser, GCPtrWrite, GCPtrRead, GCPtrFill); 1405 1405 else 1406 1406 { … … 1425 1425 1426 1426 /** @copydoc PDMDEVHLP::pfnMMIORegisterR0 */ 1427 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterR0(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange, RTR0PTR pvUser,1427 static DECLCALLBACK(int) pdmR3DevHlp_MMIORegisterR0(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange, RTR0PTR pvUser, 1428 1428 const char *pszWrite, const char *pszRead, const char *pszFill, 1429 1429 const char *pszDesc) … … 1431 1431 PDMDEV_ASSERT_DEVINS(pDevIns); 1432 1432 VM_ASSERT_EMT(pDevIns->Internal.s.pVMHC); 1433 LogFlow(("pdmR3DevHlp_MMIORegisterHC: caller='%s'/%d: CPU=%dGCPhysStart=%VGp cbRange=%#x pvUser=%p pszWrite=%p:{%s} pszRead=%p:{%s} pszFill=%p:{%s}\n",1434 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, enmCtx,GCPhysStart, cbRange, pvUser, pszWrite, pszWrite, pszRead, pszRead, pszFill, pszFill));1433 LogFlow(("pdmR3DevHlp_MMIORegisterHC: caller='%s'/%d: GCPhysStart=%VGp cbRange=%#x pvUser=%p pszWrite=%p:{%s} pszRead=%p:{%s} pszFill=%p:{%s}\n", 1434 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, GCPhysStart, cbRange, pvUser, pszWrite, pszWrite, pszRead, pszRead, pszFill, pszFill)); 1435 1435 1436 1436 /* … … 1454 1454 rc3 = PDMR3GetSymbolR0Lazy(pDevIns->Internal.s.pVMHC, pDevIns->pDevReg->szR0Mod, pszFill, &pfnR0PtrFill); 1455 1455 if (VBOX_SUCCESS(rc) && VBOX_SUCCESS(rc2) && VBOX_SUCCESS(rc3)) 1456 rc = IOMR3MMIORegisterR0(pDevIns->Internal.s.pVMHC, pDevIns, enmCtx,GCPhysStart, cbRange, pvUser, pfnR0PtrWrite, pfnR0PtrRead, pfnR0PtrFill);1456 rc = IOMR3MMIORegisterR0(pDevIns->Internal.s.pVMHC, pDevIns, GCPhysStart, cbRange, pvUser, pfnR0PtrWrite, pfnR0PtrRead, pfnR0PtrFill); 1457 1457 else 1458 1458 { … … 1478 1478 1479 1479 /** @copydoc PDMDEVHLP::pfnMMIODeregister */ 1480 static DECLCALLBACK(int) pdmR3DevHlp_MMIODeregister(PPDMDEVINS pDevIns, IOMMMIOCTX enmCtx,RTGCPHYS GCPhysStart, RTUINT cbRange)1480 static DECLCALLBACK(int) pdmR3DevHlp_MMIODeregister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, RTUINT cbRange) 1481 1481 { 1482 1482 PDMDEV_ASSERT_DEVINS(pDevIns); 1483 1483 VM_ASSERT_EMT(pDevIns->Internal.s.pVMHC); 1484 LogFlow(("pdmR3DevHlp_MMIODeregister: caller='%s'/%d: CPU=%dGCPhysStart=%VGp cbRange=%#x\n",1485 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, enmCtx,GCPhysStart, cbRange));1486 1487 int rc = IOMR3MMIODeregister(pDevIns->Internal.s.pVMHC, pDevIns, enmCtx,GCPhysStart, cbRange);1484 LogFlow(("pdmR3DevHlp_MMIODeregister: caller='%s'/%d: GCPhysStart=%VGp cbRange=%#x\n", 1485 pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, GCPhysStart, cbRange)); 1486 1487 int rc = IOMR3MMIODeregister(pDevIns->Internal.s.pVMHC, pDevIns, GCPhysStart, cbRange); 1488 1488 1489 1489 LogFlow(("pdmR3DevHlp_MMIODeregister: caller='%s'/%d: returns %Vrc\n", pDevIns->pDevReg->szDeviceName, pDevIns->iInstance, rc)); … … 2724 2724 2725 2725 /* 2726 * Only one APIC device registration allowed. (even in the MP case)2726 * Only one APIC device. (malc: only in UP case actually) 2727 2727 */ 2728 2728 PVM pVM = pDevIns->Internal.s.pVMHC;
Note:
See TracChangeset
for help on using the changeset viewer.