From dd6b68ed4f5bba78c0cd9765fa48b10cb1542dc7 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Sat, 21 Jan 2023 20:27:52 +0100 Subject: iommu: Add DMA mapping operations In order to support IOMMUs in non-bypass mode we need device ops to map and unmap DMA memory. The map operation enters a mapping for a region specified by CPU address and size into the translation table of the IOMMU and returns a DMA address suitable for programming the device to do DMA. The unmap operation removes this mapping from the translation table of the IOMMU. Signed-off-by: Mark Kettenis --- drivers/iommu/iommu-uclass.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'drivers') diff --git a/drivers/iommu/iommu-uclass.c b/drivers/iommu/iommu-uclass.c index ed917b3c3e8..f6b14577362 100644 --- a/drivers/iommu/iommu-uclass.c +++ b/drivers/iommu/iommu-uclass.c @@ -7,6 +7,9 @@ #include #include +#include +#include +#include #if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) int dev_iommu_enable(struct udevice *dev) @@ -33,12 +36,37 @@ int dev_iommu_enable(struct udevice *dev) __func__, ret); return ret; } + dev->iommu = dev_iommu; } return 0; } #endif +dma_addr_t dev_iommu_dma_map(struct udevice *dev, void *addr, size_t size) +{ + const struct iommu_ops *ops; + + if (dev->iommu) { + ops = device_get_ops(dev->iommu); + if (ops && ops->map) + return ops->map(dev->iommu, addr, size); + } + + return dev_phys_to_bus(dev, virt_to_phys(addr)); +} + +void dev_iommu_dma_unmap(struct udevice *dev, dma_addr_t addr, size_t size) +{ + const struct iommu_ops *ops; + + if (dev->iommu) { + ops = device_get_ops(dev->iommu); + if (ops && ops->unmap) + ops->unmap(dev->iommu, addr, size); + } +} + UCLASS_DRIVER(iommu) = { .id = UCLASS_IOMMU, .name = "iommu", -- cgit v1.3.1