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