dma_remapping.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #ifndef _DMA_REMAPPING_H
  2. #define _DMA_REMAPPING_H
  3. /*
  4. * VT-d hardware uses 4KiB page size regardless of host page size.
  5. */
  6. #define VTD_PAGE_SHIFT (12)
  7. #define VTD_PAGE_SIZE (1UL << VTD_PAGE_SHIFT)
  8. #define VTD_PAGE_MASK (((u64)-1) << VTD_PAGE_SHIFT)
  9. #define VTD_PAGE_ALIGN(addr) (((addr) + VTD_PAGE_SIZE - 1) & VTD_PAGE_MASK)
  10. #define VTD_STRIDE_SHIFT (9)
  11. #define VTD_STRIDE_MASK (((u64)-1) << VTD_STRIDE_SHIFT)
  12. #define DMA_PTE_READ (1)
  13. #define DMA_PTE_WRITE (2)
  14. #define DMA_PTE_LARGE_PAGE (1 << 7)
  15. #define DMA_PTE_SNP (1 << 11)
  16. #define CONTEXT_TT_MULTI_LEVEL 0
  17. #define CONTEXT_TT_DEV_IOTLB 1
  18. #define CONTEXT_TT_PASS_THROUGH 2
  19. /* Extended context entry types */
  20. #define CONTEXT_TT_PT_PASID 4
  21. #define CONTEXT_TT_PT_PASID_DEV_IOTLB 5
  22. #define CONTEXT_TT_MASK (7ULL << 2)
  23. #define CONTEXT_DINVE (1ULL << 8)
  24. #define CONTEXT_PRS (1ULL << 9)
  25. #define CONTEXT_PASIDE (1ULL << 11)
  26. struct intel_iommu;
  27. struct dmar_domain;
  28. struct root_entry;
  29. #ifdef CONFIG_INTEL_IOMMU
  30. extern int iommu_calculate_agaw(struct intel_iommu *iommu);
  31. extern int iommu_calculate_max_sagaw(struct intel_iommu *iommu);
  32. extern int dmar_disabled;
  33. extern int intel_iommu_enabled;
  34. #else
  35. static inline int iommu_calculate_agaw(struct intel_iommu *iommu)
  36. {
  37. return 0;
  38. }
  39. static inline int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
  40. {
  41. return 0;
  42. }
  43. #define dmar_disabled (1)
  44. #define intel_iommu_enabled (0)
  45. #endif
  46. #endif