Skip to content

Commit

Permalink
iommu/exynos: Fix L2TLB invalidation
Browse files Browse the repository at this point in the history
L2TLB is 8-way set-associative TLB with 512 entries. The number of
sets is 64.
A single 4KB(small page) translation information is cached
only to a set whose index is the same with the lower 6 bits of the page
frame number.
A single 64KB(large page) translation information can be
cached to any 16 sets whose top two bits of their indices are the same
with the bit [5:4] of the page frame number.
A single 1MB(section) or larger translation information can be cached to
any set in the TLB.

It is required to invalidate entire sets that may cache the target
translation information to guarantee that the L2TLB has no stale data.

Signed-off-by: Cho KyongHo <pullip.cho@samsung.com>
Signed-off-by: Shaik Ameer Basha <shaik.ameer@samsung.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
  • Loading branch information
Cho KyongHo authored and Joerg Roedel committed May 13, 2014
1 parent 734c3c7 commit 3ad6b7f
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions drivers/iommu/exynos-iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,14 @@ static void __sysmmu_tlb_invalidate(void __iomem *sfrbase)
}

static void __sysmmu_tlb_invalidate_entry(void __iomem *sfrbase,
unsigned long iova)
unsigned long iova, unsigned int num_inv)
{
__raw_writel((iova & SPAGE_MASK) | 1, sfrbase + REG_MMU_FLUSH_ENTRY);
unsigned int i;
for (i = 0; i < num_inv; i++) {
__raw_writel((iova & SPAGE_MASK) | 1,
sfrbase + REG_MMU_FLUSH_ENTRY);
iova += SPAGE_SIZE;
}
}

static void __sysmmu_set_ptbase(void __iomem *sfrbase,
Expand Down Expand Up @@ -452,17 +457,34 @@ static bool exynos_sysmmu_disable(struct device *dev)
return disabled;
}

static void sysmmu_tlb_invalidate_entry(struct device *dev, unsigned long iova)
static void sysmmu_tlb_invalidate_entry(struct device *dev, unsigned long iova,
size_t size)
{
unsigned long flags;
struct sysmmu_drvdata *data = dev_get_drvdata(dev->archdata.iommu);

read_lock_irqsave(&data->lock, flags);

if (is_sysmmu_active(data)) {
unsigned int maj;
unsigned int num_inv = 1;
maj = __raw_readl(data->sfrbase + REG_MMU_VERSION);
/*
* L2TLB invalidation required
* 4KB page: 1 invalidation
* 64KB page: 16 invalidation
* 1MB page: 64 invalidation
* because it is set-associative TLB
* with 8-way and 64 sets.
* 1MB page can be cached in one of all sets.
* 64KB page can be one of 16 consecutive sets.
*/
if ((maj >> 28) == 2) /* major version number */
num_inv = min_t(unsigned int, size / PAGE_SIZE, 64);

if (sysmmu_block(data->sfrbase)) {
__sysmmu_tlb_invalidate_entry(
data->sfrbase, iova);
data->sfrbase, iova, num_inv);
sysmmu_unblock(data->sfrbase);
}
} else {
Expand Down Expand Up @@ -915,7 +937,7 @@ static size_t exynos_iommu_unmap(struct iommu_domain *domain,

spin_lock_irqsave(&priv->lock, flags);
list_for_each_entry(data, &priv->clients, node)
sysmmu_tlb_invalidate_entry(data->dev, iova);
sysmmu_tlb_invalidate_entry(data->dev, iova, size);
spin_unlock_irqrestore(&priv->lock, flags);

return size;
Expand Down

0 comments on commit 3ad6b7f

Please sign in to comment.