Commit 1a107901 authored by Tom Murphy's avatar Tom Murphy Committed by Joerg Roedel

iommu/amd: Flush not present cache in iommu_map_page

check if there is a not-present cache present and flush it if there is.
Signed-off-by: default avatarTom Murphy <tmurphy@arista.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent c805b428
...@@ -1307,6 +1307,16 @@ static void domain_flush_complete(struct protection_domain *domain) ...@@ -1307,6 +1307,16 @@ static void domain_flush_complete(struct protection_domain *domain)
} }
} }
/* Flush the not present cache if it exists */
static void domain_flush_np_cache(struct protection_domain *domain,
dma_addr_t iova, size_t size)
{
if (unlikely(amd_iommu_np_cache)) {
domain_flush_pages(domain, iova, size);
domain_flush_complete(domain);
}
}
/* /*
* This function flushes the DTEs for all devices in domain * This function flushes the DTEs for all devices in domain
...@@ -2389,10 +2399,7 @@ static dma_addr_t __map_single(struct device *dev, ...@@ -2389,10 +2399,7 @@ static dma_addr_t __map_single(struct device *dev,
} }
address += offset; address += offset;
if (unlikely(amd_iommu_np_cache)) { domain_flush_np_cache(&dma_dom->domain, address, size);
domain_flush_pages(&dma_dom->domain, address, size);
domain_flush_complete(&dma_dom->domain);
}
out: out:
return address; return address;
...@@ -2548,6 +2555,8 @@ static int map_sg(struct device *dev, struct scatterlist *sglist, ...@@ -2548,6 +2555,8 @@ static int map_sg(struct device *dev, struct scatterlist *sglist,
s->dma_length = s->length; s->dma_length = s->length;
} }
domain_flush_np_cache(domain, s->dma_address, s->dma_length);
return nelems; return nelems;
out_unmap: out_unmap:
...@@ -3005,6 +3014,8 @@ static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova, ...@@ -3005,6 +3014,8 @@ static int amd_iommu_map(struct iommu_domain *dom, unsigned long iova,
ret = iommu_map_page(domain, iova, paddr, page_size, prot, GFP_KERNEL); ret = iommu_map_page(domain, iova, paddr, page_size, prot, GFP_KERNEL);
mutex_unlock(&domain->api_lock); mutex_unlock(&domain->api_lock);
domain_flush_np_cache(domain, iova, page_size);
return ret; return ret;
} }
......
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