Krzysztof Kozlowski | 347863d | 2017-12-25 20:54:31 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | // Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. |
| 3 | // http://www.samsung.com |
| 4 | // |
| 5 | // Cloned from linux/arch/arm/mach-vexpress/platsmp.c |
| 6 | // |
| 7 | // Copyright (C) 2002 ARM Ltd. |
| 8 | // All Rights Reserved |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 9 | |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/errno.h> |
| 12 | #include <linux/delay.h> |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 13 | #include <linux/jiffies.h> |
| 14 | #include <linux/smp.h> |
| 15 | #include <linux/io.h> |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 16 | #include <linux/of_address.h> |
Pankaj Dubey | 2262d6e | 2015-12-18 09:02:11 +0530 | [diff] [blame] | 17 | #include <linux/soc/samsung/exynos-regs-pmu.h> |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 18 | |
| 19 | #include <asm/cacheflush.h> |
Krzysztof Kozlowski | 6f0b7c0 | 2014-09-14 02:49:31 +0900 | [diff] [blame] | 20 | #include <asm/cp15.h> |
Will Deacon | eb50439 | 2012-01-20 12:01:12 +0100 | [diff] [blame] | 21 | #include <asm/smp_plat.h> |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 22 | #include <asm/smp_scu.h> |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 23 | #include <asm/firmware.h> |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 24 | |
Pankaj Dubey | 2e94ac4 | 2014-07-19 03:43:22 +0900 | [diff] [blame] | 25 | #include <mach/map.h> |
| 26 | |
Marc Zyngier | 06853ae | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 27 | #include "common.h" |
| 28 | |
Kukjin Kim | 7d30e8b | 2011-02-14 16:33:10 +0900 | [diff] [blame] | 29 | extern void exynos4_secondary_startup(void); |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 30 | |
Krzysztof Kozlowski | 6f0b7c0 | 2014-09-14 02:49:31 +0900 | [diff] [blame] | 31 | #ifdef CONFIG_HOTPLUG_CPU |
Krzysztof Kozlowski | 13cfa6c | 2014-09-14 02:49:32 +0900 | [diff] [blame] | 32 | static inline void cpu_leave_lowpower(u32 core_id) |
Krzysztof Kozlowski | 6f0b7c0 | 2014-09-14 02:49:31 +0900 | [diff] [blame] | 33 | { |
| 34 | unsigned int v; |
| 35 | |
| 36 | asm volatile( |
| 37 | "mrc p15, 0, %0, c1, c0, 0\n" |
| 38 | " orr %0, %0, %1\n" |
| 39 | " mcr p15, 0, %0, c1, c0, 0\n" |
| 40 | " mrc p15, 0, %0, c1, c0, 1\n" |
| 41 | " orr %0, %0, %2\n" |
| 42 | " mcr p15, 0, %0, c1, c0, 1\n" |
| 43 | : "=&r" (v) |
| 44 | : "Ir" (CR_C), "Ir" (0x40) |
| 45 | : "cc"); |
| 46 | } |
| 47 | |
| 48 | static inline void platform_do_lowpower(unsigned int cpu, int *spurious) |
| 49 | { |
| 50 | u32 mpidr = cpu_logical_map(cpu); |
| 51 | u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0); |
| 52 | |
| 53 | for (;;) { |
| 54 | |
| 55 | /* Turn the CPU off on next WFI instruction. */ |
| 56 | exynos_cpu_power_down(core_id); |
| 57 | |
| 58 | wfi(); |
| 59 | |
| 60 | if (pen_release == core_id) { |
| 61 | /* |
| 62 | * OK, proper wakeup, we're done |
| 63 | */ |
| 64 | break; |
| 65 | } |
| 66 | |
| 67 | /* |
| 68 | * Getting here, means that we have come out of WFI without |
| 69 | * having been woken up - this shouldn't happen |
| 70 | * |
| 71 | * Just note it happening - when we're woken, we can report |
| 72 | * its occurrence. |
| 73 | */ |
| 74 | (*spurious)++; |
| 75 | } |
| 76 | } |
| 77 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 78 | |
Krzysztof Kozlowski | 7310d99 | 2014-07-19 04:45:02 +0900 | [diff] [blame] | 79 | /** |
| 80 | * exynos_core_power_down : power down the specified cpu |
| 81 | * @cpu : the cpu to power down |
| 82 | * |
| 83 | * Power down the specified cpu. The sequence must be finished by a |
| 84 | * call to cpu_do_idle() |
| 85 | * |
| 86 | */ |
| 87 | void exynos_cpu_power_down(int cpu) |
| 88 | { |
Bartlomiej Zolnierkiewicz | 497ab3b | 2015-03-27 02:32:56 +0900 | [diff] [blame] | 89 | u32 core_conf; |
| 90 | |
Krzysztof Kozlowski | ca489c5 | 2015-02-27 05:50:41 +0900 | [diff] [blame] | 91 | if (cpu == 0 && (soc_is_exynos5420() || soc_is_exynos5800())) { |
Abhilash Kesavan | adc548d | 2014-11-07 09:20:16 +0900 | [diff] [blame] | 92 | /* |
| 93 | * Bypass power down for CPU0 during suspend. Check for |
| 94 | * the SYS_PWR_REG value to decide if we are suspending |
| 95 | * the system. |
| 96 | */ |
| 97 | int val = pmu_raw_readl(EXYNOS5_ARM_CORE0_SYS_PWR_REG); |
| 98 | |
| 99 | if (!(val & S5P_CORE_LOCAL_PWR_EN)) |
| 100 | return; |
| 101 | } |
Bartlomiej Zolnierkiewicz | 497ab3b | 2015-03-27 02:32:56 +0900 | [diff] [blame] | 102 | |
| 103 | core_conf = pmu_raw_readl(EXYNOS_ARM_CORE_CONFIGURATION(cpu)); |
| 104 | core_conf &= ~S5P_CORE_LOCAL_PWR_EN; |
| 105 | pmu_raw_writel(core_conf, EXYNOS_ARM_CORE_CONFIGURATION(cpu)); |
Krzysztof Kozlowski | 7310d99 | 2014-07-19 04:45:02 +0900 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | /** |
| 109 | * exynos_cpu_power_up : power up the specified cpu |
| 110 | * @cpu : the cpu to power up |
| 111 | * |
| 112 | * Power up the specified cpu |
| 113 | */ |
| 114 | void exynos_cpu_power_up(int cpu) |
| 115 | { |
Bartlomiej Zolnierkiewicz | 497ab3b | 2015-03-27 02:32:56 +0900 | [diff] [blame] | 116 | u32 core_conf = S5P_CORE_LOCAL_PWR_EN; |
| 117 | |
| 118 | if (soc_is_exynos3250()) |
| 119 | core_conf |= S5P_CORE_AUTOWAKEUP_EN; |
| 120 | |
| 121 | pmu_raw_writel(core_conf, |
Arnd Bergmann | 944483d | 2014-07-26 17:54:21 +0200 | [diff] [blame] | 122 | EXYNOS_ARM_CORE_CONFIGURATION(cpu)); |
Krzysztof Kozlowski | 7310d99 | 2014-07-19 04:45:02 +0900 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | /** |
| 126 | * exynos_cpu_power_state : returns the power state of the cpu |
| 127 | * @cpu : the cpu to retrieve the power state from |
| 128 | * |
| 129 | */ |
| 130 | int exynos_cpu_power_state(int cpu) |
| 131 | { |
Arnd Bergmann | 944483d | 2014-07-26 17:54:21 +0200 | [diff] [blame] | 132 | return (pmu_raw_readl(EXYNOS_ARM_CORE_STATUS(cpu)) & |
Krzysztof Kozlowski | 7310d99 | 2014-07-19 04:45:02 +0900 | [diff] [blame] | 133 | S5P_CORE_LOCAL_PWR_EN); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * exynos_cluster_power_down : power down the specified cluster |
| 138 | * @cluster : the cluster to power down |
| 139 | */ |
| 140 | void exynos_cluster_power_down(int cluster) |
| 141 | { |
Arnd Bergmann | 944483d | 2014-07-26 17:54:21 +0200 | [diff] [blame] | 142 | pmu_raw_writel(0, EXYNOS_COMMON_CONFIGURATION(cluster)); |
Krzysztof Kozlowski | 7310d99 | 2014-07-19 04:45:02 +0900 | [diff] [blame] | 143 | } |
| 144 | |
| 145 | /** |
| 146 | * exynos_cluster_power_up : power up the specified cluster |
| 147 | * @cluster : the cluster to power up |
| 148 | */ |
| 149 | void exynos_cluster_power_up(int cluster) |
| 150 | { |
Arnd Bergmann | 944483d | 2014-07-26 17:54:21 +0200 | [diff] [blame] | 151 | pmu_raw_writel(S5P_CORE_LOCAL_PWR_EN, |
| 152 | EXYNOS_COMMON_CONFIGURATION(cluster)); |
Krzysztof Kozlowski | 7310d99 | 2014-07-19 04:45:02 +0900 | [diff] [blame] | 153 | } |
| 154 | |
| 155 | /** |
| 156 | * exynos_cluster_power_state : returns the power state of the cluster |
| 157 | * @cluster : the cluster to retrieve the power state from |
| 158 | * |
| 159 | */ |
| 160 | int exynos_cluster_power_state(int cluster) |
| 161 | { |
Arnd Bergmann | 944483d | 2014-07-26 17:54:21 +0200 | [diff] [blame] | 162 | return (pmu_raw_readl(EXYNOS_COMMON_STATUS(cluster)) & |
| 163 | S5P_CORE_LOCAL_PWR_EN); |
Krzysztof Kozlowski | 7310d99 | 2014-07-19 04:45:02 +0900 | [diff] [blame] | 164 | } |
| 165 | |
Pankaj Dubey | 3c33710 | 2018-05-10 13:02:54 +0200 | [diff] [blame] | 166 | /** |
| 167 | * exynos_scu_enable : enables SCU for Cortex-A9 based system |
| 168 | */ |
| 169 | void exynos_scu_enable(void) |
| 170 | { |
| 171 | struct device_node *np; |
| 172 | static void __iomem *scu_base; |
| 173 | |
| 174 | if (!scu_base) { |
| 175 | np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu"); |
| 176 | if (np) { |
| 177 | scu_base = of_iomap(np, 0); |
| 178 | of_node_put(np); |
| 179 | } else { |
| 180 | scu_base = ioremap(scu_a9_get_base(), SZ_4K); |
| 181 | } |
| 182 | } |
| 183 | scu_enable(scu_base); |
| 184 | } |
| 185 | |
Bartlomiej Zolnierkiewicz | af99711 | 2015-03-18 14:09:57 +0100 | [diff] [blame] | 186 | static void __iomem *cpu_boot_reg_base(void) |
Tomasz Figa | 1f054f5 | 2012-11-24 11:13:48 +0900 | [diff] [blame] | 187 | { |
| 188 | if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_1_1) |
Pankaj Dubey | 2e94ac4 | 2014-07-19 03:43:22 +0900 | [diff] [blame] | 189 | return pmu_base_addr + S5P_INFORM5; |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 190 | return sysram_base_addr; |
Tomasz Figa | 1f054f5 | 2012-11-24 11:13:48 +0900 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | static inline void __iomem *cpu_boot_reg(int cpu) |
| 194 | { |
| 195 | void __iomem *boot_reg; |
| 196 | |
| 197 | boot_reg = cpu_boot_reg_base(); |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 198 | if (!boot_reg) |
Krzysztof Kozlowski | 2cc6b81 | 2015-07-10 19:20:58 +0900 | [diff] [blame] | 199 | return IOMEM_ERR_PTR(-ENODEV); |
Tomasz Figa | 1f054f5 | 2012-11-24 11:13:48 +0900 | [diff] [blame] | 200 | if (soc_is_exynos4412()) |
| 201 | boot_reg += 4*cpu; |
Arun Kumar K | 86c6f14 | 2014-05-26 04:16:11 +0900 | [diff] [blame] | 202 | else if (soc_is_exynos5420() || soc_is_exynos5800()) |
Chander Kashyap | 1580be3 | 2013-06-19 00:29:35 +0900 | [diff] [blame] | 203 | boot_reg += 4; |
Tomasz Figa | 1f054f5 | 2012-11-24 11:13:48 +0900 | [diff] [blame] | 204 | return boot_reg; |
| 205 | } |
JungHi Min | 911c29b | 2011-07-16 13:39:09 +0900 | [diff] [blame] | 206 | |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 207 | /* |
Krzysztof Kozlowski | b588aae | 2014-09-25 18:15:13 +0900 | [diff] [blame] | 208 | * Set wake up by local power mode and execute software reset for given core. |
| 209 | * |
| 210 | * Currently this is needed only when booting secondary CPU on Exynos3250. |
| 211 | */ |
Bartlomiej Zolnierkiewicz | af99711 | 2015-03-18 14:09:57 +0100 | [diff] [blame] | 212 | void exynos_core_restart(u32 core_id) |
Krzysztof Kozlowski | b588aae | 2014-09-25 18:15:13 +0900 | [diff] [blame] | 213 | { |
| 214 | u32 val; |
| 215 | |
| 216 | if (!of_machine_is_compatible("samsung,exynos3250")) |
| 217 | return; |
| 218 | |
Bartlomiej Zolnierkiewicz | 497ab3b | 2015-03-27 02:32:56 +0900 | [diff] [blame] | 219 | while (!pmu_raw_readl(S5P_PMU_SPARE2)) |
| 220 | udelay(10); |
| 221 | udelay(10); |
| 222 | |
Krzysztof Kozlowski | b588aae | 2014-09-25 18:15:13 +0900 | [diff] [blame] | 223 | val = pmu_raw_readl(EXYNOS_ARM_CORE_STATUS(core_id)); |
| 224 | val |= S5P_CORE_WAKEUP_FROM_LOCAL_CFG; |
| 225 | pmu_raw_writel(val, EXYNOS_ARM_CORE_STATUS(core_id)); |
| 226 | |
Krzysztof Kozlowski | b588aae | 2014-09-25 18:15:13 +0900 | [diff] [blame] | 227 | pmu_raw_writel(EXYNOS_CORE_PO_RESET(core_id), EXYNOS_SWRESET); |
| 228 | } |
| 229 | |
| 230 | /* |
Russell King | 3705ff6 | 2010-12-18 10:53:12 +0000 | [diff] [blame] | 231 | * Write pen_release in a way that is guaranteed to be visible to all |
| 232 | * observers, irrespective of whether they're taking part in coherency |
| 233 | * or not. This is necessary for the hotplug code to work reliably. |
| 234 | */ |
| 235 | static void write_pen_release(int val) |
| 236 | { |
| 237 | pen_release = val; |
| 238 | smp_wmb(); |
Nicolas Pitre | f45913f | 2013-12-05 14:26:16 -0500 | [diff] [blame] | 239 | sync_cache_w(&pen_release); |
Russell King | 3705ff6 | 2010-12-18 10:53:12 +0000 | [diff] [blame] | 240 | } |
| 241 | |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 242 | static DEFINE_SPINLOCK(boot_lock); |
| 243 | |
Paul Gortmaker | 8bd26e3 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 244 | static void exynos_secondary_init(unsigned int cpu) |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 245 | { |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 246 | /* |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 247 | * let the primary processor know we're out of the |
| 248 | * pen, then head off into the C entry point |
| 249 | */ |
Russell King | 3705ff6 | 2010-12-18 10:53:12 +0000 | [diff] [blame] | 250 | write_pen_release(-1); |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 251 | |
| 252 | /* |
| 253 | * Synchronise with the boot thread. |
| 254 | */ |
| 255 | spin_lock(&boot_lock); |
| 256 | spin_unlock(&boot_lock); |
| 257 | } |
| 258 | |
Bartlomiej Zolnierkiewicz | af99711 | 2015-03-18 14:09:57 +0100 | [diff] [blame] | 259 | int exynos_set_boot_addr(u32 core_id, unsigned long boot_addr) |
Bartlomiej Zolnierkiewicz | 955d4cf | 2015-03-18 14:09:55 +0100 | [diff] [blame] | 260 | { |
| 261 | int ret; |
| 262 | |
| 263 | /* |
| 264 | * Try to set boot address using firmware first |
| 265 | * and fall back to boot register if it fails. |
| 266 | */ |
| 267 | ret = call_firmware_op(set_cpu_boot_addr, core_id, boot_addr); |
| 268 | if (ret && ret != -ENOSYS) |
| 269 | goto fail; |
| 270 | if (ret == -ENOSYS) { |
| 271 | void __iomem *boot_reg = cpu_boot_reg(core_id); |
| 272 | |
| 273 | if (IS_ERR(boot_reg)) { |
| 274 | ret = PTR_ERR(boot_reg); |
| 275 | goto fail; |
| 276 | } |
Ben Dooks | 458ad21 | 2016-06-21 11:20:24 +0100 | [diff] [blame] | 277 | writel_relaxed(boot_addr, boot_reg); |
Bartlomiej Zolnierkiewicz | 955d4cf | 2015-03-18 14:09:55 +0100 | [diff] [blame] | 278 | ret = 0; |
| 279 | } |
| 280 | fail: |
| 281 | return ret; |
| 282 | } |
| 283 | |
Bartlomiej Zolnierkiewicz | af99711 | 2015-03-18 14:09:57 +0100 | [diff] [blame] | 284 | int exynos_get_boot_addr(u32 core_id, unsigned long *boot_addr) |
Bartlomiej Zolnierkiewicz | 1225ad7 | 2015-03-18 14:09:56 +0100 | [diff] [blame] | 285 | { |
| 286 | int ret; |
| 287 | |
| 288 | /* |
| 289 | * Try to get boot address using firmware first |
| 290 | * and fall back to boot register if it fails. |
| 291 | */ |
| 292 | ret = call_firmware_op(get_cpu_boot_addr, core_id, boot_addr); |
| 293 | if (ret && ret != -ENOSYS) |
| 294 | goto fail; |
| 295 | if (ret == -ENOSYS) { |
| 296 | void __iomem *boot_reg = cpu_boot_reg(core_id); |
| 297 | |
| 298 | if (IS_ERR(boot_reg)) { |
| 299 | ret = PTR_ERR(boot_reg); |
| 300 | goto fail; |
| 301 | } |
Ben Dooks | 458ad21 | 2016-06-21 11:20:24 +0100 | [diff] [blame] | 302 | *boot_addr = readl_relaxed(boot_reg); |
Bartlomiej Zolnierkiewicz | 1225ad7 | 2015-03-18 14:09:56 +0100 | [diff] [blame] | 303 | ret = 0; |
| 304 | } |
| 305 | fail: |
| 306 | return ret; |
| 307 | } |
| 308 | |
Paul Gortmaker | 8bd26e3 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 309 | static int exynos_boot_secondary(unsigned int cpu, struct task_struct *idle) |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 310 | { |
| 311 | unsigned long timeout; |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 312 | u32 mpidr = cpu_logical_map(cpu); |
| 313 | u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0); |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 314 | int ret = -ENOSYS; |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 315 | |
| 316 | /* |
| 317 | * Set synchronisation state between this boot processor |
| 318 | * and the secondary one |
| 319 | */ |
| 320 | spin_lock(&boot_lock); |
| 321 | |
| 322 | /* |
| 323 | * The secondary processor is waiting to be released from |
| 324 | * the holding pen - release it, then wait for it to flag |
| 325 | * that it has been released by resetting pen_release. |
| 326 | * |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 327 | * Note that "pen_release" is the hardware CPU core ID, whereas |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 328 | * "cpu" is Linux's internal ID. |
| 329 | */ |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 330 | write_pen_release(core_id); |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 331 | |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 332 | if (!exynos_cpu_power_state(core_id)) { |
| 333 | exynos_cpu_power_up(core_id); |
JungHi Min | 911c29b | 2011-07-16 13:39:09 +0900 | [diff] [blame] | 334 | timeout = 10; |
| 335 | |
| 336 | /* wait max 10 ms until cpu1 is on */ |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 337 | while (exynos_cpu_power_state(core_id) |
| 338 | != S5P_CORE_LOCAL_PWR_EN) { |
JungHi Min | 911c29b | 2011-07-16 13:39:09 +0900 | [diff] [blame] | 339 | if (timeout-- == 0) |
| 340 | break; |
| 341 | |
| 342 | mdelay(1); |
| 343 | } |
| 344 | |
| 345 | if (timeout == 0) { |
| 346 | printk(KERN_ERR "cpu1 power enable failed"); |
| 347 | spin_unlock(&boot_lock); |
| 348 | return -ETIMEDOUT; |
| 349 | } |
| 350 | } |
Krzysztof Kozlowski | b588aae | 2014-09-25 18:15:13 +0900 | [diff] [blame] | 351 | |
| 352 | exynos_core_restart(core_id); |
| 353 | |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 354 | /* |
| 355 | * Send the secondary CPU a soft interrupt, thereby causing |
| 356 | * the boot monitor to read the system wide flags register, |
| 357 | * and branch to the address found there. |
| 358 | */ |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 359 | |
| 360 | timeout = jiffies + (1 * HZ); |
| 361 | while (time_before(jiffies, timeout)) { |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 362 | unsigned long boot_addr; |
| 363 | |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 364 | smp_rmb(); |
JungHi Min | 911c29b | 2011-07-16 13:39:09 +0900 | [diff] [blame] | 365 | |
Florian Fainelli | 64fc2a9 | 2017-01-15 03:59:29 +0100 | [diff] [blame] | 366 | boot_addr = __pa_symbol(exynos4_secondary_startup); |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 367 | |
Bartlomiej Zolnierkiewicz | 955d4cf | 2015-03-18 14:09:55 +0100 | [diff] [blame] | 368 | ret = exynos_set_boot_addr(core_id, boot_addr); |
| 369 | if (ret) |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 370 | goto fail; |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 371 | |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 372 | call_firmware_op(cpu_boot, core_id); |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 373 | |
Bartlomiej Zolnierkiewicz | 497ab3b | 2015-03-27 02:32:56 +0900 | [diff] [blame] | 374 | if (soc_is_exynos3250()) |
| 375 | dsb_sev(); |
| 376 | else |
| 377 | arch_send_wakeup_ipi_mask(cpumask_of(cpu)); |
JungHi Min | 911c29b | 2011-07-16 13:39:09 +0900 | [diff] [blame] | 378 | |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 379 | if (pen_release == -1) |
| 380 | break; |
| 381 | |
| 382 | udelay(10); |
| 383 | } |
| 384 | |
Bartlomiej Zolnierkiewicz | 9f294c1 | 2015-03-18 14:09:53 +0100 | [diff] [blame] | 385 | if (pen_release != -1) |
| 386 | ret = -ETIMEDOUT; |
| 387 | |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 388 | /* |
| 389 | * now the secondary core is starting up let it run its |
| 390 | * calibrations, then wait for it to finish |
| 391 | */ |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 392 | fail: |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 393 | spin_unlock(&boot_lock); |
| 394 | |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 395 | return pen_release != -1 ? ret : 0; |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 396 | } |
| 397 | |
Marc Zyngier | 06853ae | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 398 | static void __init exynos_smp_prepare_cpus(unsigned int max_cpus) |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 399 | { |
Tomasz Figa | 1f054f5 | 2012-11-24 11:13:48 +0900 | [diff] [blame] | 400 | int i; |
| 401 | |
Olof Johansson | 1754c42 | 2014-06-02 21:47:46 -0700 | [diff] [blame] | 402 | exynos_sysram_init(); |
| 403 | |
Krzysztof Kozlowski | 6f02497 | 2015-03-11 11:13:57 +0100 | [diff] [blame] | 404 | exynos_set_delayed_reset_assertion(true); |
| 405 | |
Russell King | af040ff | 2014-06-24 19:43:15 +0100 | [diff] [blame] | 406 | if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9) |
Pankaj Dubey | 3c33710 | 2018-05-10 13:02:54 +0200 | [diff] [blame] | 407 | exynos_scu_enable(); |
Russell King | 05c74a6 | 2010-12-03 11:09:48 +0000 | [diff] [blame] | 408 | |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 409 | /* |
Russell King | 05c74a6 | 2010-12-03 11:09:48 +0000 | [diff] [blame] | 410 | * Write the address of secondary startup into the |
| 411 | * system-wide flags register. The boot monitor waits |
| 412 | * until it receives a soft interrupt, and then the |
| 413 | * secondary CPU branches to this address. |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 414 | * |
| 415 | * Try using firmware operation first and fall back to |
| 416 | * boot register if it fails. |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 417 | */ |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 418 | for (i = 1; i < max_cpus; ++i) { |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 419 | unsigned long boot_addr; |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 420 | u32 mpidr; |
| 421 | u32 core_id; |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 422 | int ret; |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 423 | |
Tomasz Figa | 9637f30 | 2014-07-16 02:59:18 +0900 | [diff] [blame] | 424 | mpidr = cpu_logical_map(i); |
| 425 | core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0); |
Florian Fainelli | 64fc2a9 | 2017-01-15 03:59:29 +0100 | [diff] [blame] | 426 | boot_addr = __pa_symbol(exynos4_secondary_startup); |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 427 | |
Bartlomiej Zolnierkiewicz | 955d4cf | 2015-03-18 14:09:55 +0100 | [diff] [blame] | 428 | ret = exynos_set_boot_addr(core_id, boot_addr); |
| 429 | if (ret) |
Sachin Kamat | b3205de | 2014-05-13 07:13:44 +0900 | [diff] [blame] | 430 | break; |
Tomasz Figa | beddf63 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 431 | } |
Changhwan Youn | 2b12b5c | 2010-07-26 21:08:52 +0900 | [diff] [blame] | 432 | } |
Marc Zyngier | 06853ae | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 433 | |
Krzysztof Kozlowski | 6f0b7c0 | 2014-09-14 02:49:31 +0900 | [diff] [blame] | 434 | #ifdef CONFIG_HOTPLUG_CPU |
| 435 | /* |
| 436 | * platform-specific code to shutdown a CPU |
| 437 | * |
| 438 | * Called with IRQs disabled |
| 439 | */ |
Krzysztof Kozlowski | 27b9ee8 | 2014-09-14 02:49:32 +0900 | [diff] [blame] | 440 | static void exynos_cpu_die(unsigned int cpu) |
Krzysztof Kozlowski | 6f0b7c0 | 2014-09-14 02:49:31 +0900 | [diff] [blame] | 441 | { |
| 442 | int spurious = 0; |
Krzysztof Kozlowski | 13cfa6c | 2014-09-14 02:49:32 +0900 | [diff] [blame] | 443 | u32 mpidr = cpu_logical_map(cpu); |
| 444 | u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0); |
Krzysztof Kozlowski | 6f0b7c0 | 2014-09-14 02:49:31 +0900 | [diff] [blame] | 445 | |
| 446 | v7_exit_coherency_flush(louis); |
| 447 | |
| 448 | platform_do_lowpower(cpu, &spurious); |
| 449 | |
| 450 | /* |
| 451 | * bring this CPU back into the world of cache |
| 452 | * coherency, and then restore interrupts |
| 453 | */ |
Krzysztof Kozlowski | 13cfa6c | 2014-09-14 02:49:32 +0900 | [diff] [blame] | 454 | cpu_leave_lowpower(core_id); |
Krzysztof Kozlowski | 6f0b7c0 | 2014-09-14 02:49:31 +0900 | [diff] [blame] | 455 | |
| 456 | if (spurious) |
| 457 | pr_warn("CPU%u: %u spurious wakeup calls\n", cpu, spurious); |
| 458 | } |
| 459 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 460 | |
Masahiro Yamada | 7530527 | 2015-11-15 10:39:53 +0900 | [diff] [blame] | 461 | const struct smp_operations exynos_smp_ops __initconst = { |
Marc Zyngier | 06853ae | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 462 | .smp_prepare_cpus = exynos_smp_prepare_cpus, |
| 463 | .smp_secondary_init = exynos_secondary_init, |
| 464 | .smp_boot_secondary = exynos_boot_secondary, |
| 465 | #ifdef CONFIG_HOTPLUG_CPU |
| 466 | .cpu_die = exynos_cpu_die, |
| 467 | #endif |
| 468 | }; |