mirror of https://github.com/acidanthera/audk.git
IntelSiliconPkg/IntelVTdDxe: Fix typo for VTd IOTLB domain ID
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
This commit is contained in:
parent
edc65fc4d8
commit
f5046945b6
|
@ -158,7 +158,7 @@ InvalidateVtdIOTLBDomain (
|
|||
|
||||
Reg64 &= ((~B_IOTLB_REG_IVT) & (~B_IOTLB_REG_IIRG_MASK));
|
||||
Reg64 |= (B_IOTLB_REG_IVT | V_IOTLB_REG_IIRG_DOMAIN);
|
||||
Reg64 |= DomainIdentifier;
|
||||
Reg64 |= LShiftU64 (DomainIdentifier, 32);
|
||||
MmioWrite64 (mVtdUnitInformation[VtdIndex].VtdUnitBaseAddress + (mVtdUnitInformation[VtdIndex].ECapReg.Bits.IRO * 16) + R_IOTLB_REG, Reg64);
|
||||
|
||||
do {
|
||||
|
|
Loading…
Reference in New Issue