From: Thierry Reding <tred...@nvidia.com>

On platforms, the firmware will setup hardware to read from a given
region of memory. One such example is a display controller that is
scanning out a splash screen from physical memory.

During Linux's boot process, the ARM SMMU will configure all contexts to
fault by default. This means that memory accesses that happen by an SMMU
master before its driver has had a chance to properly set up the IOMMU
will cause a fault. This is especially annoying for something like the
display controller scanning out a splash screen because the faults will
result in the display controller getting bogus data (all-ones on Tegra)
and since it repeatedly scans that framebuffer, it will keep triggering
such faults and spam the boot log with them.

In order to work around such problems, scan the device tree for IOMMU
masters and set up a special identity domain that will map 1:1 all of
the reserved regions associated with them. This happens before the SMMU
is enabled, so that the mappings are already set up before translations
begin.

TODO: remove identity domain when no longer in use

Signed-off-by: Thierry Reding <tred...@nvidia.com>
---
 drivers/iommu/arm-smmu.c | 171 ++++++++++++++++++++++++++++++++++++++-
 drivers/iommu/arm-smmu.h |   2 +
 2 files changed, 172 insertions(+), 1 deletion(-)

diff --git a/drivers/iommu/arm-smmu.c b/drivers/iommu/arm-smmu.c
index 5c5cf942077e..fe0c0975d4e2 100644
--- a/drivers/iommu/arm-smmu.c
+++ b/drivers/iommu/arm-smmu.c
@@ -1887,6 +1887,171 @@ static int arm_smmu_device_cfg_probe(struct 
arm_smmu_device *smmu)
        return 0;
 }
 
