xen: convert to cpumask_var_t and new cpumask primitives.
[linux-2.6-block.git] / arch / x86 / kernel / smpboot.c
CommitLineData
4cedb334
GOC
1/*
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 *
15 * This code is released under the GNU General Public License version 2 or
16 * later.
17 *
18 * Fixes
19 * Felix Koop : NR_CPUS used properly
20 * Jose Renau : Handle single CPU case.
21 * Alan Cox : By repeated request 8) - Total BogoMIPS report.
22 * Greg Wright : Fix for kernel stacks panic.
23 * Erich Boleyn : MP v1.4 and additional changes.
24 * Matthias Sattler : Changes for 2.1 kernel map.
25 * Michel Lespinasse : Changes for 2.1 kernel map.
26 * Michael Chastain : Change trampoline.S to gnu as.
27 * Alan Cox : Dumb bug: 'B' step PPro's are fine
28 * Ingo Molnar : Added APIC timers, based on code
29 * from Jose Renau
30 * Ingo Molnar : various cleanups and rewrites
31 * Tigran Aivazian : fixed "0.00 in /proc/uptime on SMP" bug.
32 * Maciej W. Rozycki : Bits for genuine 82489DX APICs
33 * Andi Kleen : Changed for SMP boot into long mode.
34 * Martin J. Bligh : Added support for multi-quad systems
35 * Dave Jones : Report invalid combinations of Athlon CPUs.
36 * Rusty Russell : Hacked into shape for new "hotplug" boot process.
37 * Andi Kleen : Converted to new state machine.
38 * Ashok Raj : CPU hotplug support
39 * Glauber Costa : i386 and x86_64 integration
40 */
41
68a1c3f8
GC
42#include <linux/init.h>
43#include <linux/smp.h>
a355352b 44#include <linux/module.h>
70708a18 45#include <linux/sched.h>
69c18c15 46#include <linux/percpu.h>
91718e8d 47#include <linux/bootmem.h>
cb3c8b90
GOC
48#include <linux/err.h>
49#include <linux/nmi.h>
69c18c15 50
8aef135c 51#include <asm/acpi.h>
cb3c8b90 52#include <asm/desc.h>
69c18c15
GC
53#include <asm/nmi.h>
54#include <asm/irq.h>
07bbc16a 55#include <asm/idle.h>
69c18c15 56#include <asm/smp.h>
e44b7b75 57#include <asm/trampoline.h>
69c18c15
GC
58#include <asm/cpu.h>
59#include <asm/numa.h>
cb3c8b90
GOC
60#include <asm/pgtable.h>
61#include <asm/tlbflush.h>
62#include <asm/mtrr.h>
bbc2ff6a 63#include <asm/vmi.h>
34d05591 64#include <asm/genapic.h>
569712b2 65#include <asm/setup.h>
cb3c8b90 66#include <linux/mc146818rtc.h>
68a1c3f8 67
f6bc4029 68#include <mach_apic.h>
cb3c8b90
GOC
69#include <mach_wakecpu.h>
70#include <smpboot_hooks.h>
71
16ecf7a4 72#ifdef CONFIG_X86_32
4cedb334 73u8 apicid_2_node[MAX_APICID];
61165d7a 74static int low_mappings;
acbb6734
GOC
75#endif
76
a8db8453
GOC
77/* State of each CPU */
78DEFINE_PER_CPU(int, cpu_state) = { 0 };
79
cb3c8b90
GOC
80/* Store all idle threads, this can be reused instead of creating
81* a new thread. Also avoids complicated thread destroy functionality
82* for idle threads.
83*/
84#ifdef CONFIG_HOTPLUG_CPU
85/*
86 * Needed only for CONFIG_HOTPLUG_CPU because __cpuinitdata is
87 * removed after init for !CONFIG_HOTPLUG_CPU.
88 */
89static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
90#define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x))
91#define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p))
92#else
f86c9985 93static struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
cb3c8b90
GOC
94#define get_idle_for_cpu(x) (idle_thread_array[(x)])
95#define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
96#endif
f6bc4029 97
a355352b
GC
98/* Number of siblings per CPU package */
99int smp_num_siblings = 1;
100EXPORT_SYMBOL(smp_num_siblings);
101
102/* Last level cache ID of each logical CPU */
103DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
104
a355352b
GC
105cpumask_t cpu_callin_map;
106cpumask_t cpu_callout_map;
a355352b
GC
107
108/* representing HT siblings of each logical CPU */
109DEFINE_PER_CPU(cpumask_t, cpu_sibling_map);
110EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
111
112/* representing HT and core siblings of each logical CPU */
113DEFINE_PER_CPU(cpumask_t, cpu_core_map);
114EXPORT_PER_CPU_SYMBOL(cpu_core_map);
115
116/* Per CPU bogomips and other parameters */
117DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
118EXPORT_PER_CPU_SYMBOL(cpu_info);
768d9505 119
cb3c8b90
GOC
120static atomic_t init_deasserted;
121
8aef135c 122
768d9505
GC
123/* representing cpus for which sibling maps can be computed */
124static cpumask_t cpu_sibling_setup_map;
125
1d89a7f0 126/* Set if we find a B stepping CPU */
f86c9985 127static int __cpuinitdata smp_b_stepping;
1d89a7f0 128
7cc3959e
GOC
129#if defined(CONFIG_NUMA) && defined(CONFIG_X86_32)
130
131/* which logical CPUs are on which nodes */
132cpumask_t node_to_cpumask_map[MAX_NUMNODES] __read_mostly =
133 { [0 ... MAX_NUMNODES-1] = CPU_MASK_NONE };
134EXPORT_SYMBOL(node_to_cpumask_map);
135/* which node each logical CPU is on */
136int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
137EXPORT_SYMBOL(cpu_to_node_map);
138
139/* set up a mapping between cpu and node. */
140static void map_cpu_to_node(int cpu, int node)
141{
142 printk(KERN_INFO "Mapping cpu %d to node %d\n", cpu, node);
143 cpu_set(cpu, node_to_cpumask_map[node]);
144 cpu_to_node_map[cpu] = node;
145}
146
147/* undo a mapping between cpu and node. */
148static void unmap_cpu_to_node(int cpu)
149{
150 int node;
151
152 printk(KERN_INFO "Unmapping cpu %d from all nodes\n", cpu);
153 for (node = 0; node < MAX_NUMNODES; node++)
154 cpu_clear(cpu, node_to_cpumask_map[node]);
155 cpu_to_node_map[cpu] = 0;
156}
157#else /* !(CONFIG_NUMA && CONFIG_X86_32) */
158#define map_cpu_to_node(cpu, node) ({})
159#define unmap_cpu_to_node(cpu) ({})
160#endif
161
162#ifdef CONFIG_X86_32
1b374e4d
SS
163static int boot_cpu_logical_apicid;
164
7cc3959e
GOC
165u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly =
166 { [0 ... NR_CPUS-1] = BAD_APICID };
167
a4928cff 168static void map_cpu_to_logical_apicid(void)
7cc3959e
GOC
169{
170 int cpu = smp_processor_id();
171 int apicid = logical_smp_processor_id();
172 int node = apicid_to_node(apicid);
173
174 if (!node_online(node))
175 node = first_online_node;
176
177 cpu_2_logical_apicid[cpu] = apicid;
178 map_cpu_to_node(cpu, node);
179}
180
1481a3dd 181void numa_remove_cpu(int cpu)
7cc3959e
GOC
182{
183 cpu_2_logical_apicid[cpu] = BAD_APICID;
184 unmap_cpu_to_node(cpu);
185}
186#else
7cc3959e
GOC
187#define map_cpu_to_logical_apicid() do {} while (0)
188#endif
189
cb3c8b90
GOC
190/*
191 * Report back to the Boot Processor.
192 * Running on AP.
193 */
a4928cff 194static void __cpuinit smp_callin(void)
cb3c8b90
GOC
195{
196 int cpuid, phys_id;
197 unsigned long timeout;
198
199 /*
200 * If waken up by an INIT in an 82489DX configuration
201 * we may get here before an INIT-deassert IPI reaches
202 * our local APIC. We have to wait for the IPI or we'll
203 * lock up on an APIC access.
204 */
205 wait_for_init_deassert(&init_deasserted);
206
207 /*
208 * (This works even if the APIC is not enabled.)
209 */
4c9961d5 210 phys_id = read_apic_id();
cb3c8b90
GOC
211 cpuid = smp_processor_id();
212 if (cpu_isset(cpuid, cpu_callin_map)) {
213 panic("%s: phys CPU#%d, CPU#%d already present??\n", __func__,
214 phys_id, cpuid);
215 }
cfc1b9a6 216 pr_debug("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
cb3c8b90
GOC
217
218 /*
219 * STARTUP IPIs are fragile beasts as they might sometimes
220 * trigger some glue motherboard logic. Complete APIC bus
221 * silence for 1 second, this overestimates the time the
222 * boot CPU is spending to send the up to 2 STARTUP IPIs
223 * by a factor of two. This should be enough.
224 */
225
226 /*
227 * Waiting 2s total for startup (udelay is not yet working)
228 */
229 timeout = jiffies + 2*HZ;
230 while (time_before(jiffies, timeout)) {
231 /*
232 * Has the boot CPU finished it's STARTUP sequence?
233 */
234 if (cpu_isset(cpuid, cpu_callout_map))
235 break;
236 cpu_relax();
237 }
238
239 if (!time_before(jiffies, timeout)) {
240 panic("%s: CPU%d started up but did not get a callout!\n",
241 __func__, cpuid);
242 }
243
244 /*
245 * the boot CPU has finished the init stage and is spinning
246 * on callin_map until we finish. We are free to set up this
247 * CPU, first the APIC. (this is probably redundant on most
248 * boards)
249 */
250
cfc1b9a6 251 pr_debug("CALLIN, before setup_local_APIC().\n");
cb3c8b90
GOC
252 smp_callin_clear_local_apic();
253 setup_local_APIC();
254 end_local_APIC_setup();
255 map_cpu_to_logical_apicid();
256
e545a614 257 notify_cpu_starting(cpuid);
cb3c8b90
GOC
258 /*
259 * Get our bogomips.
260 *
261 * Need to enable IRQs because it can take longer and then
262 * the NMI watchdog might kill us.
263 */
264 local_irq_enable();
265 calibrate_delay();
266 local_irq_disable();
cfc1b9a6 267 pr_debug("Stack at about %p\n", &cpuid);
cb3c8b90
GOC
268
269 /*
270 * Save our processor parameters
271 */
272 smp_store_cpu_info(cpuid);
273
274 /*
275 * Allow the master to continue.
276 */
277 cpu_set(cpuid, cpu_callin_map);
278}
279
25ddbb18
AK
280static int __cpuinitdata unsafe_smp;
281
bbc2ff6a
GOC
282/*
283 * Activate a secondary processor.
284 */
dbe55f47 285static void __cpuinit start_secondary(void *unused)
bbc2ff6a
GOC
286{
287 /*
288 * Don't put *anything* before cpu_init(), SMP booting is too
289 * fragile that we want to limit the things done here to the
290 * most necessary things.
291 */
292#ifdef CONFIG_VMI
293 vmi_bringup();
294#endif
295 cpu_init();
296 preempt_disable();
297 smp_callin();
298
299 /* otherwise gcc will move up smp_processor_id before the cpu_init */
300 barrier();
301 /*
302 * Check TSC synchronization with the BP:
303 */
304 check_tsc_sync_target();
305
306 if (nmi_watchdog == NMI_IO_APIC) {
307 disable_8259A_irq(0);
308 enable_NMI_through_LVT0();
309 enable_8259A_irq(0);
310 }
311
61165d7a
HD
312#ifdef CONFIG_X86_32
313 while (low_mappings)
314 cpu_relax();
315 __flush_tlb_all();
316#endif
317
bbc2ff6a
GOC
318 /* This must be done before setting cpu_online_map */
319 set_cpu_sibling_map(raw_smp_processor_id());
320 wmb();
321
322 /*
323 * We need to hold call_lock, so there is no inconsistency
324 * between the time smp_call_function() determines number of
325 * IPI recipients, and the time when the determination is made
326 * for which cpus receive the IPI. Holding this
327 * lock helps us to not include this cpu in a currently in progress
328 * smp_call_function().
d388e5fd
EB
329 *
330 * We need to hold vector_lock so there the set of online cpus
331 * does not change while we are assigning vectors to cpus. Holding
332 * this lock ensures we don't half assign or remove an irq from a cpu.
bbc2ff6a 333 */
0cefa5b9 334 ipi_call_lock();
d388e5fd
EB
335 lock_vector_lock();
336 __setup_vector_irq(smp_processor_id());
bbc2ff6a 337 cpu_set(smp_processor_id(), cpu_online_map);
d388e5fd 338 unlock_vector_lock();
0cefa5b9 339 ipi_call_unlock();
bbc2ff6a
GOC
340 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
341
0cefa5b9
MS
342 /* enable local interrupts */
343 local_irq_enable();
344
bbc2ff6a
GOC
345 setup_secondary_clock();
346
347 wmb();
348 cpu_idle();
349}
350
1d89a7f0
GOC
351static void __cpuinit smp_apply_quirks(struct cpuinfo_x86 *c)
352{
1d89a7f0
GOC
353 /*
354 * Mask B, Pentium, but not Pentium MMX
355 */
356 if (c->x86_vendor == X86_VENDOR_INTEL &&
357 c->x86 == 5 &&
358 c->x86_mask >= 1 && c->x86_mask <= 4 &&
359 c->x86_model <= 3)
360 /*
361 * Remember we have B step Pentia with bugs
362 */
363 smp_b_stepping = 1;
364
365 /*
366 * Certain Athlons might work (for various values of 'work') in SMP
367 * but they are not certified as MP capable.
368 */
369 if ((c->x86_vendor == X86_VENDOR_AMD) && (c->x86 == 6)) {
370
371 if (num_possible_cpus() == 1)
372 goto valid_k7;
373
374 /* Athlon 660/661 is valid. */
375 if ((c->x86_model == 6) && ((c->x86_mask == 0) ||
376 (c->x86_mask == 1)))
377 goto valid_k7;
378
379 /* Duron 670 is valid */
380 if ((c->x86_model == 7) && (c->x86_mask == 0))
381 goto valid_k7;
382
383 /*
384 * Athlon 662, Duron 671, and Athlon >model 7 have capability
385 * bit. It's worth noting that the A5 stepping (662) of some
386 * Athlon XP's have the MP bit set.
387 * See http://www.heise.de/newsticker/data/jow-18.10.01-000 for
388 * more.
389 */
390 if (((c->x86_model == 6) && (c->x86_mask >= 2)) ||
391 ((c->x86_model == 7) && (c->x86_mask >= 1)) ||
392 (c->x86_model > 7))
393 if (cpu_has_mp)
394 goto valid_k7;
395
396 /* If we get here, not a certified SMP capable AMD system. */
25ddbb18 397 unsafe_smp = 1;
1d89a7f0
GOC
398 }
399
400valid_k7:
401 ;
1d89a7f0
GOC
402}
403
a4928cff 404static void __cpuinit smp_checks(void)
693d4b8a
GOC
405{
406 if (smp_b_stepping)
407 printk(KERN_WARNING "WARNING: SMP operation may be unreliable"
408 "with B stepping processors.\n");
409
410 /*
411 * Don't taint if we are running SMP kernel on a single non-MP
412 * approved Athlon
413 */
25ddbb18
AK
414 if (unsafe_smp && num_online_cpus() > 1) {
415 printk(KERN_INFO "WARNING: This combination of AMD"
416 "processors is not suitable for SMP.\n");
417 add_taint(TAINT_UNSAFE_SMP);
693d4b8a
GOC
418 }
419}
420
1d89a7f0
GOC
421/*
422 * The bootstrap kernel entry code has set these up. Save them for
423 * a given CPU
424 */
425
426void __cpuinit smp_store_cpu_info(int id)
427{
428 struct cpuinfo_x86 *c = &cpu_data(id);
429
430 *c = boot_cpu_data;
431 c->cpu_index = id;
432 if (id != 0)
433 identify_secondary_cpu(c);
434 smp_apply_quirks(c);
435}
436
437
768d9505
GC
438void __cpuinit set_cpu_sibling_map(int cpu)
439{
440 int i;
441 struct cpuinfo_x86 *c = &cpu_data(cpu);
442
443 cpu_set(cpu, cpu_sibling_setup_map);
444
445 if (smp_num_siblings > 1) {
334ef7a7 446 for_each_cpu_mask_nr(i, cpu_sibling_setup_map) {
768d9505
GC
447 if (c->phys_proc_id == cpu_data(i).phys_proc_id &&
448 c->cpu_core_id == cpu_data(i).cpu_core_id) {
449 cpu_set(i, per_cpu(cpu_sibling_map, cpu));
450 cpu_set(cpu, per_cpu(cpu_sibling_map, i));
451 cpu_set(i, per_cpu(cpu_core_map, cpu));
452 cpu_set(cpu, per_cpu(cpu_core_map, i));
453 cpu_set(i, c->llc_shared_map);
454 cpu_set(cpu, cpu_data(i).llc_shared_map);
455 }
456 }
457 } else {
458 cpu_set(cpu, per_cpu(cpu_sibling_map, cpu));
459 }
460
461 cpu_set(cpu, c->llc_shared_map);
462
463 if (current_cpu_data.x86_max_cores == 1) {
464 per_cpu(cpu_core_map, cpu) = per_cpu(cpu_sibling_map, cpu);
465 c->booted_cores = 1;
466 return;
467 }
468
334ef7a7 469 for_each_cpu_mask_nr(i, cpu_sibling_setup_map) {
768d9505
GC
470 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
471 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
472 cpu_set(i, c->llc_shared_map);
473 cpu_set(cpu, cpu_data(i).llc_shared_map);
474 }
475 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
476 cpu_set(i, per_cpu(cpu_core_map, cpu));
477 cpu_set(cpu, per_cpu(cpu_core_map, i));
478 /*
479 * Does this new cpu bringup a new core?
480 */
481 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1) {
482 /*
483 * for each core in package, increment
484 * the booted_cores for this new cpu
485 */
486 if (first_cpu(per_cpu(cpu_sibling_map, i)) == i)
487 c->booted_cores++;
488 /*
489 * increment the core count for all
490 * the other cpus in this package
491 */
492 if (i != cpu)
493 cpu_data(i).booted_cores++;
494 } else if (i != cpu && !c->booted_cores)
495 c->booted_cores = cpu_data(i).booted_cores;
496 }
497 }
498}
499
70708a18
GC
500/* maps the cpu to the sched domain representing multi-core */
501cpumask_t cpu_coregroup_map(int cpu)
502{
503 struct cpuinfo_x86 *c = &cpu_data(cpu);
504 /*
505 * For perf, we return last level cache shared map.
506 * And for power savings, we return cpu_core_map
507 */
508 if (sched_mc_power_savings || sched_smt_power_savings)
509 return per_cpu(cpu_core_map, cpu);
510 else
511 return c->llc_shared_map;
512}
513
a4928cff 514static void impress_friends(void)
904541e2
GOC
515{
516 int cpu;
517 unsigned long bogosum = 0;
518 /*
519 * Allow the user to impress friends.
520 */
cfc1b9a6 521 pr_debug("Before bogomips.\n");
904541e2
GOC
522 for_each_possible_cpu(cpu)
523 if (cpu_isset(cpu, cpu_callout_map))
524 bogosum += cpu_data(cpu).loops_per_jiffy;
525 printk(KERN_INFO
526 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
f68e00a3 527 num_online_cpus(),
904541e2
GOC
528 bogosum/(500000/HZ),
529 (bogosum/(5000/HZ))%100);
530
cfc1b9a6 531 pr_debug("Before bogocount - setting activated=1.\n");
904541e2
GOC
532}
533
569712b2 534void __inquire_remote_apic(int apicid)
cb3c8b90
GOC
535{
536 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
537 char *names[] = { "ID", "VERSION", "SPIV" };
538 int timeout;
539 u32 status;
540
823b259b 541 printk(KERN_INFO "Inquiring remote APIC 0x%x...\n", apicid);
cb3c8b90
GOC
542
543 for (i = 0; i < ARRAY_SIZE(regs); i++) {
823b259b 544 printk(KERN_INFO "... APIC 0x%x %s: ", apicid, names[i]);
cb3c8b90
GOC
545
546 /*
547 * Wait for idle.
548 */
549 status = safe_apic_wait_icr_idle();
550 if (status)
551 printk(KERN_CONT
552 "a previous APIC delivery may have failed\n");
553
1b374e4d 554 apic_icr_write(APIC_DM_REMRD | regs[i], apicid);
cb3c8b90
GOC
555
556 timeout = 0;
557 do {
558 udelay(100);
559 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
560 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
561
562 switch (status) {
563 case APIC_ICR_RR_VALID:
564 status = apic_read(APIC_RRR);
565 printk(KERN_CONT "%08x\n", status);
566 break;
567 default:
568 printk(KERN_CONT "failed\n");
569 }
570 }
571}
572
cb3c8b90
GOC
573/*
574 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
575 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
576 * won't ... remember to clear down the APIC, etc later.
577 */
569712b2
YL
578int __devinit
579wakeup_secondary_cpu_via_nmi(int logical_apicid, unsigned long start_eip)
cb3c8b90
GOC
580{
581 unsigned long send_status, accept_status = 0;
582 int maxlvt;
583
584 /* Target chip */
cb3c8b90
GOC
585 /* Boot on the stack */
586 /* Kick the second */
1b374e4d 587 apic_icr_write(APIC_DM_NMI | APIC_DEST_LOGICAL, logical_apicid);
cb3c8b90 588
cfc1b9a6 589 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
590 send_status = safe_apic_wait_icr_idle();
591
592 /*
593 * Give the other CPU some time to accept the IPI.
594 */
595 udelay(200);
569712b2 596 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
59ef48a5
CG
597 maxlvt = lapic_get_maxlvt();
598 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
599 apic_write(APIC_ESR, 0);
600 accept_status = (apic_read(APIC_ESR) & 0xEF);
601 }
cfc1b9a6 602 pr_debug("NMI sent.\n");
cb3c8b90
GOC
603
604 if (send_status)
605 printk(KERN_ERR "APIC never delivered???\n");
606 if (accept_status)
607 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
608
609 return (send_status | accept_status);
610}
cb3c8b90 611
54ac14a8 612int __devinit
569712b2 613wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
cb3c8b90
GOC
614{
615 unsigned long send_status, accept_status = 0;
616 int maxlvt, num_starts, j;
617
34d05591
JS
618 if (get_uv_system_type() == UV_NON_UNIQUE_APIC) {
619 send_status = uv_wakeup_secondary(phys_apicid, start_eip);
620 atomic_set(&init_deasserted, 1);
621 return send_status;
622 }
623
593f4a78
MR
624 maxlvt = lapic_get_maxlvt();
625
cb3c8b90
GOC
626 /*
627 * Be paranoid about clearing APIC errors.
628 */
629 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
593f4a78
MR
630 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
631 apic_write(APIC_ESR, 0);
cb3c8b90
GOC
632 apic_read(APIC_ESR);
633 }
634
cfc1b9a6 635 pr_debug("Asserting INIT.\n");
cb3c8b90
GOC
636
637 /*
638 * Turn INIT on target chip
639 */
cb3c8b90
GOC
640 /*
641 * Send IPI
642 */
1b374e4d
SS
643 apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT,
644 phys_apicid);
cb3c8b90 645
cfc1b9a6 646 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
647 send_status = safe_apic_wait_icr_idle();
648
649 mdelay(10);
650
cfc1b9a6 651 pr_debug("Deasserting INIT.\n");
cb3c8b90
GOC
652
653 /* Target chip */
cb3c8b90 654 /* Send IPI */
1b374e4d 655 apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid);
cb3c8b90 656
cfc1b9a6 657 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
658 send_status = safe_apic_wait_icr_idle();
659
660 mb();
661 atomic_set(&init_deasserted, 1);
662
663 /*
664 * Should we send STARTUP IPIs ?
665 *
666 * Determine this based on the APIC version.
667 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
668 */
669 if (APIC_INTEGRATED(apic_version[phys_apicid]))
670 num_starts = 2;
671 else
672 num_starts = 0;
673
674 /*
675 * Paravirt / VMI wants a startup IPI hook here to set up the
676 * target processor state.
677 */
678 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
cb3c8b90 679 (unsigned long)stack_start.sp);
cb3c8b90
GOC
680
681 /*
682 * Run STARTUP IPI loop.
683 */
cfc1b9a6 684 pr_debug("#startup loops: %d.\n", num_starts);
cb3c8b90 685
cb3c8b90 686 for (j = 1; j <= num_starts; j++) {
cfc1b9a6 687 pr_debug("Sending STARTUP #%d.\n", j);
593f4a78
MR
688 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
689 apic_write(APIC_ESR, 0);
cb3c8b90 690 apic_read(APIC_ESR);
cfc1b9a6 691 pr_debug("After apic_write.\n");
cb3c8b90
GOC
692
693 /*
694 * STARTUP IPI
695 */
696
697 /* Target chip */
cb3c8b90
GOC
698 /* Boot on the stack */
699 /* Kick the second */
1b374e4d
SS
700 apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12),
701 phys_apicid);
cb3c8b90
GOC
702
703 /*
704 * Give the other CPU some time to accept the IPI.
705 */
706 udelay(300);
707
cfc1b9a6 708 pr_debug("Startup point 1.\n");
cb3c8b90 709
cfc1b9a6 710 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
711 send_status = safe_apic_wait_icr_idle();
712
713 /*
714 * Give the other CPU some time to accept the IPI.
715 */
716 udelay(200);
593f4a78 717 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
cb3c8b90 718 apic_write(APIC_ESR, 0);
cb3c8b90
GOC
719 accept_status = (apic_read(APIC_ESR) & 0xEF);
720 if (send_status || accept_status)
721 break;
722 }
cfc1b9a6 723 pr_debug("After Startup.\n");
cb3c8b90
GOC
724
725 if (send_status)
726 printk(KERN_ERR "APIC never delivered???\n");
727 if (accept_status)
728 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
729
730 return (send_status | accept_status);
731}
cb3c8b90
GOC
732
733struct create_idle {
734 struct work_struct work;
735 struct task_struct *idle;
736 struct completion done;
737 int cpu;
738};
739
740static void __cpuinit do_fork_idle(struct work_struct *work)
741{
742 struct create_idle *c_idle =
743 container_of(work, struct create_idle, work);
744
745 c_idle->idle = fork_idle(c_idle->cpu);
746 complete(&c_idle->done);
747}
748
f307d25e 749#ifdef CONFIG_X86_64
d19fbfdf
MS
750
751/* __ref because it's safe to call free_bootmem when after_bootmem == 0. */
752static void __ref free_bootmem_pda(struct x8664_pda *oldpda)
753{
754 if (!after_bootmem)
755 free_bootmem((unsigned long)oldpda, sizeof(*oldpda));
756}
757
3461b0af
MT
758/*
759 * Allocate node local memory for the AP pda.
760 *
761 * Must be called after the _cpu_pda pointer table is initialized.
762 */
7c33b1e6 763int __cpuinit get_local_pda(int cpu)
3461b0af
MT
764{
765 struct x8664_pda *oldpda, *newpda;
766 unsigned long size = sizeof(struct x8664_pda);
767 int node = cpu_to_node(cpu);
768
769 if (cpu_pda(cpu) && !cpu_pda(cpu)->in_bootmem)
770 return 0;
771
772 oldpda = cpu_pda(cpu);
773 newpda = kmalloc_node(size, GFP_ATOMIC, node);
774 if (!newpda) {
775 printk(KERN_ERR "Could not allocate node local PDA "
776 "for CPU %d on node %d\n", cpu, node);
777
778 if (oldpda)
779 return 0; /* have a usable pda */
780 else
781 return -1;
782 }
783
784 if (oldpda) {
785 memcpy(newpda, oldpda, size);
d19fbfdf 786 free_bootmem_pda(oldpda);
3461b0af
MT
787 }
788
789 newpda->in_bootmem = 0;
790 cpu_pda(cpu) = newpda;
791 return 0;
792}
f307d25e 793#endif /* CONFIG_X86_64 */
3461b0af 794
cb3c8b90
GOC
795static int __cpuinit do_boot_cpu(int apicid, int cpu)
796/*
797 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
798 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
799 * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
800 */
801{
802 unsigned long boot_error = 0;
803 int timeout;
804 unsigned long start_ip;
805 unsigned short nmi_high = 0, nmi_low = 0;
806 struct create_idle c_idle = {
807 .cpu = cpu,
808 .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
809 };
810 INIT_WORK(&c_idle.work, do_fork_idle);
cb3c8b90 811
a939098a 812#ifdef CONFIG_X86_64
cb3c8b90 813 /* Allocate node local memory for AP pdas */
3461b0af
MT
814 if (cpu > 0) {
815 boot_error = get_local_pda(cpu);
816 if (boot_error)
817 goto restore_state;
818 /* if can't get pda memory, can't start cpu */
cb3c8b90
GOC
819 }
820#endif
821
822 alternatives_smp_switch(1);
823
824 c_idle.idle = get_idle_for_cpu(cpu);
825
826 /*
827 * We can't use kernel_thread since we must avoid to
828 * reschedule the child.
829 */
830 if (c_idle.idle) {
831 c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
832 (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
833 init_idle(c_idle.idle, cpu);
834 goto do_rest;
835 }
836
837 if (!keventd_up() || current_is_keventd())
838 c_idle.work.func(&c_idle.work);
839 else {
840 schedule_work(&c_idle.work);
841 wait_for_completion(&c_idle.done);
842 }
843
844 if (IS_ERR(c_idle.idle)) {
845 printk("failed fork for CPU %d\n", cpu);
846 return PTR_ERR(c_idle.idle);
847 }
848
849 set_idle_for_cpu(cpu, c_idle.idle);
850do_rest:
851#ifdef CONFIG_X86_32
852 per_cpu(current_task, cpu) = c_idle.idle;
853 init_gdt(cpu);
cb3c8b90 854 /* Stack for startup_32 can be just as for start_secondary onwards */
cb3c8b90
GOC
855 irq_ctx_init(cpu);
856#else
857 cpu_pda(cpu)->pcurrent = c_idle.idle;
cb3c8b90
GOC
858 clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
859#endif
a939098a 860 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
3e970473 861 initial_code = (unsigned long)start_secondary;
9cf4f298 862 stack_start.sp = (void *) c_idle.idle->thread.sp;
cb3c8b90
GOC
863
864 /* start_ip had better be page-aligned! */
865 start_ip = setup_trampoline();
866
867 /* So we see what's up */
823b259b 868 printk(KERN_INFO "Booting processor %d APIC 0x%x ip 0x%lx\n",
cb3c8b90
GOC
869 cpu, apicid, start_ip);
870
871 /*
872 * This grunge runs the startup process for
873 * the targeted processor.
874 */
875
876 atomic_set(&init_deasserted, 0);
877
34d05591 878 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
cb3c8b90 879
cfc1b9a6 880 pr_debug("Setting warm reset code and vector.\n");
cb3c8b90 881
34d05591
JS
882 store_NMI_vector(&nmi_high, &nmi_low);
883
884 smpboot_setup_warm_reset_vector(start_ip);
885 /*
886 * Be paranoid about clearing APIC errors.
db96b0a0
CG
887 */
888 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
889 apic_write(APIC_ESR, 0);
890 apic_read(APIC_ESR);
891 }
34d05591 892 }
cb3c8b90 893
cb3c8b90
GOC
894 /*
895 * Starting actual IPI sequence...
896 */
897 boot_error = wakeup_secondary_cpu(apicid, start_ip);
898
899 if (!boot_error) {
900 /*
901 * allow APs to start initializing.
902 */
cfc1b9a6 903 pr_debug("Before Callout %d.\n", cpu);
cb3c8b90 904 cpu_set(cpu, cpu_callout_map);
cfc1b9a6 905 pr_debug("After Callout %d.\n", cpu);
cb3c8b90
GOC
906
907 /*
908 * Wait 5s total for a response
909 */
910 for (timeout = 0; timeout < 50000; timeout++) {
911 if (cpu_isset(cpu, cpu_callin_map))
912 break; /* It has booted */
913 udelay(100);
914 }
915
916 if (cpu_isset(cpu, cpu_callin_map)) {
917 /* number CPUs logically, starting from 1 (BSP is 0) */
cfc1b9a6 918 pr_debug("OK.\n");
cb3c8b90
GOC
919 printk(KERN_INFO "CPU%d: ", cpu);
920 print_cpu_info(&cpu_data(cpu));
cfc1b9a6 921 pr_debug("CPU has booted.\n");
cb3c8b90
GOC
922 } else {
923 boot_error = 1;
924 if (*((volatile unsigned char *)trampoline_base)
925 == 0xA5)
926 /* trampoline started but...? */
927 printk(KERN_ERR "Stuck ??\n");
928 else
929 /* trampoline code not run */
930 printk(KERN_ERR "Not responding.\n");
34d05591
JS
931 if (get_uv_system_type() != UV_NON_UNIQUE_APIC)
932 inquire_remote_apic(apicid);
cb3c8b90
GOC
933 }
934 }
6f585e01 935#ifdef CONFIG_X86_64
3461b0af 936restore_state:
6f585e01 937#endif
cb3c8b90
GOC
938 if (boot_error) {
939 /* Try to put things back the way they were before ... */
23ca4bba 940 numa_remove_cpu(cpu); /* was set by numa_add_cpu */
cb3c8b90
GOC
941 cpu_clear(cpu, cpu_callout_map); /* was set by do_boot_cpu() */
942 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
cb3c8b90
GOC
943 cpu_clear(cpu, cpu_present_map);
944 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
945 }
946
947 /* mark "stuck" area as not stuck */
948 *((volatile unsigned long *)trampoline_base) = 0;
949
63d38198
AK
950 /*
951 * Cleanup possible dangling ends...
952 */
953 smpboot_restore_warm_reset_vector();
954
cb3c8b90
GOC
955 return boot_error;
956}
957
958int __cpuinit native_cpu_up(unsigned int cpu)
959{
960 int apicid = cpu_present_to_apicid(cpu);
961 unsigned long flags;
962 int err;
963
964 WARN_ON(irqs_disabled());
965
cfc1b9a6 966 pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu);
cb3c8b90
GOC
967
968 if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
969 !physid_isset(apicid, phys_cpu_present_map)) {
970 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
971 return -EINVAL;
972 }
973
974 /*
975 * Already booted CPU?
976 */
977 if (cpu_isset(cpu, cpu_callin_map)) {
cfc1b9a6 978 pr_debug("do_boot_cpu %d Already started\n", cpu);
cb3c8b90
GOC
979 return -ENOSYS;
980 }
981
982 /*
983 * Save current MTRR state in case it was changed since early boot
984 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
985 */
986 mtrr_save_state();
987
988 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
989
990#ifdef CONFIG_X86_32
991 /* init low mem mapping */
68db065c 992 clone_pgd_range(swapper_pg_dir, swapper_pg_dir + KERNEL_PGD_BOUNDARY,
61165d7a 993 min_t(unsigned long, KERNEL_PGD_PTRS, KERNEL_PGD_BOUNDARY));
cb3c8b90 994 flush_tlb_all();
61165d7a 995 low_mappings = 1;
cb3c8b90
GOC
996
997 err = do_boot_cpu(apicid, cpu);
61165d7a
HD
998
999 zap_low_mappings();
1000 low_mappings = 0;
1001#else
1002 err = do_boot_cpu(apicid, cpu);
1003#endif
1004 if (err) {
cfc1b9a6 1005 pr_debug("do_boot_cpu failed %d\n", err);
61165d7a 1006 return -EIO;
cb3c8b90
GOC
1007 }
1008
1009 /*
1010 * Check TSC synchronization with the AP (keep irqs disabled
1011 * while doing so):
1012 */
1013 local_irq_save(flags);
1014 check_tsc_sync_source(cpu);
1015 local_irq_restore(flags);
1016
7c04e64a 1017 while (!cpu_online(cpu)) {
cb3c8b90
GOC
1018 cpu_relax();
1019 touch_nmi_watchdog();
1020 }
1021
1022 return 0;
1023}
1024
8aef135c
GOC
1025/*
1026 * Fall back to non SMP mode after errors.
1027 *
1028 * RED-PEN audit/test this more. I bet there is more state messed up here.
1029 */
1030static __init void disable_smp(void)
1031{
1032 cpu_present_map = cpumask_of_cpu(0);
1033 cpu_possible_map = cpumask_of_cpu(0);
8aef135c 1034 smpboot_clear_io_apic_irqs();
0f385d1d 1035
8aef135c 1036 if (smp_found_config)
b6df1b8b 1037 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
8aef135c 1038 else
b6df1b8b 1039 physid_set_mask_of_physid(0, &phys_cpu_present_map);
8aef135c
GOC
1040 map_cpu_to_logical_apicid();
1041 cpu_set(0, per_cpu(cpu_sibling_map, 0));
1042 cpu_set(0, per_cpu(cpu_core_map, 0));
1043}
1044
1045/*
1046 * Various sanity checks.
1047 */
1048static int __init smp_sanity_check(unsigned max_cpus)
1049{
ac23d4ee 1050 preempt_disable();
a58f03b0
YL
1051
1052#if defined(CONFIG_X86_PC) && defined(CONFIG_X86_32)
1053 if (def_to_bigsmp && nr_cpu_ids > 8) {
1054 unsigned int cpu;
1055 unsigned nr;
1056
1057 printk(KERN_WARNING
1058 "More than 8 CPUs detected - skipping them.\n"
1059 "Use CONFIG_X86_GENERICARCH and CONFIG_X86_BIGSMP.\n");
1060
1061 nr = 0;
1062 for_each_present_cpu(cpu) {
1063 if (nr >= 8)
1064 cpu_clear(cpu, cpu_present_map);
1065 nr++;
1066 }
1067
1068 nr = 0;
1069 for_each_possible_cpu(cpu) {
1070 if (nr >= 8)
1071 cpu_clear(cpu, cpu_possible_map);
1072 nr++;
1073 }
1074
1075 nr_cpu_ids = 8;
1076 }
1077#endif
1078
8aef135c
GOC
1079 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
1080 printk(KERN_WARNING "weird, boot CPU (#%d) not listed"
1081 "by the BIOS.\n", hard_smp_processor_id());
1082 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1083 }
1084
1085 /*
1086 * If we couldn't find an SMP configuration at boot time,
1087 * get out of here now!
1088 */
1089 if (!smp_found_config && !acpi_lapic) {
ac23d4ee 1090 preempt_enable();
8aef135c
GOC
1091 printk(KERN_NOTICE "SMP motherboard not detected.\n");
1092 disable_smp();
1093 if (APIC_init_uniprocessor())
1094 printk(KERN_NOTICE "Local APIC not detected."
1095 " Using dummy APIC emulation.\n");
1096 return -1;
1097 }
1098
1099 /*
1100 * Should not be necessary because the MP table should list the boot
1101 * CPU too, but we do it for the sake of robustness anyway.
1102 */
1103 if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
1104 printk(KERN_NOTICE
1105 "weird, boot CPU (#%d) not listed by the BIOS.\n",
1106 boot_cpu_physical_apicid);
1107 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1108 }
ac23d4ee 1109 preempt_enable();
8aef135c
GOC
1110
1111 /*
1112 * If we couldn't find a local APIC, then get out of here now!
1113 */
1114 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1115 !cpu_has_apic) {
1116 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1117 boot_cpu_physical_apicid);
1118 printk(KERN_ERR "... forcing use of dummy APIC emulation."
1119 "(tell your hw vendor)\n");
1120 smpboot_clear_io_apic();
1121 return -1;
1122 }
1123
1124 verify_local_APIC();
1125
1126 /*
1127 * If SMP should be disabled, then really disable it!
1128 */
1129 if (!max_cpus) {
73d08e63 1130 printk(KERN_INFO "SMP mode deactivated.\n");
8aef135c 1131 smpboot_clear_io_apic();
d54db1ac
MR
1132
1133 localise_nmi_watchdog();
1134
e90955c2 1135 connect_bsp_APIC();
e90955c2
JB
1136 setup_local_APIC();
1137 end_local_APIC_setup();
8aef135c
GOC
1138 return -1;
1139 }
1140
1141 return 0;
1142}
1143
1144static void __init smp_cpu_index_default(void)
1145{
1146 int i;
1147 struct cpuinfo_x86 *c;
1148
7c04e64a 1149 for_each_possible_cpu(i) {
8aef135c
GOC
1150 c = &cpu_data(i);
1151 /* mark all to hotplug */
1152 c->cpu_index = NR_CPUS;
1153 }
1154}
1155
1156/*
1157 * Prepare for SMP bootup. The MP table or ACPI has been read
1158 * earlier. Just do some sanity checking here and enable APIC mode.
1159 */
1160void __init native_smp_prepare_cpus(unsigned int max_cpus)
1161{
deef3250 1162 preempt_disable();
8aef135c
GOC
1163 smp_cpu_index_default();
1164 current_cpu_data = boot_cpu_data;
1165 cpu_callin_map = cpumask_of_cpu(0);
1166 mb();
1167 /*
1168 * Setup boot CPU information
1169 */
1170 smp_store_cpu_info(0); /* Final full version of the data */
1b374e4d 1171#ifdef CONFIG_X86_32
8aef135c 1172 boot_cpu_logical_apicid = logical_smp_processor_id();
1b374e4d 1173#endif
8aef135c
GOC
1174 current_thread_info()->cpu = 0; /* needed? */
1175 set_cpu_sibling_map(0);
1176
6e1cb38a
SS
1177#ifdef CONFIG_X86_64
1178 enable_IR_x2apic();
1179 setup_apic_routing();
1180#endif
1181
8aef135c
GOC
1182 if (smp_sanity_check(max_cpus) < 0) {
1183 printk(KERN_INFO "SMP disabled\n");
1184 disable_smp();
deef3250 1185 goto out;
8aef135c
GOC
1186 }
1187
ac23d4ee 1188 preempt_disable();
4c9961d5 1189 if (read_apic_id() != boot_cpu_physical_apicid) {
8aef135c 1190 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
4c9961d5 1191 read_apic_id(), boot_cpu_physical_apicid);
8aef135c
GOC
1192 /* Or can we switch back to PIC here? */
1193 }
ac23d4ee 1194 preempt_enable();
8aef135c 1195
8aef135c 1196 connect_bsp_APIC();
b5841765 1197
8aef135c
GOC
1198 /*
1199 * Switch from PIC to APIC mode.
1200 */
1201 setup_local_APIC();
1202
1203#ifdef CONFIG_X86_64
1204 /*
1205 * Enable IO APIC before setting up error vector
1206 */
1207 if (!skip_ioapic_setup && nr_ioapics)
1208 enable_IO_APIC();
1209#endif
1210 end_local_APIC_setup();
1211
1212 map_cpu_to_logical_apicid();
1213
1214 setup_portio_remap();
1215
1216 smpboot_setup_io_apic();
1217 /*
1218 * Set up local APIC timer on boot CPU.
1219 */
1220
1221 printk(KERN_INFO "CPU%d: ", 0);
1222 print_cpu_info(&cpu_data(0));
1223 setup_boot_clock();
c4bd1fda
MS
1224
1225 if (is_uv_system())
1226 uv_system_init();
deef3250
IM
1227out:
1228 preempt_enable();
8aef135c 1229}
a8db8453
GOC
1230/*
1231 * Early setup to make printk work.
1232 */
1233void __init native_smp_prepare_boot_cpu(void)
1234{
1235 int me = smp_processor_id();
1236#ifdef CONFIG_X86_32
1237 init_gdt(me);
a8db8453 1238#endif
a939098a 1239 switch_to_new_gdt();
a8db8453
GOC
1240 /* already set me in cpu_online_map in boot_cpu_init() */
1241 cpu_set(me, cpu_callout_map);
1242 per_cpu(cpu_state, me) = CPU_ONLINE;
1243}
1244
83f7eb9c
GOC
1245void __init native_smp_cpus_done(unsigned int max_cpus)
1246{
cfc1b9a6 1247 pr_debug("Boot done.\n");
83f7eb9c
GOC
1248
1249 impress_friends();
1250 smp_checks();
1251#ifdef CONFIG_X86_IO_APIC
1252 setup_ioapic_dest();
1253#endif
1254 check_nmi_watchdog();
83f7eb9c
GOC
1255}
1256
68a1c3f8
GC
1257/*
1258 * cpu_possible_map should be static, it cannot change as cpu's
1259 * are onlined, or offlined. The reason is per-cpu data-structures
1260 * are allocated by some modules at init time, and dont expect to
1261 * do this dynamically on cpu arrival/departure.
1262 * cpu_present_map on the other hand can change dynamically.
1263 * In case when cpu_hotplug is not compiled, then we resort to current
1264 * behaviour, which is cpu_possible == cpu_present.
1265 * - Ashok Raj
1266 *
1267 * Three ways to find out the number of additional hotplug CPUs:
1268 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
1269 * - The user can overwrite it with additional_cpus=NUM
1270 * - Otherwise don't reserve additional CPUs.
1271 * We do this because additional CPUs waste a lot of memory.
1272 * -AK
1273 */
1274__init void prefill_possible_map(void)
1275{
cb48bb59 1276 int i, possible;
68a1c3f8 1277
329513a3
YL
1278 /* no processor from mptable or madt */
1279 if (!num_processors)
1280 num_processors = 1;
1281
cb48bb59 1282 possible = num_processors + disabled_cpus;
68a1c3f8
GC
1283 if (possible > NR_CPUS)
1284 possible = NR_CPUS;
1285
1286 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
1287 possible, max_t(int, possible - num_processors, 0));
1288
1289 for (i = 0; i < possible; i++)
1290 cpu_set(i, cpu_possible_map);
3461b0af
MT
1291
1292 nr_cpu_ids = possible;
68a1c3f8 1293}
69c18c15 1294
14adf855
CE
1295#ifdef CONFIG_HOTPLUG_CPU
1296
1297static void remove_siblinginfo(int cpu)
1298{
1299 int sibling;
1300 struct cpuinfo_x86 *c = &cpu_data(cpu);
1301
1302 for_each_cpu_mask_nr(sibling, per_cpu(cpu_core_map, cpu)) {
1303 cpu_clear(cpu, per_cpu(cpu_core_map, sibling));
1304 /*/
1305 * last thread sibling in this cpu core going down
1306 */
1307 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1)
1308 cpu_data(sibling).booted_cores--;
1309 }
1310
1311 for_each_cpu_mask_nr(sibling, per_cpu(cpu_sibling_map, cpu))
1312 cpu_clear(cpu, per_cpu(cpu_sibling_map, sibling));
1313 cpus_clear(per_cpu(cpu_sibling_map, cpu));
1314 cpus_clear(per_cpu(cpu_core_map, cpu));
1315 c->phys_proc_id = 0;
1316 c->cpu_core_id = 0;
1317 cpu_clear(cpu, cpu_sibling_setup_map);
1318}
1319
69c18c15
GC
1320static void __ref remove_cpu_from_maps(int cpu)
1321{
1322 cpu_clear(cpu, cpu_online_map);
69c18c15
GC
1323 cpu_clear(cpu, cpu_callout_map);
1324 cpu_clear(cpu, cpu_callin_map);
1325 /* was set by cpu_init() */
29cbeb0e 1326 cpu_clear(cpu, cpu_initialized);
23ca4bba 1327 numa_remove_cpu(cpu);
69c18c15
GC
1328}
1329
8227dce7 1330void cpu_disable_common(void)
69c18c15
GC
1331{
1332 int cpu = smp_processor_id();
69c18c15
GC
1333 /*
1334 * HACK:
1335 * Allow any queued timer interrupts to get serviced
1336 * This is only a temporary solution until we cleanup
1337 * fixup_irqs as we do for IA64.
1338 */
1339 local_irq_enable();
1340 mdelay(1);
1341
1342 local_irq_disable();
1343 remove_siblinginfo(cpu);
1344
1345 /* It's now safe to remove this processor from the online map */
d388e5fd 1346 lock_vector_lock();
69c18c15 1347 remove_cpu_from_maps(cpu);
d388e5fd 1348 unlock_vector_lock();
69c18c15 1349 fixup_irqs(cpu_online_map);
8227dce7
AN
1350}
1351
1352int native_cpu_disable(void)
1353{
1354 int cpu = smp_processor_id();
1355
1356 /*
1357 * Perhaps use cpufreq to drop frequency, but that could go
1358 * into generic code.
1359 *
1360 * We won't take down the boot processor on i386 due to some
1361 * interrupts only being able to be serviced by the BSP.
1362 * Especially so if we're not using an IOAPIC -zwane
1363 */
1364 if (cpu == 0)
1365 return -EBUSY;
1366
1367 if (nmi_watchdog == NMI_LOCAL_APIC)
1368 stop_apic_nmi_watchdog(NULL);
1369 clear_local_APIC();
1370
1371 cpu_disable_common();
69c18c15
GC
1372 return 0;
1373}
1374
93be71b6 1375void native_cpu_die(unsigned int cpu)
69c18c15
GC
1376{
1377 /* We don't do anything here: idle task is faking death itself. */
1378 unsigned int i;
1379
1380 for (i = 0; i < 10; i++) {
1381 /* They ack this in play_dead by setting CPU_DEAD */
1382 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1383 printk(KERN_INFO "CPU %d is now offline\n", cpu);
1384 if (1 == num_online_cpus())
1385 alternatives_smp_switch(0);
1386 return;
1387 }
1388 msleep(100);
1389 }
1390 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1391}
a21f5d88
AN
1392
1393void play_dead_common(void)
1394{
1395 idle_task_exit();
1396 reset_lazy_tlbstate();
1397 irq_ctx_exit(raw_smp_processor_id());
07bbc16a 1398 c1e_remove_cpu(raw_smp_processor_id());
a21f5d88
AN
1399
1400 mb();
1401 /* Ack it */
1402 __get_cpu_var(cpu_state) = CPU_DEAD;
1403
1404 /*
1405 * With physical CPU hotplug, we should halt the cpu
1406 */
1407 local_irq_disable();
1408}
1409
1410void native_play_dead(void)
1411{
1412 play_dead_common();
1413 wbinvd_halt();
1414}
1415
69c18c15 1416#else /* ... !CONFIG_HOTPLUG_CPU */
93be71b6 1417int native_cpu_disable(void)
69c18c15
GC
1418{
1419 return -ENOSYS;
1420}
1421
93be71b6 1422void native_cpu_die(unsigned int cpu)
69c18c15
GC
1423{
1424 /* We said "no" in __cpu_disable */
1425 BUG();
1426}
a21f5d88
AN
1427
1428void native_play_dead(void)
1429{
1430 BUG();
1431}
1432
68a1c3f8 1433#endif