ARM: shmobile: sh73a0: Replace modify_scu_cpu_psr with scu_power_mode
[platform/adaptation/renesas_rcar/renesas_kernel.git] / arch / arm / mach-shmobile / smp-sh73a0.c
1 /*
2  * SMP support for R-Mobile / SH-Mobile - sh73a0 portion
3  *
4  * Copyright (C) 2010  Magnus Damm
5  * Copyright (C) 2010  Takashi Yoshii
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20 #include <linux/kernel.h>
21 #include <linux/init.h>
22 #include <linux/smp.h>
23 #include <linux/spinlock.h>
24 #include <linux/io.h>
25 #include <linux/delay.h>
26 #include <mach/common.h>
27 #include <asm/smp_plat.h>
28 #include <mach/sh73a0.h>
29 #include <asm/smp_scu.h>
30 #include <asm/smp_twd.h>
31 #include <asm/hardware/gic.h>
32
33 #define WUPCR           IOMEM(0xe6151010)
34 #define SRESCR          IOMEM(0xe6151018)
35 #define PSTR            IOMEM(0xe6151040)
36 #define SBAR            IOMEM(0xe6180020)
37 #define APARMBAREA      IOMEM(0xe6f10020)
38
39 static void __iomem *scu_base_addr(void)
40 {
41         return (void __iomem *)0xf0000000;
42 }
43
44 #ifdef CONFIG_HAVE_ARM_TWD
45 static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, 0xf0000600, 29);
46 void __init sh73a0_register_twd(void)
47 {
48         twd_local_timer_register(&twd_local_timer);
49 }
50 #endif
51
52 static unsigned int __init sh73a0_get_core_count(void)
53 {
54         void __iomem *scu_base = scu_base_addr();
55
56         return scu_get_core_count(scu_base);
57 }
58
59 static void __cpuinit sh73a0_secondary_init(unsigned int cpu)
60 {
61         gic_secondary_init(0);
62 }
63
64 static int __cpuinit sh73a0_boot_secondary(unsigned int cpu, struct task_struct *idle)
65 {
66         cpu = cpu_logical_map(cpu);
67
68         /* enable cache coherency */
69         scu_power_mode(scu_base_addr(), 0);
70
71         if (((__raw_readl(PSTR) >> (4 * cpu)) & 3) == 3)
72                 __raw_writel(1 << cpu, WUPCR);  /* wake up */
73         else
74                 __raw_writel(1 << cpu, SRESCR); /* reset */
75
76         return 0;
77 }
78
79 static void __init sh73a0_smp_prepare_cpus(unsigned int max_cpus)
80 {
81         scu_enable(scu_base_addr());
82
83         /* Map the reset vector (in headsmp.S) */
84         __raw_writel(0, APARMBAREA);      /* 4k */
85         __raw_writel(__pa(shmobile_secondary_vector), SBAR);
86
87         /* enable cache coherency on CPU0 */
88         scu_power_mode(scu_base_addr(), 0);
89 }
90
91 static void __init sh73a0_smp_init_cpus(void)
92 {
93         unsigned int ncores = sh73a0_get_core_count();
94
95         shmobile_smp_init_cpus(ncores);
96 }
97
98 static int __maybe_unused sh73a0_cpu_kill(unsigned int cpu)
99 {
100         int k;
101
102         /* this function is running on another CPU than the offline target,
103          * here we need wait for shutdown code in platform_cpu_die() to
104          * finish before asking SoC-specific code to power off the CPU core.
105          */
106         for (k = 0; k < 1000; k++) {
107                 if (shmobile_cpu_is_dead(cpu))
108                         return 1;
109
110                 mdelay(1);
111         }
112
113         return 0;
114 }
115
116
117 struct smp_operations sh73a0_smp_ops __initdata = {
118         .smp_init_cpus          = sh73a0_smp_init_cpus,
119         .smp_prepare_cpus       = sh73a0_smp_prepare_cpus,
120         .smp_secondary_init     = sh73a0_secondary_init,
121         .smp_boot_secondary     = sh73a0_boot_secondary,
122 #ifdef CONFIG_HOTPLUG_CPU
123         .cpu_kill               = sh73a0_cpu_kill,
124         .cpu_die                = shmobile_cpu_die,
125         .cpu_disable            = shmobile_cpu_disable,
126 #endif
127 };