iommu/vt-d: Make kernel parameter igfx_off work with vIOMMU
authorLu Baolu <baolu.lu@linux.intel.com>
Thu, 2 May 2019 01:34:26 +0000 (09:34 +0800)
committerJoerg Roedel <jroedel@suse.de>
Fri, 3 May 2019 15:31:32 +0000 (17:31 +0200)
The kernel parameter igfx_off is used by users to disable
DMA remapping for the Intel integrated graphic device. It
was designed for bare metal cases where a dedicated IOMMU
is used for graphic. This doesn't apply to virtual IOMMU
case where an include-all IOMMU is used.  This makes the
kernel parameter work with virtual IOMMU as well.

Cc: Ashok Raj <ashok.raj@intel.com>
Cc: Jacob Pan <jacob.jun.pan@linux.intel.com>
Suggested-by: Kevin Tian <kevin.tian@intel.com>
Fixes: c0771df8d5297 ("intel-iommu: Export a flag indicating that the IOMMU is used for iGFX.")
Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Tested-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/intel-iommu.c

index a814c95..a320bda 100644 (file)
@@ -3415,9 +3415,12 @@ static int __init init_dmars(void)
                iommu_identity_mapping |= IDENTMAP_ALL;
 
 #ifdef CONFIG_INTEL_IOMMU_BROKEN_GFX_WA
-       iommu_identity_mapping |= IDENTMAP_GFX;
+       dmar_map_gfx = 0;
 #endif
 
+       if (!dmar_map_gfx)
+               iommu_identity_mapping |= IDENTMAP_GFX;
+
        check_tylersburg_isoch();
 
        if (iommu_identity_mapping) {