blob: a8c56acc8c985ba54b917f08c2956f3d26a1cca1 [file] [log] [blame]
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +02001#ifndef ASMARM_DMA_IOMMU_H
2#define ASMARM_DMA_IOMMU_H
3
4#ifdef __KERNEL__
5
6#include <linux/mm_types.h>
7#include <linux/scatterlist.h>
8#include <linux/dma-debug.h>
9#include <linux/kmemcheck.h>
Laurent Pinchart3e3a1822012-12-16 13:32:03 +010010#include <linux/kref.h>
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +020011
12struct dma_iommu_mapping {
13 /* iommu specific data */
14 struct iommu_domain *domain;
15
16 void *bitmap;
17 size_t bits;
18 unsigned int order;
19 dma_addr_t base;
20
21 spinlock_t lock;
22 struct kref kref;
23};
24
25struct dma_iommu_mapping *
26arm_iommu_create_mapping(struct bus_type *bus, dma_addr_t base, size_t size,
27 int order);
28
29void arm_iommu_release_mapping(struct dma_iommu_mapping *mapping);
30
31int arm_iommu_attach_device(struct device *dev,
32 struct dma_iommu_mapping *mapping);
Hiroshi Doyu6fe36752013-01-24 15:16:57 +020033void arm_iommu_detach_device(struct device *dev);
Marek Szyprowski4ce63fc2012-05-16 15:48:21 +020034
35#endif /* __KERNEL__ */
36#endif