Merge branch 'x86/entry' into ras/core
[linux-2.6-microblaze.git] / drivers / iommu / exynos-iommu.c
index 186ff5c..60c8a56 100644 (file)
@@ -1235,19 +1235,13 @@ static phys_addr_t exynos_iommu_iova_to_phys(struct iommu_domain *iommu_domain,
        return phys;
 }
 
-static int exynos_iommu_add_device(struct device *dev)
+static struct iommu_device *exynos_iommu_probe_device(struct device *dev)
 {
        struct exynos_iommu_owner *owner = dev->archdata.iommu;
        struct sysmmu_drvdata *data;
-       struct iommu_group *group;
 
        if (!has_sysmmu(dev))
-               return -ENODEV;
-
-       group = iommu_group_get_for_dev(dev);
-
-       if (IS_ERR(group))
-               return PTR_ERR(group);
+               return ERR_PTR(-ENODEV);
 
        list_for_each_entry(data, &owner->controllers, owner_node) {
                /*
@@ -1259,12 +1253,15 @@ static int exynos_iommu_add_device(struct device *dev)
                                             DL_FLAG_STATELESS |
                                             DL_FLAG_PM_RUNTIME);
        }
-       iommu_group_put(group);
 
-       return 0;
+       /* There is always at least one entry, see exynos_iommu_of_xlate() */
+       data = list_first_entry(&owner->controllers,
+                               struct sysmmu_drvdata, owner_node);
+
+       return &data->iommu;
 }
 
-static void exynos_iommu_remove_device(struct device *dev)
+static void exynos_iommu_release_device(struct device *dev)
 {
        struct exynos_iommu_owner *owner = dev->archdata.iommu;
        struct sysmmu_drvdata *data;
@@ -1282,7 +1279,6 @@ static void exynos_iommu_remove_device(struct device *dev)
                        iommu_group_put(group);
                }
        }
-       iommu_group_remove_device(dev);
 
        list_for_each_entry(data, &owner->controllers, owner_node)
                device_link_del(data->link);
@@ -1331,8 +1327,8 @@ static const struct iommu_ops exynos_iommu_ops = {
        .unmap = exynos_iommu_unmap,
        .iova_to_phys = exynos_iommu_iova_to_phys,
        .device_group = generic_device_group,
-       .add_device = exynos_iommu_add_device,
-       .remove_device = exynos_iommu_remove_device,
+       .probe_device = exynos_iommu_probe_device,
+       .release_device = exynos_iommu_release_device,
        .pgsize_bitmap = SECT_SIZE | LPAGE_SIZE | SPAGE_SIZE,
        .of_xlate = exynos_iommu_of_xlate,
 };