Commit d2c302b6 authored by Joerg Roedel's avatar Joerg Roedel

iommu/exynos: Make use of iommu_device_register interface

Register Exynos IOMMUs to the IOMMU core and make them
visible in sysfs. This patch does not add the links between
IOMMUs and translated devices yet.

Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-samsung-soc@vger.kernel.org
Acked-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Tested-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent b16c0170
...@@ -276,6 +276,8 @@ struct sysmmu_drvdata { ...@@ -276,6 +276,8 @@ struct sysmmu_drvdata {
struct list_head owner_node; /* node for owner controllers list */ struct list_head owner_node; /* node for owner controllers list */
phys_addr_t pgtable; /* assigned page table structure */ phys_addr_t pgtable; /* assigned page table structure */
unsigned int version; /* our version */ unsigned int version; /* our version */
struct iommu_device iommu; /* IOMMU core handle */
}; };
static struct exynos_iommu_domain *to_exynos_domain(struct iommu_domain *dom) static struct exynos_iommu_domain *to_exynos_domain(struct iommu_domain *dom)
...@@ -611,6 +613,18 @@ static int __init exynos_sysmmu_probe(struct platform_device *pdev) ...@@ -611,6 +613,18 @@ static int __init exynos_sysmmu_probe(struct platform_device *pdev)
data->sysmmu = dev; data->sysmmu = dev;
spin_lock_init(&data->lock); spin_lock_init(&data->lock);
ret = iommu_device_sysfs_add(&data->iommu, &pdev->dev, NULL,
dev_name(data->sysmmu));
if (ret)
return ret;
iommu_device_set_ops(&data->iommu, &exynos_iommu_ops);
iommu_device_set_fwnode(&data->iommu, &dev->of_node->fwnode);
ret = iommu_device_register(&data->iommu);
if (ret)
return ret;
platform_set_drvdata(pdev, data); platform_set_drvdata(pdev, data);
__sysmmu_get_version(data); __sysmmu_get_version(data);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment