iommu_common.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* iommu_common.h: UltraSparc SBUS/PCI common iommu declarations.
  2. *
  3. * Copyright (C) 1999, 2008 David S. Miller (davem@davemloft.net)
  4. */
  5. #ifndef _IOMMU_COMMON_H
  6. #define _IOMMU_COMMON_H
  7. #include <linux/kernel.h>
  8. #include <linux/types.h>
  9. #include <linux/sched.h>
  10. #include <linux/mm.h>
  11. #include <linux/scatterlist.h>
  12. #include <linux/device.h>
  13. #include <linux/iommu-helper.h>
  14. #include <asm/iommu.h>
  15. #include <asm/scatterlist.h>
  16. /*
  17. * These give mapping size of each iommu pte/tlb.
  18. */
  19. #define IO_PAGE_SHIFT 13
  20. #define IO_PAGE_SIZE (1UL << IO_PAGE_SHIFT)
  21. #define IO_PAGE_MASK (~(IO_PAGE_SIZE-1))
  22. #define IO_PAGE_ALIGN(addr) ALIGN(addr, IO_PAGE_SIZE)
  23. #define IO_TSB_ENTRIES (128*1024)
  24. #define IO_TSB_SIZE (IO_TSB_ENTRIES * 8)
  25. /*
  26. * This is the hardwired shift in the iotlb tag/data parts.
  27. */
  28. #define IOMMU_PAGE_SHIFT 13
  29. #define SG_ENT_PHYS_ADDRESS(SG) (__pa(sg_virt((SG))))
  30. static inline unsigned long iommu_num_pages(unsigned long vaddr,
  31. unsigned long slen)
  32. {
  33. unsigned long npages;
  34. npages = IO_PAGE_ALIGN(vaddr + slen) - (vaddr & IO_PAGE_MASK);
  35. npages >>= IO_PAGE_SHIFT;
  36. return npages;
  37. }
  38. static inline int is_span_boundary(unsigned long entry,
  39. unsigned long shift,
  40. unsigned long boundary_size,
  41. struct scatterlist *outs,
  42. struct scatterlist *sg)
  43. {
  44. unsigned long paddr = SG_ENT_PHYS_ADDRESS(outs);
  45. int nr = iommu_num_pages(paddr, outs->dma_length + sg->length);
  46. return iommu_is_span_boundary(entry, nr, shift, boundary_size);
  47. }
  48. extern unsigned long iommu_range_alloc(struct device *dev,
  49. struct iommu *iommu,
  50. unsigned long npages,
  51. unsigned long *handle);
  52. extern void iommu_range_free(struct iommu *iommu,
  53. dma_addr_t dma_addr,
  54. unsigned long npages);
  55. #endif /* _IOMMU_COMMON_H */