From: Robin Murphy Date: Mon, 11 Apr 2022 12:36:32 +0000 (+0100) Subject: habanalabs: Stop using iommu_present() X-Git-Tag: v6.1-rc5~1160^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=77c97a7ea85f3a1f8d2c3bf54869c0b6638519c7;p=platform%2Fkernel%2Flinux-starfive.git habanalabs: Stop using iommu_present() Even if an IOMMU might be present for some PCI segment in the system, that doesn't necessarily mean it provides translation for the device we care about. Replace iommu_present() with a more appropriate check. Signed-off-by: Robin Murphy Reviewed-by: Oded Gabbay Signed-off-by: Oded Gabbay Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/misc/habanalabs/common/debugfs.c b/drivers/misc/habanalabs/common/debugfs.c index 7c4a4d504e4c..a94f01713efd 100644 --- a/drivers/misc/habanalabs/common/debugfs.c +++ b/drivers/misc/habanalabs/common/debugfs.c @@ -722,7 +722,7 @@ static int hl_access_mem(struct hl_device *hdev, u64 addr, u64 *val, if (found) return 0; - if (!user_address || iommu_present(&pci_bus_type)) { + if (!user_address || device_iommu_mapped(&hdev->pdev->dev)) { rc = -EINVAL; goto err; }