blob: acb46a94ccdfb8ec967ed5e52e5a9593f531c414 [file] [log] [blame]
Magnus Damm72f4d572010-12-14 16:57:11 +09001/*
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>
Marc Zyngiera62580e2011-09-08 13:15:22 +010025#include <linux/delay.h>
Rob Herring520f7bd2012-12-27 13:10:24 -060026#include <linux/irqchip/arm-gic.h>
Magnus Damm72f4d572010-12-14 16:57:11 +090027#include <mach/common.h>
Bastian Hecht20aa1132013-01-09 19:41:52 +000028#include <asm/cacheflush.h>
Will Deaconeb504392012-01-20 12:01:12 +010029#include <asm/smp_plat.h>
Marc Zyngiera62580e2011-09-08 13:15:22 +010030#include <mach/sh73a0.h>
Magnus Damm72f4d572010-12-14 16:57:11 +090031#include <asm/smp_scu.h>
32#include <asm/smp_twd.h>
Magnus Damm72f4d572010-12-14 16:57:11 +090033
Rob Herringa2a47ca2012-03-09 17:16:40 -060034#define WUPCR IOMEM(0xe6151010)
35#define SRESCR IOMEM(0xe6151018)
36#define PSTR IOMEM(0xe6151040)
37#define SBAR IOMEM(0xe6180020)
38#define APARMBAREA IOMEM(0xe6f10020)
Magnus Damm72f4d572010-12-14 16:57:11 +090039
Bastian Hecht20aa1132013-01-09 19:41:52 +000040#define PSTR_SHUTDOWN_MODE 3
41
Magnus Damm72f4d572010-12-14 16:57:11 +090042static void __iomem *scu_base_addr(void)
43{
44 return (void __iomem *)0xf0000000;
45}
46
Kuninori Morimotod6720002012-05-10 00:26:58 -070047#ifdef CONFIG_HAVE_ARM_TWD
Marc Zyngier4200b162012-01-10 19:44:19 +000048static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, 0xf0000600, 29);
Kuninori Morimotod6720002012-05-10 00:26:58 -070049void __init sh73a0_register_twd(void)
50{
51 twd_local_timer_register(&twd_local_timer);
52}
53#endif
Marc Zyngier4200b162012-01-10 19:44:19 +000054
Marc Zyngiera62580e2011-09-08 13:15:22 +010055static unsigned int __init sh73a0_get_core_count(void)
Magnus Damm72f4d572010-12-14 16:57:11 +090056{
57 void __iomem *scu_base = scu_base_addr();
58
59 return scu_get_core_count(scu_base);
60}
61
Marc Zyngiera62580e2011-09-08 13:15:22 +010062static void __cpuinit sh73a0_secondary_init(unsigned int cpu)
Magnus Damm72f4d572010-12-14 16:57:11 +090063{
Paul Mundtc0312b32011-01-07 12:02:11 +090064 gic_secondary_init(0);
Magnus Damm72f4d572010-12-14 16:57:11 +090065}
66
Marc Zyngiera62580e2011-09-08 13:15:22 +010067static int __cpuinit sh73a0_boot_secondary(unsigned int cpu, struct task_struct *idle)
Magnus Damm72f4d572010-12-14 16:57:11 +090068{
Will Deaconf80ca522011-08-09 12:13:53 +010069 cpu = cpu_logical_map(cpu);
70
Linus Torvalds820d41c2012-03-29 18:02:10 -070071 if (((__raw_readl(PSTR) >> (4 * cpu)) & 3) == 3)
Rob Herringa2a47ca2012-03-09 17:16:40 -060072 __raw_writel(1 << cpu, WUPCR); /* wake up */
Magnus Damm72f4d572010-12-14 16:57:11 +090073 else
Rob Herringa2a47ca2012-03-09 17:16:40 -060074 __raw_writel(1 << cpu, SRESCR); /* reset */
Magnus Damm72f4d572010-12-14 16:57:11 +090075
76 return 0;
77}
78
Marc Zyngiera62580e2011-09-08 13:15:22 +010079static void __init sh73a0_smp_prepare_cpus(unsigned int max_cpus)
Magnus Damm72f4d572010-12-14 16:57:11 +090080{
Magnus Damm72f4d572010-12-14 16:57:11 +090081 scu_enable(scu_base_addr());
82
Bastian Hecht33419a62013-01-09 19:41:51 +000083 /* Map the reset vector (in headsmp-sh73a0.S) */
Rob Herringa2a47ca2012-03-09 17:16:40 -060084 __raw_writel(0, APARMBAREA); /* 4k */
Bastian Hecht33419a62013-01-09 19:41:51 +000085 __raw_writel(__pa(sh73a0_secondary_vector), SBAR);
Magnus Damm72f4d572010-12-14 16:57:11 +090086
Bastian Hecht33419a62013-01-09 19:41:51 +000087 /* enable cache coherency on booting CPU */
88 scu_power_mode(scu_base_addr(), SCU_PM_NORMAL);
Magnus Damm72f4d572010-12-14 16:57:11 +090089}
Marc Zyngiera62580e2011-09-08 13:15:22 +010090
91static 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
Bastian Hecht20aa1132013-01-09 19:41:52 +000098#ifdef CONFIG_HOTPLUG_CPU
99static int sh73a0_cpu_kill(unsigned int cpu)
Marc Zyngiera62580e2011-09-08 13:15:22 +0100100{
Marc Zyngiera62580e2011-09-08 13:15:22 +0100101
Bastian Hecht20aa1132013-01-09 19:41:52 +0000102 int k;
103 u32 pstr;
104
105 /*
106 * wait until the power status register confirms the shutdown of the
107 * offline target
Marc Zyngiera62580e2011-09-08 13:15:22 +0100108 */
109 for (k = 0; k < 1000; k++) {
Bastian Hecht20aa1132013-01-09 19:41:52 +0000110 pstr = (__raw_readl(PSTR) >> (4 * cpu)) & 3;
111 if (pstr == PSTR_SHUTDOWN_MODE)
Marc Zyngiera62580e2011-09-08 13:15:22 +0100112 return 1;
113
114 mdelay(1);
115 }
116
117 return 0;
118}
119
Bastian Hecht20aa1132013-01-09 19:41:52 +0000120static void sh73a0_cpu_die(unsigned int cpu)
121{
122 /*
123 * The ARM MPcore does not issue a cache coherency request for the L1
124 * cache when powering off single CPUs. We must take care of this and
125 * further caches.
126 */
127 dsb();
128 flush_cache_all();
129
130 /* Set power off mode. This takes the CPU out of the MP cluster */
131 scu_power_mode(scu_base_addr(), SCU_PM_POWEROFF);
132
133 /* Enter shutdown mode */
134 cpu_do_idle();
135}
136#endif /* CONFIG_HOTPLUG_CPU */
Marc Zyngiera62580e2011-09-08 13:15:22 +0100137
138struct smp_operations sh73a0_smp_ops __initdata = {
139 .smp_init_cpus = sh73a0_smp_init_cpus,
140 .smp_prepare_cpus = sh73a0_smp_prepare_cpus,
141 .smp_secondary_init = sh73a0_secondary_init,
142 .smp_boot_secondary = sh73a0_boot_secondary,
143#ifdef CONFIG_HOTPLUG_CPU
144 .cpu_kill = sh73a0_cpu_kill,
Bastian Hecht20aa1132013-01-09 19:41:52 +0000145 .cpu_die = sh73a0_cpu_die,
Ulrich Hechtdc784e72013-01-10 11:16:44 +0100146 .cpu_disable = shmobile_cpu_disable_any,
Marc Zyngiera62580e2011-09-08 13:15:22 +0100147#endif
148};