blob: d53870928824ff1ddd9692335cc18d244700be04 [file] [log] [blame]
Joe Perchesc767a542012-05-21 19:50:07 -07001 /*
Glauber de Oliveira Costa4cedb332008-03-19 14:26:14 -03002 * x86 SMP booting functions
3 *
Alan Cox87c6fe22009-01-05 14:08:04 +00004 * (c) 1995 Alan Cox, Building #3 <alan@lxorguk.ukuu.org.uk>
Ingo Molnar8f47e162009-01-31 02:03:42 +01005 * (c) 1998, 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
Glauber de Oliveira Costa4cedb332008-03-19 14:26:14 -03006 * 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
Joe Perchesc767a542012-05-21 19:50:07 -070042#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
43
Glauber Costa68a1c3f2008-03-03 14:12:42 -030044#include <linux/init.h>
45#include <linux/smp.h>
Glauber Costaa3553522008-03-03 14:12:58 -030046#include <linux/module.h>
Glauber Costa70708a12008-03-03 14:13:03 -030047#include <linux/sched.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030048#include <linux/percpu.h>
Glauber Costa91718e82008-03-03 14:13:12 -030049#include <linux/bootmem.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030050#include <linux/err.h>
51#include <linux/nmi.h>
Shane Wang69575d32009-09-01 18:25:07 -070052#include <linux/tboot.h>
Jacob Pan35f720c2009-09-17 07:36:43 -070053#include <linux/stackprotector.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/gfp.h>
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010055#include <linux/cpuidle.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030056
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -030057#include <asm/acpi.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030058#include <asm/desc.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030059#include <asm/nmi.h>
60#include <asm/irq.h>
Ingo Molnar07bbc162008-09-23 23:26:42 +020061#include <asm/idle.h>
Jarkko Sakkinen48927bb2012-05-08 21:22:28 +030062#include <asm/realmode.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030063#include <asm/cpu.h>
64#include <asm/numa.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030065#include <asm/pgtable.h>
66#include <asm/tlbflush.h>
67#include <asm/mtrr.h>
H. Peter Anvinea530692010-09-17 15:39:11 -070068#include <asm/mwait.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010069#include <asm/apic.h>
Henrik Kretzschmar7167d082011-02-22 15:38:05 +010070#include <asm/io_apic.h>
Vincent Palatin644c1542012-11-30 12:15:32 -080071#include <asm/i387.h>
72#include <asm/fpu-internal.h>
Yinghai Lu569712b2008-11-16 03:12:49 -080073#include <asm/setup.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090074#include <asm/uv/uv.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030075#include <linux/mc146818rtc.h>
Jacob Panb81bb372009-11-09 11:27:04 -080076#include <asm/i8259.h>
Jarkko Sakkinen48927bb2012-05-08 21:22:28 +030077#include <asm/realmode.h>
Borislav Petkov646e29a2013-09-27 16:35:54 +020078#include <asm/misc.h>
Jarkko Sakkinen48927bb2012-05-08 21:22:28 +030079
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -030080/* State of each CPU */
81DEFINE_PER_CPU(int, cpu_state) = { 0 };
82
Glauber Costaa3553522008-03-03 14:12:58 -030083/* Number of siblings per CPU package */
84int smp_num_siblings = 1;
85EXPORT_SYMBOL(smp_num_siblings);
86
87/* Last level cache ID of each logical CPU */
Vlad Zolotarov0816b0f2012-06-11 12:56:52 +030088DEFINE_PER_CPU_READ_MOSTLY(u16, cpu_llc_id) = BAD_APICID;
Glauber Costaa3553522008-03-03 14:12:58 -030089
Glauber Costaa3553522008-03-03 14:12:58 -030090/* representing HT siblings of each logical CPU */
Vlad Zolotarov0816b0f2012-06-11 12:56:52 +030091DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_sibling_map);
Glauber Costaa3553522008-03-03 14:12:58 -030092EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
93
94/* representing HT and core siblings of each logical CPU */
Vlad Zolotarov0816b0f2012-06-11 12:56:52 +030095DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_core_map);
Glauber Costaa3553522008-03-03 14:12:58 -030096EXPORT_PER_CPU_SYMBOL(cpu_core_map);
97
Vlad Zolotarov0816b0f2012-06-11 12:56:52 +030098DEFINE_PER_CPU_READ_MOSTLY(cpumask_var_t, cpu_llc_shared_map);
Yinghai Lub3d73362011-01-21 15:29:44 -080099
Glauber Costaa3553522008-03-03 14:12:58 -0300100/* Per CPU bogomips and other parameters */
Jan Beulich2c773dd2014-11-04 08:26:42 +0000101DEFINE_PER_CPU_READ_MOSTLY(struct cpuinfo_x86, cpu_info);
Glauber Costaa3553522008-03-03 14:12:58 -0300102EXPORT_PER_CPU_SYMBOL(cpu_info);
Glauber Costa768d9502008-03-03 14:13:02 -0300103
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800104atomic_t init_deasserted;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300105
Thomas Gleixnerf77aa302015-01-15 21:22:29 +0000106static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip)
107{
108 unsigned long flags;
109
110 spin_lock_irqsave(&rtc_lock, flags);
111 CMOS_WRITE(0xa, 0xf);
112 spin_unlock_irqrestore(&rtc_lock, flags);
113 local_flush_tlb();
114 pr_debug("1.\n");
115 *((volatile unsigned short *)phys_to_virt(TRAMPOLINE_PHYS_HIGH)) =
116 start_eip >> 4;
117 pr_debug("2.\n");
118 *((volatile unsigned short *)phys_to_virt(TRAMPOLINE_PHYS_LOW)) =
119 start_eip & 0xf;
120 pr_debug("3.\n");
121}
122
123static inline void smpboot_restore_warm_reset_vector(void)
124{
125 unsigned long flags;
126
127 /*
128 * Install writable page 0 entry to set BIOS data area.
129 */
130 local_flush_tlb();
131
132 /*
133 * Paranoid: Set warm reset code and vector here back
134 * to default values.
135 */
136 spin_lock_irqsave(&rtc_lock, flags);
137 CMOS_WRITE(0, 0xf);
138 spin_unlock_irqrestore(&rtc_lock, flags);
139
140 *((volatile u32 *)phys_to_virt(TRAMPOLINE_PHYS_LOW)) = 0;
141}
142
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300143/*
Fenghua Yu30106c12012-11-13 11:32:41 -0800144 * Report back to the Boot Processor during boot time or to the caller processor
145 * during CPU online.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300146 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400147static void smp_callin(void)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300148{
149 int cpuid, phys_id;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300150
151 /*
152 * If waken up by an INIT in an 82489DX configuration
153 * we may get here before an INIT-deassert IPI reaches
154 * our local APIC. We have to wait for the IPI or we'll
155 * lock up on an APIC access.
Fenghua Yue1c467e2012-11-14 04:36:53 -0800156 *
157 * Since CPU0 is not wakened up by INIT, it doesn't wait for the IPI.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300158 */
Fenghua Yue1c467e2012-11-14 04:36:53 -0800159 cpuid = smp_processor_id();
David Rientjes465822c2014-02-04 23:55:01 -0800160 if (apic->wait_for_init_deassert && cpuid)
161 while (!atomic_read(&init_deasserted))
162 cpu_relax();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300163
164 /*
165 * (This works even if the APIC is not enabled.)
166 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700167 phys_id = read_apic_id();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300168
169 /*
170 * the boot CPU has finished the init stage and is spinning
171 * on callin_map until we finish. We are free to set up this
172 * CPU, first the APIC. (this is probably redundant on most
173 * boards)
174 */
Thomas Gleixner05f7e462015-01-15 21:22:40 +0000175 apic_ap_setup();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300176
Suresh Siddha9d133e52010-01-29 11:42:21 -0800177 /*
178 * Need to setup vector mappings before we enable interrupts.
179 */
Suresh Siddha36e9e1e2010-03-15 14:33:06 -0800180 setup_vector_irq(smp_processor_id());
Jack Steinerb5652012011-11-15 15:33:56 -0800181
182 /*
183 * Save our processor parameters. Note: this information
184 * is needed for clock calibration.
185 */
186 smp_store_cpu_info(cpuid);
187
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300188 /*
189 * Get our bogomips.
Jack Steinerb5652012011-11-15 15:33:56 -0800190 * Update loops_per_jiffy in cpu_data. Previous call to
191 * smp_store_cpu_info() stored a value that is close but not as
192 * accurate as the value just calculated.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300193 */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300194 calibrate_delay();
Jack Steinerb5652012011-11-15 15:33:56 -0800195 cpu_data(cpuid).loops_per_jiffy = loops_per_jiffy;
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200196 pr_debug("Stack at about %p\n", &cpuid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300197
198 /*
Andi Kleen5ef428c2010-11-18 11:47:31 +0100199 * This must be done before setting cpu_online_mask
200 * or calling notify_cpu_starting.
201 */
202 set_cpu_sibling_map(raw_smp_processor_id());
203 wmb();
204
Peter Zijlstra85257022010-03-23 19:30:52 +0100205 notify_cpu_starting(cpuid);
206
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300207 /*
208 * Allow the master to continue.
209 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800210 cpumask_set_cpu(cpuid, cpu_callin_mask);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300211}
212
Fenghua Yue1c467e2012-11-14 04:36:53 -0800213static int cpu0_logical_apicid;
214static int enable_start_cpu0;
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300215/*
216 * Activate a secondary processor.
217 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400218static void notrace start_secondary(void *unused)
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300219{
220 /*
221 * Don't put *anything* before cpu_init(), SMP booting is too
222 * fragile that we want to limit the things done here to the
223 * most necessary things.
224 */
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300225 cpu_init();
Igor Mammedovdf156f92012-02-07 15:52:44 +0100226 x86_cpuinit.early_percpu_clock_init();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300227 preempt_disable();
228 smp_callin();
229
Fenghua Yue1c467e2012-11-14 04:36:53 -0800230 enable_start_cpu0 = 0;
231
Borislav Petkovb40827fa2010-08-28 15:58:33 +0200232#ifdef CONFIG_X86_32
233 /* switch away from the initial page table */
234 load_cr3(swapper_pg_dir);
235 __flush_tlb_all();
236#endif
237
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300238 /* otherwise gcc will move up smp_processor_id before the cpu_init */
239 barrier();
240 /*
241 * Check TSC synchronization with the BP:
242 */
243 check_tsc_sync_target();
244
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300245 /*
H. Peter Anvin3891a042014-04-29 16:46:09 -0700246 * Enable the espfix hack for this CPU
247 */
H. Peter Anvin197725d2014-05-04 10:00:49 -0700248#ifdef CONFIG_X86_ESPFIX64
H. Peter Anvin3891a042014-04-29 16:46:09 -0700249 init_espfix_ap();
250#endif
251
252 /*
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700253 * We need to hold vector_lock so there the set of online cpus
254 * does not change while we are assigning vectors to cpus. Holding
255 * this lock ensures we don't half assign or remove an irq from a cpu.
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300256 */
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700257 lock_vector_lock();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800258 set_cpu_online(smp_processor_id(), true);
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700259 unlock_vector_lock();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300260 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Russ Anderson78c06172010-02-26 10:49:12 -0600261 x86_platform.nmi_init();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300262
Manfred Spraul0cefa5b92008-09-07 11:29:58 +0200263 /* enable local interrupts */
264 local_irq_enable();
265
Jacob Pan35f720c2009-09-17 07:36:43 -0700266 /* to prevent fake stack check failure in clock setup */
267 boot_init_stack_canary();
268
Thomas Gleixner736deca2009-08-19 12:35:53 +0200269 x86_cpuinit.setup_percpu_clockev();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300270
271 wmb();
Thomas Gleixner7d1a9412013-03-21 22:50:03 +0100272 cpu_startup_entry(CPUHP_ONLINE);
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300273}
274
Fenghua Yu30106c12012-11-13 11:32:41 -0800275void __init smp_store_boot_cpu_info(void)
276{
277 int id = 0; /* CPU 0 */
278 struct cpuinfo_x86 *c = &cpu_data(id);
279
280 *c = boot_cpu_data;
281 c->cpu_index = id;
282}
283
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300284/*
285 * The bootstrap kernel entry code has set these up. Save them for
286 * a given CPU
287 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400288void smp_store_cpu_info(int id)
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300289{
290 struct cpuinfo_x86 *c = &cpu_data(id);
291
Yinghai Lub3d73362011-01-21 15:29:44 -0800292 *c = boot_cpu_data;
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300293 c->cpu_index = id;
Fenghua Yu30106c12012-11-13 11:32:41 -0800294 /*
295 * During boot time, CPU0 has this setup already. Save the info when
296 * bringing up AP or offlined CPU0.
297 */
298 identify_secondary_cpu(c);
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300299}
300
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400301static bool
Dave Hansencebf15e2014-09-18 12:33:34 -0700302topology_same_node(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
303{
304 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
305
306 return (cpu_to_node(cpu1) == cpu_to_node(cpu2));
307}
308
309static bool
Peter Zijlstra316ad242012-05-11 13:05:59 +0200310topology_sane(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o, const char *name)
Andreas Herrmannd4fbe4f2010-09-30 14:41:56 +0200311{
Peter Zijlstra316ad242012-05-11 13:05:59 +0200312 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
313
Dave Hansencebf15e2014-09-18 12:33:34 -0700314 return !WARN_ONCE(!topology_same_node(c, o),
Peter Zijlstra316ad242012-05-11 13:05:59 +0200315 "sched: CPU #%d's %s-sibling CPU #%d is not on the same node! "
316 "[node: %d != %d]. Ignoring dependency.\n",
317 cpu1, name, cpu2, cpu_to_node(cpu1), cpu_to_node(cpu2));
Andreas Herrmannd4fbe4f2010-09-30 14:41:56 +0200318}
319
Peter Zijlstra316ad242012-05-11 13:05:59 +0200320#define link_mask(_m, c1, c2) \
321do { \
322 cpumask_set_cpu((c1), cpu_##_m##_mask(c2)); \
323 cpumask_set_cpu((c2), cpu_##_m##_mask(c1)); \
324} while (0)
325
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400326static bool match_smt(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
Peter Zijlstra316ad242012-05-11 13:05:59 +0200327{
Andreas Herrmann193f3fc2012-10-19 10:58:13 +0200328 if (cpu_has_topoext) {
Peter Zijlstra316ad242012-05-11 13:05:59 +0200329 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
330
331 if (c->phys_proc_id == o->phys_proc_id &&
332 per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2) &&
333 c->compute_unit_id == o->compute_unit_id)
334 return topology_sane(c, o, "smt");
335
336 } else if (c->phys_proc_id == o->phys_proc_id &&
337 c->cpu_core_id == o->cpu_core_id) {
338 return topology_sane(c, o, "smt");
339 }
340
341 return false;
342}
343
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400344static bool match_llc(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
Peter Zijlstra316ad242012-05-11 13:05:59 +0200345{
346 int cpu1 = c->cpu_index, cpu2 = o->cpu_index;
347
348 if (per_cpu(cpu_llc_id, cpu1) != BAD_APICID &&
349 per_cpu(cpu_llc_id, cpu1) == per_cpu(cpu_llc_id, cpu2))
350 return topology_sane(c, o, "llc");
351
352 return false;
353}
354
Dave Hansencebf15e2014-09-18 12:33:34 -0700355/*
356 * Unlike the other levels, we do not enforce keeping a
357 * multicore group inside a NUMA node. If this happens, we will
358 * discard the MC level of the topology later.
359 */
360static bool match_die(struct cpuinfo_x86 *c, struct cpuinfo_x86 *o)
Peter Zijlstra316ad242012-05-11 13:05:59 +0200361{
Dave Hansencebf15e2014-09-18 12:33:34 -0700362 if (c->phys_proc_id == o->phys_proc_id)
363 return true;
Peter Zijlstra316ad242012-05-11 13:05:59 +0200364 return false;
365}
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300366
Dave Hansencebf15e2014-09-18 12:33:34 -0700367static struct sched_domain_topology_level numa_inside_package_topology[] = {
368#ifdef CONFIG_SCHED_SMT
369 { cpu_smt_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
370#endif
371#ifdef CONFIG_SCHED_MC
372 { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
373#endif
374 { NULL, },
375};
376/*
377 * set_sched_topology() sets the topology internal to a CPU. The
378 * NUMA topologies are layered on top of it to build the full
379 * system topology.
380 *
381 * If NUMA nodes are observed to occur within a CPU package, this
382 * function should be called. It forces the sched domain code to
383 * only use the SMT level for the CPU portion of the topology.
384 * This essentially falls back to relying on NUMA information
385 * from the SRAT table to describe the entire system topology
386 * (except for hyperthreads).
387 */
388static void primarily_use_numa_for_topology(void)
389{
390 set_sched_topology(numa_inside_package_topology);
391}
392
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400393void set_cpu_sibling_map(int cpu)
Glauber Costa768d9502008-03-03 14:13:02 -0300394{
Peter Zijlstra316ad242012-05-11 13:05:59 +0200395 bool has_smt = smp_num_siblings > 1;
Andrew Jonesb0bc2252013-05-29 14:48:15 +0200396 bool has_mp = has_smt || boot_cpu_data.x86_max_cores > 1;
Glauber Costa768d9502008-03-03 14:13:02 -0300397 struct cpuinfo_x86 *c = &cpu_data(cpu);
Peter Zijlstra316ad242012-05-11 13:05:59 +0200398 struct cpuinfo_x86 *o;
399 int i;
Glauber Costa768d9502008-03-03 14:13:02 -0300400
Mike Travisc2d1cec2009-01-04 05:18:03 -0800401 cpumask_set_cpu(cpu, cpu_sibling_setup_mask);
Glauber Costa768d9502008-03-03 14:13:02 -0300402
Andrew Jonesb0bc2252013-05-29 14:48:15 +0200403 if (!has_mp) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800404 cpumask_set_cpu(cpu, cpu_sibling_mask(cpu));
Peter Zijlstra316ad242012-05-11 13:05:59 +0200405 cpumask_set_cpu(cpu, cpu_llc_shared_mask(cpu));
406 cpumask_set_cpu(cpu, cpu_core_mask(cpu));
Glauber Costa768d9502008-03-03 14:13:02 -0300407 c->booted_cores = 1;
408 return;
409 }
410
Mike Travisc2d1cec2009-01-04 05:18:03 -0800411 for_each_cpu(i, cpu_sibling_setup_mask) {
Peter Zijlstra316ad242012-05-11 13:05:59 +0200412 o = &cpu_data(i);
Peter Zijlstra0acbb442012-04-18 19:04:09 +0200413
Peter Zijlstra316ad242012-05-11 13:05:59 +0200414 if ((i == cpu) || (has_smt && match_smt(c, o)))
415 link_mask(sibling, cpu, i);
Peter Zijlstra0acbb442012-04-18 19:04:09 +0200416
Andrew Jonesb0bc2252013-05-29 14:48:15 +0200417 if ((i == cpu) || (has_mp && match_llc(c, o)))
Peter Zijlstra316ad242012-05-11 13:05:59 +0200418 link_mask(llc_shared, cpu, i);
419
Kamalesh Babulalceb1cba2012-05-31 13:07:38 +0530420 }
421
422 /*
423 * This needs a separate iteration over the cpus because we rely on all
424 * cpu_sibling_mask links to be set-up.
425 */
426 for_each_cpu(i, cpu_sibling_setup_mask) {
427 o = &cpu_data(i);
428
Dave Hansencebf15e2014-09-18 12:33:34 -0700429 if ((i == cpu) || (has_mp && match_die(c, o))) {
Peter Zijlstra316ad242012-05-11 13:05:59 +0200430 link_mask(core, cpu, i);
431
Glauber Costa768d9502008-03-03 14:13:02 -0300432 /*
433 * Does this new cpu bringup a new core?
434 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800435 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1) {
Glauber Costa768d9502008-03-03 14:13:02 -0300436 /*
437 * for each core in package, increment
438 * the booted_cores for this new cpu
439 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800440 if (cpumask_first(cpu_sibling_mask(i)) == i)
Glauber Costa768d9502008-03-03 14:13:02 -0300441 c->booted_cores++;
442 /*
443 * increment the core count for all
444 * the other cpus in this package
445 */
446 if (i != cpu)
447 cpu_data(i).booted_cores++;
448 } else if (i != cpu && !c->booted_cores)
449 c->booted_cores = cpu_data(i).booted_cores;
450 }
Dave Hansen728e5652014-09-30 14:45:46 -0700451 if (match_die(c, o) && !topology_same_node(c, o))
Dave Hansencebf15e2014-09-18 12:33:34 -0700452 primarily_use_numa_for_topology();
Glauber Costa768d9502008-03-03 14:13:02 -0300453 }
454}
455
Glauber Costa70708a12008-03-03 14:13:03 -0300456/* maps the cpu to the sched domain representing multi-core */
Rusty Russell030bb202008-12-26 22:23:41 +1030457const struct cpumask *cpu_coregroup_mask(int cpu)
Glauber Costa70708a12008-03-03 14:13:03 -0300458{
Peter Zijlstra9f646382012-05-29 16:39:09 +0200459 return cpu_llc_shared_mask(cpu);
Rusty Russell030bb202008-12-26 22:23:41 +1030460}
461
Ingo Molnara4928cf2008-04-23 13:20:56 +0200462static void impress_friends(void)
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300463{
464 int cpu;
465 unsigned long bogosum = 0;
466 /*
467 * Allow the user to impress friends.
468 */
Joe Perchesc767a542012-05-21 19:50:07 -0700469 pr_debug("Before bogomips\n");
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300470 for_each_possible_cpu(cpu)
Mike Travisc2d1cec2009-01-04 05:18:03 -0800471 if (cpumask_test_cpu(cpu, cpu_callout_mask))
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300472 bogosum += cpu_data(cpu).loops_per_jiffy;
Joe Perchesc767a542012-05-21 19:50:07 -0700473 pr_info("Total of %d processors activated (%lu.%02lu BogoMIPS)\n",
Glauber de Oliveira Costaf68e00a2008-03-19 14:25:29 -0300474 num_online_cpus(),
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300475 bogosum/(500000/HZ),
476 (bogosum/(5000/HZ))%100);
477
Joe Perchesc767a542012-05-21 19:50:07 -0700478 pr_debug("Before bogocount - setting activated=1\n");
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300479}
480
Yinghai Lu569712b2008-11-16 03:12:49 -0800481void __inquire_remote_apic(int apicid)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300482{
483 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
Greg Dietschea6c239052011-06-30 20:10:53 -0500484 const char * const names[] = { "ID", "VERSION", "SPIV" };
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300485 int timeout;
486 u32 status;
487
Joe Perchesc767a542012-05-21 19:50:07 -0700488 pr_info("Inquiring remote APIC 0x%x...\n", apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300489
490 for (i = 0; i < ARRAY_SIZE(regs); i++) {
Joe Perchesc767a542012-05-21 19:50:07 -0700491 pr_info("... APIC 0x%x %s: ", apicid, names[i]);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300492
493 /*
494 * Wait for idle.
495 */
496 status = safe_apic_wait_icr_idle();
497 if (status)
Joe Perchesc767a542012-05-21 19:50:07 -0700498 pr_cont("a previous APIC delivery may have failed\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300499
Suresh Siddha1b374e42008-07-10 11:16:49 -0700500 apic_icr_write(APIC_DM_REMRD | regs[i], apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300501
502 timeout = 0;
503 do {
504 udelay(100);
505 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
506 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
507
508 switch (status) {
509 case APIC_ICR_RR_VALID:
510 status = apic_read(APIC_RRR);
Joe Perchesc767a542012-05-21 19:50:07 -0700511 pr_cont("%08x\n", status);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300512 break;
513 default:
Joe Perchesc767a542012-05-21 19:50:07 -0700514 pr_cont("failed\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300515 }
516 }
517}
518
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300519/*
520 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
521 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
522 * won't ... remember to clear down the APIC, etc later.
523 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400524int
Fenghua Yue1c467e2012-11-14 04:36:53 -0800525wakeup_secondary_cpu_via_nmi(int apicid, unsigned long start_eip)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300526{
527 unsigned long send_status, accept_status = 0;
528 int maxlvt;
529
530 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300531 /* Boot on the stack */
532 /* Kick the second */
Fenghua Yue1c467e2012-11-14 04:36:53 -0800533 apic_icr_write(APIC_DM_NMI | apic->dest_logical, apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300534
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200535 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300536 send_status = safe_apic_wait_icr_idle();
537
538 /*
539 * Give the other CPU some time to accept the IPI.
540 */
541 udelay(200);
Yinghai Lu569712b2008-11-16 03:12:49 -0800542 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunov59ef48a2008-09-14 21:58:49 +0400543 maxlvt = lapic_get_maxlvt();
544 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
545 apic_write(APIC_ESR, 0);
546 accept_status = (apic_read(APIC_ESR) & 0xEF);
547 }
Joe Perchesc767a542012-05-21 19:50:07 -0700548 pr_debug("NMI sent\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300549
550 if (send_status)
Joe Perchesc767a542012-05-21 19:50:07 -0700551 pr_err("APIC never delivered???\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300552 if (accept_status)
Joe Perchesc767a542012-05-21 19:50:07 -0700553 pr_err("APIC delivery error (%lx)\n", accept_status);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300554
555 return (send_status | accept_status);
556}
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300557
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400558static int
Yinghai Lu569712b2008-11-16 03:12:49 -0800559wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300560{
561 unsigned long send_status, accept_status = 0;
562 int maxlvt, num_starts, j;
563
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100564 maxlvt = lapic_get_maxlvt();
565
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300566 /*
567 * Be paranoid about clearing APIC errors.
568 */
569 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100570 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
571 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300572 apic_read(APIC_ESR);
573 }
574
Joe Perchesc767a542012-05-21 19:50:07 -0700575 pr_debug("Asserting INIT\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300576
577 /*
578 * Turn INIT on target chip
579 */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300580 /*
581 * Send IPI
582 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700583 apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT,
584 phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300585
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200586 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300587 send_status = safe_apic_wait_icr_idle();
588
589 mdelay(10);
590
Joe Perchesc767a542012-05-21 19:50:07 -0700591 pr_debug("Deasserting INIT\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300592
593 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300594 /* Send IPI */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700595 apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300596
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200597 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300598 send_status = safe_apic_wait_icr_idle();
599
600 mb();
601 atomic_set(&init_deasserted, 1);
602
603 /*
604 * Should we send STARTUP IPIs ?
605 *
606 * Determine this based on the APIC version.
607 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
608 */
609 if (APIC_INTEGRATED(apic_version[phys_apicid]))
610 num_starts = 2;
611 else
612 num_starts = 0;
613
614 /*
615 * Paravirt / VMI wants a startup IPI hook here to set up the
616 * target processor state.
617 */
618 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
H. Peter Anvin11d4c3f2011-02-04 16:14:11 -0800619 stack_start);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300620
621 /*
622 * Run STARTUP IPI loop.
623 */
Joe Perchesc767a542012-05-21 19:50:07 -0700624 pr_debug("#startup loops: %d\n", num_starts);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300625
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300626 for (j = 1; j <= num_starts; j++) {
Joe Perchesc767a542012-05-21 19:50:07 -0700627 pr_debug("Sending STARTUP #%d\n", j);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100628 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
629 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300630 apic_read(APIC_ESR);
Joe Perchesc767a542012-05-21 19:50:07 -0700631 pr_debug("After apic_write\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300632
633 /*
634 * STARTUP IPI
635 */
636
637 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300638 /* Boot on the stack */
639 /* Kick the second */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700640 apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12),
641 phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300642
643 /*
644 * Give the other CPU some time to accept the IPI.
645 */
646 udelay(300);
647
Joe Perchesc767a542012-05-21 19:50:07 -0700648 pr_debug("Startup point 1\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300649
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200650 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300651 send_status = safe_apic_wait_icr_idle();
652
653 /*
654 * Give the other CPU some time to accept the IPI.
655 */
656 udelay(200);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100657 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300658 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300659 accept_status = (apic_read(APIC_ESR) & 0xEF);
660 if (send_status || accept_status)
661 break;
662 }
Joe Perchesc767a542012-05-21 19:50:07 -0700663 pr_debug("After Startup\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300664
665 if (send_status)
Joe Perchesc767a542012-05-21 19:50:07 -0700666 pr_err("APIC never delivered???\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300667 if (accept_status)
Joe Perchesc767a542012-05-21 19:50:07 -0700668 pr_err("APIC delivery error (%lx)\n", accept_status);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300669
670 return (send_status | accept_status);
671}
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300672
Borislav Petkova17bce42013-09-30 11:56:24 +0200673void smp_announce(void)
674{
675 int num_nodes = num_online_nodes();
676
677 printk(KERN_INFO "x86: Booted up %d node%s, %d CPUs\n",
678 num_nodes, (num_nodes > 1 ? "s" : ""), num_online_cpus());
679}
680
Mike Travis2eaad1f2009-12-10 17:19:36 -0800681/* reduce the number of lines printed when booting a large cpu count system */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400682static void announce_cpu(int cpu, int apicid)
Mike Travis2eaad1f2009-12-10 17:19:36 -0800683{
684 static int current_node = -1;
Borislav Petkov4adc8b72010-06-01 21:04:55 +0200685 int node = early_cpu_to_node(cpu);
Borislav Petkova17bce42013-09-30 11:56:24 +0200686 static int width, node_width;
Borislav Petkov646e29a2013-09-27 16:35:54 +0200687
688 if (!width)
689 width = num_digits(num_possible_cpus()) + 1; /* + '#' sign */
Mike Travis2eaad1f2009-12-10 17:19:36 -0800690
Borislav Petkova17bce42013-09-30 11:56:24 +0200691 if (!node_width)
692 node_width = num_digits(num_possible_nodes()) + 1; /* + '#' */
693
694 if (cpu == 1)
695 printk(KERN_INFO "x86: Booting SMP configuration:\n");
696
Mike Travis2eaad1f2009-12-10 17:19:36 -0800697 if (system_state == SYSTEM_BOOTING) {
698 if (node != current_node) {
699 if (current_node > (-1))
Borislav Petkova17bce42013-09-30 11:56:24 +0200700 pr_cont("\n");
Mike Travis2eaad1f2009-12-10 17:19:36 -0800701 current_node = node;
Borislav Petkova17bce42013-09-30 11:56:24 +0200702
703 printk(KERN_INFO ".... node %*s#%d, CPUs: ",
704 node_width - num_digits(node), " ", node);
Mike Travis2eaad1f2009-12-10 17:19:36 -0800705 }
Borislav Petkov646e29a2013-09-27 16:35:54 +0200706
707 /* Add padding for the BSP */
708 if (cpu == 1)
709 pr_cont("%*s", width + 1, " ");
710
711 pr_cont("%*s#%d", width - num_digits(cpu), " ", cpu);
712
Mike Travis2eaad1f2009-12-10 17:19:36 -0800713 } else
714 pr_info("Booting Node %d Processor %d APIC 0x%x\n",
715 node, cpu, apicid);
716}
717
Fenghua Yue1c467e2012-11-14 04:36:53 -0800718static int wakeup_cpu0_nmi(unsigned int cmd, struct pt_regs *regs)
719{
720 int cpu;
721
722 cpu = smp_processor_id();
723 if (cpu == 0 && !cpu_online(cpu) && enable_start_cpu0)
724 return NMI_HANDLED;
725
726 return NMI_DONE;
727}
728
729/*
730 * Wake up AP by INIT, INIT, STARTUP sequence.
731 *
732 * Instead of waiting for STARTUP after INITs, BSP will execute the BIOS
733 * boot-strap code which is not a desired behavior for waking up BSP. To
734 * void the boot-strap code, wake up CPU0 by NMI instead.
735 *
736 * This works to wake up soft offlined CPU0 only. If CPU0 is hard offlined
737 * (i.e. physically hot removed and then hot added), NMI won't wake it up.
738 * We'll change this code in the future to wake up hard offlined CPU0 if
739 * real platform and request are available.
740 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400741static int
Fenghua Yue1c467e2012-11-14 04:36:53 -0800742wakeup_cpu_via_init_nmi(int cpu, unsigned long start_ip, int apicid,
743 int *cpu0_nmi_registered)
744{
745 int id;
746 int boot_error;
747
Jan Kiszkaea7bdc62014-01-27 20:14:06 +0100748 preempt_disable();
749
Fenghua Yue1c467e2012-11-14 04:36:53 -0800750 /*
751 * Wake up AP by INIT, INIT, STARTUP sequence.
752 */
Jan Kiszkaea7bdc62014-01-27 20:14:06 +0100753 if (cpu) {
754 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
755 goto out;
756 }
Fenghua Yue1c467e2012-11-14 04:36:53 -0800757
758 /*
759 * Wake up BSP by nmi.
760 *
761 * Register a NMI handler to help wake up CPU0.
762 */
763 boot_error = register_nmi_handler(NMI_LOCAL,
764 wakeup_cpu0_nmi, 0, "wake_cpu0");
765
766 if (!boot_error) {
767 enable_start_cpu0 = 1;
768 *cpu0_nmi_registered = 1;
769 if (apic->dest_logical == APIC_DEST_LOGICAL)
770 id = cpu0_logical_apicid;
771 else
772 id = apicid;
773 boot_error = wakeup_secondary_cpu_via_nmi(id, start_ip);
774 }
775
Jan Kiszkaea7bdc62014-01-27 20:14:06 +0100776out:
777 preempt_enable();
778
Fenghua Yue1c467e2012-11-14 04:36:53 -0800779 return boot_error;
780}
781
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300782/*
783 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
784 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100785 * Returns zero if CPU booted OK, else error code from
786 * ->wakeup_secondary_cpu.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300787 */
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400788static int do_boot_cpu(int apicid, int cpu, struct task_struct *idle)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300789{
Jarkko Sakkinen48927bb2012-05-08 21:22:28 +0300790 volatile u32 *trampoline_status =
Jarkko Sakkinenb429dbf2012-05-08 21:22:41 +0300791 (volatile u32 *) __va(real_mode_header->trampoline_status);
Jarkko Sakkinen48927bb2012-05-08 21:22:28 +0300792 /* start_ip had better be page-aligned! */
Jarkko Sakkinenf37240f2012-05-08 21:22:43 +0300793 unsigned long start_ip = real_mode_header->trampoline_start;
Jarkko Sakkinen48927bb2012-05-08 21:22:28 +0300794
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300795 unsigned long boot_error = 0;
Fenghua Yue1c467e2012-11-14 04:36:53 -0800796 int cpu0_nmi_registered = 0;
Igor Mammedovce4b1b12014-06-20 14:23:11 +0200797 unsigned long timeout;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300798
Rusty Russell816afe42012-08-06 17:29:49 +0930799 /* Just in case we booted with a single CPU. */
800 alternatives_enable_smp();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300801
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000802 idle->thread.sp = (unsigned long) (((struct pt_regs *)
803 (THREAD_SIZE + task_stack_page(idle))) - 1);
804 per_cpu(current_task, cpu) = idle;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300805
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900806#ifdef CONFIG_X86_32
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300807 /* Stack for startup_32 can be just as for start_secondary onwards */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300808 irq_ctx_init(cpu);
809#else
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000810 clear_tsk_thread_flag(idle, TIF_FORK);
Tejun Heo004aa322009-01-13 20:41:35 +0900811 initial_gs = per_cpu_offset(cpu);
Steven Rostedt198d2082014-02-06 09:41:31 -0500812#endif
Brian Gerst9af45652009-01-19 00:38:58 +0900813 per_cpu(kernel_stack, cpu) =
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000814 (unsigned long)task_stack_page(idle) -
Brian Gerst9af45652009-01-19 00:38:58 +0900815 KERNEL_STACK_OFFSET + THREAD_SIZE;
Glauber Costaa9390982008-05-28 16:19:53 -0700816 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
Glauber Costa3e970472008-05-28 13:01:54 -0300817 initial_code = (unsigned long)start_secondary;
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000818 stack_start = idle->thread.sp;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300819
Mike Travis2eaad1f2009-12-10 17:19:36 -0800820 /* So we see what's up */
821 announce_cpu(cpu, apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300822
823 /*
824 * This grunge runs the startup process for
825 * the targeted processor.
826 */
827
828 atomic_set(&init_deasserted, 0);
829
Jack Steiner34d05592008-04-16 11:45:15 -0500830 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300831
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200832 pr_debug("Setting warm reset code and vector.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300833
Jack Steiner34d05592008-04-16 11:45:15 -0500834 smpboot_setup_warm_reset_vector(start_ip);
835 /*
836 * Be paranoid about clearing APIC errors.
Cyrill Gorcunovdb96b0a2008-10-22 18:00:09 +0400837 */
838 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
839 apic_write(APIC_ESR, 0);
840 apic_read(APIC_ESR);
841 }
Jack Steiner34d05592008-04-16 11:45:15 -0500842 }
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300843
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300844 /*
Igor Mammedovce4b1b12014-06-20 14:23:11 +0200845 * AP might wait on cpu_callout_mask in cpu_init() with
846 * cpu_initialized_mask set if previous attempt to online
847 * it timed-out. Clear cpu_initialized_mask so that after
848 * INIT/SIPI it could start with a clean state.
849 */
850 cpumask_clear_cpu(cpu, cpu_initialized_mask);
851 smp_mb();
852
853 /*
Fenghua Yue1c467e2012-11-14 04:36:53 -0800854 * Wake up a CPU in difference cases:
855 * - Use the method in the APIC driver if it's defined
856 * Otherwise,
857 * - Use an INIT boot APIC message for APs or NMI for BSP.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300858 */
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100859 if (apic->wakeup_secondary_cpu)
860 boot_error = apic->wakeup_secondary_cpu(apicid, start_ip);
861 else
Fenghua Yue1c467e2012-11-14 04:36:53 -0800862 boot_error = wakeup_cpu_via_init_nmi(cpu, start_ip, apicid,
863 &cpu0_nmi_registered);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300864
865 if (!boot_error) {
866 /*
Igor Mammedovce4b1b12014-06-20 14:23:11 +0200867 * Wait 10s total for a response from AP
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300868 */
Igor Mammedovce4b1b12014-06-20 14:23:11 +0200869 boot_error = -1;
870 timeout = jiffies + 10*HZ;
871 while (time_before(jiffies, timeout)) {
872 if (cpumask_test_cpu(cpu, cpu_initialized_mask)) {
873 /*
874 * Tell AP to proceed with initialization
875 */
876 cpumask_set_cpu(cpu, cpu_callout_mask);
877 boot_error = 0;
878 break;
879 }
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300880 udelay(100);
Igor Mammedovce4b1b12014-06-20 14:23:11 +0200881 schedule();
882 }
883 }
884
885 if (!boot_error) {
886 /*
887 * Wait till AP completes initial initialization
888 */
889 while (!cpumask_test_cpu(cpu, cpu_callin_mask)) {
Suresh Siddha68f202e2010-07-30 11:46:42 -0700890 /*
891 * Allow other tasks to run while we wait for the
892 * AP to come online. This also gives a chance
893 * for the MTRR work(triggered by the AP coming online)
894 * to be completed in the stop machine context.
895 */
Igor Mammedovce4b1b12014-06-20 14:23:11 +0200896 udelay(100);
Suresh Siddha68f202e2010-07-30 11:46:42 -0700897 schedule();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300898 }
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300899 }
900
901 /* mark "stuck" area as not stuck */
Jarkko Sakkinen48927bb2012-05-08 21:22:28 +0300902 *trampoline_status = 0;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300903
Yinghai Lu02421f92009-04-03 17:15:53 -0700904 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
905 /*
906 * Cleanup possible dangling ends...
907 */
908 smpboot_restore_warm_reset_vector();
909 }
Fenghua Yue1c467e2012-11-14 04:36:53 -0800910 /*
911 * Clean up the nmi handler. Do this after the callin and callout sync
912 * to avoid impact of possible long unregister time.
913 */
914 if (cpu0_nmi_registered)
915 unregister_nmi_handler(NMI_LOCAL, "wake_cpu0");
916
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300917 return boot_error;
918}
919
Paul Gortmaker148f9bb2013-06-18 18:23:59 -0400920int native_cpu_up(unsigned int cpu, struct task_struct *tidle)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300921{
Ingo Molnara21769a42009-01-28 06:50:47 +0100922 int apicid = apic->cpu_present_to_apicid(cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300923 unsigned long flags;
924 int err;
925
926 WARN_ON(irqs_disabled());
927
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200928 pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300929
Fenghua Yu30106c12012-11-13 11:32:41 -0800930 if (apicid == BAD_APICID ||
Suresh Siddhac284b422011-12-21 17:45:19 -0800931 !physid_isset(apicid, phys_cpu_present_map) ||
Daniel J Bluemanfa630302012-03-14 15:17:34 +0800932 !apic->apic_id_valid(apicid)) {
Joe Perchesc767a542012-05-21 19:50:07 -0700933 pr_err("%s: bad cpu %d\n", __func__, cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300934 return -EINVAL;
935 }
936
937 /*
938 * Already booted CPU?
939 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800940 if (cpumask_test_cpu(cpu, cpu_callin_mask)) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200941 pr_debug("do_boot_cpu %d Already started\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300942 return -ENOSYS;
943 }
944
945 /*
946 * Save current MTRR state in case it was changed since early boot
947 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
948 */
949 mtrr_save_state();
950
951 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
952
Vincent Palatin644c1542012-11-30 12:15:32 -0800953 /* the FPU context is blank, nobody can own it */
954 __cpu_disable_lazy_restore(cpu);
955
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000956 err = do_boot_cpu(apicid, cpu, tidle);
Hugh Dickins61165d72008-05-13 14:26:57 +0100957 if (err) {
Igor Mammedovfeef1e82014-06-05 15:42:44 +0200958 pr_err("do_boot_cpu failed(%d) to wakeup CPU#%u\n", err, cpu);
Hugh Dickins61165d72008-05-13 14:26:57 +0100959 return -EIO;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300960 }
961
962 /*
963 * Check TSC synchronization with the AP (keep irqs disabled
964 * while doing so):
965 */
966 local_irq_save(flags);
967 check_tsc_sync_source(cpu);
968 local_irq_restore(flags);
969
Akinobu Mita7c04e642008-04-19 23:55:17 +0900970 while (!cpu_online(cpu)) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300971 cpu_relax();
972 touch_nmi_watchdog();
973 }
974
975 return 0;
976}
977
Henrik Kretzschmar7167d082011-02-22 15:38:05 +0100978/**
979 * arch_disable_smp_support() - disables SMP support for x86 at runtime
980 */
981void arch_disable_smp_support(void)
982{
983 disable_ioapic_support();
984}
985
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -0300986/*
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300987 * Fall back to non SMP mode after errors.
988 *
989 * RED-PEN audit/test this more. I bet there is more state messed up here.
990 */
991static __init void disable_smp(void)
992{
Thomas Gleixneref4c59a2015-01-15 21:22:35 +0000993 disable_ioapic_support();
994
Rusty Russell4f062892009-03-13 14:49:54 +1030995 init_cpu_present(cpumask_of(0));
996 init_cpu_possible(cpumask_of(0));
Glauber Costa0f385d12008-05-28 17:09:53 -0700997
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300998 if (smp_found_config)
Jack Steinerb6df1b82008-06-19 21:51:05 -0500999 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001000 else
Jack Steinerb6df1b82008-06-19 21:51:05 -05001001 physid_set_mask_of_physid(0, &phys_cpu_present_map);
Mike Travisc2d1cec2009-01-04 05:18:03 -08001002 cpumask_set_cpu(0, cpu_sibling_mask(0));
1003 cpumask_set_cpu(0, cpu_core_mask(0));
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001004}
1005
1006/*
1007 * Various sanity checks.
1008 */
1009static int __init smp_sanity_check(unsigned max_cpus)
1010{
Jack Steinerac23d4e2008-03-28 14:12:16 -05001011 preempt_disable();
Yinghai Lua58f03b2008-08-14 02:16:30 -07001012
Yinghai Lu1ff2f202009-01-29 19:30:04 -08001013#if !defined(CONFIG_X86_BIGSMP) && defined(CONFIG_X86_32)
Yinghai Lua58f03b2008-08-14 02:16:30 -07001014 if (def_to_bigsmp && nr_cpu_ids > 8) {
1015 unsigned int cpu;
1016 unsigned nr;
1017
Joe Perchesc767a542012-05-21 19:50:07 -07001018 pr_warn("More than 8 CPUs detected - skipping them\n"
1019 "Use CONFIG_X86_BIGSMP\n");
Yinghai Lua58f03b2008-08-14 02:16:30 -07001020
1021 nr = 0;
1022 for_each_present_cpu(cpu) {
1023 if (nr >= 8)
Mike Travisc2d1cec2009-01-04 05:18:03 -08001024 set_cpu_present(cpu, false);
Yinghai Lua58f03b2008-08-14 02:16:30 -07001025 nr++;
1026 }
1027
1028 nr = 0;
1029 for_each_possible_cpu(cpu) {
1030 if (nr >= 8)
Mike Travisc2d1cec2009-01-04 05:18:03 -08001031 set_cpu_possible(cpu, false);
Yinghai Lua58f03b2008-08-14 02:16:30 -07001032 nr++;
1033 }
1034
1035 nr_cpu_ids = 8;
1036 }
1037#endif
1038
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001039 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
Joe Perchesc767a542012-05-21 19:50:07 -07001040 pr_warn("weird, boot CPU (#%d) not listed by the BIOS\n",
Michael Tokarev55c395b2008-12-05 14:42:20 +03001041 hard_smp_processor_id());
1042
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001043 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1044 }
1045
1046 /*
1047 * If we couldn't find an SMP configuration at boot time,
1048 * get out of here now!
1049 */
1050 if (!smp_found_config && !acpi_lapic) {
Jack Steinerac23d4e2008-03-28 14:12:16 -05001051 preempt_enable();
Joe Perchesc767a542012-05-21 19:50:07 -07001052 pr_notice("SMP motherboard not detected\n");
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001053 disable_smp();
1054 if (APIC_init_uniprocessor())
Joe Perchesc767a542012-05-21 19:50:07 -07001055 pr_notice("Local APIC not detected. Using dummy APIC emulation.\n");
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001056 return -1;
1057 }
1058
1059 /*
1060 * Should not be necessary because the MP table should list the boot
1061 * CPU too, but we do it for the sake of robustness anyway.
1062 */
Ingo Molnara27a6212009-01-28 12:43:18 +01001063 if (!apic->check_phys_apicid_present(boot_cpu_physical_apicid)) {
Joe Perchesc767a542012-05-21 19:50:07 -07001064 pr_notice("weird, boot CPU (#%d) not listed by the BIOS\n",
1065 boot_cpu_physical_apicid);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001066 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1067 }
Jack Steinerac23d4e2008-03-28 14:12:16 -05001068 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001069
1070 /*
1071 * If we couldn't find a local APIC, then get out of here now!
1072 */
1073 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1074 !cpu_has_apic) {
Cyrill Gorcunov103428e2009-06-07 16:48:40 +04001075 if (!disable_apic) {
1076 pr_err("BIOS bug, local APIC #%d not detected!...\n",
1077 boot_cpu_physical_apicid);
Joe Perchesc767a542012-05-21 19:50:07 -07001078 pr_err("... forcing use of dummy APIC emulation (tell your hw vendor)\n");
Cyrill Gorcunov103428e2009-06-07 16:48:40 +04001079 }
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001080 return -1;
1081 }
1082
1083 verify_local_APIC();
1084
1085 /*
1086 * If SMP should be disabled, then really disable it!
1087 */
1088 if (!max_cpus) {
Joe Perchesc767a542012-05-21 19:50:07 -07001089 pr_info("SMP mode deactivated\n");
Thomas Gleixneref4c59a2015-01-15 21:22:35 +00001090 disable_ioapic_support();
Thomas Gleixner05f7e462015-01-15 21:22:40 +00001091 apic_bsp_setup();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001092 return -1;
1093 }
1094
1095 return 0;
1096}
1097
1098static void __init smp_cpu_index_default(void)
1099{
1100 int i;
1101 struct cpuinfo_x86 *c;
1102
Akinobu Mita7c04e642008-04-19 23:55:17 +09001103 for_each_possible_cpu(i) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001104 c = &cpu_data(i);
1105 /* mark all to hotplug */
Mike Travis96289372008-12-31 18:08:46 -08001106 c->cpu_index = nr_cpu_ids;
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001107 }
1108}
1109
1110/*
1111 * Prepare for SMP bootup. The MP table or ACPI has been read
1112 * earlier. Just do some sanity checking here and enable APIC mode.
1113 */
1114void __init native_smp_prepare_cpus(unsigned int max_cpus)
1115{
Rusty Russell7ad728f2009-03-13 14:49:50 +10301116 unsigned int i;
1117
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001118 smp_cpu_index_default();
Yinghai Lu792363d2011-01-21 15:29:54 -08001119
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001120 /*
1121 * Setup boot CPU information
1122 */
Fenghua Yu30106c12012-11-13 11:32:41 -08001123 smp_store_boot_cpu_info(); /* Final full version of the data */
Yinghai Lu792363d2011-01-21 15:29:54 -08001124 cpumask_copy(cpu_callin_mask, cpumask_of(0));
1125 mb();
Tejun Heobd22a2f2011-01-23 14:37:27 +01001126
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001127 current_thread_info()->cpu = 0; /* needed? */
Rusty Russell7ad728f2009-03-13 14:49:50 +10301128 for_each_possible_cpu(i) {
Li Zefan79f55992009-06-15 14:58:26 +08001129 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
1130 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
Yinghai Lub3d73362011-01-21 15:29:44 -08001131 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
Rusty Russell7ad728f2009-03-13 14:49:50 +10301132 }
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001133 set_cpu_sibling_map(0);
1134
1135 if (smp_sanity_check(max_cpus) < 0) {
Joe Perchesc767a542012-05-21 19:50:07 -07001136 pr_info("SMP disabled\n");
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001137 disable_smp();
Thomas Gleixner250a1ac2014-12-05 08:48:29 +00001138 return;
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001139 }
1140
Suresh Siddhafa47f7e2010-08-27 11:09:50 -07001141 default_setup_apic_routing();
1142
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001143 if (read_apic_id() != boot_cpu_physical_apicid) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001144 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001145 read_apic_id(), boot_cpu_physical_apicid);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001146 /* Or can we switch back to PIC here? */
1147 }
1148
Thomas Gleixner05f7e462015-01-15 21:22:40 +00001149 cpu0_logical_apicid = apic_bsp_setup();
Thomas Gleixneref4c59a2015-01-15 21:22:35 +00001150
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001151 /*
1152 * Set up local APIC timer on boot CPU.
1153 */
Joe Perchesc767a542012-05-21 19:50:07 -07001154 pr_info("CPU%d: ", 0);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001155 print_cpu_info(&cpu_data(0));
Thomas Gleixner736deca2009-08-19 12:35:53 +02001156 x86_init.timers.setup_percpu_clockev();
Marcin Slusarzc4bd1fd2008-08-21 20:49:05 +02001157
1158 if (is_uv_system())
1159 uv_system_init();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001160
1161 set_mtrr_aps_delayed_init();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001162}
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001163
1164void arch_enable_nonboot_cpus_begin(void)
1165{
1166 set_mtrr_aps_delayed_init();
1167}
1168
1169void arch_enable_nonboot_cpus_end(void)
1170{
1171 mtrr_aps_init();
1172}
1173
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001174/*
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001175 * Early setup to make printk work.
1176 */
1177void __init native_smp_prepare_boot_cpu(void)
1178{
1179 int me = smp_processor_id();
Brian Gerst552be872009-01-30 17:47:53 +09001180 switch_to_new_gdt(me);
Mike Travisc2d1cec2009-01-04 05:18:03 -08001181 /* already set me in cpu_online_mask in boot_cpu_init() */
1182 cpumask_set_cpu(me, cpu_callout_mask);
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001183 per_cpu(cpu_state, me) = CPU_ONLINE;
1184}
1185
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001186void __init native_smp_cpus_done(unsigned int max_cpus)
1187{
Joe Perchesc767a542012-05-21 19:50:07 -07001188 pr_debug("Boot done\n");
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001189
Don Zickus99e8b9c2011-10-13 15:14:26 -04001190 nmi_selftest();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001191 impress_friends();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001192 setup_ioapic_dest();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001193 mtrr_aps_init();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001194}
1195
Mike Travis3b11ce72008-12-17 15:21:39 -08001196static int __initdata setup_possible_cpus = -1;
1197static int __init _setup_possible_cpus(char *str)
1198{
1199 get_option(&str, &setup_possible_cpus);
1200 return 0;
1201}
1202early_param("possible_cpus", _setup_possible_cpus);
1203
1204
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001205/*
Rusty Russell4f062892009-03-13 14:49:54 +10301206 * cpu_possible_mask should be static, it cannot change as cpu's
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001207 * are onlined, or offlined. The reason is per-cpu data-structures
1208 * are allocated by some modules at init time, and dont expect to
1209 * do this dynamically on cpu arrival/departure.
Rusty Russell4f062892009-03-13 14:49:54 +10301210 * cpu_present_mask on the other hand can change dynamically.
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001211 * In case when cpu_hotplug is not compiled, then we resort to current
1212 * behaviour, which is cpu_possible == cpu_present.
1213 * - Ashok Raj
1214 *
1215 * Three ways to find out the number of additional hotplug CPUs:
1216 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
Mike Travis3b11ce72008-12-17 15:21:39 -08001217 * - The user can overwrite it with possible_cpus=NUM
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001218 * - Otherwise don't reserve additional CPUs.
1219 * We do this because additional CPUs waste a lot of memory.
1220 * -AK
1221 */
1222__init void prefill_possible_map(void)
1223{
Thomas Gleixnercb48bb52008-10-05 17:51:52 +02001224 int i, possible;
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001225
Yinghai Lu329513a2008-07-02 18:54:40 -07001226 /* no processor from mptable or madt */
1227 if (!num_processors)
1228 num_processors = 1;
1229
Jan Beulich5f2eb552010-05-24 12:13:17 -07001230 i = setup_max_cpus ?: 1;
1231 if (setup_possible_cpus == -1) {
1232 possible = num_processors;
1233#ifdef CONFIG_HOTPLUG_CPU
1234 if (setup_max_cpus)
1235 possible += disabled_cpus;
1236#else
1237 if (possible > i)
1238 possible = i;
1239#endif
1240 } else
Mike Travis3b11ce72008-12-17 15:21:39 -08001241 possible = setup_possible_cpus;
1242
Mike Travis730cf272008-12-31 18:08:45 -08001243 total_cpus = max_t(int, possible, num_processors + disabled_cpus);
1244
Yinghai Lu2b633e32010-02-10 01:20:37 -08001245 /* nr_cpu_ids could be reduced via nr_cpus= */
1246 if (possible > nr_cpu_ids) {
Joe Perchesc767a542012-05-21 19:50:07 -07001247 pr_warn("%d Processors exceeds NR_CPUS limit of %d\n",
Yinghai Lu2b633e32010-02-10 01:20:37 -08001248 possible, nr_cpu_ids);
1249 possible = nr_cpu_ids;
Mike Travis3b11ce72008-12-17 15:21:39 -08001250 }
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001251
Jan Beulich5f2eb552010-05-24 12:13:17 -07001252#ifdef CONFIG_HOTPLUG_CPU
1253 if (!setup_max_cpus)
1254#endif
1255 if (possible > i) {
Joe Perchesc767a542012-05-21 19:50:07 -07001256 pr_warn("%d Processors exceeds max_cpus limit of %u\n",
Jan Beulich5f2eb552010-05-24 12:13:17 -07001257 possible, setup_max_cpus);
1258 possible = i;
1259 }
1260
Joe Perchesc767a542012-05-21 19:50:07 -07001261 pr_info("Allowing %d CPUs, %d hotplug CPUs\n",
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001262 possible, max_t(int, possible - num_processors, 0));
1263
1264 for (i = 0; i < possible; i++)
Mike Travisc2d1cec2009-01-04 05:18:03 -08001265 set_cpu_possible(i, true);
Jan Beulich5f2eb552010-05-24 12:13:17 -07001266 for (; i < NR_CPUS; i++)
1267 set_cpu_possible(i, false);
Mike Travis3461b0af2008-05-12 21:21:13 +02001268
1269 nr_cpu_ids = possible;
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001270}
Glauber Costa69c18c12008-03-03 14:13:07 -03001271
Chuck Ebbert14adf852008-09-29 18:29:42 -04001272#ifdef CONFIG_HOTPLUG_CPU
1273
1274static void remove_siblinginfo(int cpu)
1275{
1276 int sibling;
1277 struct cpuinfo_x86 *c = &cpu_data(cpu);
1278
Mike Travisc2d1cec2009-01-04 05:18:03 -08001279 for_each_cpu(sibling, cpu_core_mask(cpu)) {
1280 cpumask_clear_cpu(cpu, cpu_core_mask(sibling));
Chuck Ebbert14adf852008-09-29 18:29:42 -04001281 /*/
1282 * last thread sibling in this cpu core going down
1283 */
Mike Travisc2d1cec2009-01-04 05:18:03 -08001284 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1)
Chuck Ebbert14adf852008-09-29 18:29:42 -04001285 cpu_data(sibling).booted_cores--;
1286 }
1287
Mike Travisc2d1cec2009-01-04 05:18:03 -08001288 for_each_cpu(sibling, cpu_sibling_mask(cpu))
1289 cpumask_clear_cpu(cpu, cpu_sibling_mask(sibling));
Wanpeng Li03bd4e12014-09-24 16:38:05 +08001290 for_each_cpu(sibling, cpu_llc_shared_mask(cpu))
1291 cpumask_clear_cpu(cpu, cpu_llc_shared_mask(sibling));
1292 cpumask_clear(cpu_llc_shared_mask(cpu));
Mike Travisc2d1cec2009-01-04 05:18:03 -08001293 cpumask_clear(cpu_sibling_mask(cpu));
1294 cpumask_clear(cpu_core_mask(cpu));
Chuck Ebbert14adf852008-09-29 18:29:42 -04001295 c->phys_proc_id = 0;
1296 c->cpu_core_id = 0;
Mike Travisc2d1cec2009-01-04 05:18:03 -08001297 cpumask_clear_cpu(cpu, cpu_sibling_setup_mask);
Chuck Ebbert14adf852008-09-29 18:29:42 -04001298}
1299
Glauber Costa69c18c12008-03-03 14:13:07 -03001300static void __ref remove_cpu_from_maps(int cpu)
1301{
Mike Travisc2d1cec2009-01-04 05:18:03 -08001302 set_cpu_online(cpu, false);
1303 cpumask_clear_cpu(cpu, cpu_callout_mask);
1304 cpumask_clear_cpu(cpu, cpu_callin_mask);
Glauber Costa69c18c12008-03-03 14:13:07 -03001305 /* was set by cpu_init() */
Mike Travisc2d1cec2009-01-04 05:18:03 -08001306 cpumask_clear_cpu(cpu, cpu_initialized_mask);
Mike Travis23ca4bb2008-05-12 21:21:12 +02001307 numa_remove_cpu(cpu);
Glauber Costa69c18c12008-03-03 14:13:07 -03001308}
1309
Boris Ostrovsky54279552014-10-31 11:49:32 -04001310static DEFINE_PER_CPU(struct completion, die_complete);
1311
Alex Nixon8227dce2008-08-22 11:52:14 +01001312void cpu_disable_common(void)
1313{
1314 int cpu = smp_processor_id();
Alex Nixon8227dce2008-08-22 11:52:14 +01001315
Boris Ostrovsky54279552014-10-31 11:49:32 -04001316 init_completion(&per_cpu(die_complete, smp_processor_id()));
1317
Alex Nixon8227dce2008-08-22 11:52:14 +01001318 remove_siblinginfo(cpu);
1319
1320 /* It's now safe to remove this processor from the online map */
1321 lock_vector_lock();
1322 remove_cpu_from_maps(cpu);
1323 unlock_vector_lock();
Mike Travisd7b381b2008-12-16 17:33:58 -08001324 fixup_irqs();
Alex Nixon8227dce2008-08-22 11:52:14 +01001325}
1326
Alex Nixon93be71b2008-08-22 11:52:11 +01001327int native_cpu_disable(void)
Glauber Costa69c18c12008-03-03 14:13:07 -03001328{
Prarit Bhargavada6139e2014-01-13 06:51:01 -05001329 int ret;
1330
1331 ret = check_irq_vectors_for_cpu_disable();
1332 if (ret)
1333 return ret;
1334
Glauber Costa69c18c12008-03-03 14:13:07 -03001335 clear_local_APIC();
Alex Nixon8227dce2008-08-22 11:52:14 +01001336 cpu_disable_common();
Lan Tianyu2ed53c02014-08-26 15:43:45 +08001337
Glauber Costa69c18c12008-03-03 14:13:07 -03001338 return 0;
1339}
1340
Boris Ostrovsky54279552014-10-31 11:49:32 -04001341void cpu_die_common(unsigned int cpu)
1342{
1343 wait_for_completion_timeout(&per_cpu(die_complete, cpu), HZ);
1344}
1345
Alex Nixon93be71b2008-08-22 11:52:11 +01001346void native_cpu_die(unsigned int cpu)
Glauber Costa69c18c12008-03-03 14:13:07 -03001347{
1348 /* We don't do anything here: idle task is faking death itself. */
Boris Ostrovsky54279552014-10-31 11:49:32 -04001349
1350 cpu_die_common(cpu);
Glauber Costa69c18c12008-03-03 14:13:07 -03001351
Lan Tianyu2ed53c02014-08-26 15:43:45 +08001352 /* They ack this in play_dead() by setting CPU_DEAD */
1353 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1354 if (system_state == SYSTEM_RUNNING)
1355 pr_info("CPU %u is now offline\n", cpu);
1356 } else {
1357 pr_err("CPU %u didn't die...\n", cpu);
Glauber Costa69c18c12008-03-03 14:13:07 -03001358 }
Glauber Costa69c18c12008-03-03 14:13:07 -03001359}
Alex Nixona21f5d882008-08-22 11:52:13 +01001360
1361void play_dead_common(void)
1362{
1363 idle_task_exit();
1364 reset_lazy_tlbstate();
Len Brown02c68a02011-04-01 16:59:53 -04001365 amd_e400_remove_cpu(raw_smp_processor_id());
Alex Nixona21f5d882008-08-22 11:52:13 +01001366
1367 mb();
1368 /* Ack it */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001369 __this_cpu_write(cpu_state, CPU_DEAD);
Lan Tianyu2ed53c02014-08-26 15:43:45 +08001370 complete(&per_cpu(die_complete, smp_processor_id()));
Alex Nixona21f5d882008-08-22 11:52:13 +01001371
1372 /*
1373 * With physical CPU hotplug, we should halt the cpu
1374 */
1375 local_irq_disable();
1376}
1377
Fenghua Yue1c467e2012-11-14 04:36:53 -08001378static bool wakeup_cpu0(void)
1379{
1380 if (smp_processor_id() == 0 && enable_start_cpu0)
1381 return true;
1382
1383 return false;
1384}
1385
H. Peter Anvinea530692010-09-17 15:39:11 -07001386/*
1387 * We need to flush the caches before going to sleep, lest we have
1388 * dirty data in our caches when we come back up.
1389 */
1390static inline void mwait_play_dead(void)
1391{
1392 unsigned int eax, ebx, ecx, edx;
1393 unsigned int highest_cstate = 0;
1394 unsigned int highest_subcstate = 0;
H. Peter Anvince5f6822010-09-20 13:04:45 -07001395 void *mwait_ptr;
Borislav Petkov576cfb42013-03-04 21:16:16 +01001396 int i;
H. Peter Anvinea530692010-09-17 15:39:11 -07001397
Len Brown69fb3672013-02-10 01:38:39 -05001398 if (!this_cpu_has(X86_FEATURE_MWAIT))
H. Peter Anvinea530692010-09-17 15:39:11 -07001399 return;
H. Peter Anvin840d2832014-02-27 08:31:30 -08001400 if (!this_cpu_has(X86_FEATURE_CLFLUSH))
H. Peter Anvince5f6822010-09-20 13:04:45 -07001401 return;
Tejun Heo7b543a52010-12-18 16:30:05 +01001402 if (__this_cpu_read(cpu_info.cpuid_level) < CPUID_MWAIT_LEAF)
H. Peter Anvinea530692010-09-17 15:39:11 -07001403 return;
1404
1405 eax = CPUID_MWAIT_LEAF;
1406 ecx = 0;
1407 native_cpuid(&eax, &ebx, &ecx, &edx);
1408
1409 /*
1410 * eax will be 0 if EDX enumeration is not valid.
1411 * Initialized below to cstate, sub_cstate value when EDX is valid.
1412 */
1413 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED)) {
1414 eax = 0;
1415 } else {
1416 edx >>= MWAIT_SUBSTATE_SIZE;
1417 for (i = 0; i < 7 && edx; i++, edx >>= MWAIT_SUBSTATE_SIZE) {
1418 if (edx & MWAIT_SUBSTATE_MASK) {
1419 highest_cstate = i;
1420 highest_subcstate = edx & MWAIT_SUBSTATE_MASK;
1421 }
1422 }
1423 eax = (highest_cstate << MWAIT_SUBSTATE_SIZE) |
1424 (highest_subcstate - 1);
1425 }
1426
H. Peter Anvince5f6822010-09-20 13:04:45 -07001427 /*
1428 * This should be a memory location in a cache line which is
1429 * unlikely to be touched by other processors. The actual
1430 * content is immaterial as it is not actually modified in any way.
1431 */
1432 mwait_ptr = &current_thread_info()->flags;
1433
H. Peter Anvina68e5c92010-09-17 17:06:46 -07001434 wbinvd();
1435
H. Peter Anvinea530692010-09-17 15:39:11 -07001436 while (1) {
H. Peter Anvince5f6822010-09-20 13:04:45 -07001437 /*
1438 * The CLFLUSH is a workaround for erratum AAI65 for
1439 * the Xeon 7400 series. It's not clear it is actually
1440 * needed, but it should be harmless in either case.
1441 * The WBINVD is insufficient due to the spurious-wakeup
1442 * case where we return around the loop.
1443 */
H. Peter Anvin7d590cc2013-12-19 12:30:03 -08001444 mb();
H. Peter Anvince5f6822010-09-20 13:04:45 -07001445 clflush(mwait_ptr);
H. Peter Anvin7d590cc2013-12-19 12:30:03 -08001446 mb();
H. Peter Anvince5f6822010-09-20 13:04:45 -07001447 __monitor(mwait_ptr, 0, 0);
H. Peter Anvinea530692010-09-17 15:39:11 -07001448 mb();
1449 __mwait(eax, 0);
Fenghua Yue1c467e2012-11-14 04:36:53 -08001450 /*
1451 * If NMI wants to wake up CPU0, start CPU0.
1452 */
1453 if (wakeup_cpu0())
1454 start_cpu0();
H. Peter Anvinea530692010-09-17 15:39:11 -07001455 }
1456}
1457
1458static inline void hlt_play_dead(void)
1459{
Tejun Heo7b543a52010-12-18 16:30:05 +01001460 if (__this_cpu_read(cpu_info.x86) >= 4)
H. Peter Anvina68e5c92010-09-17 17:06:46 -07001461 wbinvd();
1462
H. Peter Anvinea530692010-09-17 15:39:11 -07001463 while (1) {
H. Peter Anvinea530692010-09-17 15:39:11 -07001464 native_halt();
Fenghua Yue1c467e2012-11-14 04:36:53 -08001465 /*
1466 * If NMI wants to wake up CPU0, start CPU0.
1467 */
1468 if (wakeup_cpu0())
1469 start_cpu0();
H. Peter Anvinea530692010-09-17 15:39:11 -07001470 }
1471}
1472
Alex Nixona21f5d882008-08-22 11:52:13 +01001473void native_play_dead(void)
1474{
1475 play_dead_common();
Joseph Cihula86886e52009-06-30 19:31:07 -07001476 tboot_shutdown(TB_SHUTDOWN_WFS);
H. Peter Anvinea530692010-09-17 15:39:11 -07001477
1478 mwait_play_dead(); /* Only returns on failure */
Boris Ostrovsky1a022e32012-03-13 19:55:09 +01001479 if (cpuidle_play_dead())
1480 hlt_play_dead();
Alex Nixona21f5d882008-08-22 11:52:13 +01001481}
1482
Glauber Costa69c18c12008-03-03 14:13:07 -03001483#else /* ... !CONFIG_HOTPLUG_CPU */
Alex Nixon93be71b2008-08-22 11:52:11 +01001484int native_cpu_disable(void)
Glauber Costa69c18c12008-03-03 14:13:07 -03001485{
1486 return -ENOSYS;
1487}
1488
Alex Nixon93be71b2008-08-22 11:52:11 +01001489void native_cpu_die(unsigned int cpu)
Glauber Costa69c18c12008-03-03 14:13:07 -03001490{
1491 /* We said "no" in __cpu_disable */
1492 BUG();
1493}
Alex Nixona21f5d882008-08-22 11:52:13 +01001494
1495void native_play_dead(void)
1496{
1497 BUG();
1498}
1499
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001500#endif