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