blob: 7776922945afef77e0c47d9a7e893fc4f86c176d [file] [log] [blame]
Catalin Marinas08e875c2012-03-05 11:49:30 +00001/*
2 * SMP initialisation and IPI support
3 * Based on arch/arm/kernel/smp.c
4 *
5 * Copyright (C) 2012 ARM Ltd.
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 * 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, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <linux/delay.h>
21#include <linux/init.h>
22#include <linux/spinlock.h>
23#include <linux/sched.h>
24#include <linux/interrupt.h>
25#include <linux/cache.h>
26#include <linux/profile.h>
27#include <linux/errno.h>
28#include <linux/mm.h>
29#include <linux/err.h>
30#include <linux/cpu.h>
31#include <linux/smp.h>
32#include <linux/seq_file.h>
33#include <linux/irq.h>
34#include <linux/percpu.h>
35#include <linux/clockchips.h>
36#include <linux/completion.h>
37#include <linux/of.h>
38
39#include <asm/atomic.h>
40#include <asm/cacheflush.h>
41#include <asm/cputype.h>
42#include <asm/mmu_context.h>
43#include <asm/pgtable.h>
44#include <asm/pgalloc.h>
45#include <asm/processor.h>
46#include <asm/sections.h>
47#include <asm/tlbflush.h>
48#include <asm/ptrace.h>
Catalin Marinas08e875c2012-03-05 11:49:30 +000049
50/*
51 * as from 2.5, kernels no longer have an init_tasks structure
52 * so we need some other way of telling a new secondary core
53 * where to place its SVC stack
54 */
55struct secondary_data secondary_data;
56volatile unsigned long secondary_holding_pen_release = -1;
57
58enum ipi_msg_type {
59 IPI_RESCHEDULE,
60 IPI_CALL_FUNC,
61 IPI_CALL_FUNC_SINGLE,
62 IPI_CPU_STOP,
63};
64
65static DEFINE_RAW_SPINLOCK(boot_lock);
66
67/*
68 * Write secondary_holding_pen_release in a way that is guaranteed to be
69 * visible to all observers, irrespective of whether they're taking part
70 * in coherency or not. This is necessary for the hotplug code to work
71 * reliably.
72 */
73static void __cpuinit write_pen_release(int val)
74{
75 void *start = (void *)&secondary_holding_pen_release;
76 unsigned long size = sizeof(secondary_holding_pen_release);
77
78 secondary_holding_pen_release = val;
79 __flush_dcache_area(start, size);
80}
81
82/*
83 * Boot a secondary CPU, and assign it the specified idle task.
84 * This also gives us the initial stack to use for this CPU.
85 */
86static int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle)
87{
88 unsigned long timeout;
89
90 /*
91 * Set synchronisation state between this boot processor
92 * and the secondary one
93 */
94 raw_spin_lock(&boot_lock);
95
96 /*
97 * Update the pen release flag.
98 */
99 write_pen_release(cpu);
100
101 /*
102 * Send an event, causing the secondaries to read pen_release.
103 */
104 sev();
105
106 timeout = jiffies + (1 * HZ);
107 while (time_before(jiffies, timeout)) {
108 if (secondary_holding_pen_release == -1UL)
109 break;
110 udelay(10);
111 }
112
113 /*
114 * Now the secondary core is starting up let it run its
115 * calibrations, then wait for it to finish
116 */
117 raw_spin_unlock(&boot_lock);
118
119 return secondary_holding_pen_release != -1 ? -ENOSYS : 0;
120}
121
122static DECLARE_COMPLETION(cpu_running);
123
124int __cpuinit __cpu_up(unsigned int cpu, struct task_struct *idle)
125{
126 int ret;
127
128 /*
129 * We need to tell the secondary core where to find its stack and the
130 * page tables.
131 */
132 secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
133 __flush_dcache_area(&secondary_data, sizeof(secondary_data));
134
135 /*
136 * Now bring the CPU into our world.
137 */
138 ret = boot_secondary(cpu, idle);
139 if (ret == 0) {
140 /*
141 * CPU was successfully started, wait for it to come online or
142 * time out.
143 */
144 wait_for_completion_timeout(&cpu_running,
145 msecs_to_jiffies(1000));
146
147 if (!cpu_online(cpu)) {
148 pr_crit("CPU%u: failed to come online\n", cpu);
149 ret = -EIO;
150 }
151 } else {
152 pr_err("CPU%u: failed to boot: %d\n", cpu, ret);
153 }
154
155 secondary_data.stack = NULL;
156
157 return ret;
158}
159
160/*
161 * This is the secondary CPU boot entry. We're using this CPUs
162 * idle thread stack, but a set of temporary page tables.
163 */
164asmlinkage void __cpuinit secondary_start_kernel(void)
165{
166 struct mm_struct *mm = &init_mm;
167 unsigned int cpu = smp_processor_id();
168
169 printk("CPU%u: Booted secondary processor\n", cpu);
170
171 /*
172 * All kernel threads share the same mm context; grab a
173 * reference and switch to it.
174 */
175 atomic_inc(&mm->mm_count);
176 current->active_mm = mm;
177 cpumask_set_cpu(cpu, mm_cpumask(mm));
178
179 /*
180 * TTBR0 is only used for the identity mapping at this stage. Make it
181 * point to zero page to avoid speculatively fetching new entries.
182 */
183 cpu_set_reserved_ttbr0();
184 flush_tlb_all();
185
186 preempt_disable();
187 trace_hardirqs_off();
188
189 /*
190 * Let the primary processor know we're out of the
191 * pen, then head off into the C entry point
192 */
193 write_pen_release(-1);
194
195 /*
196 * Synchronise with the boot thread.
197 */
198 raw_spin_lock(&boot_lock);
199 raw_spin_unlock(&boot_lock);
200
201 /*
202 * Enable local interrupts.
203 */
204 notify_cpu_starting(cpu);
205 local_irq_enable();
206 local_fiq_enable();
207
208 /*
209 * OK, now it's safe to let the boot CPU continue. Wait for
210 * the CPU migration code to notice that the CPU is online
211 * before we continue.
212 */
213 set_cpu_online(cpu, true);
Will Deaconb3770b32012-11-07 17:00:05 +0000214 complete(&cpu_running);
Catalin Marinas08e875c2012-03-05 11:49:30 +0000215
216 /*
217 * OK, it's off to the idle thread for us
218 */
219 cpu_idle();
220}
221
222void __init smp_cpus_done(unsigned int max_cpus)
223{
224 unsigned long bogosum = loops_per_jiffy * num_online_cpus();
225
226 pr_info("SMP: Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
227 num_online_cpus(), bogosum / (500000/HZ),
228 (bogosum / (5000/HZ)) % 100);
229}
230
231void __init smp_prepare_boot_cpu(void)
232{
233}
234
235static void (*smp_cross_call)(const struct cpumask *, unsigned int);
Marc Zyngierd329de32013-01-02 15:24:22 +0000236
237static const struct smp_enable_ops *enable_ops[] __initconst = {
238 &smp_spin_table_ops,
239 NULL,
240};
241
242static const struct smp_enable_ops *smp_enable_ops[NR_CPUS];
243
244static const struct smp_enable_ops * __init smp_get_enable_ops(const char *name)
245{
246 const struct smp_enable_ops *ops = enable_ops[0];
247
248 while (ops) {
249 if (!strcmp(name, ops->name))
250 return ops;
251
252 ops++;
253 }
254
255 return NULL;
256}
Catalin Marinas08e875c2012-03-05 11:49:30 +0000257
258/*
259 * Enumerate the possible CPU set from the device tree.
260 */
261void __init smp_init_cpus(void)
262{
263 const char *enable_method;
264 struct device_node *dn = NULL;
265 int cpu = 0;
266
267 while ((dn = of_find_node_by_type(dn, "cpu"))) {
268 if (cpu >= NR_CPUS)
269 goto next;
270
271 /*
272 * We currently support only the "spin-table" enable-method.
273 */
274 enable_method = of_get_property(dn, "enable-method", NULL);
Marc Zyngierd329de32013-01-02 15:24:22 +0000275 if (!enable_method) {
276 pr_err("CPU %d: missing enable-method property\n", cpu);
277 goto next;
278 }
279
280 smp_enable_ops[cpu] = smp_get_enable_ops(enable_method);
281
282 if (!smp_enable_ops[cpu]) {
283 pr_err("CPU %d: invalid enable-method property: %s\n",
Catalin Marinas08e875c2012-03-05 11:49:30 +0000284 cpu, enable_method);
285 goto next;
286 }
287
Marc Zyngierd329de32013-01-02 15:24:22 +0000288 if (smp_enable_ops[cpu]->init_cpu(dn, cpu))
Catalin Marinas08e875c2012-03-05 11:49:30 +0000289 goto next;
Catalin Marinas08e875c2012-03-05 11:49:30 +0000290
291 set_cpu_possible(cpu, true);
292next:
293 cpu++;
294 }
295
296 /* sanity check */
297 if (cpu > NR_CPUS)
298 pr_warning("no. of cores (%d) greater than configured maximum of %d - clipping\n",
299 cpu, NR_CPUS);
300}
301
302void __init smp_prepare_cpus(unsigned int max_cpus)
303{
Marc Zyngierd329de32013-01-02 15:24:22 +0000304 int cpu, err;
Catalin Marinas08e875c2012-03-05 11:49:30 +0000305 unsigned int ncores = num_possible_cpus();
306
307 /*
308 * are we trying to boot more cores than exist?
309 */
310 if (max_cpus > ncores)
311 max_cpus = ncores;
312
Marc Zyngierd329de32013-01-02 15:24:22 +0000313 /* Don't bother if we're effectively UP */
314 if (max_cpus <= 1)
315 return;
316
Catalin Marinas08e875c2012-03-05 11:49:30 +0000317 /*
318 * Initialise the present map (which describes the set of CPUs
319 * actually populated at the present time) and release the
320 * secondaries from the bootloader.
Marc Zyngierd329de32013-01-02 15:24:22 +0000321 *
322 * Make sure we online at most (max_cpus - 1) additional CPUs.
Catalin Marinas08e875c2012-03-05 11:49:30 +0000323 */
Marc Zyngierd329de32013-01-02 15:24:22 +0000324 max_cpus--;
Catalin Marinas08e875c2012-03-05 11:49:30 +0000325 for_each_possible_cpu(cpu) {
326 if (max_cpus == 0)
327 break;
328
Marc Zyngierd329de32013-01-02 15:24:22 +0000329 if (cpu == smp_processor_id())
Catalin Marinas08e875c2012-03-05 11:49:30 +0000330 continue;
331
Marc Zyngierd329de32013-01-02 15:24:22 +0000332 if (!smp_enable_ops[cpu])
333 continue;
334
335 err = smp_enable_ops[cpu]->prepare_cpu(cpu);
336 if (err)
337 continue;
Catalin Marinas08e875c2012-03-05 11:49:30 +0000338
339 set_cpu_present(cpu, true);
340 max_cpus--;
341 }
Catalin Marinas08e875c2012-03-05 11:49:30 +0000342}
343
344
345void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
346{
347 smp_cross_call = fn;
348}
349
350void arch_send_call_function_ipi_mask(const struct cpumask *mask)
351{
352 smp_cross_call(mask, IPI_CALL_FUNC);
353}
354
355void arch_send_call_function_single_ipi(int cpu)
356{
357 smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE);
358}
359
360static const char *ipi_types[NR_IPI] = {
361#define S(x,s) [x - IPI_RESCHEDULE] = s
362 S(IPI_RESCHEDULE, "Rescheduling interrupts"),
363 S(IPI_CALL_FUNC, "Function call interrupts"),
364 S(IPI_CALL_FUNC_SINGLE, "Single function call interrupts"),
365 S(IPI_CPU_STOP, "CPU stop interrupts"),
366};
367
368void show_ipi_list(struct seq_file *p, int prec)
369{
370 unsigned int cpu, i;
371
372 for (i = 0; i < NR_IPI; i++) {
373 seq_printf(p, "%*s%u:%s", prec - 1, "IPI", i + IPI_RESCHEDULE,
374 prec >= 4 ? " " : "");
375 for_each_present_cpu(cpu)
376 seq_printf(p, "%10u ",
377 __get_irq_stat(cpu, ipi_irqs[i]));
378 seq_printf(p, " %s\n", ipi_types[i]);
379 }
380}
381
382u64 smp_irq_stat_cpu(unsigned int cpu)
383{
384 u64 sum = 0;
385 int i;
386
387 for (i = 0; i < NR_IPI; i++)
388 sum += __get_irq_stat(cpu, ipi_irqs[i]);
389
390 return sum;
391}
392
393static DEFINE_RAW_SPINLOCK(stop_lock);
394
395/*
396 * ipi_cpu_stop - handle IPI from smp_send_stop()
397 */
398static void ipi_cpu_stop(unsigned int cpu)
399{
400 if (system_state == SYSTEM_BOOTING ||
401 system_state == SYSTEM_RUNNING) {
402 raw_spin_lock(&stop_lock);
403 pr_crit("CPU%u: stopping\n", cpu);
404 dump_stack();
405 raw_spin_unlock(&stop_lock);
406 }
407
408 set_cpu_online(cpu, false);
409
410 local_fiq_disable();
411 local_irq_disable();
412
413 while (1)
414 cpu_relax();
415}
416
417/*
418 * Main handler for inter-processor interrupts
419 */
420void handle_IPI(int ipinr, struct pt_regs *regs)
421{
422 unsigned int cpu = smp_processor_id();
423 struct pt_regs *old_regs = set_irq_regs(regs);
424
425 if (ipinr >= IPI_RESCHEDULE && ipinr < IPI_RESCHEDULE + NR_IPI)
426 __inc_irq_stat(cpu, ipi_irqs[ipinr - IPI_RESCHEDULE]);
427
428 switch (ipinr) {
429 case IPI_RESCHEDULE:
430 scheduler_ipi();
431 break;
432
433 case IPI_CALL_FUNC:
434 irq_enter();
435 generic_smp_call_function_interrupt();
436 irq_exit();
437 break;
438
439 case IPI_CALL_FUNC_SINGLE:
440 irq_enter();
441 generic_smp_call_function_single_interrupt();
442 irq_exit();
443 break;
444
445 case IPI_CPU_STOP:
446 irq_enter();
447 ipi_cpu_stop(cpu);
448 irq_exit();
449 break;
450
451 default:
452 pr_crit("CPU%u: Unknown IPI message 0x%x\n", cpu, ipinr);
453 break;
454 }
455 set_irq_regs(old_regs);
456}
457
458void smp_send_reschedule(int cpu)
459{
460 smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
461}
462
463void smp_send_stop(void)
464{
465 unsigned long timeout;
466
467 if (num_online_cpus() > 1) {
468 cpumask_t mask;
469
470 cpumask_copy(&mask, cpu_online_mask);
471 cpu_clear(smp_processor_id(), mask);
472
473 smp_cross_call(&mask, IPI_CPU_STOP);
474 }
475
476 /* Wait up to one second for other CPUs to stop */
477 timeout = USEC_PER_SEC;
478 while (num_online_cpus() > 1 && timeout--)
479 udelay(1);
480
481 if (num_online_cpus() > 1)
482 pr_warning("SMP: failed to stop secondary CPUs\n");
483}
484
485/*
486 * not supported here
487 */
488int setup_profiling_timer(unsigned int multiplier)
489{
490 return -EINVAL;
491}