blob: 22f1ef1b3100ff8df55e8ab0f8256518b4c2987e [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
Paul Mackerras5ad57072005-11-05 10:33:55 +110081#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -070082void __devinit smp_generic_kick_cpu(int nr)
83{
84 BUG_ON(nr < 0 || nr >= NR_CPUS);
85
86 /*
87 * The processor is currently spinning, waiting for the
88 * cpu_start field to become non-zero After we set cpu_start,
89 * the processor will continue on to secondary_start
90 */
91 paca[nr].cpu_start = 1;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -070092 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
Paul Mackerras5ad57072005-11-05 10:33:55 +110094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
David Howells7d12e782006-10-05 14:55:46 +010096void smp_message_recv(int msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097{
98 switch(msg) {
99 case PPC_MSG_CALL_FUNCTION:
100 smp_call_function_interrupt();
101 break;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100102 case PPC_MSG_RESCHEDULE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 /* XXX Do we have to do this? */
104 set_need_resched();
105 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 case PPC_MSG_DEBUGGER_BREAK:
Michael Ellermancc532912005-12-04 18:39:43 +1100107 if (crash_ipi_function_ptr) {
David Howells7d12e782006-10-05 14:55:46 +0100108 crash_ipi_function_ptr(get_irq_regs());
Michael Ellermancc532912005-12-04 18:39:43 +1100109 break;
110 }
111#ifdef CONFIG_DEBUGGER
David Howells7d12e782006-10-05 14:55:46 +0100112 debugger_ipi(get_irq_regs());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 break;
Michael Ellermancc532912005-12-04 18:39:43 +1100114#endif /* CONFIG_DEBUGGER */
115 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 default:
117 printk("SMP %d: smp_message_recv(): unknown msg %d\n",
118 smp_processor_id(), msg);
119 break;
120 }
121}
122
123void smp_send_reschedule(int cpu)
124{
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000125 if (likely(smp_ops))
126 smp_ops->message_pass(cpu, PPC_MSG_RESCHEDULE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129#ifdef CONFIG_DEBUGGER
130void smp_send_debugger_break(int cpu)
131{
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000132 if (likely(smp_ops))
133 smp_ops->message_pass(cpu, PPC_MSG_DEBUGGER_BREAK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135#endif
136
Michael Ellermancc532912005-12-04 18:39:43 +1100137#ifdef CONFIG_KEXEC
138void crash_send_ipi(void (*crash_ipi_callback)(struct pt_regs *))
139{
140 crash_ipi_function_ptr = crash_ipi_callback;
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000141 if (crash_ipi_callback && smp_ops) {
Michael Ellermancc532912005-12-04 18:39:43 +1100142 mb();
143 smp_ops->message_pass(MSG_ALL_BUT_SELF, PPC_MSG_DEBUGGER_BREAK);
144 }
145}
146#endif
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static void stop_this_cpu(void *dummy)
149{
150 local_irq_disable();
151 while (1)
152 ;
153}
154
155void smp_send_stop(void)
156{
157 smp_call_function(stop_this_cpu, NULL, 1, 0);
158}
159
160/*
161 * Structure and data for smp_call_function(). This is designed to minimise
162 * static memory requirements. It also looks cleaner.
163 * Stolen from the i386 version.
164 */
165static __cacheline_aligned_in_smp DEFINE_SPINLOCK(call_lock);
166
167static struct call_data_struct {
168 void (*func) (void *info);
169 void *info;
170 atomic_t started;
171 atomic_t finished;
172 int wait;
173} *call_data;
174
Paul Mackerras5ad57072005-11-05 10:33:55 +1100175/* delay of at least 8 seconds */
176#define SMP_CALL_TIMEOUT 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178/*
will schmidt44755d12007-05-03 03:12:34 +1000179 * These functions send a 'generic call function' IPI to other online
180 * CPUS in the system.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *
will schmidt44755d12007-05-03 03:12:34 +1000182 * [SUMMARY] Run a function on other CPUs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * <func> The function to run. This must be fast and non-blocking.
184 * <info> An arbitrary pointer to pass to the function.
185 * <nonatomic> currently unused.
186 * <wait> If true, wait (atomically) until function has completed on other CPUs.
187 * [RETURNS] 0 on success, else a negative status code. Does not return until
188 * remote CPUs are nearly ready to execute <<func>> or are or have executed.
189 *
190 * You must not call this function with disabled interrupts or from a
191 * hardware interrupt handler or from a bottom half handler.
192 */
will schmidt44755d12007-05-03 03:12:34 +1000193int smp_call_function_map(void (*func) (void *info), void *info, int nonatomic,
194 int wait, cpumask_t map)
195{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct call_data_struct data;
will schmidt44755d12007-05-03 03:12:34 +1000197 int ret = -1, num_cpus;
198 int cpu;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100199 u64 timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 /* Can deadlock when called with interrupts disabled */
202 WARN_ON(irqs_disabled());
203
will schmidt44755d12007-05-03 03:12:34 +1000204 /* remove 'self' from the map */
205 if (cpu_isset(smp_processor_id(), map))
206 cpu_clear(smp_processor_id(), map);
207
208 /* sanity check the map, remove any non-online processors. */
209 cpus_and(map, map, cpu_online_map);
210
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000211 if (unlikely(smp_ops == NULL))
will schmidt44755d12007-05-03 03:12:34 +1000212 return ret;
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 data.func = func;
215 data.info = info;
216 atomic_set(&data.started, 0);
217 data.wait = wait;
218 if (wait)
219 atomic_set(&data.finished, 0);
220
221 spin_lock(&call_lock);
222 /* Must grab online cpu count with preempt disabled, otherwise
223 * it can change. */
will schmidt44755d12007-05-03 03:12:34 +1000224 num_cpus = num_online_cpus() - 1;
225 if (!num_cpus || cpus_empty(map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 ret = 0;
227 goto out;
228 }
229
230 call_data = &data;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700231 smp_wmb();
will schmidt44755d12007-05-03 03:12:34 +1000232 /* Send a message to all CPUs in the map */
233 for_each_cpu_mask(cpu, map)
234 smp_ops->message_pass(cpu, PPC_MSG_CALL_FUNCTION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Paul Mackerras5ad57072005-11-05 10:33:55 +1100236 timeout = get_tb() + (u64) SMP_CALL_TIMEOUT * tb_ticks_per_sec;
237
will schmidt44755d12007-05-03 03:12:34 +1000238 /* Wait for indication that they have received the message */
239 while (atomic_read(&data.started) != num_cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 HMT_low();
Paul Mackerras5ad57072005-11-05 10:33:55 +1100241 if (get_tb() >= timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 printk("smp_call_function on cpu %d: other cpus not "
will schmidt44755d12007-05-03 03:12:34 +1000243 "responding (%d)\n", smp_processor_id(),
244 atomic_read(&data.started));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 debugger(NULL);
246 goto out;
247 }
248 }
249
will schmidt44755d12007-05-03 03:12:34 +1000250 /* optionally wait for the CPUs to complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (wait) {
will schmidt44755d12007-05-03 03:12:34 +1000252 while (atomic_read(&data.finished) != num_cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 HMT_low();
Paul Mackerras5ad57072005-11-05 10:33:55 +1100254 if (get_tb() >= timeout) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 printk("smp_call_function on cpu %d: other "
will schmidt44755d12007-05-03 03:12:34 +1000256 "cpus not finishing (%d/%d)\n",
257 smp_processor_id(),
258 atomic_read(&data.finished),
259 atomic_read(&data.started));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 debugger(NULL);
261 goto out;
262 }
263 }
264 }
265
266 ret = 0;
267
Paul Mackerras5ad57072005-11-05 10:33:55 +1100268 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 call_data = NULL;
270 HMT_medium();
271 spin_unlock(&call_lock);
272 return ret;
273}
274
will schmidt44755d12007-05-03 03:12:34 +1000275int smp_call_function(void (*func) (void *info), void *info, int nonatomic,
276 int wait)
277{
278 return smp_call_function_map(func,info,nonatomic,wait,cpu_online_map);
279}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280EXPORT_SYMBOL(smp_call_function);
281
will schmidt44755d12007-05-03 03:12:34 +1000282int smp_call_function_single(int cpu, void (*func) (void *info), void *info, int nonatomic,
283 int wait)
284{
285 cpumask_t map=CPU_MASK_NONE;
286
287 if (!cpu_online(cpu))
288 return -EINVAL;
289
290 if (cpu == smp_processor_id())
291 return -EBUSY;
292
293 cpu_set(cpu, map);
294 return smp_call_function_map(func,info,nonatomic,wait,map);
295}
296EXPORT_SYMBOL(smp_call_function_single);
297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298void smp_call_function_interrupt(void)
299{
300 void (*func) (void *info);
301 void *info;
302 int wait;
303
304 /* call_data will be NULL if the sender timed out while
305 * waiting on us to receive the call.
306 */
307 if (!call_data)
308 return;
309
310 func = call_data->func;
311 info = call_data->info;
312 wait = call_data->wait;
313
314 if (!wait)
315 smp_mb__before_atomic_inc();
316
317 /*
318 * Notify initiating CPU that I've grabbed the data and am
319 * about to execute the function
320 */
321 atomic_inc(&call_data->started);
322 /*
323 * At this point the info structure may be out of scope unless wait==1
324 */
325 (*func)(info);
326 if (wait) {
327 smp_mb__before_atomic_inc();
328 atomic_inc(&call_data->finished);
329 }
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332extern struct gettimeofday_struct do_gtod;
333
334struct thread_info *current_set[NR_CPUS];
335
336DECLARE_PER_CPU(unsigned int, pvr);
337
338static void __devinit smp_store_cpu_info(int id)
339{
340 per_cpu(pvr, id) = mfspr(SPRN_PVR);
341}
342
343static void __init smp_create_idle(unsigned int cpu)
344{
345 struct task_struct *p;
346
347 /* create a process for the processor */
348 p = fork_idle(cpu);
349 if (IS_ERR(p))
350 panic("failed fork for CPU %u: %li", cpu, PTR_ERR(p));
Paul Mackerras5ad57072005-11-05 10:33:55 +1100351#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 paca[cpu].__current = p;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100353#endif
Al Virob5e2fc12006-01-12 01:06:01 -0800354 current_set[cpu] = task_thread_info(p);
355 task_thread_info(p)->cpu = cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
358void __init smp_prepare_cpus(unsigned int max_cpus)
359{
360 unsigned int cpu;
361
362 DBG("smp_prepare_cpus\n");
363
364 /*
365 * setup_cpu may need to be called on the boot cpu. We havent
366 * spun any cpus up but lets be paranoid.
367 */
368 BUG_ON(boot_cpuid != smp_processor_id());
369
370 /* Fixup boot cpu */
371 smp_store_cpu_info(boot_cpuid);
372 cpu_callin_map[boot_cpuid] = 1;
373
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000374 if (smp_ops)
375 max_cpus = smp_ops->probe();
376 else
377 max_cpus = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 smp_space_timers(max_cpus);
380
KAMEZAWA Hiroyuki0e551952006-03-28 14:50:51 -0800381 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (cpu != boot_cpuid)
383 smp_create_idle(cpu);
384}
385
386void __devinit smp_prepare_boot_cpu(void)
387{
388 BUG_ON(smp_processor_id() != boot_cpuid);
389
390 cpu_set(boot_cpuid, cpu_online_map);
Paul Mackerras5ad57072005-11-05 10:33:55 +1100391#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 paca[boot_cpuid].__current = current;
Paul Mackerras5ad57072005-11-05 10:33:55 +1100393#endif
Al Virob5e2fc12006-01-12 01:06:01 -0800394 current_set[boot_cpuid] = task_thread_info(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397#ifdef CONFIG_HOTPLUG_CPU
398/* State of each CPU during hotplug phases */
399DEFINE_PER_CPU(int, cpu_state) = { 0 };
400
401int generic_cpu_disable(void)
402{
403 unsigned int cpu = smp_processor_id();
404
405 if (cpu == boot_cpuid)
406 return -EBUSY;
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 cpu_clear(cpu, cpu_online_map);
Paul Mackerras799d6042005-11-10 13:37:51 +1100409#ifdef CONFIG_PPC64
Benjamin Herrenschmidta7f290d2005-11-11 21:15:21 +1100410 vdso_data->processorCount--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 fixup_irqs(cpu_online_map);
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100412#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
414}
415
416int generic_cpu_enable(unsigned int cpu)
417{
418 /* Do the normal bootup if we haven't
419 * already bootstrapped. */
420 if (system_state != SYSTEM_RUNNING)
421 return -ENOSYS;
422
423 /* get the target out of it's holding state */
424 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700425 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 while (!cpu_online(cpu))
428 cpu_relax();
429
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100430#ifdef CONFIG_PPC64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 fixup_irqs(cpu_online_map);
432 /* counter the irq disable in fixup_irqs */
433 local_irq_enable();
Paul Mackerras094fe2e2005-11-10 14:26:12 +1100434#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return 0;
436}
437
438void generic_cpu_die(unsigned int cpu)
439{
440 int i;
441
442 for (i = 0; i < 100; i++) {
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700443 smp_rmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (per_cpu(cpu_state, cpu) == CPU_DEAD)
445 return;
446 msleep(100);
447 }
448 printk(KERN_ERR "CPU%d didn't die...\n", cpu);
449}
450
451void generic_mach_cpu_die(void)
452{
453 unsigned int cpu;
454
455 local_irq_disable();
456 cpu = smp_processor_id();
457 printk(KERN_DEBUG "CPU%d offline\n", cpu);
458 __get_cpu_var(cpu_state) = CPU_DEAD;
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700459 smp_wmb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 while (__get_cpu_var(cpu_state) != CPU_UP_PREPARE)
461 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 cpu_set(cpu, cpu_online_map);
463 local_irq_enable();
464}
465#endif
466
467static int __devinit cpu_enable(unsigned int cpu)
468{
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000469 if (smp_ops && smp_ops->cpu_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 return smp_ops->cpu_enable(cpu);
471
472 return -ENOSYS;
473}
474
Gautham R Shenoyb282b6f2007-01-10 23:15:34 -0800475int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 int c;
478
Paul Mackerras5ad57072005-11-05 10:33:55 +1100479 secondary_ti = current_set[cpu];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (!cpu_enable(cpu))
481 return 0;
482
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000483 if (smp_ops == NULL ||
484 (smp_ops->cpu_bootable && !smp_ops->cpu_bootable(cpu)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return -EINVAL;
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 /* Make sure callin-map entry is 0 (can be leftover a CPU
488 * hotplug
489 */
490 cpu_callin_map[cpu] = 0;
491
492 /* The information for processor bringup must
493 * be written out to main store before we release
494 * the processor.
495 */
Anton Blanchard0d8d4d42005-05-01 08:58:47 -0700496 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 /* wake up cpus */
499 DBG("smp: kicking cpu %d\n", cpu);
500 smp_ops->kick_cpu(cpu);
501
502 /*
503 * wait to see if the cpu made a callin (is actually up).
504 * use this value that I found through experimentation.
505 * -- Cort
506 */
507 if (system_state < SYSTEM_RUNNING)
Jon Loeligeree0339f2006-06-17 17:52:44 -0500508 for (c = 50000; c && !cpu_callin_map[cpu]; c--)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 udelay(100);
510#ifdef CONFIG_HOTPLUG_CPU
511 else
512 /*
513 * CPUs can take much longer to come up in the
514 * hotplug case. Wait five seconds.
515 */
516 for (c = 25; c && !cpu_callin_map[cpu]; c--) {
517 msleep(200);
518 }
519#endif
520
521 if (!cpu_callin_map[cpu]) {
522 printk("Processor %u is stuck.\n", cpu);
523 return -ENOENT;
524 }
525
526 printk("Processor %u found.\n", cpu);
527
528 if (smp_ops->give_timebase)
529 smp_ops->give_timebase();
530
531 /* Wait until cpu puts itself in the online map */
532 while (!cpu_online(cpu))
533 cpu_relax();
534
535 return 0;
536}
537
538
539/* Activate a secondary processor. */
540int __devinit start_secondary(void *unused)
541{
542 unsigned int cpu = smp_processor_id();
543
544 atomic_inc(&init_mm.mm_count);
545 current->active_mm = &init_mm;
546
547 smp_store_cpu_info(cpu);
Paul Mackerras5ad57072005-11-05 10:33:55 +1100548 set_dec(tb_ticks_per_jiffy);
Andrew Mortone4d76e12005-11-09 15:45:30 -0800549 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 cpu_callin_map[cpu] = 1;
551
552 smp_ops->setup_cpu(cpu);
553 if (smp_ops->take_timebase)
554 smp_ops->take_timebase();
555
Nathan Lynch7d4d6152006-02-06 22:44:23 -0600556 if (system_state > SYSTEM_BOOTING)
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100557 snapshot_timebase();
Nathan Lynch7d4d6152006-02-06 22:44:23 -0600558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 spin_lock(&call_lock);
560 cpu_set(cpu, cpu_online_map);
561 spin_unlock(&call_lock);
562
563 local_irq_enable();
564
565 cpu_idle();
566 return 0;
567}
568
569int setup_profiling_timer(unsigned int multiplier)
570{
571 return 0;
572}
573
574void __init smp_cpus_done(unsigned int max_cpus)
575{
576 cpumask_t old_mask;
577
578 /* We want the setup_cpu() here to be called from CPU 0, but our
579 * init thread may have been "borrowed" by another CPU in the meantime
580 * se we pin us down to CPU 0 for a short while
581 */
582 old_mask = current->cpus_allowed;
583 set_cpus_allowed(current, cpumask_of_cpu(boot_cpuid));
584
Benjamin Herrenschmidt8cffc6a2006-07-04 14:09:36 +1000585 if (smp_ops)
586 smp_ops->setup_cpu(boot_cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 set_cpus_allowed(current, old_mask);
Anton Blanchard4b703a22005-12-13 06:56:47 +1100589
Paul Mackerrasc6622f62006-02-24 10:06:59 +1100590 snapshot_timebases();
591
Anton Blanchard4b703a22005-12-13 06:56:47 +1100592 dump_numa_cpu_topology();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
595#ifdef CONFIG_HOTPLUG_CPU
596int __cpu_disable(void)
597{
598 if (smp_ops->cpu_disable)
599 return smp_ops->cpu_disable();
600
601 return -ENOSYS;
602}
603
604void __cpu_die(unsigned int cpu)
605{
606 if (smp_ops->cpu_die)
607 smp_ops->cpu_die(cpu);
608}
609#endif