iommu/vt-d: Check FL and SL capability sanity in scalable mode
authorLu Baolu <baolu.lu@linux.intel.com>
Thu, 14 Oct 2021 05:38:34 +0000 (13:38 +0800)
committerJoerg Roedel <jroedel@suse.de>
Mon, 18 Oct 2021 10:31:48 +0000 (12:31 +0200)
An iommu domain could be allocated and mapped before it's attached to any
device. This requires that in scalable mode, when the domain is allocated,
the format (FL or SL) of the page table must be determined. In order to
achieve this, the platform should support consistent SL or FL capabilities
on all IOMMU's. This adds a check for this and aborts IOMMU probing if it
doesn't meet this requirement.

Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Link: https://lore.kernel.org/r/20210926114535.923263-1-baolu.lu@linux.intel.com
Link: https://lore.kernel.org/r/20211014053839.727419-5-baolu.lu@linux.intel.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/intel/cap_audit.c
drivers/iommu/intel/cap_audit.h

index b12e421..b39d223 100644 (file)
@@ -163,6 +163,14 @@ static int cap_audit_static(struct intel_iommu *iommu, enum cap_audit_type type)
                        check_irq_capabilities(iommu, i);
        }
 
+       /*
+        * If the system is sane to support scalable mode, either SL or FL
+        * should be sane.
+        */
+       if (intel_cap_smts_sanity() &&
+           !intel_cap_flts_sanity() && !intel_cap_slts_sanity())
+               return -EOPNOTSUPP;
+
 out:
        rcu_read_unlock();
        return 0;
@@ -203,3 +211,8 @@ bool intel_cap_flts_sanity(void)
 {
        return ecap_flts(intel_iommu_ecap_sanity);
 }
+
+bool intel_cap_slts_sanity(void)
+{
+       return ecap_slts(intel_iommu_ecap_sanity);
+}
index 74cfcca..d07b759 100644 (file)
@@ -111,6 +111,7 @@ bool intel_cap_smts_sanity(void);
 bool intel_cap_pasid_sanity(void);
 bool intel_cap_nest_sanity(void);
 bool intel_cap_flts_sanity(void);
+bool intel_cap_slts_sanity(void);
 
 static inline bool scalable_mode_support(void)
 {