blob: 9b28c238b6c0f4b2025dfb8ac5be28857cf3136e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#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>
Anton Blanchard4b703a22005-12-13 06:56:47 +110033#include <linux/topology.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/time.h>
43#include <asm/machdep.h>
44#include <asm/cputable.h>
45#include <asm/system.h>
Stephen Rothwellbbeb3f42005-09-27 13:51:59 +100046#include <asm/mpic.h>
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +110047#include <asm/vdso_datapage.h>
Paul Mackerras5ad57072005-11-05 10:33:55 +110048#ifdef CONFIG_PPC64
49#include <asm/paca.h>
50#endif
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#ifdef DEBUG
Michael Ellermanf9e4ec52005-11-15 15:16:38 +110053#include <asm/udbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#define DBG(fmt...) udbg_printf(fmt)
55#else
56#define DBG(fmt...)
57#endif
58
Michael Ellermanf9e4ec52005-11-15 15:16:38 +110059int smp_hw_index[NR_CPUS];
60struct thread_info *secondary_ti;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062cpumask_t cpu_possible_map = CPU_MASK_NONE;
63cpumask_t cpu_online_map = CPU_MASK_NONE;
64cpumask_t cpu_sibling_map[NR_CPUS] = { [0 ... NR_CPUS-1] = CPU_MASK_NONE };
65
66EXPORT_SYMBOL(cpu_online_map);
67EXPORT_SYMBOL(cpu_possible_map);
Christian Krafft36ca4ba2006-10-24 18:39:45 +020068EXPORT_SYMBOL(cpu_sibling_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Paul Mackerras5ad57072005-11-05 10:33:55 +110070/* SMP operations for this machine */
Linus Torvalds1da177e2005-04-16 15:20:36 -070071struct smp_ops_t *smp_ops;
72
73static volatile unsigned int cpu_callin_map[NR_CPUS];
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075void smp_call_function_interrupt(void);
76
77int smt_enabled_at_boot = 1;
78
Michael Ellermancc532912005-12-04 18:39:43 +110079static void (*crash_ipi_function_ptr)(struct pt_regs *) = NULL;
80
Arnd Bergmanncebf5892005-06-23 09:43:43 +100081#ifdef CONFIG_MPIC
Linus Torvalds1da177e2005-04-16 15:20:36 -070082int __init smp_mpic_probe(void)
83{
84 int nr_cpus;
85
86 DBG("smp_mpic_probe()...\n");
87
88 nr_cpus = cpus_weight(cpu_possible_map);
89
90 DBG("nr_cpus: %d\n", nr_cpus);
91
92 if (nr_cpus > 1)
93 mpic_request_ipis();
94
95 return nr_cpus;
96}
97
98void __devinit smp_mpic_setup_cpu(int cpu)
99{
100 mpic_setup_this_cpu();
101}
Paul Mackerras5ad57072005-11-05 10:33:55 +1100102#endif /* CONFIG_MPIC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Paul Mackerras5ad57072005-11-05 10:33:55 +1100104#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105void __devinit smp_generic_kick_cpu(int nr)
106{
107 BUG_ON(nr < 0 || nr >= NR_CPUS);
108
109 /*
110 * The processor is currently spinning, waiting for the
111 * cpu_start field to become non-zero After we set cpu_start,
112 * the processor will continue on to secondary_start
113 */
114 paca[nr].cpu_start = 1;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700115 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
Paul Mackerras5ad57072005-11-05 10:33:55 +1100117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
David Howells7d12e782006-10-05 14:55:46 +0100119void smp_message_recv(int msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 switch(msg) {
122 case PPC_MSG_CALL_FUNCTION:
123 smp_call_function_interrupt();
124 break;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100125 case PPC_MSG_RESCHEDULE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* XXX Do we have to do this? */
127 set_need_resched();
128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 case PPC_MSG_DEBUGGER_BREAK:
Michael Ellermancc532912005-12-04 18:39:43 +1100130 if (crash_ipi_function_ptr) {
David Howells7d12e782006-10-05 14:55:46 +0100131 crash_ipi_function_ptr(get_irq_regs());
Michael Ellermancc532912005-12-04 18:39:43 +1100132 break;
133 }
134#ifdef CONFIG_DEBUGGER
David Howells7d12e782006-10-05 14:55:46 +0100135 debugger_ipi(get_irq_regs());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 break;
Michael Ellermancc532912005-12-04 18:39:43 +1100137#endif /* CONFIG_DEBUGGER */
138 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 default:
140 printk("SMP %d: smp_message_recv(): unknown msg %d\n",
141 smp_processor_id(), msg);
142 break;
143 }
144}
145
146void smp_send_reschedule(int cpu)
147{
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000148 if (likely(smp_ops))
149 smp_ops->message_pass(cpu, PPC_MSG_RESCHEDULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152#ifdef CONFIG_DEBUGGER
153void smp_send_debugger_break(int cpu)
154{
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000155 if (likely(smp_ops))
156 smp_ops->message_pass(cpu, PPC_MSG_DEBUGGER_BREAK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158#endif
159
Michael Ellermancc532912005-12-04 18:39:43 +1100160#ifdef CONFIG_KEXEC
161void crash_send_ipi(void (*crash_ipi_callback)(struct pt_regs *))
162{
163 crash_ipi_function_ptr = crash_ipi_callback;
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000164 if (crash_ipi_callback && smp_ops) {
Michael Ellermancc532912005-12-04 18:39:43 +1100165 mb();
166 smp_ops->message_pass(MSG_ALL_BUT_SELF, PPC_MSG_DEBUGGER_BREAK);
167 }
168}
169#endif
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static void stop_this_cpu(void *dummy)
172{
173 local_irq_disable();
174 while (1)
175 ;
176}
177
178void smp_send_stop(void)
179{
180 smp_call_function(stop_this_cpu, NULL, 1, 0);
181}
182
183/*
184 * Structure and data for smp_call_function(). This is designed to minimise
185 * static memory requirements. It also looks cleaner.
186 * Stolen from the i386 version.
187 */
188static __cacheline_aligned_in_smp DEFINE_SPINLOCK(call_lock);
189
190static struct call_data_struct {
191 void (*func) (void *info);
192 void *info;
193 atomic_t started;
194 atomic_t finished;
195 int wait;
196} *call_data;
197
Paul Mackerras5ad57072005-11-05 10:33:55 +1100198/* delay of at least 8 seconds */
199#define SMP_CALL_TIMEOUT 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201/*
202 * This function sends a 'generic call function' IPI to all other CPUs
203 * in the system.
204 *
205 * [SUMMARY] Run a function on all other CPUs.
206 * <func> The function to run. This must be fast and non-blocking.
207 * <info> An arbitrary pointer to pass to the function.
208 * <nonatomic> currently unused.
209 * <wait> If true, wait (atomically) until function has completed on other CPUs.
210 * [RETURNS] 0 on success, else a negative status code. Does not return until
211 * remote CPUs are nearly ready to execute <<func>> or are or have executed.
212 *
213 * You must not call this function with disabled interrupts or from a
214 * hardware interrupt handler or from a bottom half handler.
215 */
216int smp_call_function (void (*func) (void *info), void *info, int nonatomic,
217 int wait)
218{
219 struct call_data_struct data;
220 int ret = -1, cpus;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100221 u64 timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 /* Can deadlock when called with interrupts disabled */
224 WARN_ON(irqs_disabled());
225
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000226 if (unlikely(smp_ops == NULL))
227 return -1;
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 data.func = func;
230 data.info = info;
231 atomic_set(&data.started, 0);
232 data.wait = wait;
233 if (wait)
234 atomic_set(&data.finished, 0);
235
236 spin_lock(&call_lock);
237 /* Must grab online cpu count with preempt disabled, otherwise
238 * it can change. */
239 cpus = num_online_cpus() - 1;
240 if (!cpus) {
241 ret = 0;
242 goto out;
243 }
244
245 call_data = &data;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700246 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /* Send a message to all other CPUs and wait for them to respond */
248 smp_ops->message_pass(MSG_ALL_BUT_SELF, PPC_MSG_CALL_FUNCTION);
249
Paul Mackerras5ad57072005-11-05 10:33:55 +1100250 timeout = get_tb() + (u64) SMP_CALL_TIMEOUT * tb_ticks_per_sec;
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 /* Wait for response */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 while (atomic_read(&data.started) != cpus) {
254 HMT_low();
Paul Mackerras5ad57072005-11-05 10:33:55 +1100255 if (get_tb() >= timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 printk("smp_call_function on cpu %d: other cpus not "
257 "responding (%d)\n", smp_processor_id(),
258 atomic_read(&data.started));
259 debugger(NULL);
260 goto out;
261 }
262 }
263
264 if (wait) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 while (atomic_read(&data.finished) != cpus) {
266 HMT_low();
Paul Mackerras5ad57072005-11-05 10:33:55 +1100267 if (get_tb() >= timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 printk("smp_call_function on cpu %d: other "
269 "cpus not finishing (%d/%d)\n",
270 smp_processor_id(),
271 atomic_read(&data.finished),
272 atomic_read(&data.started));
273 debugger(NULL);
274 goto out;
275 }
276 }
277 }
278
279 ret = 0;
280
Paul Mackerras5ad57072005-11-05 10:33:55 +1100281 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 call_data = NULL;
283 HMT_medium();
284 spin_unlock(&call_lock);
285 return ret;
286}
287
288EXPORT_SYMBOL(smp_call_function);
289
290void smp_call_function_interrupt(void)
291{
292 void (*func) (void *info);
293 void *info;
294 int wait;
295
296 /* call_data will be NULL if the sender timed out while
297 * waiting on us to receive the call.
298 */
299 if (!call_data)
300 return;
301
302 func = call_data->func;
303 info = call_data->info;
304 wait = call_data->wait;
305
306 if (!wait)
307 smp_mb__before_atomic_inc();
308
309 /*
310 * Notify initiating CPU that I've grabbed the data and am
311 * about to execute the function
312 */
313 atomic_inc(&call_data->started);
314 /*
315 * At this point the info structure may be out of scope unless wait==1
316 */
317 (*func)(info);
318 if (wait) {
319 smp_mb__before_atomic_inc();
320 atomic_inc(&call_data->finished);
321 }
322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324extern struct gettimeofday_struct do_gtod;
325
326struct thread_info *current_set[NR_CPUS];
327
328DECLARE_PER_CPU(unsigned int, pvr);
329
330static void __devinit smp_store_cpu_info(int id)
331{
332 per_cpu(pvr, id) = mfspr(SPRN_PVR);
333}
334
335static void __init smp_create_idle(unsigned int cpu)
336{
337 struct task_struct *p;
338
339 /* create a process for the processor */
340 p = fork_idle(cpu);
341 if (IS_ERR(p))
342 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
Paul Mackerras5ad57072005-11-05 10:33:55 +1100343#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 paca[cpu].__current = p;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100345#endif
Al Virob5e2fc12006-01-12 01:06:01 -0800346 current_set[cpu] = task_thread_info(p);
347 task_thread_info(p)->cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350void __init smp_prepare_cpus(unsigned int max_cpus)
351{
352 unsigned int cpu;
353
354 DBG("smp_prepare_cpus\n");
355
356 /*
357 * setup_cpu may need to be called on the boot cpu. We havent
358 * spun any cpus up but lets be paranoid.
359 */
360 BUG_ON(boot_cpuid != smp_processor_id());
361
362 /* Fixup boot cpu */
363 smp_store_cpu_info(boot_cpuid);
364 cpu_callin_map[boot_cpuid] = 1;
365
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000366 if (smp_ops)
367 max_cpus = smp_ops->probe();
368 else
369 max_cpus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 smp_space_timers(max_cpus);
372
KAMEZAWA Hiroyuki0e551952006-03-28 14:50:51 -0800373 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (cpu != boot_cpuid)
375 smp_create_idle(cpu);
376}
377
378void __devinit smp_prepare_boot_cpu(void)
379{
380 BUG_ON(smp_processor_id() != boot_cpuid);
381
382 cpu_set(boot_cpuid, cpu_online_map);
Paul Mackerras5ad57072005-11-05 10:33:55 +1100383#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 paca[boot_cpuid].__current = current;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100385#endif
Al Virob5e2fc12006-01-12 01:06:01 -0800386 current_set[boot_cpuid] = task_thread_info(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
389#ifdef CONFIG_HOTPLUG_CPU
390/* State of each CPU during hotplug phases */
391DEFINE_PER_CPU(int, cpu_state) = { 0 };
392
393int generic_cpu_disable(void)
394{
395 unsigned int cpu = smp_processor_id();
396
397 if (cpu == boot_cpuid)
398 return -EBUSY;
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 cpu_clear(cpu, cpu_online_map);
Paul Mackerras799d6042005-11-10 13:37:51 +1100401#ifdef CONFIG_PPC64
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100402 vdso_data->processorCount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 fixup_irqs(cpu_online_map);
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100404#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return 0;
406}
407
408int generic_cpu_enable(unsigned int cpu)
409{
410 /* Do the normal bootup if we haven't
411 * already bootstrapped. */
412 if (system_state != SYSTEM_RUNNING)
413 return -ENOSYS;
414
415 /* get the target out of it's holding state */
416 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700417 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 while (!cpu_online(cpu))
420 cpu_relax();
421
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100422#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 fixup_irqs(cpu_online_map);
424 /* counter the irq disable in fixup_irqs */
425 local_irq_enable();
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100426#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428}
429
430void generic_cpu_die(unsigned int cpu)
431{
432 int i;
433
434 for (i = 0; i < 100; i++) {
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700435 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (per_cpu(cpu_state, cpu) == CPU_DEAD)
437 return;
438 msleep(100);
439 }
440 printk(KERN_ERR "CPU%d didn't die...\n", cpu);
441}
442
443void generic_mach_cpu_die(void)
444{
445 unsigned int cpu;
446
447 local_irq_disable();
448 cpu = smp_processor_id();
449 printk(KERN_DEBUG "CPU%d offline\n", cpu);
450 __get_cpu_var(cpu_state) = CPU_DEAD;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700451 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 while (__get_cpu_var(cpu_state) != CPU_UP_PREPARE)
453 cpu_relax();
454
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100455#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 flush_tlb_pending();
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100457#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 cpu_set(cpu, cpu_online_map);
459 local_irq_enable();
460}
461#endif
462
463static int __devinit cpu_enable(unsigned int cpu)
464{
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000465 if (smp_ops && smp_ops->cpu_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return smp_ops->cpu_enable(cpu);
467
468 return -ENOSYS;
469}
470
471int __devinit __cpu_up(unsigned int cpu)
472{
473 int c;
474
Paul Mackerras5ad57072005-11-05 10:33:55 +1100475 secondary_ti = current_set[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (!cpu_enable(cpu))
477 return 0;
478
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000479 if (smp_ops == NULL ||
480 (smp_ops->cpu_bootable && !smp_ops->cpu_bootable(cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return -EINVAL;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 /* Make sure callin-map entry is 0 (can be leftover a CPU
484 * hotplug
485 */
486 cpu_callin_map[cpu] = 0;
487
488 /* The information for processor bringup must
489 * be written out to main store before we release
490 * the processor.
491 */
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700492 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 /* wake up cpus */
495 DBG("smp: kicking cpu %d\n", cpu);
496 smp_ops->kick_cpu(cpu);
497
498 /*
499 * wait to see if the cpu made a callin (is actually up).
500 * use this value that I found through experimentation.
501 * -- Cort
502 */
503 if (system_state < SYSTEM_RUNNING)
Jon Loeligeree0339f2006-06-17 17:52:44 -0500504 for (c = 50000; c && !cpu_callin_map[cpu]; c--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 udelay(100);
506#ifdef CONFIG_HOTPLUG_CPU
507 else
508 /*
509 * CPUs can take much longer to come up in the
510 * hotplug case. Wait five seconds.
511 */
512 for (c = 25; c && !cpu_callin_map[cpu]; c--) {
513 msleep(200);
514 }
515#endif
516
517 if (!cpu_callin_map[cpu]) {
518 printk("Processor %u is stuck.\n", cpu);
519 return -ENOENT;
520 }
521
522 printk("Processor %u found.\n", cpu);
523
524 if (smp_ops->give_timebase)
525 smp_ops->give_timebase();
526
527 /* Wait until cpu puts itself in the online map */
528 while (!cpu_online(cpu))
529 cpu_relax();
530
531 return 0;
532}
533
534
535/* Activate a secondary processor. */
536int __devinit start_secondary(void *unused)
537{
538 unsigned int cpu = smp_processor_id();
539
540 atomic_inc(&init_mm.mm_count);
541 current->active_mm = &init_mm;
542
543 smp_store_cpu_info(cpu);
Paul Mackerras5ad57072005-11-05 10:33:55 +1100544 set_dec(tb_ticks_per_jiffy);
Andrew Mortone4d76e12005-11-09 15:45:30 -0800545 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 cpu_callin_map[cpu] = 1;
547
548 smp_ops->setup_cpu(cpu);
549 if (smp_ops->take_timebase)
550 smp_ops->take_timebase();
551
Nathan Lynch7d4d6152006-02-06 22:44:23 -0600552 if (system_state > SYSTEM_BOOTING)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100553 snapshot_timebase();
Nathan Lynch7d4d6152006-02-06 22:44:23 -0600554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 spin_lock(&call_lock);
556 cpu_set(cpu, cpu_online_map);
557 spin_unlock(&call_lock);
558
559 local_irq_enable();
560
561 cpu_idle();
562 return 0;
563}
564
565int setup_profiling_timer(unsigned int multiplier)
566{
567 return 0;
568}
569
570void __init smp_cpus_done(unsigned int max_cpus)
571{
572 cpumask_t old_mask;
573
574 /* We want the setup_cpu() here to be called from CPU 0, but our
575 * init thread may have been "borrowed" by another CPU in the meantime
576 * se we pin us down to CPU 0 for a short while
577 */
578 old_mask = current->cpus_allowed;
579 set_cpus_allowed(current, cpumask_of_cpu(boot_cpuid));
580
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000581 if (smp_ops)
582 smp_ops->setup_cpu(boot_cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 set_cpus_allowed(current, old_mask);
Anton Blanchard4b703a22005-12-13 06:56:47 +1100585
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100586 snapshot_timebases();
587
Anton Blanchard4b703a22005-12-13 06:56:47 +1100588 dump_numa_cpu_topology();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589}
590
591#ifdef CONFIG_HOTPLUG_CPU
592int __cpu_disable(void)
593{
594 if (smp_ops->cpu_disable)
595 return smp_ops->cpu_disable();
596
597 return -ENOSYS;
598}
599
600void __cpu_die(unsigned int cpu)
601{
602 if (smp_ops->cpu_die)
603 smp_ops->cpu_die(cpu);
604}
605#endif