linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ARM: errata: Fix the workaround for erratum 764369
@ 2014-03-31 23:29 Nitin Garg
  2014-04-01  8:32 ` Vladimir Murzin
  2014-04-14 13:29 ` Will Deacon
  0 siblings, 2 replies; 3+ messages in thread
From: Nitin Garg @ 2014-03-31 23:29 UTC (permalink / raw)
  To: linux-arm-kernel

The SCU diagnostic control register at offset 0x30 is
write-only register, so do not do read-modify write.

Signed-off-by: Nitin Garg <nitin.garg@freescale.com>
---
 arch/arm/kernel/smp_scu.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/arch/arm/kernel/smp_scu.c b/arch/arm/kernel/smp_scu.c
index 1aafa0d..b0cca7e 100644
--- a/arch/arm/kernel/smp_scu.c
+++ b/arch/arm/kernel/smp_scu.c
@@ -42,9 +42,7 @@ void scu_enable(void __iomem *scu_base)
 #ifdef CONFIG_ARM_ERRATA_764369
 	/* Cortex-A9 only */
 	if ((read_cpuid_id() & 0xff0ffff0) == 0x410fc090) {
-		scu_ctrl = readl_relaxed(scu_base + 0x30);
-		if (!(scu_ctrl & 1))
-			writel_relaxed(scu_ctrl | 0x1, scu_base + 0x30);
+		writel_relaxed(0x1, scu_base + 0x30);
 	}
 #endif
 
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-04-14 13:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-31 23:29 [PATCH] ARM: errata: Fix the workaround for erratum 764369 Nitin Garg
2014-04-01  8:32 ` Vladimir Murzin
2014-04-14 13:29 ` Will Deacon

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).