blob: 0908f96278c4ea6f84f0d08509f379a2333bc3a8 [file] [log] [blame]
Nicolas Pitree8db2882012-04-12 02:45:22 -04001/*
2 * arch/arm/common/mcpm_entry.c -- entry point for multi-cluster PM
3 *
4 * Created by: Nicolas Pitre, March 2012
5 * Copyright: (C) 2012-2013 Linaro Limited
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 version 2 as
9 * published by the Free Software Foundation.
10 */
11
Nicolas Pitre7c2b8602012-09-20 16:05:37 -040012#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/irqflags.h>
Nicolas Pitre37219242014-06-24 18:32:51 +010015#include <linux/cpu_pm.h>
Nicolas Pitre7c2b8602012-09-20 16:05:37 -040016
Nicolas Pitree8db2882012-04-12 02:45:22 -040017#include <asm/mcpm.h>
18#include <asm/cacheflush.h>
Nicolas Pitre7c2b8602012-09-20 16:05:37 -040019#include <asm/idmap.h>
Dave Martin7fe31d22012-07-17 14:25:42 +010020#include <asm/cputype.h>
Nicolas Pitre37219242014-06-24 18:32:51 +010021#include <asm/suspend.h>
Nicolas Pitree8db2882012-04-12 02:45:22 -040022
23extern unsigned long mcpm_entry_vectors[MAX_NR_CLUSTERS][MAX_CPUS_PER_CLUSTER];
24
25void mcpm_set_entry_vector(unsigned cpu, unsigned cluster, void *ptr)
26{
27 unsigned long val = ptr ? virt_to_phys(ptr) : 0;
28 mcpm_entry_vectors[cluster][cpu] = val;
29 sync_cache_w(&mcpm_entry_vectors[cluster][cpu]);
30}
Nicolas Pitre7c2b8602012-09-20 16:05:37 -040031
Nicolas Pitrede885d12012-11-27 23:11:20 -050032extern unsigned long mcpm_entry_early_pokes[MAX_NR_CLUSTERS][MAX_CPUS_PER_CLUSTER][2];
33
34void mcpm_set_early_poke(unsigned cpu, unsigned cluster,
35 unsigned long poke_phys_addr, unsigned long poke_val)
36{
37 unsigned long *poke = &mcpm_entry_early_pokes[cluster][cpu][0];
38 poke[0] = poke_phys_addr;
39 poke[1] = poke_val;
Nicolas Pitreefcfc462013-12-09 16:10:18 +010040 __sync_cache_range_w(poke, 2 * sizeof(*poke));
Nicolas Pitrede885d12012-11-27 23:11:20 -050041}
42
Nicolas Pitre7c2b8602012-09-20 16:05:37 -040043static const struct mcpm_platform_ops *platform_ops;
44
45int __init mcpm_platform_register(const struct mcpm_platform_ops *ops)
46{
47 if (platform_ops)
48 return -EBUSY;
49 platform_ops = ops;
50 return 0;
51}
52
Nicolas Pitre4530e4b2014-04-22 00:25:35 +010053bool mcpm_is_available(void)
54{
55 return (platform_ops) ? true : false;
56}
57
Nicolas Pitred3a87542015-03-11 18:16:13 -040058/*
59 * We can't use regular spinlocks. In the switcher case, it is possible
60 * for an outbound CPU to call power_down() after its inbound counterpart
61 * is already live using the same logical CPU number which trips lockdep
62 * debugging.
63 */
64static arch_spinlock_t mcpm_lock = __ARCH_SPIN_LOCK_UNLOCKED;
65
66static int mcpm_cpu_use_count[MAX_NR_CLUSTERS][MAX_CPUS_PER_CLUSTER];
67
68static inline bool mcpm_cluster_unused(unsigned int cluster)
69{
70 int i, cnt;
71 for (i = 0, cnt = 0; i < MAX_CPUS_PER_CLUSTER; i++)
72 cnt |= mcpm_cpu_use_count[cluster][i];
73 return !cnt;
74}
75
Nicolas Pitre7c2b8602012-09-20 16:05:37 -040076int mcpm_cpu_power_up(unsigned int cpu, unsigned int cluster)
77{
Nicolas Pitred3a87542015-03-11 18:16:13 -040078 bool cpu_is_down, cluster_is_down;
79 int ret = 0;
80
Nicolas Pitre77404d82015-04-28 13:44:00 -040081 pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
Nicolas Pitre7c2b8602012-09-20 16:05:37 -040082 if (!platform_ops)
83 return -EUNATCH; /* try not to shadow power_up errors */
84 might_sleep();
Nicolas Pitred3a87542015-03-11 18:16:13 -040085
Nicolas Pitred3a87542015-03-11 18:16:13 -040086 /*
87 * Since this is called with IRQs enabled, and no arch_spin_lock_irq
88 * variant exists, we need to disable IRQs manually here.
89 */
90 local_irq_disable();
91 arch_spin_lock(&mcpm_lock);
92
93 cpu_is_down = !mcpm_cpu_use_count[cluster][cpu];
94 cluster_is_down = mcpm_cluster_unused(cluster);
95
96 mcpm_cpu_use_count[cluster][cpu]++;
97 /*
98 * The only possible values are:
99 * 0 = CPU down
100 * 1 = CPU (still) up
101 * 2 = CPU requested to be up before it had a chance
102 * to actually make itself down.
103 * Any other value is a bug.
104 */
105 BUG_ON(mcpm_cpu_use_count[cluster][cpu] != 1 &&
106 mcpm_cpu_use_count[cluster][cpu] != 2);
107
108 if (cluster_is_down)
109 ret = platform_ops->cluster_powerup(cluster);
110 if (cpu_is_down && !ret)
111 ret = platform_ops->cpu_powerup(cpu, cluster);
112
113 arch_spin_unlock(&mcpm_lock);
114 local_irq_enable();
115 return ret;
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400116}
117
118typedef void (*phys_reset_t)(unsigned long);
119
120void mcpm_cpu_power_down(void)
121{
Nicolas Pitred3a87542015-03-11 18:16:13 -0400122 unsigned int mpidr, cpu, cluster;
123 bool cpu_going_down, last_man;
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400124 phys_reset_t phys_reset;
125
Nicolas Pitred3a87542015-03-11 18:16:13 -0400126 mpidr = read_cpuid_mpidr();
127 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
128 cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
129 pr_debug("%s: cpu %u cluster %u\n", __func__, cpu, cluster);
Nicolas Pitre77404d82015-04-28 13:44:00 -0400130 if (WARN_ON_ONCE(!platform_ops))
131 return;
132 BUG_ON(!irqs_disabled());
133
134 setup_mm_for_reboot();
Nicolas Pitred3a87542015-03-11 18:16:13 -0400135
136 __mcpm_cpu_going_down(cpu, cluster);
Nicolas Pitred3a87542015-03-11 18:16:13 -0400137 arch_spin_lock(&mcpm_lock);
138 BUG_ON(__mcpm_cluster_state(cluster) != CLUSTER_UP);
139
140 mcpm_cpu_use_count[cluster][cpu]--;
141 BUG_ON(mcpm_cpu_use_count[cluster][cpu] != 0 &&
142 mcpm_cpu_use_count[cluster][cpu] != 1);
143 cpu_going_down = !mcpm_cpu_use_count[cluster][cpu];
144 last_man = mcpm_cluster_unused(cluster);
145
146 if (last_man && __mcpm_outbound_enter_critical(cpu, cluster)) {
147 platform_ops->cpu_powerdown_prepare(cpu, cluster);
148 platform_ops->cluster_powerdown_prepare(cluster);
149 arch_spin_unlock(&mcpm_lock);
150 platform_ops->cluster_cache_disable();
151 __mcpm_outbound_leave_critical(cluster, CLUSTER_DOWN);
152 } else {
153 if (cpu_going_down)
154 platform_ops->cpu_powerdown_prepare(cpu, cluster);
155 arch_spin_unlock(&mcpm_lock);
156 /*
157 * If cpu_going_down is false here, that means a power_up
158 * request raced ahead of us. Even if we do not want to
159 * shut this CPU down, the caller still expects execution
160 * to return through the system resume entry path, like
161 * when the WFI is aborted due to a new IRQ or the like..
162 * So let's continue with cache cleaning in all cases.
163 */
164 platform_ops->cpu_cache_disable();
165 }
166
167 __mcpm_cpu_down(cpu, cluster);
168
169 /* Now we are prepared for power-down, do it: */
170 if (cpu_going_down)
171 wfi();
172
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400173 /*
174 * It is possible for a power_up request to happen concurrently
175 * with a power_down request for the same CPU. In this case the
Nicolas Pitred3a87542015-03-11 18:16:13 -0400176 * CPU might not be able to actually enter a powered down state
177 * with the WFI instruction if the power_up request has removed
178 * the required reset condition. We must perform a re-entry in
179 * the kernel as if the power_up method just had deasserted reset
180 * on the CPU.
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400181 */
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400182 phys_reset = (phys_reset_t)(unsigned long)virt_to_phys(cpu_reset);
183 phys_reset(virt_to_phys(mcpm_entry_point));
184
185 /* should never get here */
186 BUG();
187}
188
Dave Martin166aaf32014-04-17 16:58:39 +0100189int mcpm_wait_for_cpu_powerdown(unsigned int cpu, unsigned int cluster)
Dave Martin0de0d642013-10-01 19:58:17 +0100190{
191 int ret;
192
Dave Martin166aaf32014-04-17 16:58:39 +0100193 if (WARN_ON_ONCE(!platform_ops || !platform_ops->wait_for_powerdown))
Dave Martin0de0d642013-10-01 19:58:17 +0100194 return -EUNATCH;
195
Dave Martin166aaf32014-04-17 16:58:39 +0100196 ret = platform_ops->wait_for_powerdown(cpu, cluster);
Dave Martin0de0d642013-10-01 19:58:17 +0100197 if (ret)
198 pr_warn("%s: cpu %u, cluster %u failed to power down (%d)\n",
199 __func__, cpu, cluster, ret);
200
201 return ret;
202}
203
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400204void mcpm_cpu_suspend(u64 expected_residency)
205{
Nicolas Pitred3a87542015-03-11 18:16:13 -0400206 if (WARN_ON_ONCE(!platform_ops))
Nicolas Pitred0cdef62013-09-25 23:26:24 +0100207 return;
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400208
Nicolas Pitred3a87542015-03-11 18:16:13 -0400209 /* Some platforms might have to enable special resume modes, etc. */
210 if (platform_ops->cpu_suspend_prepare) {
211 unsigned int mpidr = read_cpuid_mpidr();
212 unsigned int cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
213 unsigned int cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
214 arch_spin_lock(&mcpm_lock);
215 platform_ops->cpu_suspend_prepare(cpu, cluster);
216 arch_spin_unlock(&mcpm_lock);
217 }
218 mcpm_cpu_power_down();
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400219}
220
221int mcpm_cpu_powered_up(void)
222{
Nicolas Pitred3a87542015-03-11 18:16:13 -0400223 unsigned int mpidr, cpu, cluster;
224 bool cpu_was_down, first_man;
225 unsigned long flags;
226
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400227 if (!platform_ops)
228 return -EUNATCH;
Nicolas Pitred3a87542015-03-11 18:16:13 -0400229
Nicolas Pitred3a87542015-03-11 18:16:13 -0400230 mpidr = read_cpuid_mpidr();
231 cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
232 cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
233 local_irq_save(flags);
234 arch_spin_lock(&mcpm_lock);
235
236 cpu_was_down = !mcpm_cpu_use_count[cluster][cpu];
237 first_man = mcpm_cluster_unused(cluster);
238
239 if (first_man && platform_ops->cluster_is_up)
240 platform_ops->cluster_is_up(cluster);
241 if (cpu_was_down)
242 mcpm_cpu_use_count[cluster][cpu] = 1;
243 if (platform_ops->cpu_is_up)
244 platform_ops->cpu_is_up(cpu, cluster);
245
246 arch_spin_unlock(&mcpm_lock);
247 local_irq_restore(flags);
248
Nicolas Pitre7c2b8602012-09-20 16:05:37 -0400249 return 0;
250}
Dave Martin7fe31d22012-07-17 14:25:42 +0100251
Nicolas Pitre37219242014-06-24 18:32:51 +0100252#ifdef CONFIG_ARM_CPU_SUSPEND
253
254static int __init nocache_trampoline(unsigned long _arg)
255{
256 void (*cache_disable)(void) = (void *)_arg;
257 unsigned int mpidr = read_cpuid_mpidr();
258 unsigned int cpu = MPIDR_AFFINITY_LEVEL(mpidr, 0);
259 unsigned int cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
260 phys_reset_t phys_reset;
261
262 mcpm_set_entry_vector(cpu, cluster, cpu_resume);
263 setup_mm_for_reboot();
264
265 __mcpm_cpu_going_down(cpu, cluster);
266 BUG_ON(!__mcpm_outbound_enter_critical(cpu, cluster));
267 cache_disable();
268 __mcpm_outbound_leave_critical(cluster, CLUSTER_DOWN);
269 __mcpm_cpu_down(cpu, cluster);
270
271 phys_reset = (phys_reset_t)(unsigned long)virt_to_phys(cpu_reset);
272 phys_reset(virt_to_phys(mcpm_entry_point));
273 BUG();
274}
275
276int __init mcpm_loopback(void (*cache_disable)(void))
277{
278 int ret;
279
280 /*
281 * We're going to soft-restart the current CPU through the
282 * low-level MCPM code by leveraging the suspend/resume
283 * infrastructure. Let's play it safe by using cpu_pm_enter()
284 * in case the CPU init code path resets the VFP or similar.
285 */
286 local_irq_disable();
287 local_fiq_disable();
288 ret = cpu_pm_enter();
289 if (!ret) {
290 ret = cpu_suspend((unsigned long)cache_disable, nocache_trampoline);
291 cpu_pm_exit();
292 }
293 local_fiq_enable();
294 local_irq_enable();
295 if (ret)
296 pr_err("%s returned %d\n", __func__, ret);
297 return ret;
298}
299
300#endif
301
Dave Martin7fe31d22012-07-17 14:25:42 +0100302struct sync_struct mcpm_sync;
303
304/*
305 * __mcpm_cpu_going_down: Indicates that the cpu is being torn down.
306 * This must be called at the point of committing to teardown of a CPU.
307 * The CPU cache (SCTRL.C bit) is expected to still be active.
308 */
309void __mcpm_cpu_going_down(unsigned int cpu, unsigned int cluster)
310{
311 mcpm_sync.clusters[cluster].cpus[cpu].cpu = CPU_GOING_DOWN;
312 sync_cache_w(&mcpm_sync.clusters[cluster].cpus[cpu].cpu);
313}
314
315/*
316 * __mcpm_cpu_down: Indicates that cpu teardown is complete and that the
317 * cluster can be torn down without disrupting this CPU.
318 * To avoid deadlocks, this must be called before a CPU is powered down.
319 * The CPU cache (SCTRL.C bit) is expected to be off.
320 * However L2 cache might or might not be active.
321 */
322void __mcpm_cpu_down(unsigned int cpu, unsigned int cluster)
323{
324 dmb();
325 mcpm_sync.clusters[cluster].cpus[cpu].cpu = CPU_DOWN;
326 sync_cache_w(&mcpm_sync.clusters[cluster].cpus[cpu].cpu);
Will Deacon03aa6582013-12-10 20:12:27 +0100327 sev();
Dave Martin7fe31d22012-07-17 14:25:42 +0100328}
329
330/*
331 * __mcpm_outbound_leave_critical: Leave the cluster teardown critical section.
332 * @state: the final state of the cluster:
333 * CLUSTER_UP: no destructive teardown was done and the cluster has been
334 * restored to the previous state (CPU cache still active); or
335 * CLUSTER_DOWN: the cluster has been torn-down, ready for power-off
336 * (CPU cache disabled, L2 cache either enabled or disabled).
337 */
338void __mcpm_outbound_leave_critical(unsigned int cluster, int state)
339{
340 dmb();
341 mcpm_sync.clusters[cluster].cluster = state;
342 sync_cache_w(&mcpm_sync.clusters[cluster].cluster);
Will Deacon03aa6582013-12-10 20:12:27 +0100343 sev();
Dave Martin7fe31d22012-07-17 14:25:42 +0100344}
345
346/*
347 * __mcpm_outbound_enter_critical: Enter the cluster teardown critical section.
348 * This function should be called by the last man, after local CPU teardown
349 * is complete. CPU cache expected to be active.
350 *
351 * Returns:
352 * false: the critical section was not entered because an inbound CPU was
353 * observed, or the cluster is already being set up;
354 * true: the critical section was entered: it is now safe to tear down the
355 * cluster.
356 */
357bool __mcpm_outbound_enter_critical(unsigned int cpu, unsigned int cluster)
358{
359 unsigned int i;
360 struct mcpm_sync_struct *c = &mcpm_sync.clusters[cluster];
361
362 /* Warn inbound CPUs that the cluster is being torn down: */
363 c->cluster = CLUSTER_GOING_DOWN;
364 sync_cache_w(&c->cluster);
365
366 /* Back out if the inbound cluster is already in the critical region: */
367 sync_cache_r(&c->inbound);
368 if (c->inbound == INBOUND_COMING_UP)
369 goto abort;
370
371 /*
372 * Wait for all CPUs to get out of the GOING_DOWN state, so that local
373 * teardown is complete on each CPU before tearing down the cluster.
374 *
375 * If any CPU has been woken up again from the DOWN state, then we
376 * shouldn't be taking the cluster down at all: abort in that case.
377 */
378 sync_cache_r(&c->cpus);
379 for (i = 0; i < MAX_CPUS_PER_CLUSTER; i++) {
380 int cpustate;
381
382 if (i == cpu)
383 continue;
384
385 while (1) {
386 cpustate = c->cpus[i].cpu;
387 if (cpustate != CPU_GOING_DOWN)
388 break;
389
390 wfe();
391 sync_cache_r(&c->cpus[i].cpu);
392 }
393
394 switch (cpustate) {
395 case CPU_DOWN:
396 continue;
397
398 default:
399 goto abort;
400 }
401 }
402
403 return true;
404
405abort:
406 __mcpm_outbound_leave_critical(cluster, CLUSTER_UP);
407 return false;
408}
409
410int __mcpm_cluster_state(unsigned int cluster)
411{
412 sync_cache_r(&mcpm_sync.clusters[cluster].cluster);
413 return mcpm_sync.clusters[cluster].cluster;
414}
415
416extern unsigned long mcpm_power_up_setup_phys;
417
418int __init mcpm_sync_init(
419 void (*power_up_setup)(unsigned int affinity_level))
420{
421 unsigned int i, j, mpidr, this_cluster;
422
423 BUILD_BUG_ON(MCPM_SYNC_CLUSTER_SIZE * MAX_NR_CLUSTERS != sizeof mcpm_sync);
424 BUG_ON((unsigned long)&mcpm_sync & (__CACHE_WRITEBACK_GRANULE - 1));
425
426 /*
427 * Set initial CPU and cluster states.
428 * Only one cluster is assumed to be active at this point.
429 */
430 for (i = 0; i < MAX_NR_CLUSTERS; i++) {
431 mcpm_sync.clusters[i].cluster = CLUSTER_DOWN;
432 mcpm_sync.clusters[i].inbound = INBOUND_NOT_COMING_UP;
433 for (j = 0; j < MAX_CPUS_PER_CLUSTER; j++)
434 mcpm_sync.clusters[i].cpus[j].cpu = CPU_DOWN;
435 }
436 mpidr = read_cpuid_mpidr();
437 this_cluster = MPIDR_AFFINITY_LEVEL(mpidr, 1);
Nicolas Pitred3a87542015-03-11 18:16:13 -0400438 for_each_online_cpu(i) {
439 mcpm_cpu_use_count[this_cluster][i] = 1;
Dave Martin7fe31d22012-07-17 14:25:42 +0100440 mcpm_sync.clusters[this_cluster].cpus[i].cpu = CPU_UP;
Nicolas Pitred3a87542015-03-11 18:16:13 -0400441 }
Dave Martin7fe31d22012-07-17 14:25:42 +0100442 mcpm_sync.clusters[this_cluster].cluster = CLUSTER_UP;
443 sync_cache_w(&mcpm_sync);
444
445 if (power_up_setup) {
446 mcpm_power_up_setup_phys = virt_to_phys(power_up_setup);
447 sync_cache_w(&mcpm_power_up_setup_phys);
448 }
449
450 return 0;
451}