x86/fpu: Move xsave.h to fpu/xsave.h
[deliverable/linux.git] / arch / x86 / kernel / smpboot.c
CommitLineData
c767a54b 1 /*
4cedb334
GOC
2 * x86 SMP booting functions
3 *
87c6fe26 4 * (c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk>
8f47e163 5 * (c) 1998, 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
4cedb334
GOC
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
c767a54b
JP
42#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
43
68a1c3f8
GC
44#include <linux/init.h>
45#include <linux/smp.h>
a355352b 46#include <linux/module.h>
70708a18 47#include <linux/sched.h>
69c18c15 48#include <linux/percpu.h>
91718e8d 49#include <linux/bootmem.h>
cb3c8b90
GOC
50#include <linux/err.h>
51#include <linux/nmi.h>
69575d38 52#include <linux/tboot.h>
35f720c5 53#include <linux/stackprotector.h>
5a0e3ad6 54#include <linux/gfp.h>
1a022e3f 55#include <linux/cpuidle.h>
69c18c15 56
8aef135c 57#include <asm/acpi.h>
cb3c8b90 58#include <asm/desc.h>
69c18c15
GC
59#include <asm/nmi.h>
60#include <asm/irq.h>
07bbc16a 61#include <asm/idle.h>
48927bbb 62#include <asm/realmode.h>
69c18c15
GC
63#include <asm/cpu.h>
64#include <asm/numa.h>
cb3c8b90
GOC
65#include <asm/pgtable.h>
66#include <asm/tlbflush.h>
67#include <asm/mtrr.h>
ea530692 68#include <asm/mwait.h>
7b6aa335 69#include <asm/apic.h>
7167d08e 70#include <asm/io_apic.h>
644c1541 71#include <asm/fpu-internal.h>
569712b2 72#include <asm/setup.h>
bdbcdd48 73#include <asm/uv/uv.h>
cb3c8b90 74#include <linux/mc146818rtc.h>
b81bb373 75#include <asm/i8259.h>
48927bbb 76#include <asm/realmode.h>
646e29a1 77#include <asm/misc.h>
48927bbb 78
a355352b
GC
79/* Number of siblings per CPU package */
80int smp_num_siblings = 1;
81EXPORT_SYMBOL(smp_num_siblings);
82
83/* Last level cache ID of each logical CPU */
0816b0f0 84DEFINE_PER_CPU_READ_MOSTLY(u16, cpu_llc_id) = BAD_APICID;
a355352b 85
a355352b 86/* representing HT siblings of each logical CPU */
0816b0f0 87DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_sibling_map);
a355352b
GC
88EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
89
90/* representing HT and core siblings of each logical CPU */
0816b0f0 91DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_core_map);
a355352b
GC
92EXPORT_PER_CPU_SYMBOL(cpu_core_map);
93
0816b0f0 94DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_llc_shared_map);
b3d7336d 95
a355352b 96/* Per CPU bogomips and other parameters */
2c773dd3 97DEFINE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info);
a355352b 98EXPORT_PER_CPU_SYMBOL(cpu_info);
768d9505 99
2b6163bf 100atomic_t init_deasserted;
cb3c8b90 101
f77aa308
TG
102static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip)
103{
104 unsigned long flags;
105
106 spin_lock_irqsave(&rtc_lock, flags);
107 CMOS_WRITE(0xa, 0xf);
108 spin_unlock_irqrestore(&rtc_lock, flags);
109 local_flush_tlb();
110 pr_debug("1.\n");
111 *((volatile unsigned short *)phys_to_virt(TRAMPOLINE_PHYS_HIGH)) =
112 start_eip >> 4;
113 pr_debug("2.\n");
114 *((volatile unsigned short *)phys_to_virt(TRAMPOLINE_PHYS_LOW)) =
115 start_eip & 0xf;
116 pr_debug("3.\n");
117}
118
119static inline void smpboot_restore_warm_reset_vector(void)
120{
121 unsigned long flags;
122
123 /*
124 * Install writable page 0 entry to set BIOS data area.
125 */
126 local_flush_tlb();
127
128 /*
129 * Paranoid: Set warm reset code and vector here back
130 * to default values.
131 */
132 spin_lock_irqsave(&rtc_lock, flags);
133 CMOS_WRITE(0, 0xf);
134 spin_unlock_irqrestore(&rtc_lock, flags);
135
136 *((volatile u32 *)phys_to_virt(TRAMPOLINE_PHYS_LOW)) = 0;
137}
138
cb3c8b90 139/*
30106c17
FY
140 * Report back to the Boot Processor during boot time or to the caller processor
141 * during CPU online.
cb3c8b90 142 */
148f9bb8 143static void smp_callin(void)
cb3c8b90
GOC
144{
145 int cpuid, phys_id;
cb3c8b90
GOC
146
147 /*
148 * If waken up by an INIT in an 82489DX configuration
149 * we may get here before an INIT-deassert IPI reaches
150 * our local APIC. We have to wait for the IPI or we'll
151 * lock up on an APIC access.
e1c467e6
FY
152 *
153 * Since CPU0 is not wakened up by INIT, it doesn't wait for the IPI.
cb3c8b90 154 */
e1c467e6 155 cpuid = smp_processor_id();
465822cf
DR
156 if (apic->wait_for_init_deassert && cpuid)
157 while (!atomic_read(&init_deasserted))
158 cpu_relax();
cb3c8b90
GOC
159
160 /*
161 * (This works even if the APIC is not enabled.)
162 */
4c9961d5 163 phys_id = read_apic_id();
cb3c8b90
GOC
164
165 /*
166 * the boot CPU has finished the init stage and is spinning
167 * on callin_map until we finish. We are free to set up this
168 * CPU, first the APIC. (this is probably redundant on most
169 * boards)
170 */
05f7e46d 171 apic_ap_setup();
cb3c8b90 172
9d133e5d
SS
173 /*
174 * Need to setup vector mappings before we enable interrupts.
175 */
36e9e1ea 176 setup_vector_irq(smp_processor_id());
b565201c
JS
177
178 /*
179 * Save our processor parameters. Note: this information
180 * is needed for clock calibration.
181 */
182 smp_store_cpu_info(cpuid);
183
cb3c8b90
GOC
184 /*
185 * Get our bogomips.
b565201c
JS
186 * Update loops_per_jiffy in cpu_data. Previous call to
187 * smp_store_cpu_info() stored a value that is close but not as
188 * accurate as the value just calculated.
cb3c8b90 189 */
cb3c8b90 190 calibrate_delay();
b565201c 191 cpu_data(cpuid).loops_per_jiffy = loops_per_jiffy;
cfc1b9a6 192 pr_debug("Stack at about %p\n", &cpuid);
cb3c8b90 193
5ef428c4
AK
194 /*
195 * This must be done before setting cpu_online_mask
196 * or calling notify_cpu_starting.
197 */
198 set_cpu_sibling_map(raw_smp_processor_id());
199 wmb();
200
85257024
PZ
201 notify_cpu_starting(cpuid);
202
cb3c8b90
GOC
203 /*
204 * Allow the master to continue.
205 */
c2d1cec1 206 cpumask_set_cpu(cpuid, cpu_callin_mask);
cb3c8b90
GOC
207}
208
e1c467e6
FY
209static int cpu0_logical_apicid;
210static int enable_start_cpu0;
bbc2ff6a
GOC
211/*
212 * Activate a secondary processor.
213 */
148f9bb8 214static void notrace start_secondary(void *unused)
bbc2ff6a
GOC
215{
216 /*
217 * Don't put *anything* before cpu_init(), SMP booting is too
218 * fragile that we want to limit the things done here to the
219 * most necessary things.
220 */
b40827fa 221 cpu_init();
df156f90 222 x86_cpuinit.early_percpu_clock_init();
b40827fa
BP
223 preempt_disable();
224 smp_callin();
fd89a137 225
e1c467e6
FY
226 enable_start_cpu0 = 0;
227
fd89a137 228#ifdef CONFIG_X86_32
b40827fa 229 /* switch away from the initial page table */
fd89a137
JR
230 load_cr3(swapper_pg_dir);
231 __flush_tlb_all();
232#endif
233
bbc2ff6a
GOC
234 /* otherwise gcc will move up smp_processor_id before the cpu_init */
235 barrier();
236 /*
237 * Check TSC synchronization with the BP:
238 */
239 check_tsc_sync_target();
240
3891a04a
PA
241 /*
242 * Enable the espfix hack for this CPU
243 */
197725de 244#ifdef CONFIG_X86_ESPFIX64
3891a04a
PA
245 init_espfix_ap();
246#endif
247
bbc2ff6a 248 /*
d388e5fd
EB
249 * We need to hold vector_lock so there the set of online cpus
250 * does not change while we are assigning vectors to cpus. Holding
251 * this lock ensures we don't half assign or remove an irq from a cpu.
bbc2ff6a 252 */
d388e5fd 253 lock_vector_lock();
c2d1cec1 254 set_cpu_online(smp_processor_id(), true);
d388e5fd 255 unlock_vector_lock();
2a442c9c 256 cpu_set_state_online(smp_processor_id());
78c06176 257 x86_platform.nmi_init();
bbc2ff6a 258
0cefa5b9
MS
259 /* enable local interrupts */
260 local_irq_enable();
261
35f720c5
JP
262 /* to prevent fake stack check failure in clock setup */
263 boot_init_stack_canary();
0cefa5b9 264
736decac 265 x86_cpuinit.setup_percpu_clockev();
bbc2ff6a
GOC
266
267 wmb();
7d1a9417 268 cpu_startup_entry(CPUHP_ONLINE);
bbc2ff6a
GOC
269}
270
30106c17
FY
271void __init smp_store_boot_cpu_info(void)
272{
273 int id = 0; /* CPU 0 */
274 struct cpuinfo_x86 *c = &cpu_data(id);
275
276 *c = boot_cpu_data;
277 c->cpu_index = id;
278}
279
1d89a7f0
GOC
280/*
281 * The bootstrap kernel entry code has set these up. Save them for
282 * a given CPU
283 */
148f9bb8 284void smp_store_cpu_info(int id)
1d89a7f0
GOC
285{
286 struct cpuinfo_x86 *c = &cpu_data(id);
287
b3d7336d 288 *c = boot_cpu_data;
1d89a7f0 289 c->cpu_index = id;
30106c17
FY
290 /*
291 * During boot time, CPU0 has this setup already. Save the info when
292 * bringing up AP or offlined CPU0.
293 */
294 identify_secondary_cpu(c);
1d89a7f0
GOC
295}
296
cebf15eb
DH
297static bool
298topology_same_node(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
299{
300 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
301
302 return (cpu_to_node(cpu1) == cpu_to_node(cpu2));
303}
304
148f9bb8 305static bool
316ad248 306topology_sane(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o, const char *name)
d4fbe4f0 307{
316ad248
PZ
308 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
309
cebf15eb 310 return !WARN_ONCE(!topology_same_node(c, o),
316ad248
PZ
311 "sched: CPU #%d's %s-sibling CPU #%d is not on the same node! "
312 "[node: %d != %d]. Ignoring dependency.\n",
313 cpu1, name, cpu2, cpu_to_node(cpu1), cpu_to_node(cpu2));
314}
315
316#define link_mask(_m, c1, c2) \
317do { \
318 cpumask_set_cpu((c1), cpu_##_m##_mask(c2)); \
319 cpumask_set_cpu((c2), cpu_##_m##_mask(c1)); \
320} while (0)
321
148f9bb8 322static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
316ad248 323{
193f3fcb 324 if (cpu_has_topoext) {
316ad248
PZ
325 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
326
327 if (c->phys_proc_id == o->phys_proc_id &&
328 per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2) &&
329 c->compute_unit_id == o->compute_unit_id)
330 return topology_sane(c, o, "smt");
331
332 } else if (c->phys_proc_id == o->phys_proc_id &&
333 c->cpu_core_id == o->cpu_core_id) {
334 return topology_sane(c, o, "smt");
335 }
336
337 return false;
338}
339
148f9bb8 340static bool match_llc(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
316ad248
PZ
341{
342 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
343
344 if (per_cpu(cpu_llc_id, cpu1) != BAD_APICID &&
345 per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2))
346 return topology_sane(c, o, "llc");
347
348 return false;
d4fbe4f0
AH
349}
350
cebf15eb
DH
351/*
352 * Unlike the other levels, we do not enforce keeping a
353 * multicore group inside a NUMA node. If this happens, we will
354 * discard the MC level of the topology later.
355 */
356static bool match_die(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
316ad248 357{
cebf15eb
DH
358 if (c->phys_proc_id == o->phys_proc_id)
359 return true;
316ad248
PZ
360 return false;
361}
1d89a7f0 362
cebf15eb
DH
363static struct sched_domain_topology_level numa_inside_package_topology[] = {
364#ifdef CONFIG_SCHED_SMT
365 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
366#endif
367#ifdef CONFIG_SCHED_MC
368 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
369#endif
370 { NULL, },
371};
372/*
373 * set_sched_topology() sets the topology internal to a CPU. The
374 * NUMA topologies are layered on top of it to build the full
375 * system topology.
376 *
377 * If NUMA nodes are observed to occur within a CPU package, this
378 * function should be called. It forces the sched domain code to
379 * only use the SMT level for the CPU portion of the topology.
380 * This essentially falls back to relying on NUMA information
381 * from the SRAT table to describe the entire system topology
382 * (except for hyperthreads).
383 */
384static void primarily_use_numa_for_topology(void)
385{
386 set_sched_topology(numa_inside_package_topology);
387}
388
148f9bb8 389void set_cpu_sibling_map(int cpu)
768d9505 390{
316ad248 391 bool has_smt = smp_num_siblings > 1;
b0bc225d 392 bool has_mp = has_smt || boot_cpu_data.x86_max_cores > 1;
768d9505 393 struct cpuinfo_x86 *c = &cpu_data(cpu);
316ad248
PZ
394 struct cpuinfo_x86 *o;
395 int i;
768d9505 396
c2d1cec1 397 cpumask_set_cpu(cpu, cpu_sibling_setup_mask);
768d9505 398
b0bc225d 399 if (!has_mp) {
c2d1cec1 400 cpumask_set_cpu(cpu, cpu_sibling_mask(cpu));
316ad248
PZ
401 cpumask_set_cpu(cpu, cpu_llc_shared_mask(cpu));
402 cpumask_set_cpu(cpu, cpu_core_mask(cpu));
768d9505
GC
403 c->booted_cores = 1;
404 return;
405 }
406
c2d1cec1 407 for_each_cpu(i, cpu_sibling_setup_mask) {
316ad248
PZ
408 o = &cpu_data(i);
409
410 if ((i == cpu) || (has_smt && match_smt(c, o)))
411 link_mask(sibling, cpu, i);
412
b0bc225d 413 if ((i == cpu) || (has_mp && match_llc(c, o)))
316ad248
PZ
414 link_mask(llc_shared, cpu, i);
415
ceb1cbac
KB
416 }
417
418 /*
419 * This needs a separate iteration over the cpus because we rely on all
420 * cpu_sibling_mask links to be set-up.
421 */
422 for_each_cpu(i, cpu_sibling_setup_mask) {
423 o = &cpu_data(i);
424
cebf15eb 425 if ((i == cpu) || (has_mp && match_die(c, o))) {
316ad248
PZ
426 link_mask(core, cpu, i);
427
768d9505
GC
428 /*
429 * Does this new cpu bringup a new core?
430 */
c2d1cec1 431 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1) {
768d9505
GC
432 /*
433 * for each core in package, increment
434 * the booted_cores for this new cpu
435 */
c2d1cec1 436 if (cpumask_first(cpu_sibling_mask(i)) == i)
768d9505
GC
437 c->booted_cores++;
438 /*
439 * increment the core count for all
440 * the other cpus in this package
441 */
442 if (i != cpu)
443 cpu_data(i).booted_cores++;
444 } else if (i != cpu && !c->booted_cores)
445 c->booted_cores = cpu_data(i).booted_cores;
446 }
728e5653 447 if (match_die(c, o) && !topology_same_node(c, o))
cebf15eb 448 primarily_use_numa_for_topology();
768d9505
GC
449 }
450}
451
70708a18 452/* maps the cpu to the sched domain representing multi-core */
030bb203 453const struct cpumask *cpu_coregroup_mask(int cpu)
70708a18 454{
9f646389 455 return cpu_llc_shared_mask(cpu);
030bb203
RR
456}
457
a4928cff 458static void impress_friends(void)
904541e2
GOC
459{
460 int cpu;
461 unsigned long bogosum = 0;
462 /*
463 * Allow the user to impress friends.
464 */
c767a54b 465 pr_debug("Before bogomips\n");
904541e2 466 for_each_possible_cpu(cpu)
c2d1cec1 467 if (cpumask_test_cpu(cpu, cpu_callout_mask))
904541e2 468 bogosum += cpu_data(cpu).loops_per_jiffy;
c767a54b 469 pr_info("Total of %d processors activated (%lu.%02lu BogoMIPS)\n",
f68e00a3 470 num_online_cpus(),
904541e2
GOC
471 bogosum/(500000/HZ),
472 (bogosum/(5000/HZ))%100);
473
c767a54b 474 pr_debug("Before bogocount - setting activated=1\n");
904541e2
GOC
475}
476
569712b2 477void __inquire_remote_apic(int apicid)
cb3c8b90
GOC
478{
479 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
a6c23905 480 const char * const names[] = { "ID", "VERSION", "SPIV" };
cb3c8b90
GOC
481 int timeout;
482 u32 status;
483
c767a54b 484 pr_info("Inquiring remote APIC 0x%x...\n", apicid);
cb3c8b90
GOC
485
486 for (i = 0; i < ARRAY_SIZE(regs); i++) {
c767a54b 487 pr_info("... APIC 0x%x %s: ", apicid, names[i]);
cb3c8b90
GOC
488
489 /*
490 * Wait for idle.
491 */
492 status = safe_apic_wait_icr_idle();
493 if (status)
c767a54b 494 pr_cont("a previous APIC delivery may have failed\n");
cb3c8b90 495
1b374e4d 496 apic_icr_write(APIC_DM_REMRD | regs[i], apicid);
cb3c8b90
GOC
497
498 timeout = 0;
499 do {
500 udelay(100);
501 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
502 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
503
504 switch (status) {
505 case APIC_ICR_RR_VALID:
506 status = apic_read(APIC_RRR);
c767a54b 507 pr_cont("%08x\n", status);
cb3c8b90
GOC
508 break;
509 default:
c767a54b 510 pr_cont("failed\n");
cb3c8b90
GOC
511 }
512 }
513}
514
cb3c8b90
GOC
515/*
516 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
517 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
518 * won't ... remember to clear down the APIC, etc later.
519 */
148f9bb8 520int
e1c467e6 521wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip)
cb3c8b90
GOC
522{
523 unsigned long send_status, accept_status = 0;
524 int maxlvt;
525
526 /* Target chip */
cb3c8b90
GOC
527 /* Boot on the stack */
528 /* Kick the second */
e1c467e6 529 apic_icr_write(APIC_DM_NMI | apic->dest_logical, apicid);
cb3c8b90 530
cfc1b9a6 531 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
532 send_status = safe_apic_wait_icr_idle();
533
534 /*
535 * Give the other CPU some time to accept the IPI.
536 */
537 udelay(200);
569712b2 538 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
59ef48a5
CG
539 maxlvt = lapic_get_maxlvt();
540 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
541 apic_write(APIC_ESR, 0);
542 accept_status = (apic_read(APIC_ESR) & 0xEF);
543 }
c767a54b 544 pr_debug("NMI sent\n");
cb3c8b90
GOC
545
546 if (send_status)
c767a54b 547 pr_err("APIC never delivered???\n");
cb3c8b90 548 if (accept_status)
c767a54b 549 pr_err("APIC delivery error (%lx)\n", accept_status);
cb3c8b90
GOC
550
551 return (send_status | accept_status);
552}
cb3c8b90 553
148f9bb8 554static int
569712b2 555wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
cb3c8b90
GOC
556{
557 unsigned long send_status, accept_status = 0;
558 int maxlvt, num_starts, j;
559
593f4a78
MR
560 maxlvt = lapic_get_maxlvt();
561
cb3c8b90
GOC
562 /*
563 * Be paranoid about clearing APIC errors.
564 */
565 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
593f4a78
MR
566 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
567 apic_write(APIC_ESR, 0);
cb3c8b90
GOC
568 apic_read(APIC_ESR);
569 }
570
c767a54b 571 pr_debug("Asserting INIT\n");
cb3c8b90
GOC
572
573 /*
574 * Turn INIT on target chip
575 */
cb3c8b90
GOC
576 /*
577 * Send IPI
578 */
1b374e4d
SS
579 apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT,
580 phys_apicid);
cb3c8b90 581
cfc1b9a6 582 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
583 send_status = safe_apic_wait_icr_idle();
584
585 mdelay(10);
586
c767a54b 587 pr_debug("Deasserting INIT\n");
cb3c8b90
GOC
588
589 /* Target chip */
cb3c8b90 590 /* Send IPI */
1b374e4d 591 apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid);
cb3c8b90 592
cfc1b9a6 593 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
594 send_status = safe_apic_wait_icr_idle();
595
596 mb();
597 atomic_set(&init_deasserted, 1);
598
599 /*
600 * Should we send STARTUP IPIs ?
601 *
602 * Determine this based on the APIC version.
603 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
604 */
605 if (APIC_INTEGRATED(apic_version[phys_apicid]))
606 num_starts = 2;
607 else
608 num_starts = 0;
609
610 /*
611 * Paravirt / VMI wants a startup IPI hook here to set up the
612 * target processor state.
613 */
614 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
11d4c3f9 615 stack_start);
cb3c8b90
GOC
616
617 /*
618 * Run STARTUP IPI loop.
619 */
c767a54b 620 pr_debug("#startup loops: %d\n", num_starts);
cb3c8b90 621
cb3c8b90 622 for (j = 1; j <= num_starts; j++) {
c767a54b 623 pr_debug("Sending STARTUP #%d\n", j);
593f4a78
MR
624 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
625 apic_write(APIC_ESR, 0);
cb3c8b90 626 apic_read(APIC_ESR);
c767a54b 627 pr_debug("After apic_write\n");
cb3c8b90
GOC
628
629 /*
630 * STARTUP IPI
631 */
632
633 /* Target chip */
cb3c8b90
GOC
634 /* Boot on the stack */
635 /* Kick the second */
1b374e4d
SS
636 apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12),
637 phys_apicid);
cb3c8b90
GOC
638
639 /*
640 * Give the other CPU some time to accept the IPI.
641 */
642 udelay(300);
643
c767a54b 644 pr_debug("Startup point 1\n");
cb3c8b90 645
cfc1b9a6 646 pr_debug("Waiting for send to finish...\n");
cb3c8b90
GOC
647 send_status = safe_apic_wait_icr_idle();
648
649 /*
650 * Give the other CPU some time to accept the IPI.
651 */
652 udelay(200);
593f4a78 653 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
cb3c8b90 654 apic_write(APIC_ESR, 0);
cb3c8b90
GOC
655 accept_status = (apic_read(APIC_ESR) & 0xEF);
656 if (send_status || accept_status)
657 break;
658 }
c767a54b 659 pr_debug("After Startup\n");
cb3c8b90
GOC
660
661 if (send_status)
c767a54b 662 pr_err("APIC never delivered???\n");
cb3c8b90 663 if (accept_status)
c767a54b 664 pr_err("APIC delivery error (%lx)\n", accept_status);
cb3c8b90
GOC
665
666 return (send_status | accept_status);
667}
cb3c8b90 668
a17bce4d
BP
669void smp_announce(void)
670{
671 int num_nodes = num_online_nodes();
672
673 printk(KERN_INFO "x86: Booted up %d node%s, %d CPUs\n",
674 num_nodes, (num_nodes > 1 ? "s" : ""), num_online_cpus());
675}
676
2eaad1fd 677/* reduce the number of lines printed when booting a large cpu count system */
148f9bb8 678static void announce_cpu(int cpu, int apicid)
2eaad1fd
MT
679{
680 static int current_node = -1;
4adc8b71 681 int node = early_cpu_to_node(cpu);
a17bce4d 682 static int width, node_width;
646e29a1
BP
683
684 if (!width)
685 width = num_digits(num_possible_cpus()) + 1; /* + '#' sign */
2eaad1fd 686
a17bce4d
BP
687 if (!node_width)
688 node_width = num_digits(num_possible_nodes()) + 1; /* + '#' */
689
690 if (cpu == 1)
691 printk(KERN_INFO "x86: Booting SMP configuration:\n");
692
2eaad1fd
MT
693 if (system_state == SYSTEM_BOOTING) {
694 if (node != current_node) {
695 if (current_node > (-1))
a17bce4d 696 pr_cont("\n");
2eaad1fd 697 current_node = node;
a17bce4d
BP
698
699 printk(KERN_INFO ".... node %*s#%d, CPUs: ",
700 node_width - num_digits(node), " ", node);
2eaad1fd 701 }
646e29a1
BP
702
703 /* Add padding for the BSP */
704 if (cpu == 1)
705 pr_cont("%*s", width + 1, " ");
706
707 pr_cont("%*s#%d", width - num_digits(cpu), " ", cpu);
708
2eaad1fd
MT
709 } else
710 pr_info("Booting Node %d Processor %d APIC 0x%x\n",
711 node, cpu, apicid);
712}
713
e1c467e6
FY
714static int wakeup_cpu0_nmi(unsigned int cmd, struct pt_regs *regs)
715{
716 int cpu;
717
718 cpu = smp_processor_id();
719 if (cpu == 0 && !cpu_online(cpu) && enable_start_cpu0)
720 return NMI_HANDLED;
721
722 return NMI_DONE;
723}
724
725/*
726 * Wake up AP by INIT, INIT, STARTUP sequence.
727 *
728 * Instead of waiting for STARTUP after INITs, BSP will execute the BIOS
729 * boot-strap code which is not a desired behavior for waking up BSP. To
730 * void the boot-strap code, wake up CPU0 by NMI instead.
731 *
732 * This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined
733 * (i.e. physically hot removed and then hot added), NMI won't wake it up.
734 * We'll change this code in the future to wake up hard offlined CPU0 if
735 * real platform and request are available.
736 */
148f9bb8 737static int
e1c467e6
FY
738wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
739 int *cpu0_nmi_registered)
740{
741 int id;
742 int boot_error;
743
ea7bdc65
JK
744 preempt_disable();
745
e1c467e6
FY
746 /*
747 * Wake up AP by INIT, INIT, STARTUP sequence.
748 */
ea7bdc65
JK
749 if (cpu) {
750 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
751 goto out;
752 }
e1c467e6
FY
753
754 /*
755 * Wake up BSP by nmi.
756 *
757 * Register a NMI handler to help wake up CPU0.
758 */
759 boot_error = register_nmi_handler(NMI_LOCAL,
760 wakeup_cpu0_nmi, 0, "wake_cpu0");
761
762 if (!boot_error) {
763 enable_start_cpu0 = 1;
764 *cpu0_nmi_registered = 1;
765 if (apic->dest_logical == APIC_DEST_LOGICAL)
766 id = cpu0_logical_apicid;
767 else
768 id = apicid;
769 boot_error = wakeup_secondary_cpu_via_nmi(id, start_ip);
770 }
ea7bdc65
JK
771
772out:
773 preempt_enable();
e1c467e6
FY
774
775 return boot_error;
776}
777
3f85483b
BO
778void common_cpu_up(unsigned int cpu, struct task_struct *idle)
779{
780 /* Just in case we booted with a single CPU. */
781 alternatives_enable_smp();
782
783 per_cpu(current_task, cpu) = idle;
784
785#ifdef CONFIG_X86_32
786 /* Stack for startup_32 can be just as for start_secondary onwards */
787 irq_ctx_init(cpu);
788 per_cpu(cpu_current_top_of_stack, cpu) =
789 (unsigned long)task_stack_page(idle) + THREAD_SIZE;
790#else
791 clear_tsk_thread_flag(idle, TIF_FORK);
792 initial_gs = per_cpu_offset(cpu);
793#endif
794 per_cpu(kernel_stack, cpu) =
795 (unsigned long)task_stack_page(idle) + THREAD_SIZE;
796}
797
cb3c8b90
GOC
798/*
799 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
800 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
1f5bcabf
IM
801 * Returns zero if CPU booted OK, else error code from
802 * ->wakeup_secondary_cpu.
cb3c8b90 803 */
148f9bb8 804static int do_boot_cpu(int apicid, int cpu, struct task_struct *idle)
cb3c8b90 805{
48927bbb 806 volatile u32 *trampoline_status =
b429dbf6 807 (volatile u32 *) __va(real_mode_header->trampoline_status);
48927bbb 808 /* start_ip had better be page-aligned! */
f37240f1 809 unsigned long start_ip = real_mode_header->trampoline_start;
48927bbb 810
cb3c8b90 811 unsigned long boot_error = 0;
e1c467e6 812 int cpu0_nmi_registered = 0;
ce4b1b16 813 unsigned long timeout;
cb3c8b90 814
7eb43a6d
TG
815 idle->thread.sp = (unsigned long) (((struct pt_regs *)
816 (THREAD_SIZE + task_stack_page(idle))) - 1);
cb3c8b90 817
a939098a 818 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
3e970473 819 initial_code = (unsigned long)start_secondary;
7eb43a6d 820 stack_start = idle->thread.sp;
cb3c8b90 821
2eaad1fd
MT
822 /* So we see what's up */
823 announce_cpu(cpu, apicid);
cb3c8b90
GOC
824
825 /*
826 * This grunge runs the startup process for
827 * the targeted processor.
828 */
829
830 atomic_set(&init_deasserted, 0);
831
34d05591 832 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
cb3c8b90 833
cfc1b9a6 834 pr_debug("Setting warm reset code and vector.\n");
cb3c8b90 835
34d05591
JS
836 smpboot_setup_warm_reset_vector(start_ip);
837 /*
838 * Be paranoid about clearing APIC errors.
db96b0a0
CG
839 */
840 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
841 apic_write(APIC_ESR, 0);
842 apic_read(APIC_ESR);
843 }
34d05591 844 }
cb3c8b90 845
ce4b1b16
IM
846 /*
847 * AP might wait on cpu_callout_mask in cpu_init() with
848 * cpu_initialized_mask set if previous attempt to online
849 * it timed-out. Clear cpu_initialized_mask so that after
850 * INIT/SIPI it could start with a clean state.
851 */
852 cpumask_clear_cpu(cpu, cpu_initialized_mask);
853 smp_mb();
854
cb3c8b90 855 /*
e1c467e6
FY
856 * Wake up a CPU in difference cases:
857 * - Use the method in the APIC driver if it's defined
858 * Otherwise,
859 * - Use an INIT boot APIC message for APs or NMI for BSP.
cb3c8b90 860 */
1f5bcabf
IM
861 if (apic->wakeup_secondary_cpu)
862 boot_error = apic->wakeup_secondary_cpu(apicid, start_ip);
863 else
e1c467e6
FY
864 boot_error = wakeup_cpu_via_init_nmi(cpu, start_ip, apicid,
865 &cpu0_nmi_registered);
cb3c8b90
GOC
866
867 if (!boot_error) {
868 /*
ce4b1b16 869 * Wait 10s total for a response from AP
cb3c8b90 870 */
ce4b1b16
IM
871 boot_error = -1;
872 timeout = jiffies + 10*HZ;
873 while (time_before(jiffies, timeout)) {
874 if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
875 /*
876 * Tell AP to proceed with initialization
877 */
878 cpumask_set_cpu(cpu, cpu_callout_mask);
879 boot_error = 0;
880 break;
881 }
882 udelay(100);
883 schedule();
884 }
885 }
cb3c8b90 886
ce4b1b16 887 if (!boot_error) {
cb3c8b90 888 /*
ce4b1b16 889 * Wait till AP completes initial initialization
cb3c8b90 890 */
ce4b1b16 891 while (!cpumask_test_cpu(cpu, cpu_callin_mask)) {
68f202e4
SS
892 /*
893 * Allow other tasks to run while we wait for the
894 * AP to come online. This also gives a chance
895 * for the MTRR work(triggered by the AP coming online)
896 * to be completed in the stop machine context.
897 */
ce4b1b16 898 udelay(100);
68f202e4 899 schedule();
cb3c8b90 900 }
cb3c8b90
GOC
901 }
902
903 /* mark "stuck" area as not stuck */
48927bbb 904 *trampoline_status = 0;
cb3c8b90 905
02421f98
YL
906 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
907 /*
908 * Cleanup possible dangling ends...
909 */
910 smpboot_restore_warm_reset_vector();
911 }
e1c467e6
FY
912 /*
913 * Clean up the nmi handler. Do this after the callin and callout sync
914 * to avoid impact of possible long unregister time.
915 */
916 if (cpu0_nmi_registered)
917 unregister_nmi_handler(NMI_LOCAL, "wake_cpu0");
918
cb3c8b90
GOC
919 return boot_error;
920}
921
148f9bb8 922int native_cpu_up(unsigned int cpu, struct task_struct *tidle)
cb3c8b90 923{
a21769a4 924 int apicid = apic->cpu_present_to_apicid(cpu);
cb3c8b90
GOC
925 unsigned long flags;
926 int err;
927
928 WARN_ON(irqs_disabled());
929
cfc1b9a6 930 pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu);
cb3c8b90 931
30106c17 932 if (apicid == BAD_APICID ||
c284b42a 933 !physid_isset(apicid, phys_cpu_present_map) ||
fa63030e 934 !apic->apic_id_valid(apicid)) {
c767a54b 935 pr_err("%s: bad cpu %d\n", __func__, cpu);
cb3c8b90
GOC
936 return -EINVAL;
937 }
938
939 /*
940 * Already booted CPU?
941 */
c2d1cec1 942 if (cpumask_test_cpu(cpu, cpu_callin_mask)) {
cfc1b9a6 943 pr_debug("do_boot_cpu %d Already started\n", cpu);
cb3c8b90
GOC
944 return -ENOSYS;
945 }
946
947 /*
948 * Save current MTRR state in case it was changed since early boot
949 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
950 */
951 mtrr_save_state();
952
2a442c9c
PM
953 /* x86 CPUs take themselves offline, so delayed offline is OK. */
954 err = cpu_check_up_prepare(cpu);
955 if (err && err != -EBUSY)
956 return err;
cb3c8b90 957
644c1541
VP
958 /* the FPU context is blank, nobody can own it */
959 __cpu_disable_lazy_restore(cpu);
960
3f85483b
BO
961 common_cpu_up(cpu, tidle);
962
7eb43a6d 963 err = do_boot_cpu(apicid, cpu, tidle);
61165d7a 964 if (err) {
feef1e8e 965 pr_err("do_boot_cpu failed(%d) to wakeup CPU#%u\n", err, cpu);
61165d7a 966 return -EIO;
cb3c8b90
GOC
967 }
968
969 /*
970 * Check TSC synchronization with the AP (keep irqs disabled
971 * while doing so):
972 */
973 local_irq_save(flags);
974 check_tsc_sync_source(cpu);
975 local_irq_restore(flags);
976
7c04e64a 977 while (!cpu_online(cpu)) {
cb3c8b90
GOC
978 cpu_relax();
979 touch_nmi_watchdog();
980 }
981
982 return 0;
983}
984
7167d08e
HK
985/**
986 * arch_disable_smp_support() - disables SMP support for x86 at runtime
987 */
988void arch_disable_smp_support(void)
989{
990 disable_ioapic_support();
991}
992
8aef135c
GOC
993/*
994 * Fall back to non SMP mode after errors.
995 *
996 * RED-PEN audit/test this more. I bet there is more state messed up here.
997 */
998static __init void disable_smp(void)
999{
613c25ef
TG
1000 pr_info("SMP disabled\n");
1001
ef4c59a4
TG
1002 disable_ioapic_support();
1003
4f062896
RR
1004 init_cpu_present(cpumask_of(0));
1005 init_cpu_possible(cpumask_of(0));
0f385d1d 1006
8aef135c 1007 if (smp_found_config)
b6df1b8b 1008 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
8aef135c 1009 else
b6df1b8b 1010 physid_set_mask_of_physid(0, &phys_cpu_present_map);
c2d1cec1
MT
1011 cpumask_set_cpu(0, cpu_sibling_mask(0));
1012 cpumask_set_cpu(0, cpu_core_mask(0));
8aef135c
GOC
1013}
1014
613c25ef
TG
1015enum {
1016 SMP_OK,
1017 SMP_NO_CONFIG,
1018 SMP_NO_APIC,
1019 SMP_FORCE_UP,
1020};
1021
8aef135c
GOC
1022/*
1023 * Various sanity checks.
1024 */
1025static int __init smp_sanity_check(unsigned max_cpus)
1026{
ac23d4ee 1027 preempt_disable();
a58f03b0 1028
1ff2f20d 1029#if !defined(CONFIG_X86_BIGSMP) && defined(CONFIG_X86_32)
a58f03b0
YL
1030 if (def_to_bigsmp && nr_cpu_ids > 8) {
1031 unsigned int cpu;
1032 unsigned nr;
1033
c767a54b
JP
1034 pr_warn("More than 8 CPUs detected - skipping them\n"
1035 "Use CONFIG_X86_BIGSMP\n");
a58f03b0
YL
1036
1037 nr = 0;
1038 for_each_present_cpu(cpu) {
1039 if (nr >= 8)
c2d1cec1 1040 set_cpu_present(cpu, false);
a58f03b0
YL
1041 nr++;
1042 }
1043
1044 nr = 0;
1045 for_each_possible_cpu(cpu) {
1046 if (nr >= 8)
c2d1cec1 1047 set_cpu_possible(cpu, false);
a58f03b0
YL
1048 nr++;
1049 }
1050
1051 nr_cpu_ids = 8;
1052 }
1053#endif
1054
8aef135c 1055 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
c767a54b 1056 pr_warn("weird, boot CPU (#%d) not listed by the BIOS\n",
55c395b4
MT
1057 hard_smp_processor_id());
1058
8aef135c
GOC
1059 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1060 }
1061
1062 /*
1063 * If we couldn't find an SMP configuration at boot time,
1064 * get out of here now!
1065 */
1066 if (!smp_found_config && !acpi_lapic) {
ac23d4ee 1067 preempt_enable();
c767a54b 1068 pr_notice("SMP motherboard not detected\n");
613c25ef 1069 return SMP_NO_CONFIG;
8aef135c
GOC
1070 }
1071
1072 /*
1073 * Should not be necessary because the MP table should list the boot
1074 * CPU too, but we do it for the sake of robustness anyway.
1075 */
a27a6210 1076 if (!apic->check_phys_apicid_present(boot_cpu_physical_apicid)) {
c767a54b
JP
1077 pr_notice("weird, boot CPU (#%d) not listed by the BIOS\n",
1078 boot_cpu_physical_apicid);
8aef135c
GOC
1079 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1080 }
ac23d4ee 1081 preempt_enable();
8aef135c
GOC
1082
1083 /*
1084 * If we couldn't find a local APIC, then get out of here now!
1085 */
1086 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1087 !cpu_has_apic) {
103428e5
CG
1088 if (!disable_apic) {
1089 pr_err("BIOS bug, local APIC #%d not detected!...\n",
1090 boot_cpu_physical_apicid);
c767a54b 1091 pr_err("... forcing use of dummy APIC emulation (tell your hw vendor)\n");
103428e5 1092 }
613c25ef 1093 return SMP_NO_APIC;
8aef135c
GOC
1094 }
1095
8aef135c
GOC
1096 /*
1097 * If SMP should be disabled, then really disable it!
1098 */
1099 if (!max_cpus) {
c767a54b 1100 pr_info("SMP mode deactivated\n");
613c25ef 1101 return SMP_FORCE_UP;
8aef135c
GOC
1102 }
1103
613c25ef 1104 return SMP_OK;
8aef135c
GOC
1105}
1106
1107static void __init smp_cpu_index_default(void)
1108{
1109 int i;
1110 struct cpuinfo_x86 *c;
1111
7c04e64a 1112 for_each_possible_cpu(i) {
8aef135c
GOC
1113 c = &cpu_data(i);
1114 /* mark all to hotplug */
9628937d 1115 c->cpu_index = nr_cpu_ids;
8aef135c
GOC
1116 }
1117}
1118
1119/*
1120 * Prepare for SMP bootup. The MP table or ACPI has been read
1121 * earlier. Just do some sanity checking here and enable APIC mode.
1122 */
1123void __init native_smp_prepare_cpus(unsigned int max_cpus)
1124{
7ad728f9
RR
1125 unsigned int i;
1126
8aef135c 1127 smp_cpu_index_default();
792363d2 1128
8aef135c
GOC
1129 /*
1130 * Setup boot CPU information
1131 */
30106c17 1132 smp_store_boot_cpu_info(); /* Final full version of the data */
792363d2
YL
1133 cpumask_copy(cpu_callin_mask, cpumask_of(0));
1134 mb();
bd22a2f1 1135
8aef135c 1136 current_thread_info()->cpu = 0; /* needed? */
7ad728f9 1137 for_each_possible_cpu(i) {
79f55997
LZ
1138 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
1139 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
b3d7336d 1140 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
7ad728f9 1141 }
8aef135c
GOC
1142 set_cpu_sibling_map(0);
1143
613c25ef
TG
1144 switch (smp_sanity_check(max_cpus)) {
1145 case SMP_NO_CONFIG:
8aef135c 1146 disable_smp();
613c25ef
TG
1147 if (APIC_init_uniprocessor())
1148 pr_notice("Local APIC not detected. Using dummy APIC emulation.\n");
1149 return;
1150 case SMP_NO_APIC:
1151 disable_smp();
1152 return;
1153 case SMP_FORCE_UP:
1154 disable_smp();
374aab33 1155 apic_bsp_setup(false);
250a1ac6 1156 return;
613c25ef
TG
1157 case SMP_OK:
1158 break;
8aef135c
GOC
1159 }
1160
fa47f7e5
SS
1161 default_setup_apic_routing();
1162
4c9961d5 1163 if (read_apic_id() != boot_cpu_physical_apicid) {
8aef135c 1164 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
4c9961d5 1165 read_apic_id(), boot_cpu_physical_apicid);
8aef135c
GOC
1166 /* Or can we switch back to PIC here? */
1167 }
1168
374aab33 1169 cpu0_logical_apicid = apic_bsp_setup(false);
ef4c59a4 1170
c767a54b 1171 pr_info("CPU%d: ", 0);
8aef135c 1172 print_cpu_info(&cpu_data(0));
c4bd1fda
MS
1173
1174 if (is_uv_system())
1175 uv_system_init();
d0af9eed
SS
1176
1177 set_mtrr_aps_delayed_init();
8aef135c 1178}
d0af9eed
SS
1179
1180void arch_enable_nonboot_cpus_begin(void)
1181{
1182 set_mtrr_aps_delayed_init();
1183}
1184
1185void arch_enable_nonboot_cpus_end(void)
1186{
1187 mtrr_aps_init();
1188}
1189
a8db8453
GOC
1190/*
1191 * Early setup to make printk work.
1192 */
1193void __init native_smp_prepare_boot_cpu(void)
1194{
1195 int me = smp_processor_id();
552be871 1196 switch_to_new_gdt(me);
c2d1cec1
MT
1197 /* already set me in cpu_online_mask in boot_cpu_init() */
1198 cpumask_set_cpu(me, cpu_callout_mask);
2a442c9c 1199 cpu_set_state_online(me);
a8db8453
GOC
1200}
1201
83f7eb9c
GOC
1202void __init native_smp_cpus_done(unsigned int max_cpus)
1203{
c767a54b 1204 pr_debug("Boot done\n");
83f7eb9c 1205
99e8b9ca 1206 nmi_selftest();
83f7eb9c 1207 impress_friends();
83f7eb9c 1208 setup_ioapic_dest();
d0af9eed 1209 mtrr_aps_init();
83f7eb9c
GOC
1210}
1211
3b11ce7f
MT
1212static int __initdata setup_possible_cpus = -1;
1213static int __init _setup_possible_cpus(char *str)
1214{
1215 get_option(&str, &setup_possible_cpus);
1216 return 0;
1217}
1218early_param("possible_cpus", _setup_possible_cpus);
1219
1220
68a1c3f8 1221/*
4f062896 1222 * cpu_possible_mask should be static, it cannot change as cpu's
68a1c3f8
GC
1223 * are onlined, or offlined. The reason is per-cpu data-structures
1224 * are allocated by some modules at init time, and dont expect to
1225 * do this dynamically on cpu arrival/departure.
4f062896 1226 * cpu_present_mask on the other hand can change dynamically.
68a1c3f8
GC
1227 * In case when cpu_hotplug is not compiled, then we resort to current
1228 * behaviour, which is cpu_possible == cpu_present.
1229 * - Ashok Raj
1230 *
1231 * Three ways to find out the number of additional hotplug CPUs:
1232 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
3b11ce7f 1233 * - The user can overwrite it with possible_cpus=NUM
68a1c3f8
GC
1234 * - Otherwise don't reserve additional CPUs.
1235 * We do this because additional CPUs waste a lot of memory.
1236 * -AK
1237 */
1238__init void prefill_possible_map(void)
1239{
cb48bb59 1240 int i, possible;
68a1c3f8 1241
329513a3
YL
1242 /* no processor from mptable or madt */
1243 if (!num_processors)
1244 num_processors = 1;
1245
5f2eb550
JB
1246 i = setup_max_cpus ?: 1;
1247 if (setup_possible_cpus == -1) {
1248 possible = num_processors;
1249#ifdef CONFIG_HOTPLUG_CPU
1250 if (setup_max_cpus)
1251 possible += disabled_cpus;
1252#else
1253 if (possible > i)
1254 possible = i;
1255#endif
1256 } else
3b11ce7f
MT
1257 possible = setup_possible_cpus;
1258
730cf272
MT
1259 total_cpus = max_t(int, possible, num_processors + disabled_cpus);
1260
2b633e3f
YL
1261 /* nr_cpu_ids could be reduced via nr_cpus= */
1262 if (possible > nr_cpu_ids) {
c767a54b 1263 pr_warn("%d Processors exceeds NR_CPUS limit of %d\n",
2b633e3f
YL
1264 possible, nr_cpu_ids);
1265 possible = nr_cpu_ids;
3b11ce7f 1266 }
68a1c3f8 1267
5f2eb550
JB
1268#ifdef CONFIG_HOTPLUG_CPU
1269 if (!setup_max_cpus)
1270#endif
1271 if (possible > i) {
c767a54b 1272 pr_warn("%d Processors exceeds max_cpus limit of %u\n",
5f2eb550
JB
1273 possible, setup_max_cpus);
1274 possible = i;
1275 }
1276
c767a54b 1277 pr_info("Allowing %d CPUs, %d hotplug CPUs\n",
68a1c3f8
GC
1278 possible, max_t(int, possible - num_processors, 0));
1279
1280 for (i = 0; i < possible; i++)
c2d1cec1 1281 set_cpu_possible(i, true);
5f2eb550
JB
1282 for (; i < NR_CPUS; i++)
1283 set_cpu_possible(i, false);
3461b0af
MT
1284
1285 nr_cpu_ids = possible;
68a1c3f8 1286}
69c18c15 1287
14adf855
CE
1288#ifdef CONFIG_HOTPLUG_CPU
1289
1290static void remove_siblinginfo(int cpu)
1291{
1292 int sibling;
1293 struct cpuinfo_x86 *c = &cpu_data(cpu);
1294
c2d1cec1
MT
1295 for_each_cpu(sibling, cpu_core_mask(cpu)) {
1296 cpumask_clear_cpu(cpu, cpu_core_mask(sibling));
14adf855
CE
1297 /*/
1298 * last thread sibling in this cpu core going down
1299 */
c2d1cec1 1300 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1)
14adf855
CE
1301 cpu_data(sibling).booted_cores--;
1302 }
1303
c2d1cec1
MT
1304 for_each_cpu(sibling, cpu_sibling_mask(cpu))
1305 cpumask_clear_cpu(cpu, cpu_sibling_mask(sibling));
03bd4e1f
WL
1306 for_each_cpu(sibling, cpu_llc_shared_mask(cpu))
1307 cpumask_clear_cpu(cpu, cpu_llc_shared_mask(sibling));
1308 cpumask_clear(cpu_llc_shared_mask(cpu));
c2d1cec1
MT
1309 cpumask_clear(cpu_sibling_mask(cpu));
1310 cpumask_clear(cpu_core_mask(cpu));
14adf855
CE
1311 c->phys_proc_id = 0;
1312 c->cpu_core_id = 0;
c2d1cec1 1313 cpumask_clear_cpu(cpu, cpu_sibling_setup_mask);
14adf855
CE
1314}
1315
69c18c15
GC
1316static void __ref remove_cpu_from_maps(int cpu)
1317{
c2d1cec1
MT
1318 set_cpu_online(cpu, false);
1319 cpumask_clear_cpu(cpu, cpu_callout_mask);
1320 cpumask_clear_cpu(cpu, cpu_callin_mask);
69c18c15 1321 /* was set by cpu_init() */
c2d1cec1 1322 cpumask_clear_cpu(cpu, cpu_initialized_mask);
23ca4bba 1323 numa_remove_cpu(cpu);
69c18c15
GC
1324}
1325
8227dce7 1326void cpu_disable_common(void)
69c18c15
GC
1327{
1328 int cpu = smp_processor_id();
69c18c15 1329
69c18c15
GC
1330 remove_siblinginfo(cpu);
1331
1332 /* It's now safe to remove this processor from the online map */
d388e5fd 1333 lock_vector_lock();
69c18c15 1334 remove_cpu_from_maps(cpu);
d388e5fd 1335 unlock_vector_lock();
d7b381bb 1336 fixup_irqs();
8227dce7
AN
1337}
1338
1339int native_cpu_disable(void)
1340{
da6139e4
PB
1341 int ret;
1342
1343 ret = check_irq_vectors_for_cpu_disable();
1344 if (ret)
1345 return ret;
1346
8227dce7 1347 clear_local_APIC();
8227dce7 1348 cpu_disable_common();
2ed53c0d 1349
69c18c15
GC
1350 return 0;
1351}
1352
2a442c9c 1353int common_cpu_die(unsigned int cpu)
54279552 1354{
2a442c9c 1355 int ret = 0;
54279552 1356
69c18c15 1357 /* We don't do anything here: idle task is faking death itself. */
54279552 1358
2ed53c0d 1359 /* They ack this in play_dead() by setting CPU_DEAD */
2a442c9c 1360 if (cpu_wait_death(cpu, 5)) {
2ed53c0d
LT
1361 if (system_state == SYSTEM_RUNNING)
1362 pr_info("CPU %u is now offline\n", cpu);
1363 } else {
1364 pr_err("CPU %u didn't die...\n", cpu);
2a442c9c 1365 ret = -1;
69c18c15 1366 }
2a442c9c
PM
1367
1368 return ret;
1369}
1370
1371void native_cpu_die(unsigned int cpu)
1372{
1373 common_cpu_die(cpu);
69c18c15 1374}
a21f5d88
AN
1375
1376void play_dead_common(void)
1377{
1378 idle_task_exit();
1379 reset_lazy_tlbstate();
02c68a02 1380 amd_e400_remove_cpu(raw_smp_processor_id());
a21f5d88 1381
a21f5d88 1382 /* Ack it */
2a442c9c 1383 (void)cpu_report_death();
a21f5d88
AN
1384
1385 /*
1386 * With physical CPU hotplug, we should halt the cpu
1387 */
1388 local_irq_disable();
1389}
1390
e1c467e6
FY
1391static bool wakeup_cpu0(void)
1392{
1393 if (smp_processor_id() == 0 && enable_start_cpu0)
1394 return true;
1395
1396 return false;
1397}
1398
ea530692
PA
1399/*
1400 * We need to flush the caches before going to sleep, lest we have
1401 * dirty data in our caches when we come back up.
1402 */
1403static inline void mwait_play_dead(void)
1404{
1405 unsigned int eax, ebx, ecx, edx;
1406 unsigned int highest_cstate = 0;
1407 unsigned int highest_subcstate = 0;
ce5f6824 1408 void *mwait_ptr;
576cfb40 1409 int i;
ea530692 1410
69fb3676 1411 if (!this_cpu_has(X86_FEATURE_MWAIT))
ea530692 1412 return;
840d2830 1413 if (!this_cpu_has(X86_FEATURE_CLFLUSH))
ce5f6824 1414 return;
7b543a53 1415 if (__this_cpu_read(cpu_info.cpuid_level) < CPUID_MWAIT_LEAF)
ea530692
PA
1416 return;
1417
1418 eax = CPUID_MWAIT_LEAF;
1419 ecx = 0;
1420 native_cpuid(&eax, &ebx, &ecx, &edx);
1421
1422 /*
1423 * eax will be 0 if EDX enumeration is not valid.
1424 * Initialized below to cstate, sub_cstate value when EDX is valid.
1425 */
1426 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED)) {
1427 eax = 0;
1428 } else {
1429 edx >>= MWAIT_SUBSTATE_SIZE;
1430 for (i = 0; i < 7 && edx; i++, edx >>= MWAIT_SUBSTATE_SIZE) {
1431 if (edx & MWAIT_SUBSTATE_MASK) {
1432 highest_cstate = i;
1433 highest_subcstate = edx & MWAIT_SUBSTATE_MASK;
1434 }
1435 }
1436 eax = (highest_cstate << MWAIT_SUBSTATE_SIZE) |
1437 (highest_subcstate - 1);
1438 }
1439
ce5f6824
PA
1440 /*
1441 * This should be a memory location in a cache line which is
1442 * unlikely to be touched by other processors. The actual
1443 * content is immaterial as it is not actually modified in any way.
1444 */
1445 mwait_ptr = &current_thread_info()->flags;
1446
a68e5c94
PA
1447 wbinvd();
1448
ea530692 1449 while (1) {
ce5f6824
PA
1450 /*
1451 * The CLFLUSH is a workaround for erratum AAI65 for
1452 * the Xeon 7400 series. It's not clear it is actually
1453 * needed, but it should be harmless in either case.
1454 * The WBINVD is insufficient due to the spurious-wakeup
1455 * case where we return around the loop.
1456 */
7d590cca 1457 mb();
ce5f6824 1458 clflush(mwait_ptr);
7d590cca 1459 mb();
ce5f6824 1460 __monitor(mwait_ptr, 0, 0);
ea530692
PA
1461 mb();
1462 __mwait(eax, 0);
e1c467e6
FY
1463 /*
1464 * If NMI wants to wake up CPU0, start CPU0.
1465 */
1466 if (wakeup_cpu0())
1467 start_cpu0();
ea530692
PA
1468 }
1469}
1470
1471static inline void hlt_play_dead(void)
1472{
7b543a53 1473 if (__this_cpu_read(cpu_info.x86) >= 4)
a68e5c94
PA
1474 wbinvd();
1475
ea530692 1476 while (1) {
ea530692 1477 native_halt();
e1c467e6
FY
1478 /*
1479 * If NMI wants to wake up CPU0, start CPU0.
1480 */
1481 if (wakeup_cpu0())
1482 start_cpu0();
ea530692
PA
1483 }
1484}
1485
a21f5d88
AN
1486void native_play_dead(void)
1487{
1488 play_dead_common();
86886e55 1489 tboot_shutdown(TB_SHUTDOWN_WFS);
ea530692
PA
1490
1491 mwait_play_dead(); /* Only returns on failure */
1a022e3f
BO
1492 if (cpuidle_play_dead())
1493 hlt_play_dead();
a21f5d88
AN
1494}
1495
69c18c15 1496#else /* ... !CONFIG_HOTPLUG_CPU */
93be71b6 1497int native_cpu_disable(void)
69c18c15
GC
1498{
1499 return -ENOSYS;
1500}
1501
93be71b6 1502void native_cpu_die(unsigned int cpu)
69c18c15
GC
1503{
1504 /* We said "no" in __cpu_disable */
1505 BUG();
1506}
a21f5d88
AN
1507
1508void native_play_dead(void)
1509{
1510 BUG();
1511}
1512
68a1c3f8 1513#endif
This page took 0.656214 seconds and 5 git commands to generate.