blob: ca3a3c5b64fea453ff8c7bb21925a9a4426922d6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * x86 SMP booting functions
3 *
4 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
5 * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
6 * Copyright 2001 Andi Kleen, SuSE Labs.
7 *
8 * Much of the core SMP work is based on previous work by Thomas Radke, to
9 * whom a great many thanks are extended.
10 *
11 * Thanks to Intel for making available several different Pentium,
12 * Pentium Pro and Pentium-II/Xeon MP machines.
13 * Original development of Linux SMP code supported by Caldera.
14 *
Andi Kleena8ab26f2005-04-16 15:25:19 -070015 * This code is released under the GNU General Public License version 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * Fixes
18 * Felix Koop : NR_CPUS used properly
19 * Jose Renau : Handle single CPU case.
20 * Alan Cox : By repeated request 8) - Total BogoMIP report.
21 * Greg Wright : Fix for kernel stacks panic.
22 * Erich Boleyn : MP v1.4 and additional changes.
23 * Matthias Sattler : Changes for 2.1 kernel map.
24 * Michel Lespinasse : Changes for 2.1 kernel map.
25 * Michael Chastain : Change trampoline.S to gnu as.
26 * Alan Cox : Dumb bug: 'B' step PPro's are fine
27 * Ingo Molnar : Added APIC timers, based on code
28 * from Jose Renau
29 * Ingo Molnar : various cleanups and rewrites
30 * Tigran Aivazian : fixed "0.00 in /proc/uptime on SMP" bug.
31 * Maciej W. Rozycki : Bits for genuine 82489DX APICs
32 * Andi Kleen : Changed for SMP boot into long mode.
Andi Kleena8ab26f2005-04-16 15:25:19 -070033 * Rusty Russell : Hacked into shape for new "hotplug" boot process.
34 * Andi Kleen : Converted to new state machine.
35 * Various cleanups.
36 * Probably mostly hotplug CPU ready now.
Ashok Raj76e4f662005-06-25 14:55:00 -070037 * Ashok Raj : CPU hotplug support
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
Andi Kleena8ab26f2005-04-16 15:25:19 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/init.h>
42
43#include <linux/mm.h>
44#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <linux/bootmem.h>
46#include <linux/thread_info.h>
47#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/delay.h>
49#include <linux/mc146818rtc.h>
Andrew Mortona3bc0db2006-09-25 23:32:33 -070050#include <linux/smp.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070051#include <linux/kdebug.h>
Andrew Mortona3bc0db2006-09-25 23:32:33 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/mtrr.h>
54#include <asm/pgalloc.h>
55#include <asm/desc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/tlbflush.h>
57#include <asm/proto.h>
Andi Kleen75152112005-05-16 21:53:34 -070058#include <asm/nmi.h>
Al Viro9cdd3042005-09-12 18:49:25 +020059#include <asm/irq.h>
60#include <asm/hw_irq.h>
Ravikiran G Thirumalai488fc082006-02-07 12:58:23 -080061#include <asm/numa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Andi Kleena8ab26f2005-04-16 15:25:19 -070063/* Set when the idlers are all forked */
64int smp_threads_ready;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * Trampoline 80x86 program as an array.
68 */
69
Jan Beulich121d7bf2007-10-17 18:04:37 +020070extern const unsigned char trampoline_data[];
71extern const unsigned char trampoline_end[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Ashok Raj76e4f662005-06-25 14:55:00 -070073/* State of each CPU */
74DEFINE_PER_CPU(int, cpu_state) = { 0 };
75
76/*
77 * Store all idle threads, this can be reused instead of creating
78 * a new thread. Also avoids complicated thread destroy functionality
79 * for idle threads.
80 */
travis@sgi.com24b0d222008-01-30 13:33:11 +010081#ifdef CONFIG_HOTPLUG_CPU
82/*
83 * Needed only for CONFIG_HOTPLUG_CPU because __cpuinitdata is
84 * removed after init for !CONFIG_HOTPLUG_CPU.
85 */
86static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
87#define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x))
88#define set_idle_for_cpu(x,p) (per_cpu(idle_thread_array, x) = (p))
89#else
Ashok Raj76e4f662005-06-25 14:55:00 -070090struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
Ashok Raj76e4f662005-06-25 14:55:00 -070091#define get_idle_for_cpu(x) (idle_thread_array[(x)])
92#define set_idle_for_cpu(x,p) (idle_thread_array[(x)] = (p))
travis@sgi.com24b0d222008-01-30 13:33:11 +010093#endif
94
Ashok Raj76e4f662005-06-25 14:55:00 -070095
96/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * Currently trivial. Write the real->protected mode
98 * bootstrap into the page concerned. The caller
99 * has made sure it's suitably aligned.
100 */
101
Andi Kleena8ab26f2005-04-16 15:25:19 -0700102static unsigned long __cpuinit setup_trampoline(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 void *tramp = __va(SMP_TRAMPOLINE_BASE);
105 memcpy(tramp, trampoline_data, trampoline_end - trampoline_data);
106 return virt_to_phys(tramp);
107}
108
109/*
110 * The bootstrap kernel entry code has set these up. Save them for
111 * a given CPU
112 */
113
Andi Kleena8ab26f2005-04-16 15:25:19 -0700114static void __cpuinit smp_store_cpu_info(int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
Mike Travis92cb7612007-10-19 20:35:04 +0200116 struct cpuinfo_x86 *c = &cpu_data(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 *c = boot_cpu_data;
Mike Travisfbdcf182007-12-19 23:20:19 +0100119 c->cpu_index = id;
Linus Torvalds00684412007-12-25 20:16:16 -0800120 identify_cpu(c);
Andi Kleendda50e72005-05-16 21:53:25 -0700121 print_cpu_info(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
Andi Kleena8ab26f2005-04-16 15:25:19 -0700124static atomic_t init_deasserted __cpuinitdata;
125
126/*
127 * Report back to the Boot Processor.
128 * Running on AP.
129 */
130void __cpuinit smp_callin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 int cpuid, phys_id;
133 unsigned long timeout;
134
135 /*
136 * If waken up by an INIT in an 82489DX configuration
137 * we may get here before an INIT-deassert IPI reaches
138 * our local APIC. We have to wait for the IPI or we'll
139 * lock up on an APIC access.
140 */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700141 while (!atomic_read(&init_deasserted))
142 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /*
145 * (This works even if the APIC is not enabled.)
146 */
147 phys_id = GET_APIC_ID(apic_read(APIC_ID));
148 cpuid = smp_processor_id();
149 if (cpu_isset(cpuid, cpu_callin_map)) {
150 panic("smp_callin: phys CPU#%d, CPU#%d already present??\n",
151 phys_id, cpuid);
152 }
153 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
154
155 /*
156 * STARTUP IPIs are fragile beasts as they might sometimes
157 * trigger some glue motherboard logic. Complete APIC bus
158 * silence for 1 second, this overestimates the time the
159 * boot CPU is spending to send the up to 2 STARTUP IPIs
160 * by a factor of two. This should be enough.
161 */
162
163 /*
164 * Waiting 2s total for startup (udelay is not yet working)
165 */
166 timeout = jiffies + 2*HZ;
167 while (time_before(jiffies, timeout)) {
168 /*
169 * Has the boot CPU finished it's STARTUP sequence?
170 */
171 if (cpu_isset(cpuid, cpu_callout_map))
172 break;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700173 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
175
176 if (!time_before(jiffies, timeout)) {
177 panic("smp_callin: CPU%d started up but did not get a callout!\n",
178 cpuid);
179 }
180
181 /*
182 * the boot CPU has finished the init stage and is spinning
183 * on callin_map until we finish. We are free to set up this
184 * CPU, first the APIC. (this is probably redundant on most
185 * boards)
186 */
187
188 Dprintk("CALLIN, before setup_local_APIC().\n");
189 setup_local_APIC();
Andi Kleen739f33b2008-01-30 13:30:40 +0100190 end_local_APIC_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /*
193 * Get our bogomips.
Andi Kleenb4452212005-09-12 18:49:24 +0200194 *
195 * Need to enable IRQs because it can take longer and then
196 * the NMI watchdog might kill us.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 */
Andi Kleenb4452212005-09-12 18:49:24 +0200198 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 calibrate_delay();
Andi Kleenb4452212005-09-12 18:49:24 +0200200 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 Dprintk("Stack at about %p\n",&cpuid);
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /*
204 * Save our processor parameters
205 */
206 smp_store_cpu_info(cpuid);
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /*
209 * Allow the master to continue.
210 */
211 cpu_set(cpuid, cpu_callin_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700215 * Setup code on secondary processor (after comming out of the trampoline)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700217void __cpuinit start_secondary(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 /*
220 * Dont put anything before smp_callin(), SMP
221 * booting is too fragile that we want to limit the
222 * things done here to the most necessary things.
223 */
224 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800225 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 smp_callin();
227
228 /* otherwise gcc will move up the smp_processor_id before the cpu_init */
229 barrier();
230
Ingo Molnar95492e42007-02-16 01:27:34 -0800231 /*
232 * Check TSC sync first:
233 */
234 check_tsc_sync_target();
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (nmi_watchdog == NMI_IO_APIC) {
237 disable_8259A_irq(0);
Jan Beuliche9427102008-01-30 13:31:24 +0100238 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 enable_8259A_irq(0);
240 }
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 /*
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700243 * The sibling maps must be set before turing the online map on for
244 * this cpu
245 */
246 set_cpu_sibling_map(smp_processor_id());
247
248 /*
Ashok Raj884d9e42005-06-25 14:55:02 -0700249 * We need to hold call_lock, so there is no inconsistency
250 * between the time smp_call_function() determines number of
Simon Arlott676b1852007-10-20 01:25:36 +0200251 * IPI recipients, and the time when the determination is made
Ashok Raj884d9e42005-06-25 14:55:02 -0700252 * for which cpus receive the IPI in genapic_flat.c. Holding this
253 * lock helps us to not include this cpu in a currently in progress
254 * smp_call_function().
255 */
256 lock_ipi_call_lock();
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200257 spin_lock(&vector_lock);
Ashok Raj884d9e42005-06-25 14:55:02 -0700258
Eric W. Biederman70a0a532006-10-25 01:00:23 +0200259 /* Setup the per cpu irq handling data structures */
260 __setup_vector_irq(smp_processor_id());
Ashok Raj884d9e42005-06-25 14:55:02 -0700261 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700262 * Allow the master to continue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Glauber Costafc25da92008-03-03 14:13:04 -0300264 spin_unlock(&vector_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 cpu_set(smp_processor_id(), cpu_online_map);
Ashok Raj884d9e42005-06-25 14:55:02 -0700266 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Ingo Molnar95492e42007-02-16 01:27:34 -0800267
Ashok Raj884d9e42005-06-25 14:55:02 -0700268 unlock_ipi_call_lock();
269
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +0100270 setup_secondary_clock();
Thomas Gleixner3ac508b2007-10-14 22:57:45 +0200271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 cpu_idle();
273}
274
Andi Kleena8ab26f2005-04-16 15:25:19 -0700275extern volatile unsigned long init_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276extern void (*initial_code)(void);
277
Olaf Hering44456d32005-07-27 11:45:17 -0700278#ifdef APIC_DEBUG
Andi Kleena8ab26f2005-04-16 15:25:19 -0700279static void inquire_remote_apic(int apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
282 char *names[] = { "ID", "VERSION", "SPIV" };
Fernando Luis VazquezCao3144c332007-05-02 19:27:17 +0200283 int timeout;
Thomas Gleixner3c6bb072008-01-30 13:30:15 +0100284 u32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
287
Alejandro Martinez Ruiz4d022ad2007-10-17 14:38:58 +0200288 for (i = 0; i < ARRAY_SIZE(regs); i++) {
Thomas Gleixner3c6bb072008-01-30 13:30:15 +0100289 printk(KERN_INFO "... APIC #%d %s: ", apicid, names[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 /*
292 * Wait for idle.
293 */
Fernando Luis VazquezCao3144c332007-05-02 19:27:17 +0200294 status = safe_apic_wait_icr_idle();
295 if (status)
Thomas Gleixner3c6bb072008-01-30 13:30:15 +0100296 printk(KERN_CONT
297 "a previous APIC delivery may have failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Andi Kleenc1507eb2005-09-12 18:49:23 +0200299 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
300 apic_write(APIC_ICR, APIC_DM_REMRD | regs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 timeout = 0;
303 do {
304 udelay(100);
305 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
306 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
307
308 switch (status) {
309 case APIC_ICR_RR_VALID:
310 status = apic_read(APIC_RRR);
Thomas Gleixner3c6bb072008-01-30 13:30:15 +0100311 printk(KERN_CONT "%08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 break;
313 default:
Thomas Gleixner3c6bb072008-01-30 13:30:15 +0100314 printk(KERN_CONT "failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316 }
317}
318#endif
319
Andi Kleena8ab26f2005-04-16 15:25:19 -0700320/*
321 * Kick the secondary to wake up.
322 */
323static int __cpuinit wakeup_secondary_via_INIT(int phys_apicid, unsigned int start_rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324{
Fernando Luis VazquezCaoea8c7332007-05-02 19:27:17 +0200325 unsigned long send_status, accept_status = 0;
326 int maxlvt, num_starts, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 Dprintk("Asserting INIT.\n");
329
330 /*
331 * Turn INIT on target chip
332 */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200333 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * Send IPI
337 */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200338 apic_write(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 | APIC_DM_INIT);
340
341 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoea8c7332007-05-02 19:27:17 +0200342 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 mdelay(10);
345
346 Dprintk("Deasserting INIT.\n");
347
348 /* Target chip */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200349 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /* Send IPI */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200352 apic_write(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoea8c7332007-05-02 19:27:17 +0200355 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Benjamin LaHaisef2ecfab2006-01-11 22:43:03 +0100357 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 atomic_set(&init_deasserted, 1);
359
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200360 num_starts = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /*
363 * Run STARTUP IPI loop.
364 */
365 Dprintk("#startup loops: %d.\n", num_starts);
366
Thomas Gleixner37e650c2008-01-30 13:30:14 +0100367 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 for (j = 1; j <= num_starts; j++) {
370 Dprintk("Sending STARTUP #%d.\n",j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 apic_write(APIC_ESR, 0);
372 apic_read(APIC_ESR);
373 Dprintk("After apic_write.\n");
374
375 /*
376 * STARTUP IPI
377 */
378
379 /* Target chip */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200380 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /* Boot on the stack */
383 /* Kick the second */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200384 apic_write(APIC_ICR, APIC_DM_STARTUP | (start_rip >> 12));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 /*
387 * Give the other CPU some time to accept the IPI.
388 */
389 udelay(300);
390
391 Dprintk("Startup point 1.\n");
392
393 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoea8c7332007-05-02 19:27:17 +0200394 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 /*
397 * Give the other CPU some time to accept the IPI.
398 */
399 udelay(200);
400 /*
401 * Due to the Pentium erratum 3AP.
402 */
403 if (maxlvt > 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 apic_write(APIC_ESR, 0);
405 }
406 accept_status = (apic_read(APIC_ESR) & 0xEF);
407 if (send_status || accept_status)
408 break;
409 }
410 Dprintk("After Startup.\n");
411
412 if (send_status)
413 printk(KERN_ERR "APIC never delivered???\n");
414 if (accept_status)
415 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
416
417 return (send_status | accept_status);
418}
419
Ashok Raj76e4f662005-06-25 14:55:00 -0700420struct create_idle {
David Howells65f27f32006-11-22 14:55:48 +0000421 struct work_struct work;
Ashok Raj76e4f662005-06-25 14:55:00 -0700422 struct task_struct *idle;
423 struct completion done;
424 int cpu;
425};
426
Thomas Gleixnera2b484a2008-01-09 00:18:28 +0100427static void __cpuinit do_fork_idle(struct work_struct *work)
Ashok Raj76e4f662005-06-25 14:55:00 -0700428{
David Howells65f27f32006-11-22 14:55:48 +0000429 struct create_idle *c_idle =
430 container_of(work, struct create_idle, work);
Ashok Raj76e4f662005-06-25 14:55:00 -0700431
432 c_idle->idle = fork_idle(c_idle->cpu);
433 complete(&c_idle->done);
434}
435
Andi Kleena8ab26f2005-04-16 15:25:19 -0700436/*
437 * Boot one CPU.
438 */
439static int __cpuinit do_boot_cpu(int cpu, int apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 unsigned long boot_error;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700442 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 unsigned long start_rip;
Ashok Raj76e4f662005-06-25 14:55:00 -0700444 struct create_idle c_idle = {
445 .cpu = cpu,
Ingo Molnarf86bf9b2006-07-10 04:44:05 -0700446 .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
Ashok Raj76e4f662005-06-25 14:55:00 -0700447 };
Glauber Costa2b775a22008-02-22 12:09:29 -0300448 INIT_WORK(&c_idle.work, do_fork_idle);
Ashok Raj76e4f662005-06-25 14:55:00 -0700449
Ravikiran G Thirumalaic11efdf2006-01-11 22:43:57 +0100450 /* allocate memory for gdts of secondary cpus. Hotplug is considered */
451 if (!cpu_gdt_descr[cpu].address &&
452 !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
453 printk(KERN_ERR "Failed to allocate GDT for CPU %d\n", cpu);
454 return -1;
455 }
456
Ravikiran G Thirumalai365ba912006-01-11 22:45:42 +0100457 /* Allocate node local memory for AP pdas */
458 if (cpu_pda(cpu) == &boot_cpu_pda[cpu]) {
459 struct x8664_pda *newpda, *pda;
460 int node = cpu_to_node(cpu);
461 pda = cpu_pda(cpu);
462 newpda = kmalloc_node(sizeof (struct x8664_pda), GFP_ATOMIC,
463 node);
464 if (newpda) {
465 memcpy(newpda, pda, sizeof (struct x8664_pda));
466 cpu_pda(cpu) = newpda;
467 } else
468 printk(KERN_ERR
469 "Could not allocate node local PDA for CPU %d on node %d\n",
470 cpu, node);
471 }
472
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200473 alternatives_smp_switch(1);
474
Ashok Raj76e4f662005-06-25 14:55:00 -0700475 c_idle.idle = get_idle_for_cpu(cpu);
476
477 if (c_idle.idle) {
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100478 c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
Al Viro57eafdc2006-01-12 01:05:39 -0800479 (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
Ashok Raj76e4f662005-06-25 14:55:00 -0700480 init_idle(c_idle.idle, cpu);
481 goto do_rest;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Ashok Raj76e4f662005-06-25 14:55:00 -0700484 /*
485 * During cold boot process, keventd thread is not spun up yet.
486 * When we do cpu hot-add, we create idle threads on the fly, we should
487 * not acquire any attributes from the calling context. Hence the clean
488 * way to create kernel_threads() is to do that from keventd().
489 * We do the current_is_keventd() due to the fact that ACPI notifier
490 * was also queuing to keventd() and when the caller is already running
491 * in context of keventd(), we would end up with locking up the keventd
492 * thread.
493 */
494 if (!keventd_up() || current_is_keventd())
David Howells65f27f32006-11-22 14:55:48 +0000495 c_idle.work.func(&c_idle.work);
Ashok Raj76e4f662005-06-25 14:55:00 -0700496 else {
David Howells65f27f32006-11-22 14:55:48 +0000497 schedule_work(&c_idle.work);
Ashok Raj76e4f662005-06-25 14:55:00 -0700498 wait_for_completion(&c_idle.done);
499 }
500
501 if (IS_ERR(c_idle.idle)) {
502 printk("failed fork for CPU %d\n", cpu);
503 return PTR_ERR(c_idle.idle);
504 }
505
506 set_idle_for_cpu(cpu, c_idle.idle);
507
508do_rest:
509
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100510 cpu_pda(cpu)->pcurrent = c_idle.idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 start_rip = setup_trampoline();
513
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100514 init_rsp = c_idle.idle->thread.sp;
Glauber de Oliveira Costa7818a1e2008-01-30 13:31:31 +0100515 load_sp0(&per_cpu(init_tss, cpu), &c_idle.idle->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 initial_code = start_secondary;
Al Viroe4f17c42006-01-12 01:05:38 -0800517 clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Andi Kleende04f322005-07-28 21:15:29 -0700519 printk(KERN_INFO "Booting processor %d/%d APIC 0x%x\n", cpu,
520 cpus_weight(cpu_present_map),
521 apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 /*
524 * This grunge runs the startup process for
525 * the targeted processor.
526 */
527
528 atomic_set(&init_deasserted, 0);
529
530 Dprintk("Setting warm reset code and vector.\n");
531
532 CMOS_WRITE(0xa, 0xf);
533 local_flush_tlb();
534 Dprintk("1.\n");
535 *((volatile unsigned short *) phys_to_virt(0x469)) = start_rip >> 4;
536 Dprintk("2.\n");
537 *((volatile unsigned short *) phys_to_virt(0x467)) = start_rip & 0xf;
538 Dprintk("3.\n");
539
540 /*
541 * Be paranoid about clearing APIC errors.
542 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100543 apic_write(APIC_ESR, 0);
544 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 /*
547 * Status is now clean
548 */
549 boot_error = 0;
550
551 /*
552 * Starting actual IPI sequence...
553 */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700554 boot_error = wakeup_secondary_via_INIT(apicid, start_rip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 if (!boot_error) {
557 /*
558 * allow APs to start initializing.
559 */
560 Dprintk("Before Callout %d.\n", cpu);
561 cpu_set(cpu, cpu_callout_map);
562 Dprintk("After Callout %d.\n", cpu);
563
564 /*
565 * Wait 5s total for a response
566 */
567 for (timeout = 0; timeout < 50000; timeout++) {
568 if (cpu_isset(cpu, cpu_callin_map))
569 break; /* It has booted */
570 udelay(100);
571 }
572
573 if (cpu_isset(cpu, cpu_callin_map)) {
574 /* number CPUs logically, starting from 1 (BSP is 0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 Dprintk("CPU has booted.\n");
576 } else {
577 boot_error = 1;
578 if (*((volatile unsigned char *)phys_to_virt(SMP_TRAMPOLINE_BASE))
579 == 0xA5)
580 /* trampoline started but...? */
581 printk("Stuck ??\n");
582 else
583 /* trampoline code not run */
584 printk("Not responding.\n");
Olaf Hering44456d32005-07-27 11:45:17 -0700585#ifdef APIC_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 inquire_remote_apic(apicid);
587#endif
588 }
589 }
590 if (boot_error) {
591 cpu_clear(cpu, cpu_callout_map); /* was set here (do_boot_cpu()) */
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +0100592 clear_bit(cpu, (unsigned long *)&cpu_initialized); /* was set by cpu_init() */
Ravikiran G Thirumalai488fc082006-02-07 12:58:23 -0800593 clear_node_cpumask(cpu); /* was set by numa_add_cpu */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700594 cpu_clear(cpu, cpu_present_map);
595 cpu_clear(cpu, cpu_possible_map);
Mike Travis71fff5e2007-10-19 20:35:03 +0200596 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700597 return -EIO;
598 }
599
600 return 0;
601}
602
603cycles_t cacheflush_time;
604unsigned long cache_decay_ticks;
605
606/*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700607 * Cleanup possible dangling ends...
608 */
609static __cpuinit void smp_cleanup_boot(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700612 * Paranoid: Set warm reset code and vector here back
613 * to default values.
614 */
615 CMOS_WRITE(0, 0xf);
616
617 /*
618 * Reset trampoline flag
619 */
620 *((volatile int *) phys_to_virt(0x467)) = 0;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700621}
622
623/*
624 * Fall back to non SMP mode after errors.
625 *
626 * RED-PEN audit/test this more. I bet there is more state messed up here.
627 */
Ashok Raje6982c62005-06-25 14:54:58 -0700628static __init void disable_smp(void)
Andi Kleena8ab26f2005-04-16 15:25:19 -0700629{
630 cpu_present_map = cpumask_of_cpu(0);
631 cpu_possible_map = cpumask_of_cpu(0);
632 if (smp_found_config)
633 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_id);
634 else
635 phys_cpu_present_map = physid_mask_of_physid(0);
Mike Travisd5a74302007-10-16 01:24:05 -0700636 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -0700637 cpu_set(0, per_cpu(cpu_core_map, 0));
Andi Kleena8ab26f2005-04-16 15:25:19 -0700638}
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640/*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700641 * Various sanity checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
Ashok Raje6982c62005-06-25 14:54:58 -0700643static int __init smp_sanity_check(unsigned max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
646 printk("weird, boot CPU (#%d) not listed by the BIOS.\n",
647 hard_smp_processor_id());
648 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
649 }
650
651 /*
652 * If we couldn't find an SMP configuration at boot time,
653 * get out of here now!
654 */
655 if (!smp_found_config) {
656 printk(KERN_NOTICE "SMP motherboard not detected.\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -0700657 disable_smp();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (APIC_init_uniprocessor())
659 printk(KERN_NOTICE "Local APIC not detected."
660 " Using dummy APIC emulation.\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -0700661 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
664 /*
665 * Should not be necessary because the MP table should list the boot
666 * CPU too, but we do it for the sake of robustness anyway.
667 */
668 if (!physid_isset(boot_cpu_id, phys_cpu_present_map)) {
669 printk(KERN_NOTICE "weird, boot CPU (#%d) not listed by the BIOS.\n",
670 boot_cpu_id);
671 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
672 }
673
674 /*
675 * If we couldn't find a local APIC, then get out of here now!
676 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100677 if (!cpu_has_apic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
679 boot_cpu_id);
680 printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -0700681 nr_ioapics = 0;
682 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
686 * If SMP should be disabled, then really disable it!
687 */
688 if (!max_cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -0700690 nr_ioapics = 0;
691 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
Andi Kleena8ab26f2005-04-16 15:25:19 -0700694 return 0;
695}
696
Yinghai Lu949ec322008-01-30 13:30:46 +0100697static void __init smp_cpu_index_default(void)
698{
699 int i;
700 struct cpuinfo_x86 *c;
701
702 for_each_cpu_mask(i, cpu_possible_map) {
703 c = &cpu_data(i);
704 /* mark all to hotplug */
705 c->cpu_index = NR_CPUS;
706 }
707}
708
Mike Travis71fff5e2007-10-19 20:35:03 +0200709/*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700710 * Prepare for SMP bootup. The MP table or ACPI has been read
711 * earlier. Just do some sanity checking here and enable APIC mode.
712 */
Glauber Costa7557da62008-03-03 14:12:38 -0300713void __init native_smp_prepare_cpus(unsigned int max_cpus)
Andi Kleena8ab26f2005-04-16 15:25:19 -0700714{
Andi Kleena8ab26f2005-04-16 15:25:19 -0700715 nmi_watchdog_default();
Yinghai Lu949ec322008-01-30 13:30:46 +0100716 smp_cpu_index_default();
Andi Kleena8ab26f2005-04-16 15:25:19 -0700717 current_cpu_data = boot_cpu_data;
718 current_thread_info()->cpu = 0; /* needed? */
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100719 set_cpu_sibling_map(0);
Andi Kleena8ab26f2005-04-16 15:25:19 -0700720
Andi Kleena8ab26f2005-04-16 15:25:19 -0700721 if (smp_sanity_check(max_cpus) < 0) {
722 printk(KERN_INFO "SMP disabled\n");
723 disable_smp();
724 return;
725 }
726
727
728 /*
729 * Switch from PIC to APIC mode.
730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 setup_local_APIC();
732
Andi Kleen739f33b2008-01-30 13:30:40 +0100733 /*
734 * Enable IO APIC before setting up error vector
735 */
736 if (!skip_ioapic_setup && nr_ioapics)
737 enable_IO_APIC();
738 end_local_APIC_setup();
739
Andi Kleena8ab26f2005-04-16 15:25:19 -0700740 if (GET_APIC_ID(apic_read(APIC_ID)) != boot_cpu_id) {
741 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
742 GET_APIC_ID(apic_read(APIC_ID)), boot_cpu_id);
743 /* Or can we switch back to PIC here? */
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700747 * Now start the IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 */
749 if (!skip_ioapic_setup && nr_ioapics)
750 setup_IO_APIC();
751 else
752 nr_ioapics = 0;
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700755 * Set up local APIC timer on boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Glauber de Oliveira Costa746ef0c2008-01-30 13:31:11 +0100758 setup_boot_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759}
760
Andi Kleena8ab26f2005-04-16 15:25:19 -0700761/*
762 * Early setup to make printk work.
763 */
Glauber Costa1e3fac82008-03-03 14:12:37 -0300764void __init native_smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Andi Kleena8ab26f2005-04-16 15:25:19 -0700766 int me = smp_processor_id();
Yinghai Lu23916d42008-01-30 13:33:39 +0100767 /* already set me in cpu_online_map in boot_cpu_init() */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700768 cpu_set(me, cpu_callout_map);
Ashok Raj884d9e42005-06-25 14:55:02 -0700769 per_cpu(cpu_state, me) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Andi Kleena8ab26f2005-04-16 15:25:19 -0700772/*
773 * Entry point to boot a CPU.
Andi Kleena8ab26f2005-04-16 15:25:19 -0700774 */
Glauber Costa71d19542008-03-03 14:12:36 -0300775int __cpuinit native_cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Andi Kleena8ab26f2005-04-16 15:25:19 -0700777 int apicid = cpu_present_to_apicid(cpu);
Ingo Molnard04f41e2007-03-07 18:12:31 +0100778 unsigned long flags;
779 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Andi Kleena8ab26f2005-04-16 15:25:19 -0700781 WARN_ON(irqs_disabled());
782
783 Dprintk("++++++++++++++++++++=_---CPU UP %u\n", cpu);
784
785 if (apicid == BAD_APICID || apicid == boot_cpu_id ||
786 !physid_isset(apicid, phys_cpu_present_map)) {
787 printk("__cpu_up: bad cpu %d\n", cpu);
788 return -EINVAL;
789 }
Andi Kleena8ab26f2005-04-16 15:25:19 -0700790
Ashok Raj76e4f662005-06-25 14:55:00 -0700791 /*
792 * Already booted CPU?
793 */
794 if (cpu_isset(cpu, cpu_callin_map)) {
795 Dprintk("do_boot_cpu %d Already started\n", cpu);
796 return -ENOSYS;
797 }
798
Bernhard Kaindl2b1f6272007-05-02 19:27:17 +0200799 /*
800 * Save current MTRR state in case it was changed since early boot
801 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
802 */
803 mtrr_save_state();
804
Ashok Raj884d9e42005-06-25 14:55:02 -0700805 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700806 /* Boot it! */
807 err = do_boot_cpu(cpu, apicid);
808 if (err < 0) {
Andi Kleena8ab26f2005-04-16 15:25:19 -0700809 Dprintk("do_boot_cpu failed %d\n", err);
810 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /* Unleash the CPU! */
814 Dprintk("waiting for cpu %d\n", cpu);
815
Ingo Molnar95492e42007-02-16 01:27:34 -0800816 /*
817 * Make sure and check TSC sync:
818 */
Ingo Molnard04f41e2007-03-07 18:12:31 +0100819 local_irq_save(flags);
Ingo Molnar95492e42007-02-16 01:27:34 -0800820 check_tsc_sync_source(cpu);
Ingo Molnard04f41e2007-03-07 18:12:31 +0100821 local_irq_restore(flags);
Ingo Molnar95492e42007-02-16 01:27:34 -0800822
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 while (!cpu_isset(cpu, cpu_online_map))
Andi Kleena8ab26f2005-04-16 15:25:19 -0700824 cpu_relax();
Ashok Raj76e4f662005-06-25 14:55:00 -0700825 err = 0;
826
827 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Andi Kleena8ab26f2005-04-16 15:25:19 -0700830/*
831 * Finish the SMP boot.
832 */
Glauber Costac5597642008-03-03 14:12:39 -0300833void __init native_smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
Andi Kleena8ab26f2005-04-16 15:25:19 -0700835 smp_cleanup_boot();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 setup_ioapic_dest();
Andi Kleen75152112005-05-16 21:53:34 -0700837 check_nmi_watchdog();
Andi Kleena8ab26f2005-04-16 15:25:19 -0700838}
Ashok Raj76e4f662005-06-25 14:55:00 -0700839
840#ifdef CONFIG_HOTPLUG_CPU
Sam Ravnborg69e97c02008-02-01 17:49:41 +0100841static void __ref remove_cpu_from_maps(void)
Ashok Raj76e4f662005-06-25 14:55:00 -0700842{
843 int cpu = smp_processor_id();
844
845 cpu_clear(cpu, cpu_callout_map);
846 cpu_clear(cpu, cpu_callin_map);
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +0100847 clear_bit(cpu, (unsigned long *)&cpu_initialized); /* was set by cpu_init() */
Ravikiran G Thirumalai488fc082006-02-07 12:58:23 -0800848 clear_node_cpumask(cpu);
Ashok Raj76e4f662005-06-25 14:55:00 -0700849}
850
851int __cpu_disable(void)
852{
853 int cpu = smp_processor_id();
854
855 /*
856 * Perhaps use cpufreq to drop frequency, but that could go
857 * into generic code.
858 *
859 * We won't take down the boot processor on i386 due to some
860 * interrupts only being able to be serviced by the BSP.
861 * Especially so if we're not using an IOAPIC -zwane
862 */
863 if (cpu == 0)
864 return -EBUSY;
865
Shaohua Li4038f902006-09-26 10:52:27 +0200866 if (nmi_watchdog == NMI_LOCAL_APIC)
867 stop_apic_nmi_watchdog(NULL);
Shaohua Li5e9ef022005-12-12 22:17:08 -0800868 clear_local_APIC();
Ashok Raj76e4f662005-06-25 14:55:00 -0700869
870 /*
871 * HACK:
872 * Allow any queued timer interrupts to get serviced
873 * This is only a temporary solution until we cleanup
874 * fixup_irqs as we do for IA64.
875 */
876 local_irq_enable();
877 mdelay(1);
878
879 local_irq_disable();
880 remove_siblinginfo(cpu);
881
882 /* It's now safe to remove this processor from the online map */
883 cpu_clear(cpu, cpu_online_map);
884 remove_cpu_from_maps();
885 fixup_irqs(cpu_online_map);
886 return 0;
887}
888
889void __cpu_die(unsigned int cpu)
890{
891 /* We don't do anything here: idle task is faking death itself. */
892 unsigned int i;
893
894 for (i = 0; i < 10; i++) {
895 /* They ack this in play_dead by setting CPU_DEAD */
Ashok Raj884d9e42005-06-25 14:55:02 -0700896 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
897 printk ("CPU %d is now offline\n", cpu);
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200898 if (1 == num_online_cpus())
899 alternatives_smp_switch(0);
Ashok Raj76e4f662005-06-25 14:55:00 -0700900 return;
Ashok Raj884d9e42005-06-25 14:55:02 -0700901 }
Nishanth Aravamudanef6e5252005-07-28 21:15:53 -0700902 msleep(100);
Ashok Raj76e4f662005-06-25 14:55:00 -0700903 }
904 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
905}
906
907#else /* ... !CONFIG_HOTPLUG_CPU */
908
909int __cpu_disable(void)
910{
911 return -ENOSYS;
912}
913
914void __cpu_die(unsigned int cpu)
915{
916 /* We said "no" in __cpu_disable */
917 BUG();
918}
919#endif /* CONFIG_HOTPLUG_CPU */