public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] media: nvidia: tegra: Use iommu_paging_domain_alloc()
@ 2024-08-12  7:21 Lu Baolu
  2024-08-12  7:21 ` [PATCH 2/2] media: venus: firmware: " Lu Baolu
  2024-08-29 15:25 ` [PATCH 1/2] media: nvidia: tegra: " Thierry Reding
  0 siblings, 2 replies; 8+ messages in thread
From: Lu Baolu @ 2024-08-12  7:21 UTC (permalink / raw)
  To: Dmitry Osipenko, Mauro Carvalho Chehab, Thierry Reding,
	Jonathan Hunter, Stanimir Varbanov, Vikash Garodia, Joerg Roedel,
	Will Deacon, Robin Murphy, Jason Gunthorpe, Kevin Tian
  Cc: linux-media, linux-tegra, linux-arm-msm, iommu, linux-kernel,
	Lu Baolu, Jason Gunthorpe

An iommu domain is allocated in tegra_vde_iommu_init() and is attached to
vde->dev. Use iommu_paging_domain_alloc() to make it explicit.

Signed-off-by: Lu Baolu <baolu.lu@linux.intel.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Link: https://lore.kernel.org/r/20240610085555.88197-9-baolu.lu@linux.intel.com
---
 drivers/media/platform/nvidia/tegra-vde/iommu.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/media/platform/nvidia/tegra-vde/iommu.c b/drivers/media/platform/nvidia/tegra-vde/iommu.c
index 5521ed3e465f..b1d9d841d944 100644
--- a/drivers/media/platform/nvidia/tegra-vde/iommu.c
+++ b/drivers/media/platform/nvidia/tegra-vde/iommu.c
@@ -78,9 +78,10 @@ int tegra_vde_iommu_init(struct tegra_vde *vde)
 		arm_iommu_release_mapping(mapping);
 	}
 #endif
-	vde->domain = iommu_domain_alloc(&platform_bus_type);
-	if (!vde->domain) {
-		err = -ENOMEM;
+	vde->domain = iommu_paging_domain_alloc(dev);
+	if (IS_ERR(vde->domain)) {
+		err = PTR_ERR(vde->domain);
+		vde->domain = NULL;
 		goto put_group;
 	}
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-09-15 14:08 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-12  7:21 [PATCH 1/2] media: nvidia: tegra: Use iommu_paging_domain_alloc() Lu Baolu
2024-08-12  7:21 ` [PATCH 2/2] media: venus: firmware: " Lu Baolu
2024-08-20 20:43   ` Stanimir Varbanov
2024-09-04 12:16     ` Jason Gunthorpe
2024-09-06  9:51       ` Stanimir Varbanov
2024-09-06 13:20         ` Jason Gunthorpe
2024-08-29 15:25 ` [PATCH 1/2] media: nvidia: tegra: " Thierry Reding
2024-09-15 14:08   ` Jason Gunthorpe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox