[PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out
David Cohen
dacohen at gmail.com
Wed Mar 2 07:42:36 EST 2011
Hi,
On Tue, Mar 1, 2011 at 9:46 PM, Fernando Guzman Lugo
<fernando.lugo at ti.com> wrote:
> From: Hari Kanigeri <h-kanigeri2 at ti.com>
>
> pgd and pte entries weren't getting flushed out leading to MMU faults.
May I ask you to add to the patch body description why it's wrong and
why your solution is necessary?
Br,
David
>
> Signed-off-by: Hari Kanigeri <h-kanigeri2 at ti.com>
> ---
> arch/arm/plat-omap/iommu.c | 12 ++++++------
> 1 files changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c
> index aeb2c33..e9473ff 100644
> --- a/arch/arm/plat-omap/iommu.c
> +++ b/arch/arm/plat-omap/iommu.c
> @@ -508,7 +508,7 @@ static u32 *iopte_alloc(struct iommu *obj, u32 *iopgd, u32 da)
> return ERR_PTR(-ENOMEM);
>
> *iopgd = virt_to_phys(iopte) | IOPGD_TABLE;
> - flush_iopgd_range(iopgd, iopgd);
> + flush_iopgd_range(iopgd, iopgd + 1);
>
> dev_vdbg(obj->dev, "%s: a new pte:%p\n", __func__, iopte);
> } else {
> @@ -537,7 +537,7 @@ static int iopgd_alloc_section(struct iommu *obj, u32 da, u32 pa, u32 prot)
> }
>
> *iopgd = (pa & IOSECTION_MASK) | prot | IOPGD_SECTION;
> - flush_iopgd_range(iopgd, iopgd);
> + flush_iopgd_range(iopgd, iopgd + 1);
> return 0;
> }
>
> @@ -554,7 +554,7 @@ static int iopgd_alloc_super(struct iommu *obj, u32 da, u32 pa, u32 prot)
>
> for (i = 0; i < 16; i++)
> *(iopgd + i) = (pa & IOSUPER_MASK) | prot | IOPGD_SUPER;
> - flush_iopgd_range(iopgd, iopgd + 15);
> + flush_iopgd_range(iopgd, iopgd + 16);
> return 0;
> }
>
> @@ -567,7 +567,7 @@ static int iopte_alloc_page(struct iommu *obj, u32 da, u32 pa, u32 prot)
> return PTR_ERR(iopte);
>
> *iopte = (pa & IOPAGE_MASK) | prot | IOPTE_SMALL;
> - flush_iopte_range(iopte, iopte);
> + flush_iopte_range(iopte, iopte + 1);
>
> dev_vdbg(obj->dev, "%s: da:%08x pa:%08x pte:%p *pte:%08x\n",
> __func__, da, pa, iopte, *iopte);
> @@ -592,7 +592,7 @@ static int iopte_alloc_large(struct iommu *obj, u32 da, u32 pa, u32 prot)
>
> for (i = 0; i < 16; i++)
> *(iopte + i) = (pa & IOLARGE_MASK) | prot | IOPTE_LARGE;
> - flush_iopte_range(iopte, iopte + 15);
> + flush_iopte_range(iopte, iopte + 16);
> return 0;
> }
>
> @@ -763,7 +763,7 @@ void iopgtable_clear_entry_all(struct iommu *obj)
> iopte_free(iopte_offset(iopgd, 0));
>
> *iopgd = 0;
> - flush_iopgd_range(iopgd, iopgd);
> + flush_iopgd_range(iopgd, iopgd + 1);
> }
>
> flush_iotlb_all(obj);
> --
> 1.7.0.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
More information about the linux-arm-kernel
mailing list