]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
remoteproc: Use iommu_paging_domain_alloc()
authorLu Baolu <baolu.lu@linux.intel.com>
Wed, 9 Oct 2024 04:11:44 +0000 (12:11 +0800)
committerJoerg Roedel <jroedel@suse.de>
Tue, 29 Oct 2024 09:03:41 +0000 (10:03 +0100)
An iommu domain is allocated in rproc_enable_iommu() and is attached to
rproc->dev.parent in the same function.

Use iommu_paging_domain_alloc() to make it explicit.

Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Acked-by: Beleswar Padhi <b-padhi@ti.com>
Link: https://lore.kernel.org/r/20241009041147.28391-2-baolu.lu@linux.intel.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/remoteproc/remoteproc_core.c

index f276956f2c5cec3b0e0f9809d54f3b75c08a15f7..eb66f78ec8b7747f6fa9fd023259aa3566d5f098 100644 (file)
@@ -109,10 +109,10 @@ static int rproc_enable_iommu(struct rproc *rproc)
                return 0;
        }
 
-       domain = iommu_domain_alloc(dev->bus);
-       if (!domain) {
+       domain = iommu_paging_domain_alloc(dev);
+       if (IS_ERR(domain)) {
                dev_err(dev, "can't alloc iommu domain\n");
-               return -ENOMEM;
+               return PTR_ERR(domain);
        }
 
        iommu_set_fault_handler(domain, rproc_iommu_fault, rproc);