2008-07-10 12:16:35 -06:00
|
|
|
#ifndef _DMA_REMAPPING_H
|
|
|
|
#define _DMA_REMAPPING_H
|
|
|
|
|
|
|
|
/*
|
2008-10-16 19:02:32 -06:00
|
|
|
* VT-d hardware uses 4KiB page size regardless of host page size.
|
2008-07-10 12:16:35 -06:00
|
|
|
*/
|
2008-10-16 19:02:32 -06:00
|
|
|
#define VTD_PAGE_SHIFT (12)
|
|
|
|
#define VTD_PAGE_SIZE (1UL << VTD_PAGE_SHIFT)
|
|
|
|
#define VTD_PAGE_MASK (((u64)-1) << VTD_PAGE_SHIFT)
|
|
|
|
#define VTD_PAGE_ALIGN(addr) (((addr) + VTD_PAGE_SIZE - 1) & VTD_PAGE_MASK)
|
2008-07-10 12:16:35 -06:00
|
|
|
|
|
|
|
#define DMA_PTE_READ (1)
|
|
|
|
#define DMA_PTE_WRITE (2)
|
2009-03-18 01:33:07 -06:00
|
|
|
#define DMA_PTE_SNP (1 << 11)
|
2008-07-10 12:16:35 -06:00
|
|
|
|
2009-04-24 18:30:20 -06:00
|
|
|
#define CONTEXT_TT_MULTI_LEVEL 0
|
2009-05-17 23:51:37 -06:00
|
|
|
#define CONTEXT_TT_DEV_IOTLB 1
|
2009-04-24 18:30:20 -06:00
|
|
|
#define CONTEXT_TT_PASS_THROUGH 2
|
|
|
|
|
2008-07-10 12:16:35 -06:00
|
|
|
struct intel_iommu;
|
2008-11-20 08:49:47 -07:00
|
|
|
struct dmar_domain;
|
|
|
|
struct root_entry;
|
2008-07-10 12:16:35 -06:00
|
|
|
|
|
|
|
extern void free_dmar_iommu(struct intel_iommu *iommu);
|
2009-01-04 02:55:02 -07:00
|
|
|
|
|
|
|
#ifdef CONFIG_DMAR
|
2008-12-08 00:34:06 -07:00
|
|
|
extern int iommu_calculate_agaw(struct intel_iommu *iommu);
|
2009-04-24 18:30:20 -06:00
|
|
|
extern int iommu_calculate_max_sagaw(struct intel_iommu *iommu);
|
2009-01-04 02:55:02 -07:00
|
|
|
#else
|
|
|
|
static inline int iommu_calculate_agaw(struct intel_iommu *iommu)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-04-24 18:30:20 -06:00
|
|
|
static inline int iommu_calculate_max_sagaw(struct intel_iommu *iommu)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2009-01-04 02:55:02 -07:00
|
|
|
#endif
|
2008-07-10 12:16:35 -06:00
|
|
|
|
2008-07-10 12:16:43 -06:00
|
|
|
extern int dmar_disabled;
|
|
|
|
|
2008-07-10 12:16:35 -06:00
|
|
|
#endif
|