Skip to content

Commit

Permalink
Add domain_flush_cache
Browse files Browse the repository at this point in the history
Because virtual machine domain may have multiple devices from different iommus, it cannot use __iommu_flush_cache.

In some common low level functions, use domain_flush_cache instead of __iommu_flush_cache. On the other hand, in some functions, iommu can is specified or domain cannot be got, still use __iommu_flush_cache

Signed-off-by: Weidong Han <weidong.han@intel.com>
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
  • Loading branch information
Weidong Han authored and Joerg Roedel committed Jan 3, 2009
1 parent c7151a8 commit 5331fe6
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions drivers/pci/intel-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,6 +445,13 @@ static struct intel_iommu *device_to_iommu(u8 bus, u8 devfn)
return NULL;
}

static void domain_flush_cache(struct dmar_domain *domain,
void *addr, int size)
{
if (!domain->iommu_coherency)
clflush_cache_range(addr, size);
}

/* Gets context entry for a given bus and devfn */
static struct context_entry * device_to_context_entry(struct intel_iommu *iommu,
u8 bus, u8 devfn)
Expand Down Expand Up @@ -585,7 +592,6 @@ static struct dma_pte * addr_to_dma_pte(struct dmar_domain *domain, u64 addr)
int level = agaw_to_level(domain->agaw);
int offset;
unsigned long flags;
struct intel_iommu *iommu = domain_get_iommu(domain);

BUG_ON(!domain->pgd);

Expand All @@ -609,16 +615,15 @@ static struct dma_pte * addr_to_dma_pte(struct dmar_domain *domain, u64 addr)
flags);
return NULL;
}
__iommu_flush_cache(iommu, tmp_page,
PAGE_SIZE);
domain_flush_cache(domain, tmp_page, PAGE_SIZE);
dma_set_pte_addr(pte, virt_to_phys(tmp_page));
/*
* high level table always sets r/w, last level page
* table control read/write
*/
dma_set_pte_readable(pte);
dma_set_pte_writable(pte);
__iommu_flush_cache(iommu, pte, sizeof(*pte));
domain_flush_cache(domain, pte, sizeof(*pte));
}
parent = phys_to_virt(dma_pte_addr(pte));
level--;
Expand Down Expand Up @@ -655,14 +660,13 @@ static struct dma_pte *dma_addr_level_pte(struct dmar_domain *domain, u64 addr,
static void dma_pte_clear_one(struct dmar_domain *domain, u64 addr)
{
struct dma_pte *pte = NULL;
struct intel_iommu *iommu = domain_get_iommu(domain);

/* get last level pte */
pte = dma_addr_level_pte(domain, addr, 1);

if (pte) {
dma_clear_pte(pte);
__iommu_flush_cache(iommu, pte, sizeof(*pte));
domain_flush_cache(domain, pte, sizeof(*pte));
}
}

Expand Down Expand Up @@ -693,7 +697,6 @@ static void dma_pte_free_pagetable(struct dmar_domain *domain,
int total = agaw_to_level(domain->agaw);
int level;
u64 tmp;
struct intel_iommu *iommu = domain_get_iommu(domain);

start &= (((u64)1) << addr_width) - 1;
end &= (((u64)1) << addr_width) - 1;
Expand All @@ -711,8 +714,7 @@ static void dma_pte_free_pagetable(struct dmar_domain *domain,
free_pgtable_page(
phys_to_virt(dma_pte_addr(pte)));
dma_clear_pte(pte);
__iommu_flush_cache(iommu,
pte, sizeof(*pte));
domain_flush_cache(domain, pte, sizeof(*pte));
}
tmp += level_size(level);
}
Expand Down Expand Up @@ -1445,12 +1447,17 @@ static int domain_context_mapping_one(struct dmar_domain *domain,
u8 bus, u8 devfn)
{
struct context_entry *context;
struct intel_iommu *iommu = domain_get_iommu(domain);
unsigned long flags;
struct intel_iommu *iommu;

pr_debug("Set context mapping for %02x:%02x.%d\n",
bus, PCI_SLOT(devfn), PCI_FUNC(devfn));
BUG_ON(!domain->pgd);

iommu = device_to_iommu(bus, devfn);
if (!iommu)
return -ENODEV;

context = device_to_context_entry(iommu, bus, devfn);
if (!context)
return -ENOMEM;
Expand All @@ -1466,7 +1473,7 @@ static int domain_context_mapping_one(struct dmar_domain *domain,
context_set_translation_type(context, CONTEXT_TT_MULTI_LEVEL);
context_set_fault_enable(context);
context_set_present(context);
__iommu_flush_cache(iommu, context, sizeof(*context));
domain_flush_cache(domain, context, sizeof(*context));

/* it's a non-present to present mapping */
if (iommu->flush.flush_context(iommu, domain->id,
Expand Down Expand Up @@ -1519,12 +1526,15 @@ domain_context_mapping(struct dmar_domain *domain, struct pci_dev *pdev)
tmp->bus->number, tmp->devfn);
}

static int domain_context_mapped(struct dmar_domain *domain,
struct pci_dev *pdev)
static int domain_context_mapped(struct pci_dev *pdev)
{
int ret;
struct pci_dev *tmp, *parent;
struct intel_iommu *iommu = domain_get_iommu(domain);
struct intel_iommu *iommu;

iommu = device_to_iommu(pdev->bus->number, pdev->devfn);
if (!iommu)
return -ENODEV;

ret = device_context_mapped(iommu,
pdev->bus->number, pdev->devfn);
Expand Down Expand Up @@ -1559,7 +1569,6 @@ domain_page_mapping(struct dmar_domain *domain, dma_addr_t iova,
struct dma_pte *pte;
int index;
int addr_width = agaw_to_width(domain->agaw);
struct intel_iommu *iommu = domain_get_iommu(domain);

hpa &= (((u64)1) << addr_width) - 1;

Expand All @@ -1579,7 +1588,7 @@ domain_page_mapping(struct dmar_domain *domain, dma_addr_t iova,
BUG_ON(dma_pte_addr(pte));
dma_set_pte_addr(pte, start_pfn << VTD_PAGE_SHIFT);
dma_set_pte_prot(pte, prot);
__iommu_flush_cache(iommu, pte, sizeof(*pte));
domain_flush_cache(domain, pte, sizeof(*pte));
start_pfn++;
index++;
}
Expand Down Expand Up @@ -2129,7 +2138,7 @@ get_valid_domain_for_dev(struct pci_dev *pdev)
}

/* make sure context mapping is ok */
if (unlikely(!domain_context_mapped(domain, pdev))) {
if (unlikely(!domain_context_mapped(pdev))) {
ret = domain_context_mapping(domain, pdev);
if (ret) {
printk(KERN_ERR
Expand Down

0 comments on commit 5331fe6

Please sign in to comment.