VirtualBox

Changeset 87242 in vbox for trunk/src


Ignore:
Timestamp:
Jan 13, 2021 4:02:24 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
142199
Message:

AMD IOMMU: bugref:9654 Main/API: Adjusted BusAssignmentManager and ConsoleImpl2 to use the newly added API methods.

Location:
trunk/src/VBox/Main
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/include/BusAssignmentManager.h

    r85007 r87242  
    4747    };
    4848
    49     static BusAssignmentManager *createInstance(ChipsetType_T chipsetType, bool fIommu);
     49    static BusAssignmentManager *createInstance(ChipsetType_T chipsetType, IommuType_T iommuType);
    5050    virtual void AddRef();
    5151    virtual void Release();
  • trunk/src/VBox/Main/src-client/BusAssignmentManager.cpp

    r86733 r87242  
    310310    ChipsetType_T    mChipsetType;
    311311    const char *     mpszBridgeName;
    312     bool             mfIommu;
     312    IommuType_T      mIommuType;
    313313    PCIMap           mPCIMap;
    314314    ReversePCIMap    mReversePCIMap;
     
    320320    {}
    321321
    322     HRESULT init(ChipsetType_T chipsetType, bool fIommu);
     322    HRESULT init(ChipsetType_T chipsetType, IommuType_T iommuType);
    323323
    324324    HRESULT record(const char *pszName, PCIBusAddress& GuestAddress, PCIBusAddress HostAddress);
     
    332332};
    333333
    334 HRESULT BusAssignmentManager::State::init(ChipsetType_T chipsetType, bool fIommu)
    335 {
     334HRESULT 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
    336339    mChipsetType = chipsetType;
    337     mfIommu = fIommu;
     340    mIommuType   = iommuType;
    338341    switch (chipsetType)
    339342    {
     
    401404            aArrays[1] = g_aIch9Rules;
    402405#ifdef VBOX_WITH_IOMMU_AMD
    403             if (mfIommu)
     406            if (mIommuType == IommuType_AMD)
    404407                aArrays[2] = g_aIch9IommuLsiRules;
    405408            else
     
    510513}
    511514
    512 BusAssignmentManager *BusAssignmentManager::createInstance(ChipsetType_T chipsetType, bool fIommu)
     515BusAssignmentManager *BusAssignmentManager::createInstance(ChipsetType_T chipsetType, IommuType_T iommuType)
    513516{
    514517    BusAssignmentManager *pInstance = new BusAssignmentManager();
    515     pInstance->pState->init(chipsetType, fIommu);
     518    pInstance->pState->init(chipsetType, iommuType);
    516519    Assert(pInstance);
    517520    return pInstance;
  • trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp

    r87179 r87242  
    802802
    803803#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. */
    806832#else
    807     bool const fIommu = false;
     833    IommuType_T const iommuType = IommuType_None;
    808834#endif
    809     BusAssignmentManager *pBusMgr = mBusMgr = BusAssignmentManager::createInstance(chipsetType, fIommu);
     835    Assert(iommuType != IommuType_Automatic);
     836    BusAssignmentManager *pBusMgr = mBusMgr = BusAssignmentManager::createInstance(chipsetType, iommuType);
    810837
    811838    ULONG cCpus = 1;
     
    15061533
    15071534#ifdef VBOX_WITH_IOMMU_AMD
    1508             if (fIommu)
     1535            if (iommuType == IommuType_AMD)
    15091536            {
    15101537                /* AMD IOMMU. */
     
    32673294            }
    32683295#ifdef VBOX_WITH_IOMMU_AMD
    3269             if (fIommu)
     3296            if (iommuType == IommuType_AMD)
    32703297            {
    32713298                PCIBusAddress Address;
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette