1 #ifndef _LINUX_IOMMU_COMMON_H
2 #define _LINUX_IOMMU_COMMON_H
4 #include <linux/spinlock_types.h>
5 #include <linux/device.h>
8 #define IOMMU_POOL_HASHBITS 4
9 #define IOMMU_NR_POOLS (1 << IOMMU_POOL_HASHBITS)
10 #define IOMMU_ERROR_CODE (~(unsigned long) 0)
19 struct iommu_map_table
{
20 unsigned long table_map_base
;
21 unsigned long table_shift
;
22 unsigned long nr_pools
;
23 void (*lazy_flush
)(struct iommu_map_table
*);
24 unsigned long poolsize
;
25 struct iommu_pool pools
[IOMMU_NR_POOLS
];
27 #define IOMMU_HAS_LARGE_POOL 0x00000001
28 #define IOMMU_NO_SPAN_BOUND 0x00000002
29 #define IOMMU_NEED_FLUSH 0x00000004
30 struct iommu_pool large_pool
;
34 extern void iommu_tbl_pool_init(struct iommu_map_table
*iommu
,
35 unsigned long num_entries
,
37 void (*lazy_flush
)(struct iommu_map_table
*),
38 bool large_pool
, u32 npools
,
39 bool skip_span_boundary_check
);
41 extern unsigned long iommu_tbl_range_alloc(struct device
*dev
,
42 struct iommu_map_table
*iommu
,
44 unsigned long *handle
,
46 unsigned int align_order
);
48 extern void iommu_tbl_range_free(struct iommu_map_table
*iommu
,
49 u64 dma_addr
, unsigned long npages
,