Changeset 84088 in vbox for trunk/src/VBox/Devices/Bus
- Timestamp:
- Apr 29, 2020 4:11:15 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137671
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevIommuAmd.cpp
r84086 r84088 2775 2775 #endif 2776 2776 2777 2777 2778 /** 2778 2779 * Writes an IOMMU register (32-bit and 64-bit). … … 3385 3386 pThis->IommuBar.au32[0] = u32Value & IOMMU_BAR_VALID_MASK; 3386 3387 Assert(pThis->hMmio == NIL_IOMMMIOHANDLE); 3387 RTGCPHYS const GCPhysMmioBase = RT_MAKE_U64(pThis->IommuBar.n.u18BaseAddrLo, pThis->IommuBar.n.u32BaseAddrHi); 3388 RTGCPHYS GCPhysMmioBase = RT_MAKE_U64(pThis->IommuBar.n.u18BaseAddrLo, pThis->IommuBar.n.u32BaseAddrHi); 3389 GCPhysMmioBase <<= 14; /* 16K aligned when performance counters are not supported. */ 3390 Assert(!pThis->ExtFeat.n.u1PerfCounterSup); 3388 3391 rcStrict = PDMDevHlpMmioMap(pDevIns, pThis->hMmio, GCPhysMmioBase); 3389 3392 if (RT_FAILURE(rcStrict))
Note:
See TracChangeset
for help on using the changeset viewer.