+static int arm_smmu_identity_map_regions(struct arm_smmu_device *smmu,
+                                        struct device_node *np)
+{
+       struct device *dev = smmu->dev;
+       struct of_phandle_iterator it;
+       unsigned long page_size;
+       unsigned int count = 0;
+       int ret;
+
+       page_size = 1UL << __ffs(smmu->identity->pgsize_bitmap);
+
+       /* parse memory regions and add them to the identity mapping */
+       of_for_each_phandle(&it, ret, np, "memory-region", NULL, 0) {
+               int prot = IOMMU_READ | IOMMU_WRITE;
+               dma_addr_t start, limit, iova;
+               struct resource res;
+
+               ret = of_address_to_resource(it.node, 0, &res);
+               if (ret < 0) {
+                       dev_err(dev, "failed to parse memory region %pOF: %d\n",
+                               it.node, ret);
+                       continue;
+               }
+
+               /* check that region is not empty */
+               if (resource_size(&res) == 0) {
+                       dev_dbg(dev, "skipping empty memory region %pOF\n",
+                               it.node);
+                       continue;
+               }
+
+               start = ALIGN(res.start, page_size);
+               limit = ALIGN(res.start + resource_size(&res), page_size);
+
+               for (iova = start; iova < limit; iova += page_size) {
+                       phys_addr_t phys;
+
+                       /* check that this IOVA isn't already mapped */
+                       phys = iommu_iova_to_phys(smmu->identity, iova);
+                       if (phys)
+                               continue;
+
+                       ret = iommu_map(smmu->identity, iova, iova, page_size,
+                                       prot);
+                       if (ret < 0) {
+                               dev_err(dev, "failed to map %pad for %pOF: 
%d\n",
+                                       &iova, it.node, ret);
+                               continue;
+                       }
+               }
+
+               dev_dbg(dev, "identity mapped memory region %pR\n", &res);
+               count++;
+       }
+
+       return count;
+}
+
+static int arm_smmu_identity_add_master(struct arm_smmu_device *smmu,
+                                       struct of_phandle_args *args)
+{
+       struct arm_smmu_domain *identity = to_smmu_domain(smmu->identity);
+       struct arm_smmu_smr *smrs = smmu->smrs;
+       struct device *dev = smmu->dev;
+       unsigned int index;
+       u16 sid, mask;
+       u32 fwid;
+       int ret;
+
+       /* skip masters that aren't ours */
+       if (args->np != dev->of_node)
+               return 0;
+
+       fwid = arm_smmu_of_parse(args->np, args->args, args->args_count);
+       sid = FIELD_GET(SMR_ID, fwid);
+       mask = FIELD_GET(SMR_MASK, fwid);
+
+       ret = arm_smmu_find_sme(smmu, sid, mask);
+       if (ret < 0) {
+               dev_err(dev, "failed to find SME: %d\n", ret);
+               return ret;
+       }
+
+       index = ret;
+
+       if (smrs && smmu->s2crs[index].count == 0) {
+               smrs[index].id = sid;
+               smrs[index].mask = mask;
+               smrs[index].valid = true;
+       }
+
+       smmu->s2crs[index].type = S2CR_TYPE_TRANS;
+       smmu->s2crs[index].privcfg = S2CR_PRIVCFG_DEFAULT;
+       smmu->s2crs[index].cbndx = identity->cfg.cbndx;
+       smmu->s2crs[index].count++;
+
+       return 0;
+}
+
+static int arm_smmu_identity_add_device(struct arm_smmu_device *smmu,
+                                       struct device_node *np)
+{
+       struct of_phandle_args args;
+       unsigned int index = 0;
+       int ret;
+
+       /* add stream IDs to the identity mapping */
+       while (!of_parse_phandle_with_args(np, "iommus", "#iommu-cells",
+                                          index, &args)) {
+               ret = arm_smmu_identity_add_master(smmu, &args);
+               if (ret < 0)
+                       return ret;
+
+               index++;
+       }
+
+       return 0;
+}
+
+static int arm_smmu_setup_identity(struct arm_smmu_device *smmu)
+{
+       struct arm_smmu_domain *identity;
+       struct device *dev = smmu->dev;
+       struct device_node *np;
+       int ret;
+
+       /* create early identity mapping */
+       smmu->identity = arm_smmu_domain_alloc(IOMMU_DOMAIN_UNMANAGED);
+       if (!smmu->identity) {
+               dev_err(dev, "failed to create identity domain\n");
+               return -ENOMEM;
+       }
+
+       smmu->identity->pgsize_bitmap = smmu->pgsize_bitmap;
+       smmu->identity->type = IOMMU_DOMAIN_UNMANAGED;
+       smmu->identity->ops = &arm_smmu_ops;
+
+       ret = arm_smmu_init_domain_context(smmu->identity, smmu);
+       if (ret < 0) {
+               dev_err(dev, "failed to initialize identity domain: %d\n", ret);
+               return ret;
+       }
+
+       identity = to_smmu_domain(smmu->identity);
+
+       for_each_node_with_property(np, "iommus") {
+               ret = arm_smmu_identity_map_regions(smmu, np);
+               if (ret < 0)
+                       continue;
+
+               /*
+                * Do not add devices to the early identity mapping if they
+                * do not define any memory-regions.
+                */
+               if (ret == 0)
+                       continue;
+
+               ret = arm_smmu_identity_add_device(smmu, np);
+               if (ret < 0)
+                       continue;
+       }
+
+       return 0;
+}
+
 struct arm_smmu_match_data {
        enum arm_smmu_arch_version version;
        enum arm_smmu_implementation model;
@@ -2127,6 +2292,10 @@ static int arm_smmu_device_probe(struct platform_device 
*pdev)
        if (err)
                return err;
 
+       err = arm_smmu_setup_identity(smmu);
+       if (err)
+               return err;
+
        if (smmu->version == ARM_SMMU_V2) {
                if (smmu->num_context_banks > smmu->num_context_irqs) {
                        dev_err(dev,
@@ -2169,8 +2338,8 @@ static int arm_smmu_device_probe(struct platform_device 
*pdev)
        }
 
        platform_set_drvdata(pdev, smmu);
-       arm_smmu_device_reset(smmu);
        arm_smmu_test_smr_masks(smmu);
+       arm_smmu_device_reset(smmu);
 
        /*
         * We want to avoid touching dev->power.lock in fastpaths unless
diff --git a/drivers/iommu/arm-smmu.h b/drivers/iommu/arm-smmu.h
index 6b6b877135de..001e60a3d18c 100644
--- a/drivers/iommu/arm-smmu.h
+++ b/drivers/iommu/arm-smmu.h
@@ -280,6 +280,8 @@ struct arm_smmu_device {
 
        /* IOMMU core code handle */
        struct iommu_device             iommu;
+
+       struct iommu_domain             *identity;
 };
 
 enum arm_smmu_context_fmt {
-- 
2.23.0

_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

Reply via email to