iova.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright (c) 2006, Intel Corporation.
  3. *
  4. * This file is released under the GPLv2.
  5. *
  6. * Copyright (C) 2006 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
  7. *
  8. */
  9. #ifndef _IOVA_H_
  10. #define _IOVA_H_
  11. #include <linux/types.h>
  12. #include <linux/kernel.h>
  13. #include <linux/rbtree.h>
  14. #include <linux/dma-mapping.h>
  15. /*
  16. * We need a fixed PAGE_SIZE of 4K irrespective of
  17. * arch PAGE_SIZE for IOMMU page tables.
  18. */
  19. #define PAGE_SHIFT_4K (12)
  20. #define PAGE_SIZE_4K (1UL << PAGE_SHIFT_4K)
  21. #define PAGE_MASK_4K (((u64)-1) << PAGE_SHIFT_4K)
  22. #define PAGE_ALIGN_4K(addr) (((addr) + PAGE_SIZE_4K - 1) & PAGE_MASK_4K)
  23. /* IO virtual address start page frame number */
  24. #define IOVA_START_PFN (1)
  25. #define IOVA_PFN(addr) ((addr) >> PAGE_SHIFT_4K)
  26. #define DMA_32BIT_PFN IOVA_PFN(DMA_32BIT_MASK)
  27. #define DMA_64BIT_PFN IOVA_PFN(DMA_64BIT_MASK)
  28. /* iova structure */
  29. struct iova {
  30. struct rb_node node;
  31. unsigned long pfn_hi; /* IOMMU dish out addr hi */
  32. unsigned long pfn_lo; /* IOMMU dish out addr lo */
  33. };
  34. /* holds all the iova translations for a domain */
  35. struct iova_domain {
  36. spinlock_t iova_alloc_lock;/* Lock to protect iova allocation */
  37. spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */
  38. struct rb_root rbroot; /* iova domain rbtree root */
  39. struct rb_node *cached32_node; /* Save last alloced node */
  40. };
  41. struct iova *alloc_iova_mem(void);
  42. void free_iova_mem(struct iova *iova);
  43. void free_iova(struct iova_domain *iovad, unsigned long pfn);
  44. void __free_iova(struct iova_domain *iovad, struct iova *iova);
  45. struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size,
  46. unsigned long limit_pfn,
  47. bool size_aligned);
  48. struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo,
  49. unsigned long pfn_hi);
  50. void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to);
  51. void init_iova_domain(struct iova_domain *iovad);
  52. struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn);
  53. void put_iova_domain(struct iova_domain *iovad);
  54. #endif