mirror of
https://github.com/adulau/aha.git
synced 2024-12-29 12:16:20 +00:00
intel-iommu: Disable PMRs after we enable translation, not before
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
0c02a20ff7
commit
b94996c99c
1 changed files with 3 additions and 2 deletions
|
@ -2403,11 +2403,12 @@ int __init init_dmars(void)
|
|||
|
||||
iommu->flush.flush_context(iommu, 0, 0, 0, DMA_CCMD_GLOBAL_INVL);
|
||||
iommu->flush.flush_iotlb(iommu, 0, 0, 0, DMA_TLB_GLOBAL_FLUSH);
|
||||
iommu_disable_protect_mem_regions(iommu);
|
||||
|
||||
ret = iommu_enable_translation(iommu);
|
||||
if (ret)
|
||||
goto error;
|
||||
|
||||
iommu_disable_protect_mem_regions(iommu);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
@ -3066,8 +3067,8 @@ static int init_iommu_hw(void)
|
|||
DMA_CCMD_GLOBAL_INVL);
|
||||
iommu->flush.flush_iotlb(iommu, 0, 0, 0,
|
||||
DMA_TLB_GLOBAL_FLUSH);
|
||||
iommu_disable_protect_mem_regions(iommu);
|
||||
iommu_enable_translation(iommu);
|
||||
iommu_disable_protect_mem_regions(iommu);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue