Commit c04d9eb7 authored by Marek Szyprowski's avatar Marek Szyprowski Committed by Inki Dae

drm/exynos: iommu: add a check if all sub-devices have iommu controller

This patch adds a check if all devices belonging to Exynos DRM have the
same dma_map_ops set. This is required to enable operation with IOMMU
enabled.
Signed-off-by: default avatarMarek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
parent f7c72773
...@@ -97,6 +97,11 @@ int drm_iommu_attach_device(struct drm_device *drm_dev, ...@@ -97,6 +97,11 @@ int drm_iommu_attach_device(struct drm_device *drm_dev,
if (!priv->mapping) if (!priv->mapping)
return 0; return 0;
if (get_dma_ops(priv->dma_dev) != get_dma_ops(subdrv_dev)) {
DRM_ERROR("Device %s lacks support for IOMMU\n",
dev_name(subdrv_dev));
return -EINVAL;
}
ret = configure_dma_max_seg_size(subdrv_dev); ret = configure_dma_max_seg_size(subdrv_dev);
if (ret) if (ret)
......
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