From: Khiem Nguyen <khiem.nguyen.xt@renesas.com>
To: linux-sh@vger.kernel.org
Subject: [PATCH RFC 7/7] ARM: shmobile: Use separate CPUCMCR addresses for CA15/CA7
Date: Fri, 26 Sep 2014 02:40:38 +0000 [thread overview]
Message-ID: <5424D226.7020502@renesas.com> (raw)
It turned out that the CPUCMCR common address was not worked for CA7.
Change to use separate CPUCMCR addresses for CA15 and CA7.
Signed-off-by: Khiem Nguyen <khiem.nguyen.xt@renesas.com>
---
arch/arm/mach-shmobile/platsmp-apmu.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/arch/arm/mach-shmobile/platsmp-apmu.c b/arch/arm/mach-shmobile/platsmp-apmu.c
index 0dedb13..7d030fc 100644
--- a/arch/arm/mach-shmobile/platsmp-apmu.c
+++ b/arch/arm/mach-shmobile/platsmp-apmu.c
@@ -36,9 +36,11 @@ static struct {
#define WUPCR_OFFS 0x10
#define PSTR_OFFS 0x40
#define CPUNCR_OFFS(n) (0x100 + (0x10 * (n)))
-#define CPUCMCR 0xe6154184
+#define CPUCMCR_CA7 0xe6151184
+#define CPUCMCR_CA15 0xe6152184
-void __iomem *cpucmcr;
+void __iomem *cpucmcr_ca7;
+void __iomem *cpucmcr_ca15;
static int __maybe_unused apmu_power_on(void __iomem *p, int bit)
{
@@ -254,20 +256,25 @@ static int shmobile_smp_apmu_enter_suspend(suspend_state_t state)
*/
gic_cpu_if_down();
- writel_relaxed(0x2, cpucmcr);
if (read_cpuid_part() = ARM_CPU_PART_CORTEX_A15) {
is_a15_l2shutdown = 1;
asm volatile("mrc p15, 1, %0, c9 , c0, 2"
: "=r" (l2ctlr_value));
pr_debug("%s: l2ctlr: 0x%08x\n", __func__, l2ctlr_value);
- } else
+ } else {
+ writel_relaxed(0x2, cpucmcr_ca7);
is_a15_l2shutdown = 0;
+ }
shmobile_smp_hook(smp_processor_id(), virt_to_phys(rcar_cpu_resume), 0);
cpu_suspend(smp_processor_id(), shmobile_smp_apmu_do_suspend);
cpu_leave_lowpower();
- writel_relaxed(0x0, cpucmcr);
+ if (read_cpuid_part() = ARM_CPU_PART_CORTEX_A15)
+ writel_relaxed(0x0, cpucmcr_ca15);
+ else
+ writel_relaxed(0x0, cpucmcr_ca7);
+
rcar_sysc_clear_event_status();
is_a15_l2shutdown = 0;
@@ -276,7 +283,9 @@ static int shmobile_smp_apmu_enter_suspend(suspend_state_t state)
void __init shmobile_smp_apmu_suspend_init(void)
{
- cpucmcr = ioremap_nocache(CPUCMCR, 0x4);
+ cpucmcr_ca7 = ioremap_nocache(CPUCMCR_CA7, 0x4);
+ cpucmcr_ca15 = ioremap_nocache(CPUCMCR_CA15, 0x4);
+
shmobile_suspend_ops.enter = shmobile_smp_apmu_enter_suspend;
}
#endif
--
1.7.9.5
next reply other threads:[~2014-09-26 2:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-26 2:40 Khiem Nguyen [this message]
2014-09-26 10:23 ` [PATCH RFC 7/7] ARM: shmobile: Use separate CPUCMCR addresses for CA15/CA7 Khiem Nguyen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5424D226.7020502@renesas.com \
--to=khiem.nguyen.xt@renesas.com \
--cc=linux-sh@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).