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