|
@@ -45,8 +45,12 @@ typedef u32 sysmmu_pte_t;
|
|
#define LPAGE_MASK (~(LPAGE_SIZE - 1))
|
|
#define LPAGE_MASK (~(LPAGE_SIZE - 1))
|
|
#define SPAGE_MASK (~(SPAGE_SIZE - 1))
|
|
#define SPAGE_MASK (~(SPAGE_SIZE - 1))
|
|
|
|
|
|
-#define lv1ent_fault(sent) (((*(sent) & 3) == 0) || ((*(sent) & 3) == 3))
|
|
|
|
-#define lv1ent_page(sent) ((*(sent) & 3) == 1)
|
|
|
|
|
|
+#define lv1ent_fault(sent) ((*(sent) == ZERO_LV2LINK) || \
|
|
|
|
+ ((*(sent) & 3) == 0) || ((*(sent) & 3) == 3))
|
|
|
|
+#define lv1ent_zero(sent) (*(sent) == ZERO_LV2LINK)
|
|
|
|
+#define lv1ent_page_zero(sent) ((*(sent) & 3) == 1)
|
|
|
|
+#define lv1ent_page(sent) ((*(sent) != ZERO_LV2LINK) && \
|
|
|
|
+ ((*(sent) & 3) == 1))
|
|
#define lv1ent_section(sent) ((*(sent) & 3) == 2)
|
|
#define lv1ent_section(sent) ((*(sent) & 3) == 2)
|
|
|
|
|
|
#define lv2ent_fault(pent) ((*(pent) & 3) == 0)
|
|
#define lv2ent_fault(pent) ((*(pent) & 3) == 0)
|
|
@@ -130,6 +134,8 @@ static u32 lv2ent_offset(sysmmu_iova_t iova)
|
|
#define has_sysmmu(dev) (dev->archdata.iommu != NULL)
|
|
#define has_sysmmu(dev) (dev->archdata.iommu != NULL)
|
|
|
|
|
|
static struct kmem_cache *lv2table_kmem_cache;
|
|
static struct kmem_cache *lv2table_kmem_cache;
|
|
|
|
+static sysmmu_pte_t *zero_lv2_table;
|
|
|
|
+#define ZERO_LV2LINK mk_lv1ent_page(virt_to_phys(zero_lv2_table))
|
|
|
|
|
|
static sysmmu_pte_t *section_entry(sysmmu_pte_t *pgtable, sysmmu_iova_t iova)
|
|
static sysmmu_pte_t *section_entry(sysmmu_pte_t *pgtable, sysmmu_iova_t iova)
|
|
{
|
|
{
|
|
@@ -515,6 +521,32 @@ static bool exynos_sysmmu_disable(struct device *dev)
|
|
return disabled;
|
|
return disabled;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static void __sysmmu_tlb_invalidate_flpdcache(struct sysmmu_drvdata *data,
|
|
|
|
+ sysmmu_iova_t iova)
|
|
|
|
+{
|
|
|
|
+ if (__raw_sysmmu_version(data) == MAKE_MMU_VER(3, 3))
|
|
|
|
+ __raw_writel(iova | 0x1, data->sfrbase + REG_MMU_FLUSH_ENTRY);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static void sysmmu_tlb_invalidate_flpdcache(struct device *dev,
|
|
|
|
+ sysmmu_iova_t iova)
|
|
|
|
+{
|
|
|
|
+ unsigned long flags;
|
|
|
|
+ struct exynos_iommu_owner *owner = dev->archdata.iommu;
|
|
|
|
+ struct sysmmu_drvdata *data = dev_get_drvdata(owner->sysmmu);
|
|
|
|
+
|
|
|
|
+ if (!IS_ERR(data->clk_master))
|
|
|
|
+ clk_enable(data->clk_master);
|
|
|
|
+
|
|
|
|
+ spin_lock_irqsave(&data->lock, flags);
|
|
|
|
+ if (is_sysmmu_active(data))
|
|
|
|
+ __sysmmu_tlb_invalidate_flpdcache(data, iova);
|
|
|
|
+ spin_unlock_irqrestore(&data->lock, flags);
|
|
|
|
+
|
|
|
|
+ if (!IS_ERR(data->clk_master))
|
|
|
|
+ clk_disable(data->clk_master);
|
|
|
|
+}
|
|
|
|
+
|
|
static void sysmmu_tlb_invalidate_entry(struct device *dev, sysmmu_iova_t iova,
|
|
static void sysmmu_tlb_invalidate_entry(struct device *dev, sysmmu_iova_t iova,
|
|
size_t size)
|
|
size_t size)
|
|
{
|
|
{
|
|
@@ -667,21 +699,32 @@ static inline void pgtable_flush(void *vastart, void *vaend)
|
|
static int exynos_iommu_domain_init(struct iommu_domain *domain)
|
|
static int exynos_iommu_domain_init(struct iommu_domain *domain)
|
|
{
|
|
{
|
|
struct exynos_iommu_domain *priv;
|
|
struct exynos_iommu_domain *priv;
|
|
|
|
+ int i;
|
|
|
|
|
|
priv = kzalloc(sizeof(*priv), GFP_KERNEL);
|
|
priv = kzalloc(sizeof(*priv), GFP_KERNEL);
|
|
if (!priv)
|
|
if (!priv)
|
|
return -ENOMEM;
|
|
return -ENOMEM;
|
|
|
|
|
|
- priv->pgtable = (sysmmu_pte_t *)__get_free_pages(
|
|
|
|
- GFP_KERNEL | __GFP_ZERO, 2);
|
|
|
|
|
|
+ priv->pgtable = (sysmmu_pte_t *)__get_free_pages(GFP_KERNEL, 2);
|
|
if (!priv->pgtable)
|
|
if (!priv->pgtable)
|
|
goto err_pgtable;
|
|
goto err_pgtable;
|
|
|
|
|
|
- priv->lv2entcnt = (short *)__get_free_pages(
|
|
|
|
- GFP_KERNEL | __GFP_ZERO, 1);
|
|
|
|
|
|
+ priv->lv2entcnt = (short *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, 1);
|
|
if (!priv->lv2entcnt)
|
|
if (!priv->lv2entcnt)
|
|
goto err_counter;
|
|
goto err_counter;
|
|
|
|
|
|
|
|
+ /* w/a of System MMU v3.3 to prevent caching 1MiB mapping */
|
|
|
|
+ for (i = 0; i < NUM_LV1ENTRIES; i += 8) {
|
|
|
|
+ priv->pgtable[i + 0] = ZERO_LV2LINK;
|
|
|
|
+ priv->pgtable[i + 1] = ZERO_LV2LINK;
|
|
|
|
+ priv->pgtable[i + 2] = ZERO_LV2LINK;
|
|
|
|
+ priv->pgtable[i + 3] = ZERO_LV2LINK;
|
|
|
|
+ priv->pgtable[i + 4] = ZERO_LV2LINK;
|
|
|
|
+ priv->pgtable[i + 5] = ZERO_LV2LINK;
|
|
|
|
+ priv->pgtable[i + 6] = ZERO_LV2LINK;
|
|
|
|
+ priv->pgtable[i + 7] = ZERO_LV2LINK;
|
|
|
|
+ }
|
|
|
|
+
|
|
pgtable_flush(priv->pgtable, priv->pgtable + NUM_LV1ENTRIES);
|
|
pgtable_flush(priv->pgtable, priv->pgtable + NUM_LV1ENTRIES);
|
|
|
|
|
|
spin_lock_init(&priv->lock);
|
|
spin_lock_init(&priv->lock);
|
|
@@ -794,8 +837,8 @@ static void exynos_iommu_detach_device(struct iommu_domain *domain,
|
|
dev_err(dev, "%s: No IOMMU is attached\n", __func__);
|
|
dev_err(dev, "%s: No IOMMU is attached\n", __func__);
|
|
}
|
|
}
|
|
|
|
|
|
-static sysmmu_pte_t *alloc_lv2entry(sysmmu_pte_t *sent, sysmmu_iova_t iova,
|
|
|
|
- short *pgcounter)
|
|
|
|
|
|
+static sysmmu_pte_t *alloc_lv2entry(struct exynos_iommu_domain *priv,
|
|
|
|
+ sysmmu_pte_t *sent, sysmmu_iova_t iova, short *pgcounter)
|
|
{
|
|
{
|
|
if (lv1ent_section(sent)) {
|
|
if (lv1ent_section(sent)) {
|
|
WARN(1, "Trying mapping on %#08x mapped with 1MiB page", iova);
|
|
WARN(1, "Trying mapping on %#08x mapped with 1MiB page", iova);
|
|
@@ -804,6 +847,7 @@ static sysmmu_pte_t *alloc_lv2entry(sysmmu_pte_t *sent, sysmmu_iova_t iova,
|
|
|
|
|
|
if (lv1ent_fault(sent)) {
|
|
if (lv1ent_fault(sent)) {
|
|
sysmmu_pte_t *pent;
|
|
sysmmu_pte_t *pent;
|
|
|
|
+ bool need_flush_flpd_cache = lv1ent_zero(sent);
|
|
|
|
|
|
pent = kmem_cache_zalloc(lv2table_kmem_cache, GFP_ATOMIC);
|
|
pent = kmem_cache_zalloc(lv2table_kmem_cache, GFP_ATOMIC);
|
|
BUG_ON((unsigned int)pent & (LV2TABLE_SIZE - 1));
|
|
BUG_ON((unsigned int)pent & (LV2TABLE_SIZE - 1));
|
|
@@ -814,12 +858,39 @@ static sysmmu_pte_t *alloc_lv2entry(sysmmu_pte_t *sent, sysmmu_iova_t iova,
|
|
*pgcounter = NUM_LV2ENTRIES;
|
|
*pgcounter = NUM_LV2ENTRIES;
|
|
pgtable_flush(pent, pent + NUM_LV2ENTRIES);
|
|
pgtable_flush(pent, pent + NUM_LV2ENTRIES);
|
|
pgtable_flush(sent, sent + 1);
|
|
pgtable_flush(sent, sent + 1);
|
|
|
|
+
|
|
|
|
+ /*
|
|
|
|
+ * If pretched SLPD is a fault SLPD in zero_l2_table, FLPD cache
|
|
|
|
+ * may caches the address of zero_l2_table. This function
|
|
|
|
+ * replaces the zero_l2_table with new L2 page table to write
|
|
|
|
+ * valid mappings.
|
|
|
|
+ * Accessing the valid area may cause page fault since FLPD
|
|
|
|
+ * cache may still caches zero_l2_table for the valid area
|
|
|
|
+ * instead of new L2 page table that have the mapping
|
|
|
|
+ * information of the valid area
|
|
|
|
+ * Thus any replacement of zero_l2_table with other valid L2
|
|
|
|
+ * page table must involve FLPD cache invalidation for System
|
|
|
|
+ * MMU v3.3.
|
|
|
|
+ * FLPD cache invalidation is performed with TLB invalidation
|
|
|
|
+ * by VPN without blocking. It is safe to invalidate TLB without
|
|
|
|
+ * blocking because the target address of TLB invalidation is
|
|
|
|
+ * not currently mapped.
|
|
|
|
+ */
|
|
|
|
+ if (need_flush_flpd_cache) {
|
|
|
|
+ struct exynos_iommu_owner *owner;
|
|
|
|
+ spin_lock(&priv->lock);
|
|
|
|
+ list_for_each_entry(owner, &priv->clients, client)
|
|
|
|
+ sysmmu_tlb_invalidate_flpdcache(
|
|
|
|
+ owner->dev, iova);
|
|
|
|
+ spin_unlock(&priv->lock);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
return page_entry(sent, iova);
|
|
return page_entry(sent, iova);
|
|
}
|
|
}
|
|
|
|
|
|
-static int lv1set_section(sysmmu_pte_t *sent, sysmmu_iova_t iova,
|
|
|
|
|
|
+static int lv1set_section(struct exynos_iommu_domain *priv,
|
|
|
|
+ sysmmu_pte_t *sent, sysmmu_iova_t iova,
|
|
phys_addr_t paddr, short *pgcnt)
|
|
phys_addr_t paddr, short *pgcnt)
|
|
{
|
|
{
|
|
if (lv1ent_section(sent)) {
|
|
if (lv1ent_section(sent)) {
|
|
@@ -843,6 +914,18 @@ static int lv1set_section(sysmmu_pte_t *sent, sysmmu_iova_t iova,
|
|
|
|
|
|
pgtable_flush(sent, sent + 1);
|
|
pgtable_flush(sent, sent + 1);
|
|
|
|
|
|
|
|
+ spin_lock(&priv->lock);
|
|
|
|
+ if (lv1ent_page_zero(sent)) {
|
|
|
|
+ struct exynos_iommu_owner *owner;
|
|
|
|
+ /*
|
|
|
|
+ * Flushing FLPD cache in System MMU v3.3 that may cache a FLPD
|
|
|
|
+ * entry by speculative prefetch of SLPD which has no mapping.
|
|
|
|
+ */
|
|
|
|
+ list_for_each_entry(owner, &priv->clients, client)
|
|
|
|
+ sysmmu_tlb_invalidate_flpdcache(owner->dev, iova);
|
|
|
|
+ }
|
|
|
|
+ spin_unlock(&priv->lock);
|
|
|
|
+
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -874,6 +957,32 @@ static int lv2set_page(sysmmu_pte_t *pent, phys_addr_t paddr, size_t size,
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * *CAUTION* to the I/O virtual memory managers that support exynos-iommu:
|
|
|
|
+ *
|
|
|
|
+ * System MMU v3.x have an advanced logic to improve address translation
|
|
|
|
+ * performance with caching more page table entries by a page table walk.
|
|
|
|
+ * However, the logic has a bug that caching fault page table entries and System
|
|
|
|
+ * MMU reports page fault if the cached fault entry is hit even though the fault
|
|
|
|
+ * entry is updated to a valid entry after the entry is cached.
|
|
|
|
+ * To prevent caching fault page table entries which may be updated to valid
|
|
|
|
+ * entries later, the virtual memory manager should care about the w/a about the
|
|
|
|
+ * problem. The followings describe w/a.
|
|
|
|
+ *
|
|
|
|
+ * Any two consecutive I/O virtual address regions must have a hole of 128KiB
|
|
|
|
+ * in maximum to prevent misbehavior of System MMU 3.x. (w/a of h/w bug)
|
|
|
|
+ *
|
|
|
|
+ * Precisely, any start address of I/O virtual region must be aligned by
|
|
|
|
+ * the following sizes for System MMU v3.1 and v3.2.
|
|
|
|
+ * System MMU v3.1: 128KiB
|
|
|
|
+ * System MMU v3.2: 256KiB
|
|
|
|
+ *
|
|
|
|
+ * Because System MMU v3.3 caches page table entries more aggressively, it needs
|
|
|
|
+ * more w/a.
|
|
|
|
+ * - Any two consecutive I/O virtual regions must be have a hole of larger size
|
|
|
|
+ * than or equal size to 128KiB.
|
|
|
|
+ * - Start address of an I/O virtual region must be aligned by 128KiB.
|
|
|
|
+ */
|
|
static int exynos_iommu_map(struct iommu_domain *domain, unsigned long l_iova,
|
|
static int exynos_iommu_map(struct iommu_domain *domain, unsigned long l_iova,
|
|
phys_addr_t paddr, size_t size, int prot)
|
|
phys_addr_t paddr, size_t size, int prot)
|
|
{
|
|
{
|
|
@@ -890,12 +999,12 @@ static int exynos_iommu_map(struct iommu_domain *domain, unsigned long l_iova,
|
|
entry = section_entry(priv->pgtable, iova);
|
|
entry = section_entry(priv->pgtable, iova);
|
|
|
|
|
|
if (size == SECT_SIZE) {
|
|
if (size == SECT_SIZE) {
|
|
- ret = lv1set_section(entry, iova, paddr,
|
|
|
|
|
|
+ ret = lv1set_section(priv, entry, iova, paddr,
|
|
&priv->lv2entcnt[lv1ent_offset(iova)]);
|
|
&priv->lv2entcnt[lv1ent_offset(iova)]);
|
|
} else {
|
|
} else {
|
|
sysmmu_pte_t *pent;
|
|
sysmmu_pte_t *pent;
|
|
|
|
|
|
- pent = alloc_lv2entry(entry, iova,
|
|
|
|
|
|
+ pent = alloc_lv2entry(priv, entry, iova,
|
|
&priv->lv2entcnt[lv1ent_offset(iova)]);
|
|
&priv->lv2entcnt[lv1ent_offset(iova)]);
|
|
|
|
|
|
if (IS_ERR(pent))
|
|
if (IS_ERR(pent))
|
|
@@ -914,11 +1023,24 @@ static int exynos_iommu_map(struct iommu_domain *domain, unsigned long l_iova,
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static void exynos_iommu_tlb_invalidate_entry(struct exynos_iommu_domain *priv,
|
|
|
|
+ sysmmu_iova_t iova, size_t size)
|
|
|
|
+{
|
|
|
|
+ struct exynos_iommu_owner *owner;
|
|
|
|
+ unsigned long flags;
|
|
|
|
+
|
|
|
|
+ spin_lock_irqsave(&priv->lock, flags);
|
|
|
|
+
|
|
|
|
+ list_for_each_entry(owner, &priv->clients, client)
|
|
|
|
+ sysmmu_tlb_invalidate_entry(owner->dev, iova, size);
|
|
|
|
+
|
|
|
|
+ spin_unlock_irqrestore(&priv->lock, flags);
|
|
|
|
+}
|
|
|
|
+
|
|
static size_t exynos_iommu_unmap(struct iommu_domain *domain,
|
|
static size_t exynos_iommu_unmap(struct iommu_domain *domain,
|
|
unsigned long l_iova, size_t size)
|
|
unsigned long l_iova, size_t size)
|
|
{
|
|
{
|
|
struct exynos_iommu_domain *priv = domain->priv;
|
|
struct exynos_iommu_domain *priv = domain->priv;
|
|
- struct exynos_iommu_owner *owner;
|
|
|
|
sysmmu_iova_t iova = (sysmmu_iova_t)l_iova;
|
|
sysmmu_iova_t iova = (sysmmu_iova_t)l_iova;
|
|
sysmmu_pte_t *ent;
|
|
sysmmu_pte_t *ent;
|
|
size_t err_pgsize;
|
|
size_t err_pgsize;
|
|
@@ -936,7 +1058,7 @@ static size_t exynos_iommu_unmap(struct iommu_domain *domain,
|
|
goto err;
|
|
goto err;
|
|
}
|
|
}
|
|
|
|
|
|
- *ent = 0;
|
|
|
|
|
|
+ *ent = ZERO_LV2LINK; /* w/a for h/w bug in Sysmem MMU v3.3 */
|
|
pgtable_flush(ent, ent + 1);
|
|
pgtable_flush(ent, ent + 1);
|
|
size = SECT_SIZE;
|
|
size = SECT_SIZE;
|
|
goto done;
|
|
goto done;
|
|
@@ -979,10 +1101,7 @@ static size_t exynos_iommu_unmap(struct iommu_domain *domain,
|
|
done:
|
|
done:
|
|
spin_unlock_irqrestore(&priv->pgtablelock, flags);
|
|
spin_unlock_irqrestore(&priv->pgtablelock, flags);
|
|
|
|
|
|
- spin_lock_irqsave(&priv->lock, flags);
|
|
|
|
- list_for_each_entry(owner, &priv->clients, client)
|
|
|
|
- sysmmu_tlb_invalidate_entry(owner->dev, iova, size);
|
|
|
|
- spin_unlock_irqrestore(&priv->lock, flags);
|
|
|
|
|
|
+ exynos_iommu_tlb_invalidate_entry(priv, iova, size);
|
|
|
|
|
|
return size;
|
|
return size;
|
|
err:
|
|
err:
|
|
@@ -1078,6 +1197,14 @@ static int __init exynos_iommu_init(void)
|
|
goto err_reg_driver;
|
|
goto err_reg_driver;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ zero_lv2_table = kmem_cache_zalloc(lv2table_kmem_cache, GFP_KERNEL);
|
|
|
|
+ if (zero_lv2_table == NULL) {
|
|
|
|
+ pr_err("%s: Failed to allocate zero level2 page table\n",
|
|
|
|
+ __func__);
|
|
|
|
+ ret = -ENOMEM;
|
|
|
|
+ goto err_zero_lv2;
|
|
|
|
+ }
|
|
|
|
+
|
|
ret = bus_set_iommu(&platform_bus_type, &exynos_iommu_ops);
|
|
ret = bus_set_iommu(&platform_bus_type, &exynos_iommu_ops);
|
|
if (ret) {
|
|
if (ret) {
|
|
pr_err("%s: Failed to register exynos-iommu driver.\n",
|
|
pr_err("%s: Failed to register exynos-iommu driver.\n",
|
|
@@ -1087,6 +1214,8 @@ static int __init exynos_iommu_init(void)
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
err_set_iommu:
|
|
err_set_iommu:
|
|
|
|
+ kmem_cache_free(lv2table_kmem_cache, zero_lv2_table);
|
|
|
|
+err_zero_lv2:
|
|
platform_driver_unregister(&exynos_sysmmu_driver);
|
|
platform_driver_unregister(&exynos_sysmmu_driver);
|
|
err_reg_driver:
|
|
err_reg_driver:
|
|
kmem_cache_destroy(lv2table_kmem_cache);
|
|
kmem_cache_destroy(lv2table_kmem_cache);
|