- Timestamp:
- Jan 13, 2021 4:02:24 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142199
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/BusAssignmentManager.h
r85007 r87242 47 47 }; 48 48 49 static BusAssignmentManager *createInstance(ChipsetType_T chipsetType, bool fIommu);49 static BusAssignmentManager *createInstance(ChipsetType_T chipsetType, IommuType_T iommuType); 50 50 virtual void AddRef(); 51 51 virtual void Release(); -
trunk/src/VBox/Main/src-client/BusAssignmentManager.cpp
r86733 r87242 310 310 ChipsetType_T mChipsetType; 311 311 const char * mpszBridgeName; 312 bool mfIommu;312 IommuType_T mIommuType; 313 313 PCIMap mPCIMap; 314 314 ReversePCIMap mReversePCIMap; … … 320 320 {} 321 321 322 HRESULT init(ChipsetType_T chipsetType, bool fIommu);322 HRESULT init(ChipsetType_T chipsetType, IommuType_T iommuType); 323 323 324 324 HRESULT record(const char *pszName, PCIBusAddress& GuestAddress, PCIBusAddress HostAddress); … … 332 332 }; 333 333 334 HRESULT BusAssignmentManager::State::init(ChipsetType_T chipsetType, bool fIommu) 335 { 334 HRESULT BusAssignmentManager::State::init(ChipsetType_T chipsetType, IommuType_T iommuType) 335 { 336 /* Currently we only support AMD IOMMU. */ 337 Assert(iommuType == IommuType_None || iommuType == IommuType_AMD); 338 336 339 mChipsetType = chipsetType; 337 m fIommu = fIommu;340 mIommuType = iommuType; 338 341 switch (chipsetType) 339 342 { … … 401 404 aArrays[1] = g_aIch9Rules; 402 405 #ifdef VBOX_WITH_IOMMU_AMD 403 if (m fIommu)406 if (mIommuType == IommuType_AMD) 404 407 aArrays[2] = g_aIch9IommuLsiRules; 405 408 else … … 510 513 } 511 514 512 BusAssignmentManager *BusAssignmentManager::createInstance(ChipsetType_T chipsetType, bool fIommu)515 BusAssignmentManager *BusAssignmentManager::createInstance(ChipsetType_T chipsetType, IommuType_T iommuType) 513 516 { 514 517 BusAssignmentManager *pInstance = new BusAssignmentManager(); 515 pInstance->pState->init(chipsetType, fIommu);518 pInstance->pState->init(chipsetType, iommuType); 516 519 Assert(pInstance); 517 520 return pInstance; -
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r87179 r87242 802 802 803 803 #ifdef VBOX_WITH_IOMMU_AMD 804 /** @todo Get IOMMU from pMachine and pass info to createInstance() below. */ 805 bool const fIommu = RT_BOOL(chipsetType == ChipsetType_ICH9); 804 IommuType_T iommuType; 805 hrc = pMachine->COMGETTER(IommuType)(&iommuType); H(); 806 807 /* Resolve 'automatic' type to an Intel or AMD IOMMU based on the host CPU. */ 808 if (iommuType == IommuType_Automatic) 809 { 810 if (ASMIsAmdCpu()) 811 iommuType = IommuType_AMD; 812 else if (ASMIsIntelCpu()) 813 { 814 iommuType = IommuType_None; 815 LogRel(("WARNING! Intel IOMMU implemention is not yet supported. Disabled IOMMU.\n")); 816 } 817 else 818 { 819 /** @todo Should we handle other CPUs like Shanghai, VIA etc. here? */ 820 LogRel(("WARNING! Unrecognized CPU type. Disabled IOMMU.\n")); 821 iommuType = IommuType_None; 822 } 823 } 824 825 /* Handle AMD IOMMU specifics. */ 826 if ( iommuType == IommuType_AMD 827 && chipsetType != ChipsetType_ICH9) 828 return VMR3SetError(pUVM, VERR_INVALID_PARAMETER, RT_SRC_POS, 829 N_("AMD IOMMU uses MSIs which requires the ICH9 chipset implementation.")); 830 831 /** @todo Handle Intel IOMMU specifics. */ 806 832 #else 807 bool const fIommu = false;833 IommuType_T const iommuType = IommuType_None; 808 834 #endif 809 BusAssignmentManager *pBusMgr = mBusMgr = BusAssignmentManager::createInstance(chipsetType, fIommu); 835 Assert(iommuType != IommuType_Automatic); 836 BusAssignmentManager *pBusMgr = mBusMgr = BusAssignmentManager::createInstance(chipsetType, iommuType); 810 837 811 838 ULONG cCpus = 1; … … 1506 1533 1507 1534 #ifdef VBOX_WITH_IOMMU_AMD 1508 if ( fIommu)1535 if (iommuType == IommuType_AMD) 1509 1536 { 1510 1537 /* AMD IOMMU. */ … … 3267 3294 } 3268 3295 #ifdef VBOX_WITH_IOMMU_AMD 3269 if ( fIommu)3296 if (iommuType == IommuType_AMD) 3270 3297 { 3271 3298 PCIBusAddress Address;
Note:
See TracChangeset
for help on using the changeset viewer.