Marek Szyprowski | 4ce63fc | 2012-05-16 15:48:21 +0200 | [diff] [blame] | 1 | #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 Pinchart | 3e3a182 | 2012-12-16 13:32:03 +0100 | [diff] [blame] | 10 | #include <linux/kref.h> |
Marek Szyprowski | 4ce63fc | 2012-05-16 15:48:21 +0200 | [diff] [blame] | 11 | |
| 12 | struct dma_iommu_mapping { |
| 13 | /* iommu specific data */ |
| 14 | struct iommu_domain *domain; |
| 15 | |
Andreas Herrmann | 4d852ef | 2014-02-25 13:09:53 +0100 | [diff] [blame] | 16 | unsigned long **bitmaps; /* array of bitmaps */ |
| 17 | unsigned int nr_bitmaps; /* nr of elements in array */ |
| 18 | unsigned int extensions; |
| 19 | size_t bitmap_size; /* size of a single bitmap */ |
| 20 | size_t bits; /* per bitmap */ |
Marek Szyprowski | 4ce63fc | 2012-05-16 15:48:21 +0200 | [diff] [blame] | 21 | dma_addr_t base; |
| 22 | |
| 23 | spinlock_t lock; |
| 24 | struct kref kref; |
| 25 | }; |
| 26 | |
| 27 | struct dma_iommu_mapping * |
Marek Szyprowski | 1424532 | 2015-04-29 11:29:19 +0100 | [diff] [blame] | 28 | arm_iommu_create_mapping(struct bus_type *bus, dma_addr_t base, u64 size); |
Marek Szyprowski | 4ce63fc | 2012-05-16 15:48:21 +0200 | [diff] [blame] | 29 | |
| 30 | void arm_iommu_release_mapping(struct dma_iommu_mapping *mapping); |
| 31 | |
| 32 | int arm_iommu_attach_device(struct device *dev, |
| 33 | struct dma_iommu_mapping *mapping); |
Hiroshi Doyu | 6fe3675 | 2013-01-24 15:16:57 +0200 | [diff] [blame] | 34 | void arm_iommu_detach_device(struct device *dev); |
Marek Szyprowski | 4ce63fc | 2012-05-16 15:48:21 +0200 | [diff] [blame] | 35 | |
| 36 | #endif /* __KERNEL__ */ |
| 37 | #endif |