x86: convert to generic helpers for IPI function calls
[linux-block.git] / arch / powerpc / kernel / smp.c
CommitLineData
1da177e4
LT
1/*
2 * SMP support for ppc.
3 *
4 * Written by Cort Dougan (cort@cs.nmt.edu) borrowing a great
5 * deal of code from the sparc and intel versions.
6 *
7 * Copyright (C) 1999 Cort Dougan <cort@cs.nmt.edu>
8 *
9 * PowerPC-64 Support added by Dave Engebretsen, Peter Bergner, and
10 * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
17
18#undef DEBUG
19
1da177e4
LT
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/sched.h>
23#include <linux/smp.h>
24#include <linux/interrupt.h>
25#include <linux/delay.h>
26#include <linux/init.h>
27#include <linux/spinlock.h>
28#include <linux/cache.h>
29#include <linux/err.h>
30#include <linux/sysdev.h>
31#include <linux/cpu.h>
32#include <linux/notifier.h>
4b703a23 33#include <linux/topology.h>
1da177e4
LT
34
35#include <asm/ptrace.h>
36#include <asm/atomic.h>
37#include <asm/irq.h>
38#include <asm/page.h>
39#include <asm/pgtable.h>
40#include <asm/prom.h>
41#include <asm/smp.h>
1da177e4
LT
42#include <asm/time.h>
43#include <asm/machdep.h>
44#include <asm/cputable.h>
45#include <asm/system.h>
bbeb3f4c 46#include <asm/mpic.h>
a7f290da 47#include <asm/vdso_datapage.h>
5ad57078
PM
48#ifdef CONFIG_PPC64
49#include <asm/paca.h>
50#endif
51
1da177e4 52#ifdef DEBUG
f9e4ec57 53#include <asm/udbg.h>
1da177e4
LT
54#define DBG(fmt...) udbg_printf(fmt)
55#else
56#define DBG(fmt...)
57#endif
58
f9e4ec57
ME
59int smp_hw_index[NR_CPUS];
60struct thread_info *secondary_ti;
61
1da177e4
LT
62cpumask_t cpu_possible_map = CPU_MASK_NONE;
63cpumask_t cpu_online_map = CPU_MASK_NONE;
d5a7430d 64DEFINE_PER_CPU(cpumask_t, cpu_sibling_map) = CPU_MASK_NONE;
1da177e4
LT
65
66EXPORT_SYMBOL(cpu_online_map);
67EXPORT_SYMBOL(cpu_possible_map);
d5a7430d 68EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
1da177e4 69
5ad57078 70/* SMP operations for this machine */
1da177e4
LT
71struct smp_ops_t *smp_ops;
72
73static volatile unsigned int cpu_callin_map[NR_CPUS];
74
1da177e4
LT
75void smp_call_function_interrupt(void);
76
77int smt_enabled_at_boot = 1;
78
e057d985
OJ
79static int ipi_fail_ok;
80
cc532915
ME
81static void (*crash_ipi_function_ptr)(struct pt_regs *) = NULL;
82
5ad57078 83#ifdef CONFIG_PPC64
1da177e4
LT
84void __devinit smp_generic_kick_cpu(int nr)
85{
86 BUG_ON(nr < 0 || nr >= NR_CPUS);
87
88 /*
89 * The processor is currently spinning, waiting for the
90 * cpu_start field to become non-zero After we set cpu_start,
91 * the processor will continue on to secondary_start
92 */
93 paca[nr].cpu_start = 1;
0d8d4d42 94 smp_mb();
1da177e4 95}
5ad57078 96#endif
1da177e4 97
7d12e780 98void smp_message_recv(int msg)
1da177e4
LT
99{
100 switch(msg) {
101 case PPC_MSG_CALL_FUNCTION:
102 smp_call_function_interrupt();
103 break;
5ad57078 104 case PPC_MSG_RESCHEDULE:
1da177e4
LT
105 /* XXX Do we have to do this? */
106 set_need_resched();
107 break;
1da177e4 108 case PPC_MSG_DEBUGGER_BREAK:
cc532915 109 if (crash_ipi_function_ptr) {
7d12e780 110 crash_ipi_function_ptr(get_irq_regs());
cc532915
ME
111 break;
112 }
113#ifdef CONFIG_DEBUGGER
7d12e780 114 debugger_ipi(get_irq_regs());
1da177e4 115 break;
cc532915
ME
116#endif /* CONFIG_DEBUGGER */
117 /* FALLTHROUGH */
1da177e4
LT
118 default:
119 printk("SMP %d: smp_message_recv(): unknown msg %d\n",
120 smp_processor_id(), msg);
121 break;
122 }
123}
124
125void smp_send_reschedule(int cpu)
126{
8cffc6ac
BH
127 if (likely(smp_ops))
128 smp_ops->message_pass(cpu, PPC_MSG_RESCHEDULE);
1da177e4
LT
129}
130
131#ifdef CONFIG_DEBUGGER
132void smp_send_debugger_break(int cpu)
133{
8cffc6ac
BH
134 if (likely(smp_ops))
135 smp_ops->message_pass(cpu, PPC_MSG_DEBUGGER_BREAK);
1da177e4
LT
136}
137#endif
138
cc532915
ME
139#ifdef CONFIG_KEXEC
140void crash_send_ipi(void (*crash_ipi_callback)(struct pt_regs *))
141{
142 crash_ipi_function_ptr = crash_ipi_callback;
8cffc6ac 143 if (crash_ipi_callback && smp_ops) {
cc532915
ME
144 mb();
145 smp_ops->message_pass(MSG_ALL_BUT_SELF, PPC_MSG_DEBUGGER_BREAK);
146 }
147}
148#endif
149
1da177e4
LT
150static void stop_this_cpu(void *dummy)
151{
152 local_irq_disable();
153 while (1)
154 ;
155}
156
1da177e4
LT
157/*
158 * Structure and data for smp_call_function(). This is designed to minimise
159 * static memory requirements. It also looks cleaner.
160 * Stolen from the i386 version.
161 */
162static __cacheline_aligned_in_smp DEFINE_SPINLOCK(call_lock);
163
164static struct call_data_struct {
165 void (*func) (void *info);
166 void *info;
167 atomic_t started;
168 atomic_t finished;
169 int wait;
170} *call_data;
171
5ad57078
PM
172/* delay of at least 8 seconds */
173#define SMP_CALL_TIMEOUT 8
1da177e4
LT
174
175/*
44755d11 176 * These functions send a 'generic call function' IPI to other online
177 * CPUS in the system.
1da177e4 178 *
44755d11 179 * [SUMMARY] Run a function on other CPUs.
1da177e4
LT
180 * <func> The function to run. This must be fast and non-blocking.
181 * <info> An arbitrary pointer to pass to the function.
182 * <nonatomic> currently unused.
183 * <wait> If true, wait (atomically) until function has completed on other CPUs.
184 * [RETURNS] 0 on success, else a negative status code. Does not return until
185 * remote CPUs are nearly ready to execute <<func>> or are or have executed.
b616de5e 186 * <map> is a cpu map of the cpus to send IPI to.
1da177e4
LT
187 *
188 * You must not call this function with disabled interrupts or from a
189 * hardware interrupt handler or from a bottom half handler.
190 */
b616de5e
OJ
191static int __smp_call_function_map(void (*func) (void *info), void *info,
192 int nonatomic, int wait, cpumask_t map)
44755d11 193{
1da177e4 194 struct call_data_struct data;
44755d11 195 int ret = -1, num_cpus;
196 int cpu;
5ad57078 197 u64 timeout;
1da177e4 198
8cffc6ac 199 if (unlikely(smp_ops == NULL))
44755d11 200 return ret;
8cffc6ac 201
1da177e4
LT
202 data.func = func;
203 data.info = info;
204 atomic_set(&data.started, 0);
205 data.wait = wait;
206 if (wait)
207 atomic_set(&data.finished, 0);
208
d3fdaed9
HD
209 /* remove 'self' from the map */
210 if (cpu_isset(smp_processor_id(), map))
211 cpu_clear(smp_processor_id(), map);
212
213 /* sanity check the map, remove any non-online processors. */
214 cpus_and(map, map, cpu_online_map);
17aa3a82
KC
215
216 num_cpus = cpus_weight(map);
217 if (!num_cpus)
d3fdaed9 218 goto done;
1da177e4
LT
219
220 call_data = &data;
0d8d4d42 221 smp_wmb();
44755d11 222 /* Send a message to all CPUs in the map */
223 for_each_cpu_mask(cpu, map)
224 smp_ops->message_pass(cpu, PPC_MSG_CALL_FUNCTION);
1da177e4 225
5ad57078
PM
226 timeout = get_tb() + (u64) SMP_CALL_TIMEOUT * tb_ticks_per_sec;
227
44755d11 228 /* Wait for indication that they have received the message */
229 while (atomic_read(&data.started) != num_cpus) {
1da177e4 230 HMT_low();
5ad57078 231 if (get_tb() >= timeout) {
1da177e4 232 printk("smp_call_function on cpu %d: other cpus not "
44755d11 233 "responding (%d)\n", smp_processor_id(),
234 atomic_read(&data.started));
e057d985
OJ
235 if (!ipi_fail_ok)
236 debugger(NULL);
1da177e4
LT
237 goto out;
238 }
239 }
240
44755d11 241 /* optionally wait for the CPUs to complete */
1da177e4 242 if (wait) {
44755d11 243 while (atomic_read(&data.finished) != num_cpus) {
1da177e4 244 HMT_low();
5ad57078 245 if (get_tb() >= timeout) {
1da177e4 246 printk("smp_call_function on cpu %d: other "
44755d11 247 "cpus not finishing (%d/%d)\n",
248 smp_processor_id(),
249 atomic_read(&data.finished),
250 atomic_read(&data.started));
1da177e4
LT
251 debugger(NULL);
252 goto out;
253 }
254 }
255 }
256
d3fdaed9 257 done:
1da177e4
LT
258 ret = 0;
259
5ad57078 260 out:
1da177e4
LT
261 call_data = NULL;
262 HMT_medium();
1da177e4
LT
263 return ret;
264}
265
8fd7675c
SS
266static int __smp_call_function(void (*func)(void *info), void *info,
267 int nonatomic, int wait)
268{
e057d985
OJ
269 int ret;
270 spin_lock(&call_lock);
271 ret =__smp_call_function_map(func, info, nonatomic, wait,
b616de5e 272 cpu_online_map);
e057d985
OJ
273 spin_unlock(&call_lock);
274 return ret;
8fd7675c
SS
275}
276
44755d11 277int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
278 int wait)
279{
8fd7675c
SS
280 /* Can deadlock when called with interrupts disabled */
281 WARN_ON(irqs_disabled());
282
283 return __smp_call_function(func, info, nonatomic, wait);
44755d11 284}
1da177e4
LT
285EXPORT_SYMBOL(smp_call_function);
286
b616de5e
OJ
287int smp_call_function_single(int cpu, void (*func) (void *info), void *info,
288 int nonatomic, int wait)
44755d11 289{
d3fdaed9 290 cpumask_t map = CPU_MASK_NONE;
adff093d 291 int ret = 0;
44755d11 292
8fd7675c
SS
293 /* Can deadlock when called with interrupts disabled */
294 WARN_ON(irqs_disabled());
295
44755d11 296 if (!cpu_online(cpu))
297 return -EINVAL;
298
44755d11 299 cpu_set(cpu, map);
e057d985
OJ
300 if (cpu != get_cpu()) {
301 spin_lock(&call_lock);
b616de5e 302 ret = __smp_call_function_map(func, info, nonatomic, wait, map);
e057d985
OJ
303 spin_unlock(&call_lock);
304 } else {
adff093d
AK
305 local_irq_disable();
306 func(info);
307 local_irq_enable();
308 }
d3fdaed9
HD
309 put_cpu();
310 return ret;
44755d11 311}
312EXPORT_SYMBOL(smp_call_function_single);
313
8fd7675c
SS
314void smp_send_stop(void)
315{
e057d985
OJ
316 int nolock;
317
318 /* It's OK to fail sending the IPI, since the alternative is to
319 * be stuck forever waiting on the other CPU to take the interrupt.
320 *
321 * It's better to at least continue and go through reboot, since this
322 * function is usually called at panic or reboot time in the first
323 * place.
324 */
325 ipi_fail_ok = 1;
326
327 /* Don't deadlock in case we got called through panic */
328 nolock = !spin_trylock(&call_lock);
329 __smp_call_function_map(stop_this_cpu, NULL, 1, 0, cpu_online_map);
330 if (!nolock)
331 spin_unlock(&call_lock);
8fd7675c
SS
332}
333
1da177e4
LT
334void smp_call_function_interrupt(void)
335{
336 void (*func) (void *info);
337 void *info;
338 int wait;
339
340 /* call_data will be NULL if the sender timed out while
341 * waiting on us to receive the call.
342 */
343 if (!call_data)
344 return;
345
346 func = call_data->func;
347 info = call_data->info;
348 wait = call_data->wait;
349
350 if (!wait)
351 smp_mb__before_atomic_inc();
352
353 /*
354 * Notify initiating CPU that I've grabbed the data and am
355 * about to execute the function
356 */
357 atomic_inc(&call_data->started);
358 /*
359 * At this point the info structure may be out of scope unless wait==1
360 */
361 (*func)(info);
362 if (wait) {
363 smp_mb__before_atomic_inc();
364 atomic_inc(&call_data->finished);
365 }
366}
367
1da177e4
LT
368extern struct gettimeofday_struct do_gtod;
369
370struct thread_info *current_set[NR_CPUS];
371
372DECLARE_PER_CPU(unsigned int, pvr);
373
374static void __devinit smp_store_cpu_info(int id)
375{
376 per_cpu(pvr, id) = mfspr(SPRN_PVR);
377}
378
379static void __init smp_create_idle(unsigned int cpu)
380{
381 struct task_struct *p;
382
383 /* create a process for the processor */
384 p = fork_idle(cpu);
385 if (IS_ERR(p))
386 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
5ad57078 387#ifdef CONFIG_PPC64
1da177e4 388 paca[cpu].__current = p;
3b575064
PM
389 paca[cpu].kstack = (unsigned long) task_thread_info(p)
390 + THREAD_SIZE - STACK_FRAME_OVERHEAD;
5ad57078 391#endif
b5e2fc1c
AV
392 current_set[cpu] = task_thread_info(p);
393 task_thread_info(p)->cpu = cpu;
1da177e4
LT
394}
395
396void __init smp_prepare_cpus(unsigned int max_cpus)
397{
398 unsigned int cpu;
399
400 DBG("smp_prepare_cpus\n");
401
402 /*
403 * setup_cpu may need to be called on the boot cpu. We havent
404 * spun any cpus up but lets be paranoid.
405 */
406 BUG_ON(boot_cpuid != smp_processor_id());
407
408 /* Fixup boot cpu */
409 smp_store_cpu_info(boot_cpuid);
410 cpu_callin_map[boot_cpuid] = 1;
411
8cffc6ac
BH
412 if (smp_ops)
413 max_cpus = smp_ops->probe();
414 else
415 max_cpus = 1;
1da177e4
LT
416
417 smp_space_timers(max_cpus);
418
0e551954 419 for_each_possible_cpu(cpu)
1da177e4
LT
420 if (cpu != boot_cpuid)
421 smp_create_idle(cpu);
422}
423
424void __devinit smp_prepare_boot_cpu(void)
425{
426 BUG_ON(smp_processor_id() != boot_cpuid);
427
428 cpu_set(boot_cpuid, cpu_online_map);
5ad57078 429#ifdef CONFIG_PPC64
1da177e4 430 paca[boot_cpuid].__current = current;
5ad57078 431#endif
b5e2fc1c 432 current_set[boot_cpuid] = task_thread_info(current);
1da177e4
LT
433}
434
435#ifdef CONFIG_HOTPLUG_CPU
436/* State of each CPU during hotplug phases */
437DEFINE_PER_CPU(int, cpu_state) = { 0 };
438
439int generic_cpu_disable(void)
440{
441 unsigned int cpu = smp_processor_id();
442
443 if (cpu == boot_cpuid)
444 return -EBUSY;
445
1da177e4 446 cpu_clear(cpu, cpu_online_map);
799d6046 447#ifdef CONFIG_PPC64
a7f290da 448 vdso_data->processorCount--;
1da177e4 449 fixup_irqs(cpu_online_map);
094fe2e7 450#endif
1da177e4
LT
451 return 0;
452}
453
454int generic_cpu_enable(unsigned int cpu)
455{
456 /* Do the normal bootup if we haven't
457 * already bootstrapped. */
458 if (system_state != SYSTEM_RUNNING)
459 return -ENOSYS;
460
461 /* get the target out of it's holding state */
462 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
0d8d4d42 463 smp_wmb();
1da177e4
LT
464
465 while (!cpu_online(cpu))
466 cpu_relax();
467
094fe2e7 468#ifdef CONFIG_PPC64
1da177e4
LT
469 fixup_irqs(cpu_online_map);
470 /* counter the irq disable in fixup_irqs */
471 local_irq_enable();
094fe2e7 472#endif
1da177e4
LT
473 return 0;
474}
475
476void generic_cpu_die(unsigned int cpu)
477{
478 int i;
479
480 for (i = 0; i < 100; i++) {
0d8d4d42 481 smp_rmb();
1da177e4
LT
482 if (per_cpu(cpu_state, cpu) == CPU_DEAD)
483 return;
484 msleep(100);
485 }
486 printk(KERN_ERR "CPU%d didn't die...\n", cpu);
487}
488
489void generic_mach_cpu_die(void)
490{
491 unsigned int cpu;
492
493 local_irq_disable();
494 cpu = smp_processor_id();
495 printk(KERN_DEBUG "CPU%d offline\n", cpu);
496 __get_cpu_var(cpu_state) = CPU_DEAD;
0d8d4d42 497 smp_wmb();
1da177e4
LT
498 while (__get_cpu_var(cpu_state) != CPU_UP_PREPARE)
499 cpu_relax();
1da177e4
LT
500 cpu_set(cpu, cpu_online_map);
501 local_irq_enable();
502}
503#endif
504
505static int __devinit cpu_enable(unsigned int cpu)
506{
8cffc6ac 507 if (smp_ops && smp_ops->cpu_enable)
1da177e4
LT
508 return smp_ops->cpu_enable(cpu);
509
510 return -ENOSYS;
511}
512
b282b6f8 513int __cpuinit __cpu_up(unsigned int cpu)
1da177e4
LT
514{
515 int c;
516
5ad57078 517 secondary_ti = current_set[cpu];
1da177e4
LT
518 if (!cpu_enable(cpu))
519 return 0;
520
8cffc6ac
BH
521 if (smp_ops == NULL ||
522 (smp_ops->cpu_bootable && !smp_ops->cpu_bootable(cpu)))
1da177e4
LT
523 return -EINVAL;
524
1da177e4
LT
525 /* Make sure callin-map entry is 0 (can be leftover a CPU
526 * hotplug
527 */
528 cpu_callin_map[cpu] = 0;
529
530 /* The information for processor bringup must
531 * be written out to main store before we release
532 * the processor.
533 */
0d8d4d42 534 smp_mb();
1da177e4
LT
535
536 /* wake up cpus */
537 DBG("smp: kicking cpu %d\n", cpu);
538 smp_ops->kick_cpu(cpu);
539
540 /*
541 * wait to see if the cpu made a callin (is actually up).
542 * use this value that I found through experimentation.
543 * -- Cort
544 */
545 if (system_state < SYSTEM_RUNNING)
ee0339f2 546 for (c = 50000; c && !cpu_callin_map[cpu]; c--)
1da177e4
LT
547 udelay(100);
548#ifdef CONFIG_HOTPLUG_CPU
549 else
550 /*
551 * CPUs can take much longer to come up in the
552 * hotplug case. Wait five seconds.
553 */
554 for (c = 25; c && !cpu_callin_map[cpu]; c--) {
555 msleep(200);
556 }
557#endif
558
559 if (!cpu_callin_map[cpu]) {
560 printk("Processor %u is stuck.\n", cpu);
561 return -ENOENT;
562 }
563
564 printk("Processor %u found.\n", cpu);
565
566 if (smp_ops->give_timebase)
567 smp_ops->give_timebase();
568
569 /* Wait until cpu puts itself in the online map */
570 while (!cpu_online(cpu))
571 cpu_relax();
572
573 return 0;
574}
575
576
577/* Activate a secondary processor. */
578int __devinit start_secondary(void *unused)
579{
580 unsigned int cpu = smp_processor_id();
581
582 atomic_inc(&init_mm.mm_count);
583 current->active_mm = &init_mm;
584
585 smp_store_cpu_info(cpu);
5ad57078 586 set_dec(tb_ticks_per_jiffy);
e4d76e1c 587 preempt_disable();
1da177e4
LT
588 cpu_callin_map[cpu] = 1;
589
590 smp_ops->setup_cpu(cpu);
591 if (smp_ops->take_timebase)
592 smp_ops->take_timebase();
593
7d4d6154 594 if (system_state > SYSTEM_BOOTING)
c6622f63 595 snapshot_timebase();
7d4d6154 596
d831d0b8
TB
597 secondary_cpu_time_init();
598
1da177e4
LT
599 spin_lock(&call_lock);
600 cpu_set(cpu, cpu_online_map);
601 spin_unlock(&call_lock);
602
603 local_irq_enable();
604
605 cpu_idle();
606 return 0;
607}
608
609int setup_profiling_timer(unsigned int multiplier)
610{
611 return 0;
612}
613
614void __init smp_cpus_done(unsigned int max_cpus)
615{
616 cpumask_t old_mask;
617
618 /* We want the setup_cpu() here to be called from CPU 0, but our
619 * init thread may have been "borrowed" by another CPU in the meantime
620 * se we pin us down to CPU 0 for a short while
621 */
622 old_mask = current->cpus_allowed;
623 set_cpus_allowed(current, cpumask_of_cpu(boot_cpuid));
624
8cffc6ac
BH
625 if (smp_ops)
626 smp_ops->setup_cpu(boot_cpuid);
1da177e4
LT
627
628 set_cpus_allowed(current, old_mask);
4b703a23 629
c6622f63
PM
630 snapshot_timebases();
631
4b703a23 632 dump_numa_cpu_topology();
1da177e4
LT
633}
634
635#ifdef CONFIG_HOTPLUG_CPU
636int __cpu_disable(void)
637{
638 if (smp_ops->cpu_disable)
639 return smp_ops->cpu_disable();
640
641 return -ENOSYS;
642}
643
644void __cpu_die(unsigned int cpu)
645{
646 if (smp_ops->cpu_die)
647 smp_ops->cpu_die(cpu);
648}
649#endif