Blame view

include/linux/iommu-helper.h 911 Bytes
1e19b16a3   Thomas Gleixner   AMD IOMMU: use io...
1
2
  #ifndef _LINUX_IOMMU_HELPER_H
  #define _LINUX_IOMMU_HELPER_H
e269b0851   Anton Blanchard   iommu: inline iom...
3
  #include <linux/kernel.h>
eecfffc15   FUJITA Tomonori   iommu: add iommu_...
4
5
6
7
8
9
10
11
12
  static inline unsigned long iommu_device_max_index(unsigned long size,
  						   unsigned long offset,
  						   u64 dma_mask)
  {
  	if (size + offset > dma_mask)
  		return dma_mask - offset + 1;
  	else
  		return size;
  }
3715863aa   FUJITA Tomonori   iommu: export iom...
13
14
15
  extern int iommu_is_span_boundary(unsigned int index, unsigned int nr,
  				  unsigned long shift,
  				  unsigned long boundary_size);
0291df8cc   FUJITA Tomonori   iommu sg: add IOM...
16
17
18
19
20
  extern unsigned long iommu_area_alloc(unsigned long *map, unsigned long size,
  				      unsigned long start, unsigned int nr,
  				      unsigned long shift,
  				      unsigned long boundary_size,
  				      unsigned long align_mask);
1e19b16a3   Thomas Gleixner   AMD IOMMU: use io...
21

e269b0851   Anton Blanchard   iommu: inline iom...
22
23
24
25
26
27
28
29
  static inline unsigned long iommu_num_pages(unsigned long addr,
  					    unsigned long len,
  					    unsigned long io_page_size)
  {
  	unsigned long size = (addr & (io_page_size - 1)) + len;
  
  	return DIV_ROUND_UP(size, io_page_size);
  }
56d936607   Joerg Roedel   introduce generic...
30

1e19b16a3   Thomas Gleixner   AMD IOMMU: use io...
31
  #endif