ARM: 7536/1: smp: Formalize an IPI for wakeup
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / kernel / smp.c
1 /*
2 * linux/arch/arm/kernel/smp.c
3 *
4 * Copyright (C) 2002 ARM Limited, All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #include <linux/module.h>
11 #include <linux/delay.h>
12 #include <linux/init.h>
13 #include <linux/spinlock.h>
14 #include <linux/sched.h>
15 #include <linux/interrupt.h>
16 #include <linux/cache.h>
17 #include <linux/profile.h>
18 #include <linux/errno.h>
19 #include <linux/mm.h>
20 #include <linux/err.h>
21 #include <linux/cpu.h>
22 #include <linux/smp.h>
23 #include <linux/seq_file.h>
24 #include <linux/irq.h>
25 #include <linux/percpu.h>
26 #include <linux/clockchips.h>
27 #include <linux/completion.h>
28
29 #include <linux/atomic.h>
30 #include <asm/cacheflush.h>
31 #include <asm/cpu.h>
32 #include <asm/cputype.h>
33 #include <asm/exception.h>
34 #include <asm/idmap.h>
35 #include <asm/topology.h>
36 #include <asm/mmu_context.h>
37 #include <asm/pgtable.h>
38 #include <asm/pgalloc.h>
39 #include <asm/processor.h>
40 #include <asm/sections.h>
41 #include <asm/tlbflush.h>
42 #include <asm/ptrace.h>
43 #include <asm/localtimer.h>
44 #include <asm/smp_plat.h>
45
46 /*
47 * as from 2.5, kernels no longer have an init_tasks structure
48 * so we need some other way of telling a new secondary core
49 * where to place its SVC stack
50 */
51 struct secondary_data secondary_data;
52
53 enum ipi_msg_type {
54 IPI_WAKEUP,
55 IPI_TIMER,
56 IPI_RESCHEDULE,
57 IPI_CALL_FUNC,
58 IPI_CALL_FUNC_SINGLE,
59 IPI_CPU_STOP,
60 };
61
62 static DECLARE_COMPLETION(cpu_running);
63
64 int __cpuinit __cpu_up(unsigned int cpu, struct task_struct *idle)
65 {
66 int ret;
67
68 /*
69 * We need to tell the secondary core where to find
70 * its stack and the page tables.
71 */
72 secondary_data.stack = task_stack_page(idle) + THREAD_START_SP;
73 secondary_data.pgdir = virt_to_phys(idmap_pgd);
74 secondary_data.swapper_pg_dir = virt_to_phys(swapper_pg_dir);
75 __cpuc_flush_dcache_area(&secondary_data, sizeof(secondary_data));
76 outer_clean_range(__pa(&secondary_data), __pa(&secondary_data + 1));
77
78 /*
79 * Now bring the CPU into our world.
80 */
81 ret = boot_secondary(cpu, idle);
82 if (ret == 0) {
83 /*
84 * CPU was successfully started, wait for it
85 * to come online or time out.
86 */
87 wait_for_completion_timeout(&cpu_running,
88 msecs_to_jiffies(1000));
89
90 if (!cpu_online(cpu)) {
91 pr_crit("CPU%u: failed to come online\n", cpu);
92 ret = -EIO;
93 }
94 } else {
95 pr_err("CPU%u: failed to boot: %d\n", cpu, ret);
96 }
97
98 secondary_data.stack = NULL;
99 secondary_data.pgdir = 0;
100
101 return ret;
102 }
103
104 #ifdef CONFIG_HOTPLUG_CPU
105 static void percpu_timer_stop(void);
106
107 /*
108 * __cpu_disable runs on the processor to be shutdown.
109 */
110 int __cpu_disable(void)
111 {
112 unsigned int cpu = smp_processor_id();
113 int ret;
114
115 ret = platform_cpu_disable(cpu);
116 if (ret)
117 return ret;
118
119 /*
120 * Take this CPU offline. Once we clear this, we can't return,
121 * and we must not schedule until we're ready to give up the cpu.
122 */
123 set_cpu_online(cpu, false);
124
125 /*
126 * OK - migrate IRQs away from this CPU
127 */
128 migrate_irqs();
129
130 /*
131 * Stop the local timer for this CPU.
132 */
133 percpu_timer_stop();
134
135 /*
136 * Flush user cache and TLB mappings, and then remove this CPU
137 * from the vm mask set of all processes.
138 */
139 flush_cache_all();
140 local_flush_tlb_all();
141
142 clear_tasks_mm_cpumask(cpu);
143
144 return 0;
145 }
146
147 static DECLARE_COMPLETION(cpu_died);
148
149 /*
150 * called on the thread which is asking for a CPU to be shutdown -
151 * waits until shutdown has completed, or it is timed out.
152 */
153 void __cpu_die(unsigned int cpu)
154 {
155 if (!wait_for_completion_timeout(&cpu_died, msecs_to_jiffies(5000))) {
156 pr_err("CPU%u: cpu didn't die\n", cpu);
157 return;
158 }
159 printk(KERN_NOTICE "CPU%u: shutdown\n", cpu);
160
161 if (!platform_cpu_kill(cpu))
162 printk("CPU%u: unable to kill\n", cpu);
163 }
164
165 /*
166 * Called from the idle thread for the CPU which has been shutdown.
167 *
168 * Note that we disable IRQs here, but do not re-enable them
169 * before returning to the caller. This is also the behaviour
170 * of the other hotplug-cpu capable cores, so presumably coming
171 * out of idle fixes this.
172 */
173 void __ref cpu_die(void)
174 {
175 unsigned int cpu = smp_processor_id();
176
177 idle_task_exit();
178
179 local_irq_disable();
180 mb();
181
182 /* Tell __cpu_die() that this CPU is now safe to dispose of */
183 RCU_NONIDLE(complete(&cpu_died));
184
185 /*
186 * actual CPU shutdown procedure is at least platform (if not
187 * CPU) specific.
188 */
189 platform_cpu_die(cpu);
190
191 /*
192 * Do not return to the idle loop - jump back to the secondary
193 * cpu initialisation. There's some initialisation which needs
194 * to be repeated to undo the effects of taking the CPU offline.
195 */
196 __asm__("mov sp, %0\n"
197 " mov fp, #0\n"
198 " b secondary_start_kernel"
199 :
200 : "r" (task_stack_page(current) + THREAD_SIZE - 8));
201 }
202 #endif /* CONFIG_HOTPLUG_CPU */
203
204 /*
205 * Called by both boot and secondaries to move global data into
206 * per-processor storage.
207 */
208 static void __cpuinit smp_store_cpu_info(unsigned int cpuid)
209 {
210 struct cpuinfo_arm *cpu_info = &per_cpu(cpu_data, cpuid);
211
212 cpu_info->loops_per_jiffy = loops_per_jiffy;
213
214 store_cpu_topology(cpuid);
215 }
216
217 static void percpu_timer_setup(void);
218
219 /*
220 * This is the secondary CPU boot entry. We're using this CPUs
221 * idle thread stack, but a set of temporary page tables.
222 */
223 asmlinkage void __cpuinit secondary_start_kernel(void)
224 {
225 struct mm_struct *mm = &init_mm;
226 unsigned int cpu = smp_processor_id();
227
228 /*
229 * All kernel threads share the same mm context; grab a
230 * reference and switch to it.
231 */
232 atomic_inc(&mm->mm_count);
233 current->active_mm = mm;
234 cpumask_set_cpu(cpu, mm_cpumask(mm));
235 cpu_switch_mm(mm->pgd, mm);
236 enter_lazy_tlb(mm, current);
237 local_flush_tlb_all();
238
239 printk("CPU%u: Booted secondary processor\n", cpu);
240
241 cpu_init();
242 preempt_disable();
243 trace_hardirqs_off();
244
245 /*
246 * Give the platform a chance to do its own initialisation.
247 */
248 platform_secondary_init(cpu);
249
250 notify_cpu_starting(cpu);
251
252 calibrate_delay();
253
254 smp_store_cpu_info(cpu);
255
256 /*
257 * OK, now it's safe to let the boot CPU continue. Wait for
258 * the CPU migration code to notice that the CPU is online
259 * before we continue - which happens after __cpu_up returns.
260 */
261 set_cpu_online(cpu, true);
262 complete(&cpu_running);
263
264 /*
265 * Setup the percpu timer for this CPU.
266 */
267 percpu_timer_setup();
268
269 local_irq_enable();
270 local_fiq_enable();
271
272 /*
273 * OK, it's off to the idle thread for us
274 */
275 cpu_idle();
276 }
277
278 void __init smp_cpus_done(unsigned int max_cpus)
279 {
280 int cpu;
281 unsigned long bogosum = 0;
282
283 for_each_online_cpu(cpu)
284 bogosum += per_cpu(cpu_data, cpu).loops_per_jiffy;
285
286 printk(KERN_INFO "SMP: Total of %d processors activated "
287 "(%lu.%02lu BogoMIPS).\n",
288 num_online_cpus(),
289 bogosum / (500000/HZ),
290 (bogosum / (5000/HZ)) % 100);
291 }
292
293 void __init smp_prepare_boot_cpu(void)
294 {
295 }
296
297 void __init smp_prepare_cpus(unsigned int max_cpus)
298 {
299 unsigned int ncores = num_possible_cpus();
300
301 init_cpu_topology();
302
303 smp_store_cpu_info(smp_processor_id());
304
305 /*
306 * are we trying to boot more cores than exist?
307 */
308 if (max_cpus > ncores)
309 max_cpus = ncores;
310 if (ncores > 1 && max_cpus) {
311 /*
312 * Enable the local timer or broadcast device for the
313 * boot CPU, but only if we have more than one CPU.
314 */
315 percpu_timer_setup();
316
317 /*
318 * Initialise the present map, which describes the set of CPUs
319 * actually populated at the present time. A platform should
320 * re-initialize the map in platform_smp_prepare_cpus() if
321 * present != possible (e.g. physical hotplug).
322 */
323 init_cpu_present(cpu_possible_mask);
324
325 /*
326 * Initialise the SCU if there are more than one CPU
327 * and let them know where to start.
328 */
329 platform_smp_prepare_cpus(max_cpus);
330 }
331 }
332
333 static void (*smp_cross_call)(const struct cpumask *, unsigned int);
334
335 void __init set_smp_cross_call(void (*fn)(const struct cpumask *, unsigned int))
336 {
337 smp_cross_call = fn;
338 }
339
340 void arch_send_call_function_ipi_mask(const struct cpumask *mask)
341 {
342 smp_cross_call(mask, IPI_CALL_FUNC);
343 }
344
345 void arch_send_call_function_single_ipi(int cpu)
346 {
347 smp_cross_call(cpumask_of(cpu), IPI_CALL_FUNC_SINGLE);
348 }
349
350 static const char *ipi_types[NR_IPI] = {
351 #define S(x,s) [x] = s
352 S(IPI_WAKEUP, "CPU wakeup interrupts"),
353 S(IPI_TIMER, "Timer broadcast interrupts"),
354 S(IPI_RESCHEDULE, "Rescheduling interrupts"),
355 S(IPI_CALL_FUNC, "Function call interrupts"),
356 S(IPI_CALL_FUNC_SINGLE, "Single function call interrupts"),
357 S(IPI_CPU_STOP, "CPU stop interrupts"),
358 };
359
360 void show_ipi_list(struct seq_file *p, int prec)
361 {
362 unsigned int cpu, i;
363
364 for (i = 0; i < NR_IPI; i++) {
365 seq_printf(p, "%*s%u: ", prec - 1, "IPI", i);
366
367 for_each_present_cpu(cpu)
368 seq_printf(p, "%10u ",
369 __get_irq_stat(cpu, ipi_irqs[i]));
370
371 seq_printf(p, " %s\n", ipi_types[i]);
372 }
373 }
374
375 u64 smp_irq_stat_cpu(unsigned int cpu)
376 {
377 u64 sum = 0;
378 int i;
379
380 for (i = 0; i < NR_IPI; i++)
381 sum += __get_irq_stat(cpu, ipi_irqs[i]);
382
383 return sum;
384 }
385
386 /*
387 * Timer (local or broadcast) support
388 */
389 static DEFINE_PER_CPU(struct clock_event_device, percpu_clockevent);
390
391 static void ipi_timer(void)
392 {
393 struct clock_event_device *evt = &__get_cpu_var(percpu_clockevent);
394 evt->event_handler(evt);
395 }
396
397 #ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
398 static void smp_timer_broadcast(const struct cpumask *mask)
399 {
400 smp_cross_call(mask, IPI_TIMER);
401 }
402 #else
403 #define smp_timer_broadcast NULL
404 #endif
405
406 static void broadcast_timer_set_mode(enum clock_event_mode mode,
407 struct clock_event_device *evt)
408 {
409 }
410
411 static void __cpuinit broadcast_timer_setup(struct clock_event_device *evt)
412 {
413 evt->name = "dummy_timer";
414 evt->features = CLOCK_EVT_FEAT_ONESHOT |
415 CLOCK_EVT_FEAT_PERIODIC |
416 CLOCK_EVT_FEAT_DUMMY;
417 evt->rating = 400;
418 evt->mult = 1;
419 evt->set_mode = broadcast_timer_set_mode;
420
421 clockevents_register_device(evt);
422 }
423
424 static struct local_timer_ops *lt_ops;
425
426 #ifdef CONFIG_LOCAL_TIMERS
427 int local_timer_register(struct local_timer_ops *ops)
428 {
429 if (!is_smp() || !setup_max_cpus)
430 return -ENXIO;
431
432 if (lt_ops)
433 return -EBUSY;
434
435 lt_ops = ops;
436 return 0;
437 }
438 #endif
439
440 static void __cpuinit percpu_timer_setup(void)
441 {
442 unsigned int cpu = smp_processor_id();
443 struct clock_event_device *evt = &per_cpu(percpu_clockevent, cpu);
444
445 evt->cpumask = cpumask_of(cpu);
446 evt->broadcast = smp_timer_broadcast;
447
448 if (!lt_ops || lt_ops->setup(evt))
449 broadcast_timer_setup(evt);
450 }
451
452 #ifdef CONFIG_HOTPLUG_CPU
453 /*
454 * The generic clock events code purposely does not stop the local timer
455 * on CPU_DEAD/CPU_DEAD_FROZEN hotplug events, so we have to do it
456 * manually here.
457 */
458 static void percpu_timer_stop(void)
459 {
460 unsigned int cpu = smp_processor_id();
461 struct clock_event_device *evt = &per_cpu(percpu_clockevent, cpu);
462
463 if (lt_ops)
464 lt_ops->stop(evt);
465 }
466 #endif
467
468 static DEFINE_RAW_SPINLOCK(stop_lock);
469
470 /*
471 * ipi_cpu_stop - handle IPI from smp_send_stop()
472 */
473 static void ipi_cpu_stop(unsigned int cpu)
474 {
475 if (system_state == SYSTEM_BOOTING ||
476 system_state == SYSTEM_RUNNING) {
477 raw_spin_lock(&stop_lock);
478 printk(KERN_CRIT "CPU%u: stopping\n", cpu);
479 dump_stack();
480 raw_spin_unlock(&stop_lock);
481 }
482
483 set_cpu_online(cpu, false);
484
485 local_fiq_disable();
486 local_irq_disable();
487
488 while (1)
489 cpu_relax();
490 }
491
492 /*
493 * Main handler for inter-processor interrupts
494 */
495 asmlinkage void __exception_irq_entry do_IPI(int ipinr, struct pt_regs *regs)
496 {
497 handle_IPI(ipinr, regs);
498 }
499
500 void handle_IPI(int ipinr, struct pt_regs *regs)
501 {
502 unsigned int cpu = smp_processor_id();
503 struct pt_regs *old_regs = set_irq_regs(regs);
504
505 if (ipinr < NR_IPI)
506 __inc_irq_stat(cpu, ipi_irqs[ipinr]);
507
508 switch (ipinr) {
509 case IPI_WAKEUP:
510 break;
511
512 case IPI_TIMER:
513 irq_enter();
514 ipi_timer();
515 irq_exit();
516 break;
517
518 case IPI_RESCHEDULE:
519 scheduler_ipi();
520 break;
521
522 case IPI_CALL_FUNC:
523 irq_enter();
524 generic_smp_call_function_interrupt();
525 irq_exit();
526 break;
527
528 case IPI_CALL_FUNC_SINGLE:
529 irq_enter();
530 generic_smp_call_function_single_interrupt();
531 irq_exit();
532 break;
533
534 case IPI_CPU_STOP:
535 irq_enter();
536 ipi_cpu_stop(cpu);
537 irq_exit();
538 break;
539
540 default:
541 printk(KERN_CRIT "CPU%u: Unknown IPI message 0x%x\n",
542 cpu, ipinr);
543 break;
544 }
545 set_irq_regs(old_regs);
546 }
547
548 void smp_send_reschedule(int cpu)
549 {
550 smp_cross_call(cpumask_of(cpu), IPI_RESCHEDULE);
551 }
552
553 #ifdef CONFIG_HOTPLUG_CPU
554 static void smp_kill_cpus(cpumask_t *mask)
555 {
556 unsigned int cpu;
557 for_each_cpu(cpu, mask)
558 platform_cpu_kill(cpu);
559 }
560 #else
561 static void smp_kill_cpus(cpumask_t *mask) { }
562 #endif
563
564 void smp_send_stop(void)
565 {
566 unsigned long timeout;
567 struct cpumask mask;
568
569 cpumask_copy(&mask, cpu_online_mask);
570 cpumask_clear_cpu(smp_processor_id(), &mask);
571 if (!cpumask_empty(&mask))
572 smp_cross_call(&mask, IPI_CPU_STOP);
573
574 /* Wait up to one second for other CPUs to stop */
575 timeout = USEC_PER_SEC;
576 while (num_online_cpus() > 1 && timeout--)
577 udelay(1);
578
579 if (num_online_cpus() > 1)
580 pr_warning("SMP: failed to stop secondary CPUs\n");
581
582 smp_kill_cpus(&mask);
583 }
584
585 /*
586 * not supported here
587 */
588 int setup_profiling_timer(unsigned int multiplier)
589 {
590 return -EINVAL;
591 }