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