Commit d14d6577 authored by Joerg Roedel's avatar Joerg Roedel

VT-d: adapt domain iova_to_phys function for IOMMU API

Signed-off-by: default avatarJoerg Roedel <joerg.roedel@amd.com>
parent dde57a21
...@@ -3106,15 +3106,16 @@ int intel_iommu_found(void) ...@@ -3106,15 +3106,16 @@ int intel_iommu_found(void)
} }
EXPORT_SYMBOL_GPL(intel_iommu_found); EXPORT_SYMBOL_GPL(intel_iommu_found);
u64 intel_iommu_iova_to_phys(struct dmar_domain *domain, u64 iova) static phys_addr_t intel_iommu_iova_to_phys(struct iommu_domain *domain,
unsigned long iova)
{ {
struct dmar_domain *dmar_domain = domain->priv;
struct dma_pte *pte; struct dma_pte *pte;
u64 phys = 0; u64 phys = 0;
pte = addr_to_dma_pte(domain, iova); pte = addr_to_dma_pte(dmar_domain, iova);
if (pte) if (pte)
phys = dma_pte_addr(pte); phys = dma_pte_addr(pte);
return phys; return phys;
} }
EXPORT_SYMBOL_GPL(intel_iommu_iova_to_phys);
...@@ -330,8 +330,6 @@ extern int qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr, ...@@ -330,8 +330,6 @@ extern int qi_flush_iotlb(struct intel_iommu *iommu, u16 did, u64 addr,
extern void qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu); extern void qi_submit_sync(struct qi_desc *desc, struct intel_iommu *iommu);
u64 intel_iommu_iova_to_phys(struct dmar_domain *domain, u64 iova);
#ifdef CONFIG_DMAR #ifdef CONFIG_DMAR
int intel_iommu_found(void); int intel_iommu_found(void);
#else /* CONFIG_DMAR */ #else /* CONFIG_DMAR */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment