* [PATCH] ARM: cache: flush to LoUU instead of LoUIS on uniprocessor CPUs
@ 2012-12-17 16:10 Will Deacon
2012-12-17 20:19 ` Nicolas Pitre
2012-12-20 7:06 ` Santosh Shilimkar
0 siblings, 2 replies; 4+ messages in thread
From: Will Deacon @ 2012-12-17 16:10 UTC (permalink / raw)
To: linux-arm-kernel
flush_cache_louis flushes the D-side caches to the point of unification
inner-shareable. On uniprocessor CPUs, this is defined as zero and
therefore no flushing will take place. Rather than invent a new interface
for UP systems, instead use our SMP_ON_UP patching code to read the
LoUU from the CLIDR instead.
Cc: Lorenzo Pieralisi <Lorenzo.Pieralisi@arm.com>
Tested-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Will Deacon <will.deacon@arm.com>
---
arch/arm/mm/cache-v7.S | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mm/cache-v7.S b/arch/arm/mm/cache-v7.S
index cd95664..7539ec2 100644
--- a/arch/arm/mm/cache-v7.S
+++ b/arch/arm/mm/cache-v7.S
@@ -44,8 +44,10 @@ ENDPROC(v7_flush_icache_all)
ENTRY(v7_flush_dcache_louis)
dmb @ ensure ordering with previous memory accesses
mrc p15, 1, r0, c0, c0, 1 @ read clidr, r0 = clidr
- ands r3, r0, #0xe00000 @ extract LoUIS from clidr
- mov r3, r3, lsr #20 @ r3 = LoUIS * 2
+ ALT_SMP(ands r3, r0, #(7 << 21)) @ extract LoUIS from clidr
+ ALT_UP(ands r3, r0, #(7 << 27)) @ extract LoUU from clidr
+ ALT_SMP(mov r3, r3, lsr #20) @ r3 = LoUIS * 2
+ ALT_UP(mov r3, r3, lsr #26) @ r3 = LoUU * 2
moveq pc, lr @ return if level == 0
mov r10, #0 @ r10 (starting level) = 0
b flush_levels @ start flushing cache levels
--
1.8.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] ARM: cache: flush to LoUU instead of LoUIS on uniprocessor CPUs
2012-12-17 16:10 [PATCH] ARM: cache: flush to LoUU instead of LoUIS on uniprocessor CPUs Will Deacon
@ 2012-12-17 20:19 ` Nicolas Pitre
2012-12-18 10:07 ` Will Deacon
2012-12-20 7:06 ` Santosh Shilimkar
1 sibling, 1 reply; 4+ messages in thread
From: Nicolas Pitre @ 2012-12-17 20:19 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, 17 Dec 2012, Will Deacon wrote:
> flush_cache_louis flushes the D-side caches to the point of unification
> inner-shareable. On uniprocessor CPUs, this is defined as zero and
> therefore no flushing will take place. Rather than invent a new interface
> for UP systems, instead use our SMP_ON_UP patching code to read the
> LoUU from the CLIDR instead.
>
> Cc: Lorenzo Pieralisi <Lorenzo.Pieralisi@arm.com>
> Tested-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> Signed-off-by: Will Deacon <will.deacon@arm.com>
This should be a candidate for the stable tree.
Nicolas
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: cache: flush to LoUU instead of LoUIS on uniprocessor CPUs
2012-12-17 20:19 ` Nicolas Pitre
@ 2012-12-18 10:07 ` Will Deacon
0 siblings, 0 replies; 4+ messages in thread
From: Will Deacon @ 2012-12-18 10:07 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Dec 17, 2012 at 08:19:51PM +0000, Nicolas Pitre wrote:
> On Mon, 17 Dec 2012, Will Deacon wrote:
>
> > flush_cache_louis flushes the D-side caches to the point of unification
> > inner-shareable. On uniprocessor CPUs, this is defined as zero and
> > therefore no flushing will take place. Rather than invent a new interface
> > for UP systems, instead use our SMP_ON_UP patching code to read the
> > LoUU from the CLIDR instead.
> >
> > Cc: Lorenzo Pieralisi <Lorenzo.Pieralisi@arm.com>
> > Tested-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> > Signed-off-by: Will Deacon <will.deacon@arm.com>
>
> This should be a candidate for the stable tree.
Yup, the same also goes for the other fix I posted yesterday (RealView EB).
Cheers,
Will
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: cache: flush to LoUU instead of LoUIS on uniprocessor CPUs
2012-12-17 16:10 [PATCH] ARM: cache: flush to LoUU instead of LoUIS on uniprocessor CPUs Will Deacon
2012-12-17 20:19 ` Nicolas Pitre
@ 2012-12-20 7:06 ` Santosh Shilimkar
1 sibling, 0 replies; 4+ messages in thread
From: Santosh Shilimkar @ 2012-12-20 7:06 UTC (permalink / raw)
To: linux-arm-kernel
On Monday 17 December 2012 09:40 PM, Will Deacon wrote:
> flush_cache_louis flushes the D-side caches to the point of unification
> inner-shareable. On uniprocessor CPUs, this is defined as zero and
> therefore no flushing will take place. Rather than invent a new interface
> for UP systems, instead use our SMP_ON_UP patching code to read the
> LoUU from the CLIDR instead.
>
> Cc: Lorenzo Pieralisi <Lorenzo.Pieralisi@arm.com>
> Tested-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
> Signed-off-by: Will Deacon <will.deacon@arm.com>
> ---
Looks reasonable idea.
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
> arch/arm/mm/cache-v7.S | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/mm/cache-v7.S b/arch/arm/mm/cache-v7.S
> index cd95664..7539ec2 100644
> --- a/arch/arm/mm/cache-v7.S
> +++ b/arch/arm/mm/cache-v7.S
> @@ -44,8 +44,10 @@ ENDPROC(v7_flush_icache_all)
> ENTRY(v7_flush_dcache_louis)
> dmb @ ensure ordering with previous memory accesses
> mrc p15, 1, r0, c0, c0, 1 @ read clidr, r0 = clidr
> - ands r3, r0, #0xe00000 @ extract LoUIS from clidr
> - mov r3, r3, lsr #20 @ r3 = LoUIS * 2
> + ALT_SMP(ands r3, r0, #(7 << 21)) @ extract LoUIS from clidr
> + ALT_UP(ands r3, r0, #(7 << 27)) @ extract LoUU from clidr
> + ALT_SMP(mov r3, r3, lsr #20) @ r3 = LoUIS * 2
> + ALT_UP(mov r3, r3, lsr #26) @ r3 = LoUU * 2
> moveq pc, lr @ return if level == 0
> mov r10, #0 @ r10 (starting level) = 0
> b flush_levels @ start flushing cache levels
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-12-20 7:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-17 16:10 [PATCH] ARM: cache: flush to LoUU instead of LoUIS on uniprocessor CPUs Will Deacon
2012-12-17 20:19 ` Nicolas Pitre
2012-12-18 10:07 ` Will Deacon
2012-12-20 7:06 ` Santosh Shilimkar
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).