tcp: detect malicious patterns in tcp_collapse_ofo_queue()
[linux/fpc-iii.git] / arch / x86 / kernel / smpboot.c
bloba3edf722a7c93f0abc0ccd26f2d0a638eab2099e
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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
44 #include <linux/init.h>
45 #include <linux/smp.h>
46 #include <linux/module.h>
47 #include <linux/sched.h>
48 #include <linux/percpu.h>
49 #include <linux/bootmem.h>
50 #include <linux/err.h>
51 #include <linux/nmi.h>
52 #include <linux/tboot.h>
53 #include <linux/stackprotector.h>
54 #include <linux/gfp.h>
55 #include <linux/cpuidle.h>
57 #include <asm/acpi.h>
58 #include <asm/desc.h>
59 #include <asm/nmi.h>
60 #include <asm/irq.h>
61 #include <asm/idle.h>
62 #include <asm/realmode.h>
63 #include <asm/cpu.h>
64 #include <asm/numa.h>
65 #include <asm/pgtable.h>
66 #include <asm/tlbflush.h>
67 #include <asm/mtrr.h>
68 #include <asm/mwait.h>
69 #include <asm/apic.h>
70 #include <asm/io_apic.h>
71 #include <asm/i387.h>
72 #include <asm/fpu-internal.h>
73 #include <asm/setup.h>
74 #include <asm/uv/uv.h>
75 #include <linux/mc146818rtc.h>
76 #include <asm/smpboot_hooks.h>
77 #include <asm/i8259.h>
78 #include <asm/realmode.h>
79 #include <asm/misc.h>
81 /* State of each CPU */
82 DEFINE_PER_CPU(int, cpu_state) = { 0 };
84 /* Number of siblings per CPU package */
85 int smp_num_siblings = 1;
86 EXPORT_SYMBOL(smp_num_siblings);
88 /* Last level cache ID of each logical CPU */
89 DEFINE_PER_CPU_READ_MOSTLY(u16, cpu_llc_id) = BAD_APICID;
91 /* representing HT siblings of each logical CPU */
92 DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_sibling_map);
93 EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
95 /* representing HT and core siblings of each logical CPU */
96 DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_core_map);
97 EXPORT_PER_CPU_SYMBOL(cpu_core_map);
99 DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_llc_shared_map);
101 /* Per CPU bogomips and other parameters */
102 DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
103 EXPORT_PER_CPU_SYMBOL(cpu_info);
105 atomic_t init_deasserted;
108 * Report back to the Boot Processor during boot time or to the caller processor
109 * during CPU online.
111 static void smp_callin(void)
113 int cpuid, phys_id;
116 * If waken up by an INIT in an 82489DX configuration
117 * we may get here before an INIT-deassert IPI reaches
118 * our local APIC. We have to wait for the IPI or we'll
119 * lock up on an APIC access.
121 * Since CPU0 is not wakened up by INIT, it doesn't wait for the IPI.
123 cpuid = smp_processor_id();
124 if (apic->wait_for_init_deassert && cpuid)
125 while (!atomic_read(&init_deasserted))
126 cpu_relax();
129 * (This works even if the APIC is not enabled.)
131 phys_id = read_apic_id();
134 * the boot CPU has finished the init stage and is spinning
135 * on callin_map until we finish. We are free to set up this
136 * CPU, first the APIC. (this is probably redundant on most
137 * boards)
139 setup_local_APIC();
140 end_local_APIC_setup();
143 * Need to setup vector mappings before we enable interrupts.
145 setup_vector_irq(smp_processor_id());
148 * Save our processor parameters. Note: this information
149 * is needed for clock calibration.
151 smp_store_cpu_info(cpuid);
154 * Get our bogomips.
155 * Update loops_per_jiffy in cpu_data. Previous call to
156 * smp_store_cpu_info() stored a value that is close but not as
157 * accurate as the value just calculated.
159 calibrate_delay();
160 cpu_data(cpuid).loops_per_jiffy = loops_per_jiffy;
161 pr_debug("Stack at about %p\n", &cpuid);
164 * This must be done before setting cpu_online_mask
165 * or calling notify_cpu_starting.
167 set_cpu_sibling_map(raw_smp_processor_id());
168 wmb();
170 notify_cpu_starting(cpuid);
173 * Allow the master to continue.
175 cpumask_set_cpu(cpuid, cpu_callin_mask);
178 static int cpu0_logical_apicid;
179 static int enable_start_cpu0;
181 * Activate a secondary processor.
183 static void notrace start_secondary(void *unused)
186 * Don't put *anything* before cpu_init(), SMP booting is too
187 * fragile that we want to limit the things done here to the
188 * most necessary things.
190 cpu_init();
191 x86_cpuinit.early_percpu_clock_init();
192 preempt_disable();
193 smp_callin();
195 enable_start_cpu0 = 0;
197 #ifdef CONFIG_X86_32
198 /* switch away from the initial page table */
199 load_cr3(swapper_pg_dir);
200 __flush_tlb_all();
201 #endif
203 /* otherwise gcc will move up smp_processor_id before the cpu_init */
204 barrier();
206 * Check TSC synchronization with the BP:
208 check_tsc_sync_target();
211 * Enable the espfix hack for this CPU
213 #ifdef CONFIG_X86_ESPFIX64
214 init_espfix_ap();
215 #endif
218 * We need to hold vector_lock so there the set of online cpus
219 * does not change while we are assigning vectors to cpus. Holding
220 * this lock ensures we don't half assign or remove an irq from a cpu.
222 lock_vector_lock();
223 set_cpu_online(smp_processor_id(), true);
224 unlock_vector_lock();
225 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
226 x86_platform.nmi_init();
228 /* enable local interrupts */
229 local_irq_enable();
231 /* to prevent fake stack check failure in clock setup */
232 boot_init_stack_canary();
234 x86_cpuinit.setup_percpu_clockev();
236 wmb();
237 cpu_startup_entry(CPUHP_ONLINE);
240 void __init smp_store_boot_cpu_info(void)
242 int id = 0; /* CPU 0 */
243 struct cpuinfo_x86 *c = &cpu_data(id);
245 *c = boot_cpu_data;
246 c->cpu_index = id;
250 * The bootstrap kernel entry code has set these up. Save them for
251 * a given CPU
253 void smp_store_cpu_info(int id)
255 struct cpuinfo_x86 *c = &cpu_data(id);
257 *c = boot_cpu_data;
258 c->cpu_index = id;
260 * During boot time, CPU0 has this setup already. Save the info when
261 * bringing up AP or offlined CPU0.
263 identify_secondary_cpu(c);
266 static bool
267 topology_same_node(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
269 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
271 return (cpu_to_node(cpu1) == cpu_to_node(cpu2));
274 static bool
275 topology_sane(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o, const char *name)
277 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
279 return !WARN_ONCE(!topology_same_node(c, o),
280 "sched: CPU #%d's %s-sibling CPU #%d is not on the same node! "
281 "[node: %d != %d]. Ignoring dependency.\n",
282 cpu1, name, cpu2, cpu_to_node(cpu1), cpu_to_node(cpu2));
285 #define link_mask(_m, c1, c2) \
286 do { \
287 cpumask_set_cpu((c1), cpu_##_m##_mask(c2)); \
288 cpumask_set_cpu((c2), cpu_##_m##_mask(c1)); \
289 } while (0)
291 static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
293 if (cpu_has_topoext) {
294 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
296 if (c->phys_proc_id == o->phys_proc_id &&
297 per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2) &&
298 c->compute_unit_id == o->compute_unit_id)
299 return topology_sane(c, o, "smt");
301 } else if (c->phys_proc_id == o->phys_proc_id &&
302 c->cpu_core_id == o->cpu_core_id) {
303 return topology_sane(c, o, "smt");
306 return false;
309 static bool match_llc(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
311 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
313 if (per_cpu(cpu_llc_id, cpu1) != BAD_APICID &&
314 per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2))
315 return topology_sane(c, o, "llc");
317 return false;
321 * Unlike the other levels, we do not enforce keeping a
322 * multicore group inside a NUMA node. If this happens, we will
323 * discard the MC level of the topology later.
325 static bool match_die(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
327 if (c->phys_proc_id == o->phys_proc_id)
328 return true;
329 return false;
332 static struct sched_domain_topology_level numa_inside_package_topology[] = {
333 #ifdef CONFIG_SCHED_SMT
334 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
335 #endif
336 #ifdef CONFIG_SCHED_MC
337 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
338 #endif
339 { NULL, },
342 * set_sched_topology() sets the topology internal to a CPU. The
343 * NUMA topologies are layered on top of it to build the full
344 * system topology.
346 * If NUMA nodes are observed to occur within a CPU package, this
347 * function should be called. It forces the sched domain code to
348 * only use the SMT level for the CPU portion of the topology.
349 * This essentially falls back to relying on NUMA information
350 * from the SRAT table to describe the entire system topology
351 * (except for hyperthreads).
353 static void primarily_use_numa_for_topology(void)
355 set_sched_topology(numa_inside_package_topology);
358 void set_cpu_sibling_map(int cpu)
360 bool has_smt = smp_num_siblings > 1;
361 bool has_mp = has_smt || boot_cpu_data.x86_max_cores > 1;
362 struct cpuinfo_x86 *c = &cpu_data(cpu);
363 struct cpuinfo_x86 *o;
364 int i;
366 cpumask_set_cpu(cpu, cpu_sibling_setup_mask);
368 if (!has_mp) {
369 cpumask_set_cpu(cpu, cpu_sibling_mask(cpu));
370 cpumask_set_cpu(cpu, cpu_llc_shared_mask(cpu));
371 cpumask_set_cpu(cpu, cpu_core_mask(cpu));
372 c->booted_cores = 1;
373 return;
376 for_each_cpu(i, cpu_sibling_setup_mask) {
377 o = &cpu_data(i);
379 if ((i == cpu) || (has_smt && match_smt(c, o)))
380 link_mask(sibling, cpu, i);
382 if ((i == cpu) || (has_mp && match_llc(c, o)))
383 link_mask(llc_shared, cpu, i);
388 * This needs a separate iteration over the cpus because we rely on all
389 * cpu_sibling_mask links to be set-up.
391 for_each_cpu(i, cpu_sibling_setup_mask) {
392 o = &cpu_data(i);
394 if ((i == cpu) || (has_mp && match_die(c, o))) {
395 link_mask(core, cpu, i);
398 * Does this new cpu bringup a new core?
400 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1) {
402 * for each core in package, increment
403 * the booted_cores for this new cpu
405 if (cpumask_first(cpu_sibling_mask(i)) == i)
406 c->booted_cores++;
408 * increment the core count for all
409 * the other cpus in this package
411 if (i != cpu)
412 cpu_data(i).booted_cores++;
413 } else if (i != cpu && !c->booted_cores)
414 c->booted_cores = cpu_data(i).booted_cores;
416 if (match_die(c, o) && !topology_same_node(c, o))
417 primarily_use_numa_for_topology();
421 /* maps the cpu to the sched domain representing multi-core */
422 const struct cpumask *cpu_coregroup_mask(int cpu)
424 return cpu_llc_shared_mask(cpu);
427 static void impress_friends(void)
429 int cpu;
430 unsigned long bogosum = 0;
432 * Allow the user to impress friends.
434 pr_debug("Before bogomips\n");
435 for_each_possible_cpu(cpu)
436 if (cpumask_test_cpu(cpu, cpu_callout_mask))
437 bogosum += cpu_data(cpu).loops_per_jiffy;
438 pr_info("Total of %d processors activated (%lu.%02lu BogoMIPS)\n",
439 num_online_cpus(),
440 bogosum/(500000/HZ),
441 (bogosum/(5000/HZ))%100);
443 pr_debug("Before bogocount - setting activated=1\n");
446 void __inquire_remote_apic(int apicid)
448 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
449 const char * const names[] = { "ID", "VERSION", "SPIV" };
450 int timeout;
451 u32 status;
453 pr_info("Inquiring remote APIC 0x%x...\n", apicid);
455 for (i = 0; i < ARRAY_SIZE(regs); i++) {
456 pr_info("... APIC 0x%x %s: ", apicid, names[i]);
459 * Wait for idle.
461 status = safe_apic_wait_icr_idle();
462 if (status)
463 pr_cont("a previous APIC delivery may have failed\n");
465 apic_icr_write(APIC_DM_REMRD | regs[i], apicid);
467 timeout = 0;
468 do {
469 udelay(100);
470 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
471 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
473 switch (status) {
474 case APIC_ICR_RR_VALID:
475 status = apic_read(APIC_RRR);
476 pr_cont("%08x\n", status);
477 break;
478 default:
479 pr_cont("failed\n");
485 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
486 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
487 * won't ... remember to clear down the APIC, etc later.
490 wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip)
492 unsigned long send_status, accept_status = 0;
493 int maxlvt;
495 /* Target chip */
496 /* Boot on the stack */
497 /* Kick the second */
498 apic_icr_write(APIC_DM_NMI | apic->dest_logical, apicid);
500 pr_debug("Waiting for send to finish...\n");
501 send_status = safe_apic_wait_icr_idle();
504 * Give the other CPU some time to accept the IPI.
506 udelay(200);
507 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
508 maxlvt = lapic_get_maxlvt();
509 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
510 apic_write(APIC_ESR, 0);
511 accept_status = (apic_read(APIC_ESR) & 0xEF);
513 pr_debug("NMI sent\n");
515 if (send_status)
516 pr_err("APIC never delivered???\n");
517 if (accept_status)
518 pr_err("APIC delivery error (%lx)\n", accept_status);
520 return (send_status | accept_status);
523 static int
524 wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
526 unsigned long send_status, accept_status = 0;
527 int maxlvt, num_starts, j;
529 maxlvt = lapic_get_maxlvt();
532 * Be paranoid about clearing APIC errors.
534 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
535 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
536 apic_write(APIC_ESR, 0);
537 apic_read(APIC_ESR);
540 pr_debug("Asserting INIT\n");
543 * Turn INIT on target chip
546 * Send IPI
548 apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT,
549 phys_apicid);
551 pr_debug("Waiting for send to finish...\n");
552 send_status = safe_apic_wait_icr_idle();
554 mdelay(10);
556 pr_debug("Deasserting INIT\n");
558 /* Target chip */
559 /* Send IPI */
560 apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid);
562 pr_debug("Waiting for send to finish...\n");
563 send_status = safe_apic_wait_icr_idle();
565 mb();
566 atomic_set(&init_deasserted, 1);
569 * Should we send STARTUP IPIs ?
571 * Determine this based on the APIC version.
572 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
574 if (APIC_INTEGRATED(apic_version[phys_apicid]))
575 num_starts = 2;
576 else
577 num_starts = 0;
580 * Paravirt / VMI wants a startup IPI hook here to set up the
581 * target processor state.
583 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
584 stack_start);
587 * Run STARTUP IPI loop.
589 pr_debug("#startup loops: %d\n", num_starts);
591 for (j = 1; j <= num_starts; j++) {
592 pr_debug("Sending STARTUP #%d\n", j);
593 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
594 apic_write(APIC_ESR, 0);
595 apic_read(APIC_ESR);
596 pr_debug("After apic_write\n");
599 * STARTUP IPI
602 /* Target chip */
603 /* Boot on the stack */
604 /* Kick the second */
605 apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12),
606 phys_apicid);
609 * Give the other CPU some time to accept the IPI.
611 udelay(300);
613 pr_debug("Startup point 1\n");
615 pr_debug("Waiting for send to finish...\n");
616 send_status = safe_apic_wait_icr_idle();
619 * Give the other CPU some time to accept the IPI.
621 udelay(200);
622 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
623 apic_write(APIC_ESR, 0);
624 accept_status = (apic_read(APIC_ESR) & 0xEF);
625 if (send_status || accept_status)
626 break;
628 pr_debug("After Startup\n");
630 if (send_status)
631 pr_err("APIC never delivered???\n");
632 if (accept_status)
633 pr_err("APIC delivery error (%lx)\n", accept_status);
635 return (send_status | accept_status);
638 void smp_announce(void)
640 int num_nodes = num_online_nodes();
642 printk(KERN_INFO "x86: Booted up %d node%s, %d CPUs\n",
643 num_nodes, (num_nodes > 1 ? "s" : ""), num_online_cpus());
646 /* reduce the number of lines printed when booting a large cpu count system */
647 static void announce_cpu(int cpu, int apicid)
649 static int current_node = -1;
650 int node = early_cpu_to_node(cpu);
651 static int width, node_width;
653 if (!width)
654 width = num_digits(num_possible_cpus()) + 1; /* + '#' sign */
656 if (!node_width)
657 node_width = num_digits(num_possible_nodes()) + 1; /* + '#' */
659 if (cpu == 1)
660 printk(KERN_INFO "x86: Booting SMP configuration:\n");
662 if (system_state == SYSTEM_BOOTING) {
663 if (node != current_node) {
664 if (current_node > (-1))
665 pr_cont("\n");
666 current_node = node;
668 printk(KERN_INFO ".... node %*s#%d, CPUs: ",
669 node_width - num_digits(node), " ", node);
672 /* Add padding for the BSP */
673 if (cpu == 1)
674 pr_cont("%*s", width + 1, " ");
676 pr_cont("%*s#%d", width - num_digits(cpu), " ", cpu);
678 } else
679 pr_info("Booting Node %d Processor %d APIC 0x%x\n",
680 node, cpu, apicid);
683 static int wakeup_cpu0_nmi(unsigned int cmd, struct pt_regs *regs)
685 int cpu;
687 cpu = smp_processor_id();
688 if (cpu == 0 && !cpu_online(cpu) && enable_start_cpu0)
689 return NMI_HANDLED;
691 return NMI_DONE;
695 * Wake up AP by INIT, INIT, STARTUP sequence.
697 * Instead of waiting for STARTUP after INITs, BSP will execute the BIOS
698 * boot-strap code which is not a desired behavior for waking up BSP. To
699 * void the boot-strap code, wake up CPU0 by NMI instead.
701 * This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined
702 * (i.e. physically hot removed and then hot added), NMI won't wake it up.
703 * We'll change this code in the future to wake up hard offlined CPU0 if
704 * real platform and request are available.
706 static int
707 wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
708 int *cpu0_nmi_registered)
710 int id;
711 int boot_error;
713 preempt_disable();
716 * Wake up AP by INIT, INIT, STARTUP sequence.
718 if (cpu) {
719 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
720 goto out;
724 * Wake up BSP by nmi.
726 * Register a NMI handler to help wake up CPU0.
728 boot_error = register_nmi_handler(NMI_LOCAL,
729 wakeup_cpu0_nmi, 0, "wake_cpu0");
731 if (!boot_error) {
732 enable_start_cpu0 = 1;
733 *cpu0_nmi_registered = 1;
734 if (apic->dest_logical == APIC_DEST_LOGICAL)
735 id = cpu0_logical_apicid;
736 else
737 id = apicid;
738 boot_error = wakeup_secondary_cpu_via_nmi(id, start_ip);
741 out:
742 preempt_enable();
744 return boot_error;
748 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
749 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
750 * Returns zero if CPU booted OK, else error code from
751 * ->wakeup_secondary_cpu.
753 static int do_boot_cpu(int apicid, int cpu, struct task_struct *idle)
755 volatile u32 *trampoline_status =
756 (volatile u32 *) __va(real_mode_header->trampoline_status);
757 /* start_ip had better be page-aligned! */
758 unsigned long start_ip = real_mode_header->trampoline_start;
760 unsigned long boot_error = 0;
761 int cpu0_nmi_registered = 0;
762 unsigned long timeout;
764 /* Just in case we booted with a single CPU. */
765 alternatives_enable_smp();
767 idle->thread.sp = (unsigned long) (((struct pt_regs *)
768 (THREAD_SIZE + task_stack_page(idle))) - 1);
769 per_cpu(current_task, cpu) = idle;
771 #ifdef CONFIG_X86_32
772 /* Stack for startup_32 can be just as for start_secondary onwards */
773 irq_ctx_init(cpu);
774 #else
775 clear_tsk_thread_flag(idle, TIF_FORK);
776 initial_gs = per_cpu_offset(cpu);
777 #endif
778 per_cpu(kernel_stack, cpu) =
779 (unsigned long)task_stack_page(idle) -
780 KERNEL_STACK_OFFSET + THREAD_SIZE;
781 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
782 initial_code = (unsigned long)start_secondary;
783 stack_start = idle->thread.sp;
785 /* So we see what's up */
786 announce_cpu(cpu, apicid);
789 * This grunge runs the startup process for
790 * the targeted processor.
793 atomic_set(&init_deasserted, 0);
795 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
797 pr_debug("Setting warm reset code and vector.\n");
799 smpboot_setup_warm_reset_vector(start_ip);
801 * Be paranoid about clearing APIC errors.
803 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
804 apic_write(APIC_ESR, 0);
805 apic_read(APIC_ESR);
810 * AP might wait on cpu_callout_mask in cpu_init() with
811 * cpu_initialized_mask set if previous attempt to online
812 * it timed-out. Clear cpu_initialized_mask so that after
813 * INIT/SIPI it could start with a clean state.
815 cpumask_clear_cpu(cpu, cpu_initialized_mask);
816 smp_mb();
819 * Wake up a CPU in difference cases:
820 * - Use the method in the APIC driver if it's defined
821 * Otherwise,
822 * - Use an INIT boot APIC message for APs or NMI for BSP.
824 if (apic->wakeup_secondary_cpu)
825 boot_error = apic->wakeup_secondary_cpu(apicid, start_ip);
826 else
827 boot_error = wakeup_cpu_via_init_nmi(cpu, start_ip, apicid,
828 &cpu0_nmi_registered);
830 if (!boot_error) {
832 * Wait 10s total for a response from AP
834 boot_error = -1;
835 timeout = jiffies + 10*HZ;
836 while (time_before(jiffies, timeout)) {
837 if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
839 * Tell AP to proceed with initialization
841 cpumask_set_cpu(cpu, cpu_callout_mask);
842 boot_error = 0;
843 break;
845 udelay(100);
846 schedule();
850 if (!boot_error) {
852 * Wait till AP completes initial initialization
854 while (!cpumask_test_cpu(cpu, cpu_callin_mask)) {
856 * Allow other tasks to run while we wait for the
857 * AP to come online. This also gives a chance
858 * for the MTRR work(triggered by the AP coming online)
859 * to be completed in the stop machine context.
861 udelay(100);
862 schedule();
866 /* mark "stuck" area as not stuck */
867 *trampoline_status = 0;
869 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
871 * Cleanup possible dangling ends...
873 smpboot_restore_warm_reset_vector();
876 * Clean up the nmi handler. Do this after the callin and callout sync
877 * to avoid impact of possible long unregister time.
879 if (cpu0_nmi_registered)
880 unregister_nmi_handler(NMI_LOCAL, "wake_cpu0");
882 return boot_error;
885 int native_cpu_up(unsigned int cpu, struct task_struct *tidle)
887 int apicid = apic->cpu_present_to_apicid(cpu);
888 unsigned long flags;
889 int err;
891 WARN_ON(irqs_disabled());
893 pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu);
895 if (apicid == BAD_APICID ||
896 !physid_isset(apicid, phys_cpu_present_map) ||
897 !apic->apic_id_valid(apicid)) {
898 pr_err("%s: bad cpu %d\n", __func__, cpu);
899 return -EINVAL;
903 * Already booted CPU?
905 if (cpumask_test_cpu(cpu, cpu_callin_mask)) {
906 pr_debug("do_boot_cpu %d Already started\n", cpu);
907 return -ENOSYS;
911 * Save current MTRR state in case it was changed since early boot
912 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
914 mtrr_save_state();
916 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
918 /* the FPU context is blank, nobody can own it */
919 __cpu_disable_lazy_restore(cpu);
921 err = do_boot_cpu(apicid, cpu, tidle);
922 if (err) {
923 pr_err("do_boot_cpu failed(%d) to wakeup CPU#%u\n", err, cpu);
924 return -EIO;
928 * Check TSC synchronization with the AP (keep irqs disabled
929 * while doing so):
931 local_irq_save(flags);
932 check_tsc_sync_source(cpu);
933 local_irq_restore(flags);
935 while (!cpu_online(cpu)) {
936 cpu_relax();
937 touch_nmi_watchdog();
940 return 0;
944 * arch_disable_smp_support() - disables SMP support for x86 at runtime
946 void arch_disable_smp_support(void)
948 disable_ioapic_support();
952 * Fall back to non SMP mode after errors.
954 * RED-PEN audit/test this more. I bet there is more state messed up here.
956 static __init void disable_smp(void)
958 init_cpu_present(cpumask_of(0));
959 init_cpu_possible(cpumask_of(0));
960 smpboot_clear_io_apic_irqs();
962 if (smp_found_config)
963 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
964 else
965 physid_set_mask_of_physid(0, &phys_cpu_present_map);
966 cpumask_set_cpu(0, cpu_sibling_mask(0));
967 cpumask_set_cpu(0, cpu_core_mask(0));
971 * Various sanity checks.
973 static int __init smp_sanity_check(unsigned max_cpus)
975 preempt_disable();
977 #if !defined(CONFIG_X86_BIGSMP) && defined(CONFIG_X86_32)
978 if (def_to_bigsmp && nr_cpu_ids > 8) {
979 unsigned int cpu;
980 unsigned nr;
982 pr_warn("More than 8 CPUs detected - skipping them\n"
983 "Use CONFIG_X86_BIGSMP\n");
985 nr = 0;
986 for_each_present_cpu(cpu) {
987 if (nr >= 8)
988 set_cpu_present(cpu, false);
989 nr++;
992 nr = 0;
993 for_each_possible_cpu(cpu) {
994 if (nr >= 8)
995 set_cpu_possible(cpu, false);
996 nr++;
999 nr_cpu_ids = 8;
1001 #endif
1003 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
1004 pr_warn("weird, boot CPU (#%d) not listed by the BIOS\n",
1005 hard_smp_processor_id());
1007 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1011 * If we couldn't find an SMP configuration at boot time,
1012 * get out of here now!
1014 if (!smp_found_config && !acpi_lapic) {
1015 preempt_enable();
1016 pr_notice("SMP motherboard not detected\n");
1017 disable_smp();
1018 if (APIC_init_uniprocessor())
1019 pr_notice("Local APIC not detected. Using dummy APIC emulation.\n");
1020 return -1;
1024 * Should not be necessary because the MP table should list the boot
1025 * CPU too, but we do it for the sake of robustness anyway.
1027 if (!apic->check_phys_apicid_present(boot_cpu_physical_apicid)) {
1028 pr_notice("weird, boot CPU (#%d) not listed by the BIOS\n",
1029 boot_cpu_physical_apicid);
1030 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1032 preempt_enable();
1035 * If we couldn't find a local APIC, then get out of here now!
1037 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1038 !cpu_has_apic) {
1039 if (!disable_apic) {
1040 pr_err("BIOS bug, local APIC #%d not detected!...\n",
1041 boot_cpu_physical_apicid);
1042 pr_err("... forcing use of dummy APIC emulation (tell your hw vendor)\n");
1044 smpboot_clear_io_apic();
1045 disable_ioapic_support();
1046 return -1;
1049 verify_local_APIC();
1052 * If SMP should be disabled, then really disable it!
1054 if (!max_cpus) {
1055 pr_info("SMP mode deactivated\n");
1056 smpboot_clear_io_apic();
1058 connect_bsp_APIC();
1059 setup_local_APIC();
1060 bsp_end_local_APIC_setup();
1061 return -1;
1064 return 0;
1067 static void __init smp_cpu_index_default(void)
1069 int i;
1070 struct cpuinfo_x86 *c;
1072 for_each_possible_cpu(i) {
1073 c = &cpu_data(i);
1074 /* mark all to hotplug */
1075 c->cpu_index = nr_cpu_ids;
1080 * Prepare for SMP bootup. The MP table or ACPI has been read
1081 * earlier. Just do some sanity checking here and enable APIC mode.
1083 void __init native_smp_prepare_cpus(unsigned int max_cpus)
1085 unsigned int i;
1087 preempt_disable();
1088 smp_cpu_index_default();
1091 * Setup boot CPU information
1093 smp_store_boot_cpu_info(); /* Final full version of the data */
1094 cpumask_copy(cpu_callin_mask, cpumask_of(0));
1095 mb();
1097 current_thread_info()->cpu = 0; /* needed? */
1098 for_each_possible_cpu(i) {
1099 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
1100 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
1101 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
1103 set_cpu_sibling_map(0);
1106 if (smp_sanity_check(max_cpus) < 0) {
1107 pr_info("SMP disabled\n");
1108 disable_smp();
1109 goto out;
1112 default_setup_apic_routing();
1114 preempt_disable();
1115 if (read_apic_id() != boot_cpu_physical_apicid) {
1116 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
1117 read_apic_id(), boot_cpu_physical_apicid);
1118 /* Or can we switch back to PIC here? */
1120 preempt_enable();
1122 connect_bsp_APIC();
1125 * Switch from PIC to APIC mode.
1127 setup_local_APIC();
1129 if (x2apic_mode)
1130 cpu0_logical_apicid = apic_read(APIC_LDR);
1131 else
1132 cpu0_logical_apicid = GET_APIC_LOGICAL_ID(apic_read(APIC_LDR));
1135 * Enable IO APIC before setting up error vector
1137 if (!skip_ioapic_setup && nr_ioapics)
1138 enable_IO_APIC();
1140 bsp_end_local_APIC_setup();
1141 smpboot_setup_io_apic();
1143 * Set up local APIC timer on boot CPU.
1146 pr_info("CPU%d: ", 0);
1147 print_cpu_info(&cpu_data(0));
1148 x86_init.timers.setup_percpu_clockev();
1150 if (is_uv_system())
1151 uv_system_init();
1153 set_mtrr_aps_delayed_init();
1154 out:
1155 preempt_enable();
1158 void arch_enable_nonboot_cpus_begin(void)
1160 set_mtrr_aps_delayed_init();
1163 void arch_enable_nonboot_cpus_end(void)
1165 mtrr_aps_init();
1169 * Early setup to make printk work.
1171 void __init native_smp_prepare_boot_cpu(void)
1173 int me = smp_processor_id();
1174 switch_to_new_gdt(me);
1175 /* already set me in cpu_online_mask in boot_cpu_init() */
1176 cpumask_set_cpu(me, cpu_callout_mask);
1177 per_cpu(cpu_state, me) = CPU_ONLINE;
1180 void __init native_smp_cpus_done(unsigned int max_cpus)
1182 pr_debug("Boot done\n");
1184 nmi_selftest();
1185 impress_friends();
1186 #ifdef CONFIG_X86_IO_APIC
1187 setup_ioapic_dest();
1188 #endif
1189 mtrr_aps_init();
1192 static int __initdata setup_possible_cpus = -1;
1193 static int __init _setup_possible_cpus(char *str)
1195 get_option(&str, &setup_possible_cpus);
1196 return 0;
1198 early_param("possible_cpus", _setup_possible_cpus);
1202 * cpu_possible_mask should be static, it cannot change as cpu's
1203 * are onlined, or offlined. The reason is per-cpu data-structures
1204 * are allocated by some modules at init time, and dont expect to
1205 * do this dynamically on cpu arrival/departure.
1206 * cpu_present_mask on the other hand can change dynamically.
1207 * In case when cpu_hotplug is not compiled, then we resort to current
1208 * behaviour, which is cpu_possible == cpu_present.
1209 * - Ashok Raj
1211 * Three ways to find out the number of additional hotplug CPUs:
1212 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
1213 * - The user can overwrite it with possible_cpus=NUM
1214 * - Otherwise don't reserve additional CPUs.
1215 * We do this because additional CPUs waste a lot of memory.
1216 * -AK
1218 __init void prefill_possible_map(void)
1220 int i, possible;
1222 /* no processor from mptable or madt */
1223 if (!num_processors)
1224 num_processors = 1;
1226 i = setup_max_cpus ?: 1;
1227 if (setup_possible_cpus == -1) {
1228 possible = num_processors;
1229 #ifdef CONFIG_HOTPLUG_CPU
1230 if (setup_max_cpus)
1231 possible += disabled_cpus;
1232 #else
1233 if (possible > i)
1234 possible = i;
1235 #endif
1236 } else
1237 possible = setup_possible_cpus;
1239 total_cpus = max_t(int, possible, num_processors + disabled_cpus);
1241 /* nr_cpu_ids could be reduced via nr_cpus= */
1242 if (possible > nr_cpu_ids) {
1243 pr_warn("%d Processors exceeds NR_CPUS limit of %d\n",
1244 possible, nr_cpu_ids);
1245 possible = nr_cpu_ids;
1248 #ifdef CONFIG_HOTPLUG_CPU
1249 if (!setup_max_cpus)
1250 #endif
1251 if (possible > i) {
1252 pr_warn("%d Processors exceeds max_cpus limit of %u\n",
1253 possible, setup_max_cpus);
1254 possible = i;
1257 pr_info("Allowing %d CPUs, %d hotplug CPUs\n",
1258 possible, max_t(int, possible - num_processors, 0));
1260 for (i = 0; i < possible; i++)
1261 set_cpu_possible(i, true);
1262 for (; i < NR_CPUS; i++)
1263 set_cpu_possible(i, false);
1265 nr_cpu_ids = possible;
1268 #ifdef CONFIG_HOTPLUG_CPU
1270 static void remove_siblinginfo(int cpu)
1272 int sibling;
1273 struct cpuinfo_x86 *c = &cpu_data(cpu);
1275 for_each_cpu(sibling, cpu_core_mask(cpu)) {
1276 cpumask_clear_cpu(cpu, cpu_core_mask(sibling));
1278 * last thread sibling in this cpu core going down
1280 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1)
1281 cpu_data(sibling).booted_cores--;
1284 for_each_cpu(sibling, cpu_sibling_mask(cpu))
1285 cpumask_clear_cpu(cpu, cpu_sibling_mask(sibling));
1286 for_each_cpu(sibling, cpu_llc_shared_mask(cpu))
1287 cpumask_clear_cpu(cpu, cpu_llc_shared_mask(sibling));
1288 cpumask_clear(cpu_llc_shared_mask(cpu));
1289 cpumask_clear(cpu_sibling_mask(cpu));
1290 cpumask_clear(cpu_core_mask(cpu));
1291 c->phys_proc_id = 0;
1292 c->cpu_core_id = 0;
1293 c->booted_cores = 0;
1294 cpumask_clear_cpu(cpu, cpu_sibling_setup_mask);
1297 static void __ref remove_cpu_from_maps(int cpu)
1299 set_cpu_online(cpu, false);
1300 cpumask_clear_cpu(cpu, cpu_callout_mask);
1301 cpumask_clear_cpu(cpu, cpu_callin_mask);
1302 /* was set by cpu_init() */
1303 cpumask_clear_cpu(cpu, cpu_initialized_mask);
1304 numa_remove_cpu(cpu);
1307 static DEFINE_PER_CPU(struct completion, die_complete);
1309 void cpu_disable_common(void)
1311 int cpu = smp_processor_id();
1313 init_completion(&per_cpu(die_complete, smp_processor_id()));
1315 remove_siblinginfo(cpu);
1317 /* It's now safe to remove this processor from the online map */
1318 lock_vector_lock();
1319 remove_cpu_from_maps(cpu);
1320 unlock_vector_lock();
1321 fixup_irqs();
1324 int native_cpu_disable(void)
1326 int ret;
1328 ret = check_irq_vectors_for_cpu_disable();
1329 if (ret)
1330 return ret;
1332 clear_local_APIC();
1333 cpu_disable_common();
1335 return 0;
1338 void cpu_die_common(unsigned int cpu)
1340 wait_for_completion_timeout(&per_cpu(die_complete, cpu), HZ);
1343 void native_cpu_die(unsigned int cpu)
1345 /* We don't do anything here: idle task is faking death itself. */
1347 cpu_die_common(cpu);
1349 /* They ack this in play_dead() by setting CPU_DEAD */
1350 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1351 if (system_state == SYSTEM_RUNNING)
1352 pr_info("CPU %u is now offline\n", cpu);
1353 } else {
1354 pr_err("CPU %u didn't die...\n", cpu);
1358 void play_dead_common(void)
1360 idle_task_exit();
1361 reset_lazy_tlbstate();
1362 amd_e400_remove_cpu(raw_smp_processor_id());
1364 mb();
1365 /* Ack it */
1366 __this_cpu_write(cpu_state, CPU_DEAD);
1367 complete(&per_cpu(die_complete, smp_processor_id()));
1370 * With physical CPU hotplug, we should halt the cpu
1372 local_irq_disable();
1375 static bool wakeup_cpu0(void)
1377 if (smp_processor_id() == 0 && enable_start_cpu0)
1378 return true;
1380 return false;
1384 * We need to flush the caches before going to sleep, lest we have
1385 * dirty data in our caches when we come back up.
1387 static inline void mwait_play_dead(void)
1389 unsigned int eax, ebx, ecx, edx;
1390 unsigned int highest_cstate = 0;
1391 unsigned int highest_subcstate = 0;
1392 void *mwait_ptr;
1393 int i;
1395 if (!this_cpu_has(X86_FEATURE_MWAIT))
1396 return;
1397 if (!this_cpu_has(X86_FEATURE_CLFLUSH))
1398 return;
1399 if (__this_cpu_read(cpu_info.cpuid_level) < CPUID_MWAIT_LEAF)
1400 return;
1402 eax = CPUID_MWAIT_LEAF;
1403 ecx = 0;
1404 native_cpuid(&eax, &ebx, &ecx, &edx);
1407 * eax will be 0 if EDX enumeration is not valid.
1408 * Initialized below to cstate, sub_cstate value when EDX is valid.
1410 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED)) {
1411 eax = 0;
1412 } else {
1413 edx >>= MWAIT_SUBSTATE_SIZE;
1414 for (i = 0; i < 7 && edx; i++, edx >>= MWAIT_SUBSTATE_SIZE) {
1415 if (edx & MWAIT_SUBSTATE_MASK) {
1416 highest_cstate = i;
1417 highest_subcstate = edx & MWAIT_SUBSTATE_MASK;
1420 eax = (highest_cstate << MWAIT_SUBSTATE_SIZE) |
1421 (highest_subcstate - 1);
1425 * This should be a memory location in a cache line which is
1426 * unlikely to be touched by other processors. The actual
1427 * content is immaterial as it is not actually modified in any way.
1429 mwait_ptr = &current_thread_info()->flags;
1431 wbinvd();
1433 while (1) {
1435 * The CLFLUSH is a workaround for erratum AAI65 for
1436 * the Xeon 7400 series. It's not clear it is actually
1437 * needed, but it should be harmless in either case.
1438 * The WBINVD is insufficient due to the spurious-wakeup
1439 * case where we return around the loop.
1441 mb();
1442 clflush(mwait_ptr);
1443 mb();
1444 __monitor(mwait_ptr, 0, 0);
1445 mb();
1446 __mwait(eax, 0);
1448 * If NMI wants to wake up CPU0, start CPU0.
1450 if (wakeup_cpu0())
1451 start_cpu0();
1455 static inline void hlt_play_dead(void)
1457 if (__this_cpu_read(cpu_info.x86) >= 4)
1458 wbinvd();
1460 while (1) {
1461 native_halt();
1463 * If NMI wants to wake up CPU0, start CPU0.
1465 if (wakeup_cpu0())
1466 start_cpu0();
1470 void native_play_dead(void)
1472 play_dead_common();
1473 tboot_shutdown(TB_SHUTDOWN_WFS);
1475 mwait_play_dead(); /* Only returns on failure */
1476 if (cpuidle_play_dead())
1477 hlt_play_dead();
1480 #else /* ... !CONFIG_HOTPLUG_CPU */
1481 int native_cpu_disable(void)
1483 return -ENOSYS;
1486 void native_cpu_die(unsigned int cpu)
1488 /* We said "no" in __cpu_disable */
1489 BUG();
1492 void native_play_dead(void)
1494 BUG();
1497 #endif