From: Marek Szyprowski Date: Mon, 9 Jan 2017 12:03:56 +0000 (+0100) Subject: iommu/exynos: Properly release device from the default domain in ->remove X-Git-Tag: v4.11-rc1~158^2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fff2fd1a9e4be3267f8ace2b4d7d80da13d1f0d9;p=platform%2Fkernel%2Flinux-exynos.git iommu/exynos: Properly release device from the default domain in ->remove IOMMU core doesn't detach device from the default domain before calling ->iommu_remove_device, so check that and do the proper cleanup or warn if device is still attached to non-default domain. Signed-off-by: Marek Szyprowski Signed-off-by: Joerg Roedel --- diff --git a/drivers/iommu/exynos-iommu.c b/drivers/iommu/exynos-iommu.c index 91f7827..fa529c2 100644 --- a/drivers/iommu/exynos-iommu.c +++ b/drivers/iommu/exynos-iommu.c @@ -1242,9 +1242,21 @@ static int exynos_iommu_add_device(struct device *dev) static void exynos_iommu_remove_device(struct device *dev) { + struct exynos_iommu_owner *owner = dev->archdata.iommu; + if (!has_sysmmu(dev)) return; + if (owner->domain) { + struct iommu_group *group = iommu_group_get(dev); + + if (group) { + WARN_ON(owner->domain != + iommu_group_default_domain(group)); + exynos_iommu_detach_device(owner->domain, dev); + iommu_group_put(group); + } + } iommu_group_remove_device(dev); }