1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3 // http://www.samsung.com
5 // Cloned from linux/arch/arm/mach-vexpress/platsmp.c
7 // Copyright (C) 2002 ARM Ltd.
10 #include <linux/init.h>
11 #include <linux/errno.h>
12 #include <linux/delay.h>
13 #include <linux/jiffies.h>
14 #include <linux/smp.h>
16 #include <linux/of_address.h>
17 #include <linux/soc/samsung/exynos-regs-pmu.h>
19 #include <asm/cacheflush.h>
21 #include <asm/smp_plat.h>
22 #include <asm/smp_scu.h>
23 #include <asm/firmware.h>
29 extern void exynos4_secondary_startup(void);
31 #ifdef CONFIG_HOTPLUG_CPU
32 static inline void cpu_leave_lowpower(u32 core_id
)
37 "mrc p15, 0, %0, c1, c0, 0\n"
39 " mcr p15, 0, %0, c1, c0, 0\n"
40 " mrc p15, 0, %0, c1, c0, 1\n"
42 " mcr p15, 0, %0, c1, c0, 1\n"
44 : "Ir" (CR_C
), "Ir" (0x40)
48 static inline void platform_do_lowpower(unsigned int cpu
, int *spurious
)
50 u32 mpidr
= cpu_logical_map(cpu
);
51 u32 core_id
= MPIDR_AFFINITY_LEVEL(mpidr
, 0);
55 /* Turn the CPU off on next WFI instruction. */
56 exynos_cpu_power_down(core_id
);
60 if (pen_release
== core_id
) {
62 * OK, proper wakeup, we're done
68 * Getting here, means that we have come out of WFI without
69 * having been woken up - this shouldn't happen
71 * Just note it happening - when we're woken, we can report
77 #endif /* CONFIG_HOTPLUG_CPU */
80 * exynos_core_power_down : power down the specified cpu
81 * @cpu : the cpu to power down
83 * Power down the specified cpu. The sequence must be finished by a
84 * call to cpu_do_idle()
87 void exynos_cpu_power_down(int cpu
)
91 if (cpu
== 0 && (soc_is_exynos5420() || soc_is_exynos5800())) {
93 * Bypass power down for CPU0 during suspend. Check for
94 * the SYS_PWR_REG value to decide if we are suspending
97 int val
= pmu_raw_readl(EXYNOS5_ARM_CORE0_SYS_PWR_REG
);
99 if (!(val
& S5P_CORE_LOCAL_PWR_EN
))
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
));
109 * exynos_cpu_power_up : power up the specified cpu
110 * @cpu : the cpu to power up
112 * Power up the specified cpu
114 void exynos_cpu_power_up(int cpu
)
116 u32 core_conf
= S5P_CORE_LOCAL_PWR_EN
;
118 if (soc_is_exynos3250())
119 core_conf
|= S5P_CORE_AUTOWAKEUP_EN
;
121 pmu_raw_writel(core_conf
,
122 EXYNOS_ARM_CORE_CONFIGURATION(cpu
));
126 * exynos_cpu_power_state : returns the power state of the cpu
127 * @cpu : the cpu to retrieve the power state from
130 int exynos_cpu_power_state(int cpu
)
132 return (pmu_raw_readl(EXYNOS_ARM_CORE_STATUS(cpu
)) &
133 S5P_CORE_LOCAL_PWR_EN
);
137 * exynos_cluster_power_down : power down the specified cluster
138 * @cluster : the cluster to power down
140 void exynos_cluster_power_down(int cluster
)
142 pmu_raw_writel(0, EXYNOS_COMMON_CONFIGURATION(cluster
));
146 * exynos_cluster_power_up : power up the specified cluster
147 * @cluster : the cluster to power up
149 void exynos_cluster_power_up(int cluster
)
151 pmu_raw_writel(S5P_CORE_LOCAL_PWR_EN
,
152 EXYNOS_COMMON_CONFIGURATION(cluster
));
156 * exynos_cluster_power_state : returns the power state of the cluster
157 * @cluster : the cluster to retrieve the power state from
160 int exynos_cluster_power_state(int cluster
)
162 return (pmu_raw_readl(EXYNOS_COMMON_STATUS(cluster
)) &
163 S5P_CORE_LOCAL_PWR_EN
);
166 static void __iomem
*cpu_boot_reg_base(void)
168 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_1_1
)
169 return pmu_base_addr
+ S5P_INFORM5
;
170 return sysram_base_addr
;
173 static inline void __iomem
*cpu_boot_reg(int cpu
)
175 void __iomem
*boot_reg
;
177 boot_reg
= cpu_boot_reg_base();
179 return IOMEM_ERR_PTR(-ENODEV
);
180 if (soc_is_exynos4412())
182 else if (soc_is_exynos5420() || soc_is_exynos5800())
188 * Set wake up by local power mode and execute software reset for given core.
190 * Currently this is needed only when booting secondary CPU on Exynos3250.
192 void exynos_core_restart(u32 core_id
)
196 if (!of_machine_is_compatible("samsung,exynos3250"))
199 while (!pmu_raw_readl(S5P_PMU_SPARE2
))
203 val
= pmu_raw_readl(EXYNOS_ARM_CORE_STATUS(core_id
));
204 val
|= S5P_CORE_WAKEUP_FROM_LOCAL_CFG
;
205 pmu_raw_writel(val
, EXYNOS_ARM_CORE_STATUS(core_id
));
207 pmu_raw_writel(EXYNOS_CORE_PO_RESET(core_id
), EXYNOS_SWRESET
);
211 * Write pen_release in a way that is guaranteed to be visible to all
212 * observers, irrespective of whether they're taking part in coherency
213 * or not. This is necessary for the hotplug code to work reliably.
215 static void write_pen_release(int val
)
219 sync_cache_w(&pen_release
);
222 static void __iomem
*scu_base_addr(void)
224 return (void __iomem
*)(S5P_VA_SCU
);
227 static DEFINE_SPINLOCK(boot_lock
);
229 static void exynos_secondary_init(unsigned int cpu
)
232 * let the primary processor know we're out of the
233 * pen, then head off into the C entry point
235 write_pen_release(-1);
238 * Synchronise with the boot thread.
240 spin_lock(&boot_lock
);
241 spin_unlock(&boot_lock
);
244 int exynos_set_boot_addr(u32 core_id
, unsigned long boot_addr
)
249 * Try to set boot address using firmware first
250 * and fall back to boot register if it fails.
252 ret
= call_firmware_op(set_cpu_boot_addr
, core_id
, boot_addr
);
253 if (ret
&& ret
!= -ENOSYS
)
255 if (ret
== -ENOSYS
) {
256 void __iomem
*boot_reg
= cpu_boot_reg(core_id
);
258 if (IS_ERR(boot_reg
)) {
259 ret
= PTR_ERR(boot_reg
);
262 writel_relaxed(boot_addr
, boot_reg
);
269 int exynos_get_boot_addr(u32 core_id
, unsigned long *boot_addr
)
274 * Try to get boot address using firmware first
275 * and fall back to boot register if it fails.
277 ret
= call_firmware_op(get_cpu_boot_addr
, core_id
, boot_addr
);
278 if (ret
&& ret
!= -ENOSYS
)
280 if (ret
== -ENOSYS
) {
281 void __iomem
*boot_reg
= cpu_boot_reg(core_id
);
283 if (IS_ERR(boot_reg
)) {
284 ret
= PTR_ERR(boot_reg
);
287 *boot_addr
= readl_relaxed(boot_reg
);
294 static int exynos_boot_secondary(unsigned int cpu
, struct task_struct
*idle
)
296 unsigned long timeout
;
297 u32 mpidr
= cpu_logical_map(cpu
);
298 u32 core_id
= MPIDR_AFFINITY_LEVEL(mpidr
, 0);
302 * Set synchronisation state between this boot processor
303 * and the secondary one
305 spin_lock(&boot_lock
);
308 * The secondary processor is waiting to be released from
309 * the holding pen - release it, then wait for it to flag
310 * that it has been released by resetting pen_release.
312 * Note that "pen_release" is the hardware CPU core ID, whereas
313 * "cpu" is Linux's internal ID.
315 write_pen_release(core_id
);
317 if (!exynos_cpu_power_state(core_id
)) {
318 exynos_cpu_power_up(core_id
);
321 /* wait max 10 ms until cpu1 is on */
322 while (exynos_cpu_power_state(core_id
)
323 != S5P_CORE_LOCAL_PWR_EN
) {
331 printk(KERN_ERR
"cpu1 power enable failed");
332 spin_unlock(&boot_lock
);
337 exynos_core_restart(core_id
);
340 * Send the secondary CPU a soft interrupt, thereby causing
341 * the boot monitor to read the system wide flags register,
342 * and branch to the address found there.
345 timeout
= jiffies
+ (1 * HZ
);
346 while (time_before(jiffies
, timeout
)) {
347 unsigned long boot_addr
;
351 boot_addr
= __pa_symbol(exynos4_secondary_startup
);
353 ret
= exynos_set_boot_addr(core_id
, boot_addr
);
357 call_firmware_op(cpu_boot
, core_id
);
359 if (soc_is_exynos3250())
362 arch_send_wakeup_ipi_mask(cpumask_of(cpu
));
364 if (pen_release
== -1)
370 if (pen_release
!= -1)
374 * now the secondary core is starting up let it run its
375 * calibrations, then wait for it to finish
378 spin_unlock(&boot_lock
);
380 return pen_release
!= -1 ? ret
: 0;
383 static void __init
exynos_smp_prepare_cpus(unsigned int max_cpus
)
387 exynos_sysram_init();
389 exynos_set_delayed_reset_assertion(true);
391 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9
)
392 scu_enable(scu_base_addr());
395 * Write the address of secondary startup into the
396 * system-wide flags register. The boot monitor waits
397 * until it receives a soft interrupt, and then the
398 * secondary CPU branches to this address.
400 * Try using firmware operation first and fall back to
401 * boot register if it fails.
403 for (i
= 1; i
< max_cpus
; ++i
) {
404 unsigned long boot_addr
;
409 mpidr
= cpu_logical_map(i
);
410 core_id
= MPIDR_AFFINITY_LEVEL(mpidr
, 0);
411 boot_addr
= __pa_symbol(exynos4_secondary_startup
);
413 ret
= exynos_set_boot_addr(core_id
, boot_addr
);
419 #ifdef CONFIG_HOTPLUG_CPU
421 * platform-specific code to shutdown a CPU
423 * Called with IRQs disabled
425 static void exynos_cpu_die(unsigned int cpu
)
428 u32 mpidr
= cpu_logical_map(cpu
);
429 u32 core_id
= MPIDR_AFFINITY_LEVEL(mpidr
, 0);
431 v7_exit_coherency_flush(louis
);
433 platform_do_lowpower(cpu
, &spurious
);
436 * bring this CPU back into the world of cache
437 * coherency, and then restore interrupts
439 cpu_leave_lowpower(core_id
);
442 pr_warn("CPU%u: %u spurious wakeup calls\n", cpu
, spurious
);
444 #endif /* CONFIG_HOTPLUG_CPU */
446 const struct smp_operations exynos_smp_ops __initconst
= {
447 .smp_prepare_cpus
= exynos_smp_prepare_cpus
,
448 .smp_secondary_init
= exynos_secondary_init
,
449 .smp_boot_secondary
= exynos_boot_secondary
,
450 #ifdef CONFIG_HOTPLUG_CPU
451 .cpu_die
= exynos_cpu_die
,