* [PATCH] omap:iommu-added cache flushing operation for L2 cache @ 2011-03-01 19:46 Fernando Guzman Lugo 2011-03-01 19:46 ` [PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out Fernando Guzman Lugo ` (2 more replies) 0 siblings, 3 replies; 8+ messages in thread From: Fernando Guzman Lugo @ 2011-03-01 19:46 UTC (permalink / raw) To: linux-arm-kernel From: Ramesh Gupta <grgupta@ti.com> Signed-off-by: Ramesh Gupta <grgupta@ti.com> Signed-off-by: Hari Kanigeri <h-kanigeri2@ti.com> --- arch/arm/plat-omap/iommu.c | 22 ++++++++-------------- 1 files changed, 8 insertions(+), 14 deletions(-) diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c index e3eb038..aeb2c33 100644 --- a/arch/arm/plat-omap/iommu.c +++ b/arch/arm/plat-omap/iommu.c @@ -471,22 +471,15 @@ EXPORT_SYMBOL_GPL(foreach_iommu_device); */ static void flush_iopgd_range(u32 *first, u32 *last) { - /* FIXME: L2 cache should be taken care of if it exists */ - do { - asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pgd" - : : "r" (first)); - first += L1_CACHE_BYTES / sizeof(*first); - } while (first <= last); + dmac_flush_range(first, last); + outer_flush_range(virt_to_phys(first), virt_to_phys(last)); } + static void flush_iopte_range(u32 *first, u32 *last) { - /* FIXME: L2 cache should be taken care of if it exists */ - do { - asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pte" - : : "r" (first)); - first += L1_CACHE_BYTES / sizeof(*first); - } while (first <= last); + dmac_flush_range(first, last); + outer_flush_range(virt_to_phys(first), virt_to_phys(last)); } static void iopte_free(u32 *iopte) @@ -750,7 +743,7 @@ size_t iopgtable_clear_entry(struct iommu *obj, u32 da) } EXPORT_SYMBOL_GPL(iopgtable_clear_entry); -static void iopgtable_clear_entry_all(struct iommu *obj) +void iopgtable_clear_entry_all(struct iommu *obj) { int i; @@ -777,7 +770,7 @@ static void iopgtable_clear_entry_all(struct iommu *obj) spin_unlock(&obj->page_table_lock); } - +EXPORT_SYMBOL_GPL(iopgtable_clear_entry_all); /* * Device IOMMU generic operations */ @@ -1068,6 +1061,7 @@ static void iopte_cachep_ctor(void *iopte) clean_dcache_area(iopte, IOPTE_TABLE_SIZE); } + static int __init omap_iommu_init(void) { struct kmem_cache *p; -- 1.7.0.4 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out 2011-03-01 19:46 [PATCH] omap:iommu-added cache flushing operation for L2 cache Fernando Guzman Lugo @ 2011-03-01 19:46 ` Fernando Guzman Lugo 2011-03-02 12:42 ` David Cohen 2011-03-02 11:58 ` [PATCH] omap:iommu-added cache flushing operation for L2 cache David Cohen 2011-03-02 12:48 ` Santosh Shilimkar 2 siblings, 1 reply; 8+ messages in thread From: Fernando Guzman Lugo @ 2011-03-01 19:46 UTC (permalink / raw) To: linux-arm-kernel From: Hari Kanigeri <h-kanigeri2@ti.com> pgd and pte entries weren't getting flushed out leading to MMU faults. Signed-off-by: Hari Kanigeri <h-kanigeri2@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 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out 2011-03-01 19:46 ` [PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out Fernando Guzman Lugo @ 2011-03-02 12:42 ` David Cohen 0 siblings, 0 replies; 8+ messages in thread From: David Cohen @ 2011-03-02 12:42 UTC (permalink / raw) To: linux-arm-kernel Hi, On Tue, Mar 1, 2011 at 9:46 PM, Fernando Guzman Lugo <fernando.lugo@ti.com> wrote: > From: Hari Kanigeri <h-kanigeri2@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@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 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] omap:iommu-added cache flushing operation for L2 cache 2011-03-01 19:46 [PATCH] omap:iommu-added cache flushing operation for L2 cache Fernando Guzman Lugo 2011-03-01 19:46 ` [PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out Fernando Guzman Lugo @ 2011-03-02 11:58 ` David Cohen 2011-03-02 16:20 ` Gupta, Ramesh 2011-03-02 12:48 ` Santosh Shilimkar 2 siblings, 1 reply; 8+ messages in thread From: David Cohen @ 2011-03-02 11:58 UTC (permalink / raw) To: linux-arm-kernel Hi, On Tue, Mar 1, 2011 at 9:46 PM, Fernando Guzman Lugo <fernando.lugo@ti.com> wrote: > From: Ramesh Gupta <grgupta@ti.com> No patch body description at all? Can we get at least something here? Regards, David > > Signed-off-by: Ramesh Gupta <grgupta@ti.com> > Signed-off-by: Hari Kanigeri <h-kanigeri2@ti.com> > --- > ?arch/arm/plat-omap/iommu.c | ? 22 ++++++++-------------- > ?1 files changed, 8 insertions(+), 14 deletions(-) > > diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c > index e3eb038..aeb2c33 100644 > --- a/arch/arm/plat-omap/iommu.c > +++ b/arch/arm/plat-omap/iommu.c > @@ -471,22 +471,15 @@ EXPORT_SYMBOL_GPL(foreach_iommu_device); > ?*/ > ?static void flush_iopgd_range(u32 *first, u32 *last) > ?{ > - ? ? ? /* FIXME: L2 cache should be taken care of if it exists */ > - ? ? ? do { > - ? ? ? ? ? ? ? asm("mcr ? ? ? ?p15, 0, %0, c7, c10, 1 @ flush_pgd" > - ? ? ? ? ? ? ? ? ? : : "r" (first)); > - ? ? ? ? ? ? ? first += L1_CACHE_BYTES / sizeof(*first); > - ? ? ? } while (first <= last); > + ? ? ? dmac_flush_range(first, last); > + ? ? ? outer_flush_range(virt_to_phys(first), virt_to_phys(last)); > ?} > > + > ?static void flush_iopte_range(u32 *first, u32 *last) > ?{ > - ? ? ? /* FIXME: L2 cache should be taken care of if it exists */ > - ? ? ? do { > - ? ? ? ? ? ? ? asm("mcr ? ? ? ?p15, 0, %0, c7, c10, 1 @ flush_pte" > - ? ? ? ? ? ? ? ? ? : : "r" (first)); > - ? ? ? ? ? ? ? first += L1_CACHE_BYTES / sizeof(*first); > - ? ? ? } while (first <= last); > + ? ? ? dmac_flush_range(first, last); > + ? ? ? outer_flush_range(virt_to_phys(first), virt_to_phys(last)); > ?} > > ?static void iopte_free(u32 *iopte) > @@ -750,7 +743,7 @@ size_t iopgtable_clear_entry(struct iommu *obj, u32 da) > ?} > ?EXPORT_SYMBOL_GPL(iopgtable_clear_entry); > > -static void iopgtable_clear_entry_all(struct iommu *obj) > +void iopgtable_clear_entry_all(struct iommu *obj) > ?{ > ? ? ? ?int i; > > @@ -777,7 +770,7 @@ static void iopgtable_clear_entry_all(struct iommu *obj) > > ? ? ? ?spin_unlock(&obj->page_table_lock); > ?} > - > +EXPORT_SYMBOL_GPL(iopgtable_clear_entry_all); > ?/* > ?* ? ? Device IOMMU generic operations > ?*/ > @@ -1068,6 +1061,7 @@ static void iopte_cachep_ctor(void *iopte) > ? ? ? ?clean_dcache_area(iopte, IOPTE_TABLE_SIZE); > ?} > > + > ?static int __init omap_iommu_init(void) > ?{ > ? ? ? ?struct kmem_cache *p; > -- > 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 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] omap:iommu-added cache flushing operation for L2 cache 2011-03-02 11:58 ` [PATCH] omap:iommu-added cache flushing operation for L2 cache David Cohen @ 2011-03-02 16:20 ` Gupta, Ramesh 0 siblings, 0 replies; 8+ messages in thread From: Gupta, Ramesh @ 2011-03-02 16:20 UTC (permalink / raw) To: linux-arm-kernel David, On Wed, Mar 2, 2011 at 5:58 AM, David Cohen <dacohen@gmail.com> wrote: > Hi, > > On Tue, Mar 1, 2011 at 9:46 PM, Fernando Guzman Lugo > <fernando.lugo@ti.com> wrote: >> From: Ramesh Gupta <grgupta@ti.com> > > No patch body description at all? > Can we get at least something here? My apologies, I will be sending an updated patch with description. regards Ramesh Gupta G ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] omap:iommu-added cache flushing operation for L2 cache 2011-03-01 19:46 [PATCH] omap:iommu-added cache flushing operation for L2 cache Fernando Guzman Lugo 2011-03-01 19:46 ` [PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out Fernando Guzman Lugo 2011-03-02 11:58 ` [PATCH] omap:iommu-added cache flushing operation for L2 cache David Cohen @ 2011-03-02 12:48 ` Santosh Shilimkar 2011-03-02 15:46 ` Gupta, Ramesh 2011-03-02 16:12 ` Gupta, Ramesh 2 siblings, 2 replies; 8+ messages in thread From: Santosh Shilimkar @ 2011-03-02 12:48 UTC (permalink / raw) To: linux-arm-kernel Hello, > -----Original Message----- > From: linux-omap-owner at vger.kernel.org [mailto:linux-omap- > owner at vger.kernel.org] On Behalf Of Fernando Guzman Lugo > Sent: Wednesday, March 02, 2011 1:17 AM > To: hiroshi.doyu at nokia.com > Cc: tony at atomide.com; linux at arm.linux.org.uk; linux- > omap at vger.kernel.org; linux-arm-kernel at lists.infradead.org; linux- > kernel at vger.kernel.org; Ramesh Gupta; Hari Kanigeri > Subject: [PATCH] omap:iommu-added cache flushing operation for L2 > cache > > From: Ramesh Gupta <grgupta@ti.com> > > Signed-off-by: Ramesh Gupta <grgupta@ti.com> > Signed-off-by: Hari Kanigeri <h-kanigeri2@ti.com> > --- > arch/arm/plat-omap/iommu.c | 22 ++++++++-------------- > 1 files changed, 8 insertions(+), 14 deletions(-) > > diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c > index e3eb038..aeb2c33 100644 > --- a/arch/arm/plat-omap/iommu.c > +++ b/arch/arm/plat-omap/iommu.c > @@ -471,22 +471,15 @@ EXPORT_SYMBOL_GPL(foreach_iommu_device); > */ > static void flush_iopgd_range(u32 *first, u32 *last) > { > - /* FIXME: L2 cache should be taken care of if it exists */ > - do { > - asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pgd" > - : : "r" (first)); > - first += L1_CACHE_BYTES / sizeof(*first); > - } while (first <= last); > + dmac_flush_range(first, last); There is note just above this API. /* * These are private to the dma-mapping API. Do not use directly. * Their sole purpose is to ensure that data held in the cache * is visible to DMA, or data written by DMA to system memory is * visible to the CPU. */ #define dmac_map_area cpu_cache.dma_map_area #define dmac_unmap_area cpu_cache.dma_unmap_area #define dmac_flush_range cpu_cache.dma_flush_range > + outer_flush_range(virt_to_phys(first), virt_to_phys(last)); > } > ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] omap:iommu-added cache flushing operation for L2 cache 2011-03-02 12:48 ` Santosh Shilimkar @ 2011-03-02 15:46 ` Gupta, Ramesh 2011-03-02 16:12 ` Gupta, Ramesh 1 sibling, 0 replies; 8+ messages in thread From: Gupta, Ramesh @ 2011-03-02 15:46 UTC (permalink / raw) To: linux-arm-kernel Hi Santosh, On Wed, Mar 2, 2011 at 6:48 AM, Santosh Shilimkar <santosh.shilimkar@ti.com>wrote: > Hello, > > -----Original Message----- > > From: linux-omap-owner at vger.kernel.org [mailto:linux-omap- > > owner at vger.kernel.org] On Behalf Of Fernando Guzman Lugo > > Sent: Wednesday, March 02, 2011 1:17 AM > > To: hiroshi.doyu at nokia.com > > Cc: tony at atomide.com; linux at arm.linux.org.uk; linux- > > omap at vger.kernel.org; linux-arm-kernel at lists.infradead.org; linux- > > kernel at vger.kernel.org; Ramesh Gupta; Hari Kanigeri > > Subject: [PATCH] omap:iommu-added cache flushing operation for L2 > > cache > > > > From: Ramesh Gupta <grgupta@ti.com> > > > > Signed-off-by: Ramesh Gupta <grgupta@ti.com> > > Signed-off-by: Hari Kanigeri <h-kanigeri2@ti.com> > > --- > > arch/arm/plat-omap/iommu.c | 22 ++++++++-------------- > > 1 files changed, 8 insertions(+), 14 deletions(-) > > > > diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c > > index e3eb038..aeb2c33 100644 > > --- a/arch/arm/plat-omap/iommu.c > > +++ b/arch/arm/plat-omap/iommu.c > > @@ -471,22 +471,15 @@ EXPORT_SYMBOL_GPL(foreach_iommu_device); > > */ > > static void flush_iopgd_range(u32 *first, u32 *last) > > { > > - /* FIXME: L2 cache should be taken care of if it exists */ > > - do { > > - asm("mcr p15, 0, %0, c7, c10, 1 @ flush_pgd" > > - : : "r" (first)); > > - first += L1_CACHE_BYTES / sizeof(*first); > > - } while (first <= last); > > + dmac_flush_range(first, last); > > There is note just above this API. > Thank you for your comment. I agree, I will send an updated patch with proper apis. regards Ramesh Gupta G -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110302/32e35286/attachment-0001.html> ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] omap:iommu-added cache flushing operation for L2 cache 2011-03-02 12:48 ` Santosh Shilimkar 2011-03-02 15:46 ` Gupta, Ramesh @ 2011-03-02 16:12 ` Gupta, Ramesh 1 sibling, 0 replies; 8+ messages in thread From: Gupta, Ramesh @ 2011-03-02 16:12 UTC (permalink / raw) To: linux-arm-kernel Hi Santosh, On Wed, Mar 2, 2011 at 6:48 AM, Santosh Shilimkar <santosh.shilimkar@ti.com> wrote: > Hello, >> -----Original Message----- >> From: linux-omap-owner at vger.kernel.org [mailto:linux-omap- >> owner at vger.kernel.org] On Behalf Of Fernando Guzman Lugo >> Sent: Wednesday, March 02, 2011 1:17 AM >> To: hiroshi.doyu at nokia.com >> Cc: tony at atomide.com; linux at arm.linux.org.uk; linux- >> omap at vger.kernel.org; linux-arm-kernel at lists.infradead.org; linux- >> kernel at vger.kernel.org; Ramesh Gupta; Hari Kanigeri >> Subject: [PATCH] omap:iommu-added cache flushing operation for L2 >> cache >> >> From: Ramesh Gupta <grgupta@ti.com> >> >> Signed-off-by: Ramesh Gupta <grgupta@ti.com> >> Signed-off-by: Hari Kanigeri <h-kanigeri2@ti.com> >> --- >> ?arch/arm/plat-omap/iommu.c | ? 22 ++++++++-------------- >> ?1 files changed, 8 insertions(+), 14 deletions(-) >> >> diff --git a/arch/arm/plat-omap/iommu.c b/arch/arm/plat-omap/iommu.c >> index e3eb038..aeb2c33 100644 >> --- a/arch/arm/plat-omap/iommu.c >> +++ b/arch/arm/plat-omap/iommu.c >> @@ -471,22 +471,15 @@ EXPORT_SYMBOL_GPL(foreach_iommu_device); >> ? */ >> ?static void flush_iopgd_range(u32 *first, u32 *last) >> ?{ >> - ? ? /* FIXME: L2 cache should be taken care of if it exists */ >> - ? ? do { >> - ? ? ? ? ? ? asm("mcr ? ? ? ?p15, 0, %0, c7, c10, 1 @ flush_pgd" >> - ? ? ? ? ? ? ? ? : : "r" (first)); >> - ? ? ? ? ? ? first += L1_CACHE_BYTES / sizeof(*first); >> - ? ? } while (first <= last); >> + ? ? dmac_flush_range(first, last); > > There is note just above this API. Thank you for your inputs. I agree, I will send an updated patch with proper apis. regards Ramesh Gupta G ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-03-02 16:20 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-03-01 19:46 [PATCH] omap:iommu-added cache flushing operation for L2 cache Fernando Guzman Lugo 2011-03-01 19:46 ` [PATCH] OMAP:iommu - pgd and pte entries weren't getting flushed out Fernando Guzman Lugo 2011-03-02 12:42 ` David Cohen 2011-03-02 11:58 ` [PATCH] omap:iommu-added cache flushing operation for L2 cache David Cohen 2011-03-02 16:20 ` Gupta, Ramesh 2011-03-02 12:48 ` Santosh Shilimkar 2011-03-02 15:46 ` Gupta, Ramesh 2011-03-02 16:12 ` Gupta, Ramesh
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).