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