x86-32: Separate 1:1 pagetables from swapper_pg_dir
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / kernel / smpboot.c
blobabf4a86ffc54fc66ebd55bda0956cbacdd90283b
1 /*
2 * x86 SMP booting functions
4 * (c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk>
5 * (c) 1998, 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
6 * Copyright 2001 Andi Kleen, SuSE Labs.
8 * Much of the core SMP work is based on previous work by Thomas Radke, to
9 * whom a great many thanks are extended.
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.
15 * This code is released under the GNU General Public License version 2 or
16 * later.
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
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 #include <linux/tboot.h>
51 #include <linux/stackprotector.h>
52 #include <linux/gfp.h>
54 #include <asm/acpi.h>
55 #include <asm/desc.h>
56 #include <asm/nmi.h>
57 #include <asm/irq.h>
58 #include <asm/idle.h>
59 #include <asm/trampoline.h>
60 #include <asm/cpu.h>
61 #include <asm/numa.h>
62 #include <asm/pgtable.h>
63 #include <asm/tlbflush.h>
64 #include <asm/mtrr.h>
65 #include <asm/vmi.h>
66 #include <asm/apic.h>
67 #include <asm/setup.h>
68 #include <asm/uv/uv.h>
69 #include <linux/mc146818rtc.h>
71 #include <asm/smpboot_hooks.h>
72 #include <asm/i8259.h>
74 #ifdef CONFIG_X86_32
75 u8 apicid_2_node[MAX_APICID];
76 #endif
78 /* State of each CPU */
79 DEFINE_PER_CPU(int, cpu_state) = { 0 };
81 /* Store all idle threads, this can be reused instead of creating
82 * a new thread. Also avoids complicated thread destroy functionality
83 * for idle threads.
85 #ifdef CONFIG_HOTPLUG_CPU
87 * Needed only for CONFIG_HOTPLUG_CPU because __cpuinitdata is
88 * removed after init for !CONFIG_HOTPLUG_CPU.
90 static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
91 #define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x))
92 #define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p))
93 #else
94 static struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
95 #define get_idle_for_cpu(x) (idle_thread_array[(x)])
96 #define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
97 #endif
99 /* Number of siblings per CPU package */
100 int smp_num_siblings = 1;
101 EXPORT_SYMBOL(smp_num_siblings);
103 /* Last level cache ID of each logical CPU */
104 DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
106 /* representing HT siblings of each logical CPU */
107 DEFINE_PER_CPU(cpumask_var_t, cpu_sibling_map);
108 EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
110 /* representing HT and core siblings of each logical CPU */
111 DEFINE_PER_CPU(cpumask_var_t, cpu_core_map);
112 EXPORT_PER_CPU_SYMBOL(cpu_core_map);
114 /* Per CPU bogomips and other parameters */
115 DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
116 EXPORT_PER_CPU_SYMBOL(cpu_info);
118 atomic_t init_deasserted;
120 #if defined(CONFIG_NUMA) && defined(CONFIG_X86_32)
121 /* which node each logical CPU is on */
122 int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
123 EXPORT_SYMBOL(cpu_to_node_map);
125 /* set up a mapping between cpu and node. */
126 static void map_cpu_to_node(int cpu, int node)
128 printk(KERN_INFO "Mapping cpu %d to node %d\n", cpu, node);
129 cpumask_set_cpu(cpu, node_to_cpumask_map[node]);
130 cpu_to_node_map[cpu] = node;
133 /* undo a mapping between cpu and node. */
134 static void unmap_cpu_to_node(int cpu)
136 int node;
138 printk(KERN_INFO "Unmapping cpu %d from all nodes\n", cpu);
139 for (node = 0; node < MAX_NUMNODES; node++)
140 cpumask_clear_cpu(cpu, node_to_cpumask_map[node]);
141 cpu_to_node_map[cpu] = 0;
143 #else /* !(CONFIG_NUMA && CONFIG_X86_32) */
144 #define map_cpu_to_node(cpu, node) ({})
145 #define unmap_cpu_to_node(cpu) ({})
146 #endif
148 #ifdef CONFIG_X86_32
149 static int boot_cpu_logical_apicid;
151 u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly =
152 { [0 ... NR_CPUS-1] = BAD_APICID };
154 static void map_cpu_to_logical_apicid(void)
156 int cpu = smp_processor_id();
157 int apicid = logical_smp_processor_id();
158 int node = apic->apicid_to_node(apicid);
160 if (!node_online(node))
161 node = first_online_node;
163 cpu_2_logical_apicid[cpu] = apicid;
164 map_cpu_to_node(cpu, node);
167 void numa_remove_cpu(int cpu)
169 cpu_2_logical_apicid[cpu] = BAD_APICID;
170 unmap_cpu_to_node(cpu);
172 #else
173 #define map_cpu_to_logical_apicid() do {} while (0)
174 #endif
177 * Report back to the Boot Processor.
178 * Running on AP.
180 static void __cpuinit smp_callin(void)
182 int cpuid, phys_id;
183 unsigned long timeout;
186 * If waken up by an INIT in an 82489DX configuration
187 * we may get here before an INIT-deassert IPI reaches
188 * our local APIC. We have to wait for the IPI or we'll
189 * lock up on an APIC access.
191 if (apic->wait_for_init_deassert)
192 apic->wait_for_init_deassert(&init_deasserted);
195 * (This works even if the APIC is not enabled.)
197 phys_id = read_apic_id();
198 cpuid = smp_processor_id();
199 if (cpumask_test_cpu(cpuid, cpu_callin_mask)) {
200 panic("%s: phys CPU#%d, CPU#%d already present??\n", __func__,
201 phys_id, cpuid);
203 pr_debug("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
206 * STARTUP IPIs are fragile beasts as they might sometimes
207 * trigger some glue motherboard logic. Complete APIC bus
208 * silence for 1 second, this overestimates the time the
209 * boot CPU is spending to send the up to 2 STARTUP IPIs
210 * by a factor of two. This should be enough.
214 * Waiting 2s total for startup (udelay is not yet working)
216 timeout = jiffies + 2*HZ;
217 while (time_before(jiffies, timeout)) {
219 * Has the boot CPU finished it's STARTUP sequence?
221 if (cpumask_test_cpu(cpuid, cpu_callout_mask))
222 break;
223 cpu_relax();
226 if (!time_before(jiffies, timeout)) {
227 panic("%s: CPU%d started up but did not get a callout!\n",
228 __func__, cpuid);
232 * the boot CPU has finished the init stage and is spinning
233 * on callin_map until we finish. We are free to set up this
234 * CPU, first the APIC. (this is probably redundant on most
235 * boards)
238 pr_debug("CALLIN, before setup_local_APIC().\n");
239 if (apic->smp_callin_clear_local_apic)
240 apic->smp_callin_clear_local_apic();
241 setup_local_APIC();
242 end_local_APIC_setup();
243 map_cpu_to_logical_apicid();
246 * Need to setup vector mappings before we enable interrupts.
248 setup_vector_irq(smp_processor_id());
250 * Get our bogomips.
252 * Need to enable IRQs because it can take longer and then
253 * the NMI watchdog might kill us.
255 local_irq_enable();
256 calibrate_delay();
257 local_irq_disable();
258 pr_debug("Stack at about %p\n", &cpuid);
261 * Save our processor parameters
263 smp_store_cpu_info(cpuid);
265 notify_cpu_starting(cpuid);
268 * Allow the master to continue.
270 cpumask_set_cpu(cpuid, cpu_callin_mask);
274 * Activate a secondary processor.
276 notrace static void __cpuinit start_secondary(void *unused)
279 * Don't put *anything* before cpu_init(), SMP booting is too
280 * fragile that we want to limit the things done here to the
281 * most necessary things.
284 #ifdef CONFIG_X86_32
286 * Switch away from the trampoline page-table
288 * Do this before cpu_init() because it needs to access per-cpu
289 * data which may not be mapped in the trampoline page-table.
291 load_cr3(swapper_pg_dir);
292 __flush_tlb_all();
293 #endif
295 vmi_bringup();
296 cpu_init();
297 preempt_disable();
298 smp_callin();
300 /* otherwise gcc will move up smp_processor_id before the cpu_init */
301 barrier();
303 * Check TSC synchronization with the BP:
305 check_tsc_sync_target();
307 if (nmi_watchdog == NMI_IO_APIC) {
308 legacy_pic->chip->mask(0);
309 enable_NMI_through_LVT0();
310 legacy_pic->chip->unmask(0);
313 /* This must be done before setting cpu_online_mask */
314 set_cpu_sibling_map(raw_smp_processor_id());
315 wmb();
318 * We need to hold call_lock, so there is no inconsistency
319 * between the time smp_call_function() determines number of
320 * IPI recipients, and the time when the determination is made
321 * for which cpus receive the IPI. Holding this
322 * lock helps us to not include this cpu in a currently in progress
323 * smp_call_function().
325 * We need to hold vector_lock so there the set of online cpus
326 * does not change while we are assigning vectors to cpus. Holding
327 * this lock ensures we don't half assign or remove an irq from a cpu.
329 ipi_call_lock();
330 lock_vector_lock();
331 set_cpu_online(smp_processor_id(), true);
332 unlock_vector_lock();
333 ipi_call_unlock();
334 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
335 x86_platform.nmi_init();
337 /* enable local interrupts */
338 local_irq_enable();
340 /* to prevent fake stack check failure in clock setup */
341 boot_init_stack_canary();
343 x86_cpuinit.setup_percpu_clockev();
345 wmb();
346 cpu_idle();
349 #ifdef CONFIG_CPUMASK_OFFSTACK
350 /* In this case, llc_shared_map is a pointer to a cpumask. */
351 static inline void copy_cpuinfo_x86(struct cpuinfo_x86 *dst,
352 const struct cpuinfo_x86 *src)
354 struct cpumask *llc = dst->llc_shared_map;
355 *dst = *src;
356 dst->llc_shared_map = llc;
358 #else
359 static inline void copy_cpuinfo_x86(struct cpuinfo_x86 *dst,
360 const struct cpuinfo_x86 *src)
362 *dst = *src;
364 #endif /* CONFIG_CPUMASK_OFFSTACK */
367 * The bootstrap kernel entry code has set these up. Save them for
368 * a given CPU
371 void __cpuinit smp_store_cpu_info(int id)
373 struct cpuinfo_x86 *c = &cpu_data(id);
375 copy_cpuinfo_x86(c, &boot_cpu_data);
376 c->cpu_index = id;
377 if (id != 0)
378 identify_secondary_cpu(c);
382 void __cpuinit set_cpu_sibling_map(int cpu)
384 int i;
385 struct cpuinfo_x86 *c = &cpu_data(cpu);
387 cpumask_set_cpu(cpu, cpu_sibling_setup_mask);
389 if (smp_num_siblings > 1) {
390 for_each_cpu(i, cpu_sibling_setup_mask) {
391 struct cpuinfo_x86 *o = &cpu_data(i);
393 if (c->phys_proc_id == o->phys_proc_id &&
394 c->cpu_core_id == o->cpu_core_id) {
395 cpumask_set_cpu(i, cpu_sibling_mask(cpu));
396 cpumask_set_cpu(cpu, cpu_sibling_mask(i));
397 cpumask_set_cpu(i, cpu_core_mask(cpu));
398 cpumask_set_cpu(cpu, cpu_core_mask(i));
399 cpumask_set_cpu(i, c->llc_shared_map);
400 cpumask_set_cpu(cpu, o->llc_shared_map);
403 } else {
404 cpumask_set_cpu(cpu, cpu_sibling_mask(cpu));
407 cpumask_set_cpu(cpu, c->llc_shared_map);
409 if (current_cpu_data.x86_max_cores == 1) {
410 cpumask_copy(cpu_core_mask(cpu), cpu_sibling_mask(cpu));
411 c->booted_cores = 1;
412 return;
415 for_each_cpu(i, cpu_sibling_setup_mask) {
416 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
417 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
418 cpumask_set_cpu(i, c->llc_shared_map);
419 cpumask_set_cpu(cpu, cpu_data(i).llc_shared_map);
421 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
422 cpumask_set_cpu(i, cpu_core_mask(cpu));
423 cpumask_set_cpu(cpu, cpu_core_mask(i));
425 * Does this new cpu bringup a new core?
427 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1) {
429 * for each core in package, increment
430 * the booted_cores for this new cpu
432 if (cpumask_first(cpu_sibling_mask(i)) == i)
433 c->booted_cores++;
435 * increment the core count for all
436 * the other cpus in this package
438 if (i != cpu)
439 cpu_data(i).booted_cores++;
440 } else if (i != cpu && !c->booted_cores)
441 c->booted_cores = cpu_data(i).booted_cores;
446 /* maps the cpu to the sched domain representing multi-core */
447 const struct cpumask *cpu_coregroup_mask(int cpu)
449 struct cpuinfo_x86 *c = &cpu_data(cpu);
451 * For perf, we return last level cache shared map.
452 * And for power savings, we return cpu_core_map
454 if ((sched_mc_power_savings || sched_smt_power_savings) &&
455 !(cpu_has(c, X86_FEATURE_AMD_DCM)))
456 return cpu_core_mask(cpu);
457 else
458 return c->llc_shared_map;
461 static void impress_friends(void)
463 int cpu;
464 unsigned long bogosum = 0;
466 * Allow the user to impress friends.
468 pr_debug("Before bogomips.\n");
469 for_each_possible_cpu(cpu)
470 if (cpumask_test_cpu(cpu, cpu_callout_mask))
471 bogosum += cpu_data(cpu).loops_per_jiffy;
472 printk(KERN_INFO
473 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
474 num_online_cpus(),
475 bogosum/(500000/HZ),
476 (bogosum/(5000/HZ))%100);
478 pr_debug("Before bogocount - setting activated=1.\n");
481 void __inquire_remote_apic(int apicid)
483 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
484 char *names[] = { "ID", "VERSION", "SPIV" };
485 int timeout;
486 u32 status;
488 printk(KERN_INFO "Inquiring remote APIC 0x%x...\n", apicid);
490 for (i = 0; i < ARRAY_SIZE(regs); i++) {
491 printk(KERN_INFO "... APIC 0x%x %s: ", apicid, names[i]);
494 * Wait for idle.
496 status = safe_apic_wait_icr_idle();
497 if (status)
498 printk(KERN_CONT
499 "a previous APIC delivery may have failed\n");
501 apic_icr_write(APIC_DM_REMRD | regs[i], apicid);
503 timeout = 0;
504 do {
505 udelay(100);
506 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
507 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
509 switch (status) {
510 case APIC_ICR_RR_VALID:
511 status = apic_read(APIC_RRR);
512 printk(KERN_CONT "%08x\n", status);
513 break;
514 default:
515 printk(KERN_CONT "failed\n");
521 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
522 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
523 * won't ... remember to clear down the APIC, etc later.
525 int __cpuinit
526 wakeup_secondary_cpu_via_nmi(int logical_apicid, unsigned long start_eip)
528 unsigned long send_status, accept_status = 0;
529 int maxlvt;
531 /* Target chip */
532 /* Boot on the stack */
533 /* Kick the second */
534 apic_icr_write(APIC_DM_NMI | apic->dest_logical, logical_apicid);
536 pr_debug("Waiting for send to finish...\n");
537 send_status = safe_apic_wait_icr_idle();
540 * Give the other CPU some time to accept the IPI.
542 udelay(200);
543 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
544 maxlvt = lapic_get_maxlvt();
545 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
546 apic_write(APIC_ESR, 0);
547 accept_status = (apic_read(APIC_ESR) & 0xEF);
549 pr_debug("NMI sent.\n");
551 if (send_status)
552 printk(KERN_ERR "APIC never delivered???\n");
553 if (accept_status)
554 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
556 return (send_status | accept_status);
559 static int __cpuinit
560 wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
562 unsigned long send_status, accept_status = 0;
563 int maxlvt, num_starts, j;
565 maxlvt = lapic_get_maxlvt();
568 * Be paranoid about clearing APIC errors.
570 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
571 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
572 apic_write(APIC_ESR, 0);
573 apic_read(APIC_ESR);
576 pr_debug("Asserting INIT.\n");
579 * Turn INIT on target chip
582 * Send IPI
584 apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT,
585 phys_apicid);
587 pr_debug("Waiting for send to finish...\n");
588 send_status = safe_apic_wait_icr_idle();
590 mdelay(10);
592 pr_debug("Deasserting INIT.\n");
594 /* Target chip */
595 /* Send IPI */
596 apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid);
598 pr_debug("Waiting for send to finish...\n");
599 send_status = safe_apic_wait_icr_idle();
601 mb();
602 atomic_set(&init_deasserted, 1);
605 * Should we send STARTUP IPIs ?
607 * Determine this based on the APIC version.
608 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
610 if (APIC_INTEGRATED(apic_version[phys_apicid]))
611 num_starts = 2;
612 else
613 num_starts = 0;
616 * Paravirt / VMI wants a startup IPI hook here to set up the
617 * target processor state.
619 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
620 (unsigned long)stack_start.sp);
623 * Run STARTUP IPI loop.
625 pr_debug("#startup loops: %d.\n", num_starts);
627 for (j = 1; j <= num_starts; j++) {
628 pr_debug("Sending STARTUP #%d.\n", j);
629 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
630 apic_write(APIC_ESR, 0);
631 apic_read(APIC_ESR);
632 pr_debug("After apic_write.\n");
635 * STARTUP IPI
638 /* Target chip */
639 /* Boot on the stack */
640 /* Kick the second */
641 apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12),
642 phys_apicid);
645 * Give the other CPU some time to accept the IPI.
647 udelay(300);
649 pr_debug("Startup point 1.\n");
651 pr_debug("Waiting for send to finish...\n");
652 send_status = safe_apic_wait_icr_idle();
655 * Give the other CPU some time to accept the IPI.
657 udelay(200);
658 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
659 apic_write(APIC_ESR, 0);
660 accept_status = (apic_read(APIC_ESR) & 0xEF);
661 if (send_status || accept_status)
662 break;
664 pr_debug("After Startup.\n");
666 if (send_status)
667 printk(KERN_ERR "APIC never delivered???\n");
668 if (accept_status)
669 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
671 return (send_status | accept_status);
674 struct create_idle {
675 struct work_struct work;
676 struct task_struct *idle;
677 struct completion done;
678 int cpu;
681 static void __cpuinit do_fork_idle(struct work_struct *work)
683 struct create_idle *c_idle =
684 container_of(work, struct create_idle, work);
686 c_idle->idle = fork_idle(c_idle->cpu);
687 complete(&c_idle->done);
690 /* reduce the number of lines printed when booting a large cpu count system */
691 static void __cpuinit announce_cpu(int cpu, int apicid)
693 static int current_node = -1;
694 int node = early_cpu_to_node(cpu);
696 if (system_state == SYSTEM_BOOTING) {
697 if (node != current_node) {
698 if (current_node > (-1))
699 pr_cont(" Ok.\n");
700 current_node = node;
701 pr_info("Booting Node %3d, Processors ", node);
703 pr_cont(" #%d%s", cpu, cpu == (nr_cpu_ids - 1) ? " Ok.\n" : "");
704 return;
705 } else
706 pr_info("Booting Node %d Processor %d APIC 0x%x\n",
707 node, cpu, apicid);
711 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
712 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
713 * Returns zero if CPU booted OK, else error code from
714 * ->wakeup_secondary_cpu.
716 static int __cpuinit do_boot_cpu(int apicid, int cpu)
718 unsigned long boot_error = 0;
719 unsigned long start_ip;
720 int timeout;
721 struct create_idle c_idle = {
722 .cpu = cpu,
723 .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
726 INIT_WORK_ON_STACK(&c_idle.work, do_fork_idle);
728 alternatives_smp_switch(1);
730 c_idle.idle = get_idle_for_cpu(cpu);
733 * We can't use kernel_thread since we must avoid to
734 * reschedule the child.
736 if (c_idle.idle) {
737 c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
738 (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
739 init_idle(c_idle.idle, cpu);
740 goto do_rest;
743 schedule_work(&c_idle.work);
744 wait_for_completion(&c_idle.done);
746 if (IS_ERR(c_idle.idle)) {
747 printk("failed fork for CPU %d\n", cpu);
748 destroy_work_on_stack(&c_idle.work);
749 return PTR_ERR(c_idle.idle);
752 set_idle_for_cpu(cpu, c_idle.idle);
753 do_rest:
754 per_cpu(current_task, cpu) = c_idle.idle;
755 #ifdef CONFIG_X86_32
756 /* Stack for startup_32 can be just as for start_secondary onwards */
757 irq_ctx_init(cpu);
758 initial_page_table = __pa(&trampoline_pg_dir);
759 #else
760 clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
761 initial_gs = per_cpu_offset(cpu);
762 per_cpu(kernel_stack, cpu) =
763 (unsigned long)task_stack_page(c_idle.idle) -
764 KERNEL_STACK_OFFSET + THREAD_SIZE;
765 #endif
766 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
767 initial_code = (unsigned long)start_secondary;
768 stack_start.sp = (void *) c_idle.idle->thread.sp;
770 /* start_ip had better be page-aligned! */
771 start_ip = setup_trampoline();
773 /* So we see what's up */
774 announce_cpu(cpu, apicid);
777 * This grunge runs the startup process for
778 * the targeted processor.
781 atomic_set(&init_deasserted, 0);
783 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
785 pr_debug("Setting warm reset code and vector.\n");
787 smpboot_setup_warm_reset_vector(start_ip);
789 * Be paranoid about clearing APIC errors.
791 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
792 apic_write(APIC_ESR, 0);
793 apic_read(APIC_ESR);
798 * Kick the secondary CPU. Use the method in the APIC driver
799 * if it's defined - or use an INIT boot APIC message otherwise:
801 if (apic->wakeup_secondary_cpu)
802 boot_error = apic->wakeup_secondary_cpu(apicid, start_ip);
803 else
804 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
806 if (!boot_error) {
808 * allow APs to start initializing.
810 pr_debug("Before Callout %d.\n", cpu);
811 cpumask_set_cpu(cpu, cpu_callout_mask);
812 pr_debug("After Callout %d.\n", cpu);
815 * Wait 5s total for a response
817 for (timeout = 0; timeout < 50000; timeout++) {
818 if (cpumask_test_cpu(cpu, cpu_callin_mask))
819 break; /* It has booted */
820 udelay(100);
822 * Allow other tasks to run while we wait for the
823 * AP to come online. This also gives a chance
824 * for the MTRR work(triggered by the AP coming online)
825 * to be completed in the stop machine context.
827 schedule();
830 if (cpumask_test_cpu(cpu, cpu_callin_mask))
831 pr_debug("CPU%d: has booted.\n", cpu);
832 else {
833 boot_error = 1;
834 if (*((volatile unsigned char *)trampoline_base)
835 == 0xA5)
836 /* trampoline started but...? */
837 pr_err("CPU%d: Stuck ??\n", cpu);
838 else
839 /* trampoline code not run */
840 pr_err("CPU%d: Not responding.\n", cpu);
841 if (apic->inquire_remote_apic)
842 apic->inquire_remote_apic(apicid);
846 if (boot_error) {
847 /* Try to put things back the way they were before ... */
848 numa_remove_cpu(cpu); /* was set by numa_add_cpu */
850 /* was set by do_boot_cpu() */
851 cpumask_clear_cpu(cpu, cpu_callout_mask);
853 /* was set by cpu_init() */
854 cpumask_clear_cpu(cpu, cpu_initialized_mask);
856 set_cpu_present(cpu, false);
857 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
860 /* mark "stuck" area as not stuck */
861 *((volatile unsigned long *)trampoline_base) = 0;
863 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
865 * Cleanup possible dangling ends...
867 smpboot_restore_warm_reset_vector();
870 destroy_work_on_stack(&c_idle.work);
871 return boot_error;
874 int __cpuinit native_cpu_up(unsigned int cpu)
876 int apicid = apic->cpu_present_to_apicid(cpu);
877 unsigned long flags;
878 int err;
880 WARN_ON(irqs_disabled());
882 pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu);
884 if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
885 !physid_isset(apicid, phys_cpu_present_map)) {
886 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
887 return -EINVAL;
891 * Already booted CPU?
893 if (cpumask_test_cpu(cpu, cpu_callin_mask)) {
894 pr_debug("do_boot_cpu %d Already started\n", cpu);
895 return -ENOSYS;
899 * Save current MTRR state in case it was changed since early boot
900 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
902 mtrr_save_state();
904 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
906 err = do_boot_cpu(apicid, cpu);
908 if (err) {
909 pr_debug("do_boot_cpu failed %d\n", err);
910 return -EIO;
914 * Check TSC synchronization with the AP (keep irqs disabled
915 * while doing so):
917 local_irq_save(flags);
918 check_tsc_sync_source(cpu);
919 local_irq_restore(flags);
921 while (!cpu_online(cpu)) {
922 cpu_relax();
923 touch_nmi_watchdog();
926 return 0;
930 * Fall back to non SMP mode after errors.
932 * RED-PEN audit/test this more. I bet there is more state messed up here.
934 static __init void disable_smp(void)
936 init_cpu_present(cpumask_of(0));
937 init_cpu_possible(cpumask_of(0));
938 smpboot_clear_io_apic_irqs();
940 if (smp_found_config)
941 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
942 else
943 physid_set_mask_of_physid(0, &phys_cpu_present_map);
944 map_cpu_to_logical_apicid();
945 cpumask_set_cpu(0, cpu_sibling_mask(0));
946 cpumask_set_cpu(0, cpu_core_mask(0));
950 * Various sanity checks.
952 static int __init smp_sanity_check(unsigned max_cpus)
954 preempt_disable();
956 #if !defined(CONFIG_X86_BIGSMP) && defined(CONFIG_X86_32)
957 if (def_to_bigsmp && nr_cpu_ids > 8) {
958 unsigned int cpu;
959 unsigned nr;
961 printk(KERN_WARNING
962 "More than 8 CPUs detected - skipping them.\n"
963 "Use CONFIG_X86_BIGSMP.\n");
965 nr = 0;
966 for_each_present_cpu(cpu) {
967 if (nr >= 8)
968 set_cpu_present(cpu, false);
969 nr++;
972 nr = 0;
973 for_each_possible_cpu(cpu) {
974 if (nr >= 8)
975 set_cpu_possible(cpu, false);
976 nr++;
979 nr_cpu_ids = 8;
981 #endif
983 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
984 printk(KERN_WARNING
985 "weird, boot CPU (#%d) not listed by the BIOS.\n",
986 hard_smp_processor_id());
988 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
992 * If we couldn't find an SMP configuration at boot time,
993 * get out of here now!
995 if (!smp_found_config && !acpi_lapic) {
996 preempt_enable();
997 printk(KERN_NOTICE "SMP motherboard not detected.\n");
998 disable_smp();
999 if (APIC_init_uniprocessor())
1000 printk(KERN_NOTICE "Local APIC not detected."
1001 " Using dummy APIC emulation.\n");
1002 return -1;
1006 * Should not be necessary because the MP table should list the boot
1007 * CPU too, but we do it for the sake of robustness anyway.
1009 if (!apic->check_phys_apicid_present(boot_cpu_physical_apicid)) {
1010 printk(KERN_NOTICE
1011 "weird, boot CPU (#%d) not listed by the BIOS.\n",
1012 boot_cpu_physical_apicid);
1013 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1015 preempt_enable();
1018 * If we couldn't find a local APIC, then get out of here now!
1020 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1021 !cpu_has_apic) {
1022 if (!disable_apic) {
1023 pr_err("BIOS bug, local APIC #%d not detected!...\n",
1024 boot_cpu_physical_apicid);
1025 pr_err("... forcing use of dummy APIC emulation."
1026 "(tell your hw vendor)\n");
1028 smpboot_clear_io_apic();
1029 arch_disable_smp_support();
1030 return -1;
1033 verify_local_APIC();
1036 * If SMP should be disabled, then really disable it!
1038 if (!max_cpus) {
1039 printk(KERN_INFO "SMP mode deactivated.\n");
1040 smpboot_clear_io_apic();
1042 localise_nmi_watchdog();
1044 connect_bsp_APIC();
1045 setup_local_APIC();
1046 end_local_APIC_setup();
1047 return -1;
1050 return 0;
1053 static void __init smp_cpu_index_default(void)
1055 int i;
1056 struct cpuinfo_x86 *c;
1058 for_each_possible_cpu(i) {
1059 c = &cpu_data(i);
1060 /* mark all to hotplug */
1061 c->cpu_index = nr_cpu_ids;
1066 * Prepare for SMP bootup. The MP table or ACPI has been read
1067 * earlier. Just do some sanity checking here and enable APIC mode.
1069 void __init native_smp_prepare_cpus(unsigned int max_cpus)
1071 unsigned int i;
1073 preempt_disable();
1074 smp_cpu_index_default();
1075 current_cpu_data = boot_cpu_data;
1076 cpumask_copy(cpu_callin_mask, cpumask_of(0));
1077 mb();
1079 * Setup boot CPU information
1081 smp_store_cpu_info(0); /* Final full version of the data */
1082 #ifdef CONFIG_X86_32
1083 boot_cpu_logical_apicid = logical_smp_processor_id();
1084 #endif
1085 current_thread_info()->cpu = 0; /* needed? */
1086 for_each_possible_cpu(i) {
1087 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
1088 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
1089 zalloc_cpumask_var(&cpu_data(i).llc_shared_map, GFP_KERNEL);
1091 set_cpu_sibling_map(0);
1093 enable_IR_x2apic();
1094 default_setup_apic_routing();
1096 if (smp_sanity_check(max_cpus) < 0) {
1097 printk(KERN_INFO "SMP disabled\n");
1098 disable_smp();
1099 goto out;
1102 preempt_disable();
1103 if (read_apic_id() != boot_cpu_physical_apicid) {
1104 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
1105 read_apic_id(), boot_cpu_physical_apicid);
1106 /* Or can we switch back to PIC here? */
1108 preempt_enable();
1110 connect_bsp_APIC();
1113 * Switch from PIC to APIC mode.
1115 setup_local_APIC();
1118 * Enable IO APIC before setting up error vector
1120 if (!skip_ioapic_setup && nr_ioapics)
1121 enable_IO_APIC();
1123 end_local_APIC_setup();
1125 map_cpu_to_logical_apicid();
1127 if (apic->setup_portio_remap)
1128 apic->setup_portio_remap();
1130 smpboot_setup_io_apic();
1132 * Set up local APIC timer on boot CPU.
1135 printk(KERN_INFO "CPU%d: ", 0);
1136 print_cpu_info(&cpu_data(0));
1137 x86_init.timers.setup_percpu_clockev();
1139 if (is_uv_system())
1140 uv_system_init();
1142 set_mtrr_aps_delayed_init();
1143 out:
1144 preempt_enable();
1147 void arch_enable_nonboot_cpus_begin(void)
1149 set_mtrr_aps_delayed_init();
1152 void arch_enable_nonboot_cpus_end(void)
1154 mtrr_aps_init();
1158 * Early setup to make printk work.
1160 void __init native_smp_prepare_boot_cpu(void)
1162 int me = smp_processor_id();
1163 switch_to_new_gdt(me);
1164 /* already set me in cpu_online_mask in boot_cpu_init() */
1165 cpumask_set_cpu(me, cpu_callout_mask);
1166 per_cpu(cpu_state, me) = CPU_ONLINE;
1169 void __init native_smp_cpus_done(unsigned int max_cpus)
1171 pr_debug("Boot done.\n");
1173 impress_friends();
1174 #ifdef CONFIG_X86_IO_APIC
1175 setup_ioapic_dest();
1176 #endif
1177 check_nmi_watchdog();
1178 mtrr_aps_init();
1181 static int __initdata setup_possible_cpus = -1;
1182 static int __init _setup_possible_cpus(char *str)
1184 get_option(&str, &setup_possible_cpus);
1185 return 0;
1187 early_param("possible_cpus", _setup_possible_cpus);
1191 * cpu_possible_mask should be static, it cannot change as cpu's
1192 * are onlined, or offlined. The reason is per-cpu data-structures
1193 * are allocated by some modules at init time, and dont expect to
1194 * do this dynamically on cpu arrival/departure.
1195 * cpu_present_mask on the other hand can change dynamically.
1196 * In case when cpu_hotplug is not compiled, then we resort to current
1197 * behaviour, which is cpu_possible == cpu_present.
1198 * - Ashok Raj
1200 * Three ways to find out the number of additional hotplug CPUs:
1201 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
1202 * - The user can overwrite it with possible_cpus=NUM
1203 * - Otherwise don't reserve additional CPUs.
1204 * We do this because additional CPUs waste a lot of memory.
1205 * -AK
1207 __init void prefill_possible_map(void)
1209 int i, possible;
1211 /* no processor from mptable or madt */
1212 if (!num_processors)
1213 num_processors = 1;
1215 i = setup_max_cpus ?: 1;
1216 if (setup_possible_cpus == -1) {
1217 possible = num_processors;
1218 #ifdef CONFIG_HOTPLUG_CPU
1219 if (setup_max_cpus)
1220 possible += disabled_cpus;
1221 #else
1222 if (possible > i)
1223 possible = i;
1224 #endif
1225 } else
1226 possible = setup_possible_cpus;
1228 total_cpus = max_t(int, possible, num_processors + disabled_cpus);
1230 /* nr_cpu_ids could be reduced via nr_cpus= */
1231 if (possible > nr_cpu_ids) {
1232 printk(KERN_WARNING
1233 "%d Processors exceeds NR_CPUS limit of %d\n",
1234 possible, nr_cpu_ids);
1235 possible = nr_cpu_ids;
1238 #ifdef CONFIG_HOTPLUG_CPU
1239 if (!setup_max_cpus)
1240 #endif
1241 if (possible > i) {
1242 printk(KERN_WARNING
1243 "%d Processors exceeds max_cpus limit of %u\n",
1244 possible, setup_max_cpus);
1245 possible = i;
1248 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
1249 possible, max_t(int, possible - num_processors, 0));
1251 for (i = 0; i < possible; i++)
1252 set_cpu_possible(i, true);
1253 for (; i < NR_CPUS; i++)
1254 set_cpu_possible(i, false);
1256 nr_cpu_ids = possible;
1259 #ifdef CONFIG_HOTPLUG_CPU
1261 static void remove_siblinginfo(int cpu)
1263 int sibling;
1264 struct cpuinfo_x86 *c = &cpu_data(cpu);
1266 for_each_cpu(sibling, cpu_core_mask(cpu)) {
1267 cpumask_clear_cpu(cpu, cpu_core_mask(sibling));
1269 * last thread sibling in this cpu core going down
1271 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1)
1272 cpu_data(sibling).booted_cores--;
1275 for_each_cpu(sibling, cpu_sibling_mask(cpu))
1276 cpumask_clear_cpu(cpu, cpu_sibling_mask(sibling));
1277 cpumask_clear(cpu_sibling_mask(cpu));
1278 cpumask_clear(cpu_core_mask(cpu));
1279 c->phys_proc_id = 0;
1280 c->cpu_core_id = 0;
1281 cpumask_clear_cpu(cpu, cpu_sibling_setup_mask);
1284 static void __ref remove_cpu_from_maps(int cpu)
1286 set_cpu_online(cpu, false);
1287 cpumask_clear_cpu(cpu, cpu_callout_mask);
1288 cpumask_clear_cpu(cpu, cpu_callin_mask);
1289 /* was set by cpu_init() */
1290 cpumask_clear_cpu(cpu, cpu_initialized_mask);
1291 numa_remove_cpu(cpu);
1294 void cpu_disable_common(void)
1296 int cpu = smp_processor_id();
1298 remove_siblinginfo(cpu);
1300 /* It's now safe to remove this processor from the online map */
1301 lock_vector_lock();
1302 remove_cpu_from_maps(cpu);
1303 unlock_vector_lock();
1304 fixup_irqs();
1307 int native_cpu_disable(void)
1309 int cpu = smp_processor_id();
1312 * Perhaps use cpufreq to drop frequency, but that could go
1313 * into generic code.
1315 * We won't take down the boot processor on i386 due to some
1316 * interrupts only being able to be serviced by the BSP.
1317 * Especially so if we're not using an IOAPIC -zwane
1319 if (cpu == 0)
1320 return -EBUSY;
1322 if (nmi_watchdog == NMI_LOCAL_APIC)
1323 stop_apic_nmi_watchdog(NULL);
1324 clear_local_APIC();
1326 cpu_disable_common();
1327 return 0;
1330 void native_cpu_die(unsigned int cpu)
1332 /* We don't do anything here: idle task is faking death itself. */
1333 unsigned int i;
1335 for (i = 0; i < 10; i++) {
1336 /* They ack this in play_dead by setting CPU_DEAD */
1337 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1338 if (system_state == SYSTEM_RUNNING)
1339 pr_info("CPU %u is now offline\n", cpu);
1341 if (1 == num_online_cpus())
1342 alternatives_smp_switch(0);
1343 return;
1345 msleep(100);
1347 pr_err("CPU %u didn't die...\n", cpu);
1350 void play_dead_common(void)
1352 idle_task_exit();
1353 reset_lazy_tlbstate();
1354 irq_ctx_exit(raw_smp_processor_id());
1355 c1e_remove_cpu(raw_smp_processor_id());
1357 mb();
1358 /* Ack it */
1359 __get_cpu_var(cpu_state) = CPU_DEAD;
1362 * With physical CPU hotplug, we should halt the cpu
1364 local_irq_disable();
1367 void native_play_dead(void)
1369 play_dead_common();
1370 tboot_shutdown(TB_SHUTDOWN_WFS);
1371 wbinvd_halt();
1374 #else /* ... !CONFIG_HOTPLUG_CPU */
1375 int native_cpu_disable(void)
1377 return -ENOSYS;
1380 void native_cpu_die(unsigned int cpu)
1382 /* We said "no" in __cpu_disable */
1383 BUG();
1386 void native_play_dead(void)
1388 BUG();
1391 #endif