blob: e0a03aff63d91271a3bc6fa359b407ecdf7a97df [file] [log] [blame]
Suresh Siddhae61d98d2008-07-10 11:16:35 -07001#ifndef _DMA_REMAPPING_H
2#define _DMA_REMAPPING_H
3
4/*
Fenghua Yu5b6985c2008-10-16 18:02:32 -07005 * VT-d hardware uses 4KiB page size regardless of host page size.
Suresh Siddhae61d98d2008-07-10 11:16:35 -07006 */
Fenghua Yu5b6985c2008-10-16 18:02:32 -07007#define VTD_PAGE_SHIFT (12)
8#define VTD_PAGE_SIZE (1UL << VTD_PAGE_SHIFT)
9#define VTD_PAGE_MASK (((u64)-1) << VTD_PAGE_SHIFT)
10#define VTD_PAGE_ALIGN(addr) (((addr) + VTD_PAGE_SIZE - 1) & VTD_PAGE_MASK)
Suresh Siddhae61d98d2008-07-10 11:16:35 -070011
Suresh Siddhae61d98d2008-07-10 11:16:35 -070012#define DMA_PTE_READ (1)
13#define DMA_PTE_WRITE (2)
Sheng Yang9cf066972009-03-18 15:33:07 +080014#define DMA_PTE_SNP (1 << 11)
Suresh Siddhae61d98d2008-07-10 11:16:35 -070015
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070016#define CONTEXT_TT_MULTI_LEVEL 0
17#define CONTEXT_TT_PASS_THROUGH 2
18
Suresh Siddhae61d98d2008-07-10 11:16:35 -070019struct intel_iommu;
Mark McLoughlin99126f72008-11-20 15:49:47 +000020struct dmar_domain;
21struct root_entry;
Suresh Siddhae61d98d2008-07-10 11:16:35 -070022
Suresh Siddhae61d98d2008-07-10 11:16:35 -070023extern void free_dmar_iommu(struct intel_iommu *iommu);
Ingo Molnarc66b9902009-01-04 10:55:02 +010024
25#ifdef CONFIG_DMAR
Weidong Han1b573682008-12-08 15:34:06 +080026extern int iommu_calculate_agaw(struct intel_iommu *iommu);
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070027extern int iommu_calculate_max_sagaw(struct intel_iommu *iommu);
Ingo Molnarc66b9902009-01-04 10:55:02 +010028#else
29static inline int iommu_calculate_agaw(struct intel_iommu *iommu)
30{
31 return 0;
32}
Fenghua Yu4ed0d3e2009-04-24 17:30:20 -070033static inline int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
34{
35 return 0;
36}
Ingo Molnarc66b9902009-01-04 10:55:02 +010037#endif
Suresh Siddhae61d98d2008-07-10 11:16:35 -070038
Suresh Siddha2ae21012008-07-10 11:16:43 -070039extern int dmar_disabled;
40
Suresh Siddhae61d98d2008-07-10 11:16:35 -070041#endif