Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 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> |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 25 | #include <linux/delay.h> |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 26 | #include <mach/common.h> |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 27 | #include <asm/cacheflush.h> |
Will Deacon | eb50439 | 2012-01-20 12:01:12 +0100 | [diff] [blame] | 28 | #include <asm/smp_plat.h> |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 29 | #include <mach/sh73a0.h> |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 30 | #include <asm/smp_scu.h> |
| 31 | #include <asm/smp_twd.h> |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 32 | |
Rob Herring | a2a47ca | 2012-03-09 17:16:40 -0600 | [diff] [blame] | 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) |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 38 | |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 39 | #define PSTR_SHUTDOWN_MODE 3 |
| 40 | |
Magnus Damm | 7685350 | 2013-02-18 22:47:07 +0900 | [diff] [blame] | 41 | #define SH73A0_SCU_BASE 0xf0000000 |
Magnus Damm | aa8d3bb | 2013-02-13 22:46:38 +0900 | [diff] [blame] | 42 | |
Kuninori Morimoto | d672000 | 2012-05-10 00:26:58 -0700 | [diff] [blame] | 43 | #ifdef CONFIG_HAVE_ARM_TWD |
Magnus Damm | aa8d3bb | 2013-02-13 22:46:38 +0900 | [diff] [blame] | 44 | static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, SH73A0_SCU_BASE + 0x600, 29); |
Kuninori Morimoto | d672000 | 2012-05-10 00:26:58 -0700 | [diff] [blame] | 45 | void __init sh73a0_register_twd(void) |
| 46 | { |
| 47 | twd_local_timer_register(&twd_local_timer); |
| 48 | } |
| 49 | #endif |
Marc Zyngier | 4200b16 | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 50 | |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 51 | static int __cpuinit sh73a0_boot_secondary(unsigned int cpu, struct task_struct *idle) |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 52 | { |
Magnus Damm | 12eb847 | 2013-07-31 16:07:21 +0900 | [diff] [blame^] | 53 | unsigned int lcpu = cpu_logical_map(cpu); |
| 54 | int ret; |
Will Deacon | f80ca52 | 2011-08-09 12:13:53 +0100 | [diff] [blame] | 55 | |
Magnus Damm | 12eb847 | 2013-07-31 16:07:21 +0900 | [diff] [blame^] | 56 | ret = shmobile_smp_scu_boot_secondary(cpu, idle); |
| 57 | if (ret) |
| 58 | return ret; |
| 59 | |
| 60 | if (((__raw_readl(PSTR) >> (4 * lcpu)) & 3) == 3) |
| 61 | __raw_writel(1 << lcpu, WUPCR); /* wake up */ |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 62 | else |
Magnus Damm | 12eb847 | 2013-07-31 16:07:21 +0900 | [diff] [blame^] | 63 | __raw_writel(1 << lcpu, SRESCR); /* reset */ |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 64 | |
| 65 | return 0; |
| 66 | } |
| 67 | |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 68 | static void __init sh73a0_smp_prepare_cpus(unsigned int max_cpus) |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 69 | { |
Magnus Damm | 12eb847 | 2013-07-31 16:07:21 +0900 | [diff] [blame^] | 70 | /* Map the reset vector (in headsmp.S) */ |
Rob Herring | a2a47ca | 2012-03-09 17:16:40 -0600 | [diff] [blame] | 71 | __raw_writel(0, APARMBAREA); /* 4k */ |
Magnus Damm | abfa04e | 2013-06-10 18:20:06 +0900 | [diff] [blame] | 72 | __raw_writel(__pa(shmobile_boot_vector), SBAR); |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 73 | |
Magnus Damm | 12eb847 | 2013-07-31 16:07:21 +0900 | [diff] [blame^] | 74 | /* setup sh73a0 specific SCU bits */ |
| 75 | shmobile_scu_base = IOMEM(SH73A0_SCU_BASE); |
| 76 | shmobile_smp_scu_prepare_cpus(max_cpus); |
Magnus Damm | 72f4d57 | 2010-12-14 16:57:11 +0900 | [diff] [blame] | 77 | } |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 78 | |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 79 | #ifdef CONFIG_HOTPLUG_CPU |
| 80 | static int sh73a0_cpu_kill(unsigned int cpu) |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 81 | { |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 82 | |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 83 | int k; |
| 84 | u32 pstr; |
| 85 | |
| 86 | /* |
| 87 | * wait until the power status register confirms the shutdown of the |
| 88 | * offline target |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 89 | */ |
| 90 | for (k = 0; k < 1000; k++) { |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 91 | pstr = (__raw_readl(PSTR) >> (4 * cpu)) & 3; |
| 92 | if (pstr == PSTR_SHUTDOWN_MODE) |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 93 | return 1; |
| 94 | |
| 95 | mdelay(1); |
| 96 | } |
| 97 | |
| 98 | return 0; |
| 99 | } |
| 100 | |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 101 | static void sh73a0_cpu_die(unsigned int cpu) |
| 102 | { |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 103 | /* Set power off mode. This takes the CPU out of the MP cluster */ |
Magnus Damm | aa8d3bb | 2013-02-13 22:46:38 +0900 | [diff] [blame] | 104 | scu_power_mode(shmobile_scu_base, SCU_PM_POWEROFF); |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 105 | |
| 106 | /* Enter shutdown mode */ |
| 107 | cpu_do_idle(); |
| 108 | } |
Magnus Damm | eebadd6 | 2013-02-18 22:47:44 +0900 | [diff] [blame] | 109 | |
| 110 | static int sh73a0_cpu_disable(unsigned int cpu) |
| 111 | { |
| 112 | return 0; /* CPU0 and CPU1 supported */ |
| 113 | } |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 114 | #endif /* CONFIG_HOTPLUG_CPU */ |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 115 | |
| 116 | struct smp_operations sh73a0_smp_ops __initdata = { |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 117 | .smp_prepare_cpus = sh73a0_smp_prepare_cpus, |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 118 | .smp_boot_secondary = sh73a0_boot_secondary, |
| 119 | #ifdef CONFIG_HOTPLUG_CPU |
| 120 | .cpu_kill = sh73a0_cpu_kill, |
Bastian Hecht | 20aa113 | 2013-01-09 19:41:52 +0000 | [diff] [blame] | 121 | .cpu_die = sh73a0_cpu_die, |
Magnus Damm | eebadd6 | 2013-02-18 22:47:44 +0900 | [diff] [blame] | 122 | .cpu_disable = sh73a0_cpu_disable, |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 123 | #endif |
| 124 | }; |