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