blob: 3acaf51dfddbf7bb485cb31188efc144169c41f9 [file] [log] [blame]
Glauber de Oliveira Costa4cedb332008-03-19 14:26:14 -03001/*
2 * 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
Glauber Costa68a1c3f2008-03-03 14:12:42 -030042#include <linux/init.h>
43#include <linux/smp.h>
Glauber Costaa3553522008-03-03 14:12:58 -030044#include <linux/module.h>
Glauber Costa70708a12008-03-03 14:13:03 -030045#include <linux/sched.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030046#include <linux/percpu.h>
Glauber Costa91718e82008-03-03 14:13:12 -030047#include <linux/bootmem.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030048#include <linux/err.h>
49#include <linux/nmi.h>
Shane Wang69575d32009-09-01 18:25:07 -070050#include <linux/tboot.h>
Jacob Pan35f720c2009-09-17 07:36:43 -070051#include <linux/stackprotector.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/gfp.h>
Boris Ostrovsky1a022e32012-03-13 19:55:09 +010053#include <linux/cpuidle.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030054
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -030055#include <asm/acpi.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030056#include <asm/desc.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030057#include <asm/nmi.h>
58#include <asm/irq.h>
Ingo Molnar07bbc162008-09-23 23:26:42 +020059#include <asm/idle.h>
Pavel Macheke44b7b72008-04-10 23:28:10 +020060#include <asm/trampoline.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030061#include <asm/cpu.h>
62#include <asm/numa.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030063#include <asm/pgtable.h>
64#include <asm/tlbflush.h>
65#include <asm/mtrr.h>
H. Peter Anvinea530692010-09-17 15:39:11 -070066#include <asm/mwait.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010067#include <asm/apic.h>
Henrik Kretzschmar7167d082011-02-22 15:38:05 +010068#include <asm/io_apic.h>
Yinghai Lu569712b2008-11-16 03:12:49 -080069#include <asm/setup.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090070#include <asm/uv/uv.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030071#include <linux/mc146818rtc.h>
Glauber Costa68a1c3f2008-03-03 14:12:42 -030072
Ingo Molnar1164dd02009-01-28 19:34:09 +010073#include <asm/smpboot_hooks.h>
Jacob Panb81bb372009-11-09 11:27:04 -080074#include <asm/i8259.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030075
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -030076/* State of each CPU */
77DEFINE_PER_CPU(int, cpu_state) = { 0 };
78
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030079#ifdef CONFIG_HOTPLUG_CPU
80/*
Borislav Petkovd7c53c92010-08-19 20:10:29 +020081 * We need this for trampoline_base protection from concurrent accesses when
82 * off- and onlining cores wildly.
83 */
84static DEFINE_MUTEX(x86_cpu_hotplug_driver_mutex);
85
Randy Dunlap91d88ce2011-01-08 19:59:14 -080086void cpu_hotplug_driver_lock(void)
Borislav Petkovd7c53c92010-08-19 20:10:29 +020087{
Thomas Gleixner7eb43a62012-04-20 13:05:48 +000088 mutex_lock(&x86_cpu_hotplug_driver_mutex);
Borislav Petkovd7c53c92010-08-19 20:10:29 +020089}
90
Randy Dunlap91d88ce2011-01-08 19:59:14 -080091void cpu_hotplug_driver_unlock(void)
Borislav Petkovd7c53c92010-08-19 20:10:29 +020092{
Thomas Gleixner7eb43a62012-04-20 13:05:48 +000093 mutex_unlock(&x86_cpu_hotplug_driver_mutex);
Borislav Petkovd7c53c92010-08-19 20:10:29 +020094}
95
96ssize_t arch_cpu_probe(const char *buf, size_t count) { return -1; }
97ssize_t arch_cpu_release(const char *buf, size_t count) { return -1; }
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030098#endif
Glauber de Oliveira Costaf6bc4022008-03-19 14:25:53 -030099
Glauber Costaa3553522008-03-03 14:12:58 -0300100/* Number of siblings per CPU package */
101int smp_num_siblings = 1;
102EXPORT_SYMBOL(smp_num_siblings);
103
104/* Last level cache ID of each logical CPU */
105DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
106
Glauber Costaa3553522008-03-03 14:12:58 -0300107/* representing HT siblings of each logical CPU */
Rusty Russell7ad728f2009-03-13 14:49:50 +1030108DEFINE_PER_CPU(cpumask_var_t, cpu_sibling_map);
Glauber Costaa3553522008-03-03 14:12:58 -0300109EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
110
111/* representing HT and core siblings of each logical CPU */
Rusty Russell7ad728f2009-03-13 14:49:50 +1030112DEFINE_PER_CPU(cpumask_var_t, cpu_core_map);
Glauber Costaa3553522008-03-03 14:12:58 -0300113EXPORT_PER_CPU_SYMBOL(cpu_core_map);
114
Yinghai Lub3d73362011-01-21 15:29:44 -0800115DEFINE_PER_CPU(cpumask_var_t, cpu_llc_shared_map);
116
Glauber Costaa3553522008-03-03 14:12:58 -0300117/* Per CPU bogomips and other parameters */
118DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
119EXPORT_PER_CPU_SYMBOL(cpu_info);
Glauber Costa768d9502008-03-03 14:13:02 -0300120
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800121atomic_t init_deasserted;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300122
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300123/*
124 * Report back to the Boot Processor.
125 * Running on AP.
126 */
Ingo Molnara4928cf2008-04-23 13:20:56 +0200127static void __cpuinit smp_callin(void)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300128{
129 int cpuid, phys_id;
130 unsigned long timeout;
131
132 /*
133 * If waken up by an INIT in an 82489DX configuration
134 * we may get here before an INIT-deassert IPI reaches
135 * our local APIC. We have to wait for the IPI or we'll
136 * lock up on an APIC access.
137 */
Ingo Molnara9659362009-01-28 16:21:32 +0100138 if (apic->wait_for_init_deassert)
139 apic->wait_for_init_deassert(&init_deasserted);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300140
141 /*
142 * (This works even if the APIC is not enabled.)
143 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700144 phys_id = read_apic_id();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300145 cpuid = smp_processor_id();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800146 if (cpumask_test_cpu(cpuid, cpu_callin_mask)) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300147 panic("%s: phys CPU#%d, CPU#%d already present??\n", __func__,
148 phys_id, cpuid);
149 }
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200150 pr_debug("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300151
152 /*
153 * STARTUP IPIs are fragile beasts as they might sometimes
154 * trigger some glue motherboard logic. Complete APIC bus
155 * silence for 1 second, this overestimates the time the
156 * boot CPU is spending to send the up to 2 STARTUP IPIs
157 * by a factor of two. This should be enough.
158 */
159
160 /*
161 * Waiting 2s total for startup (udelay is not yet working)
162 */
163 timeout = jiffies + 2*HZ;
164 while (time_before(jiffies, timeout)) {
165 /*
166 * Has the boot CPU finished it's STARTUP sequence?
167 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800168 if (cpumask_test_cpu(cpuid, cpu_callout_mask))
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300169 break;
170 cpu_relax();
171 }
172
173 if (!time_before(jiffies, timeout)) {
174 panic("%s: CPU%d started up but did not get a callout!\n",
175 __func__, cpuid);
176 }
177
178 /*
179 * the boot CPU has finished the init stage and is spinning
180 * on callin_map until we finish. We are free to set up this
181 * CPU, first the APIC. (this is probably redundant on most
182 * boards)
183 */
184
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200185 pr_debug("CALLIN, before setup_local_APIC().\n");
Ingo Molnar333344d2009-01-28 16:31:52 +0100186 if (apic->smp_callin_clear_local_apic)
187 apic->smp_callin_clear_local_apic();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300188 setup_local_APIC();
189 end_local_APIC_setup();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300190
Suresh Siddha9d133e52010-01-29 11:42:21 -0800191 /*
192 * Need to setup vector mappings before we enable interrupts.
193 */
Suresh Siddha36e9e1e2010-03-15 14:33:06 -0800194 setup_vector_irq(smp_processor_id());
Jack Steinerb5652012011-11-15 15:33:56 -0800195
196 /*
197 * Save our processor parameters. Note: this information
198 * is needed for clock calibration.
199 */
200 smp_store_cpu_info(cpuid);
201
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300202 /*
203 * Get our bogomips.
Jack Steinerb5652012011-11-15 15:33:56 -0800204 * Update loops_per_jiffy in cpu_data. Previous call to
205 * smp_store_cpu_info() stored a value that is close but not as
206 * accurate as the value just calculated.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300207 */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300208 calibrate_delay();
Jack Steinerb5652012011-11-15 15:33:56 -0800209 cpu_data(cpuid).loops_per_jiffy = loops_per_jiffy;
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200210 pr_debug("Stack at about %p\n", &cpuid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300211
212 /*
Andi Kleen5ef428c2010-11-18 11:47:31 +0100213 * This must be done before setting cpu_online_mask
214 * or calling notify_cpu_starting.
215 */
216 set_cpu_sibling_map(raw_smp_processor_id());
217 wmb();
218
Peter Zijlstra85257022010-03-23 19:30:52 +0100219 notify_cpu_starting(cpuid);
220
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300221 /*
222 * Allow the master to continue.
223 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800224 cpumask_set_cpu(cpuid, cpu_callin_mask);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300225}
226
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300227/*
228 * Activate a secondary processor.
229 */
Frederic Weisbecker0ca59dd2008-12-24 23:30:02 +0100230notrace static void __cpuinit start_secondary(void *unused)
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300231{
232 /*
233 * Don't put *anything* before cpu_init(), SMP booting is too
234 * fragile that we want to limit the things done here to the
235 * most necessary things.
236 */
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300237 cpu_init();
Igor Mammedovdf156f92012-02-07 15:52:44 +0100238 x86_cpuinit.early_percpu_clock_init();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300239 preempt_disable();
240 smp_callin();
241
Borislav Petkovb40827fa2010-08-28 15:58:33 +0200242#ifdef CONFIG_X86_32
243 /* switch away from the initial page table */
244 load_cr3(swapper_pg_dir);
245 __flush_tlb_all();
246#endif
247
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300248 /* otherwise gcc will move up smp_processor_id before the cpu_init */
249 barrier();
250 /*
251 * Check TSC synchronization with the BP:
252 */
253 check_tsc_sync_target();
254
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300255 /*
256 * We need to hold call_lock, so there is no inconsistency
257 * between the time smp_call_function() determines number of
258 * IPI recipients, and the time when the determination is made
259 * for which cpus receive the IPI. Holding this
260 * lock helps us to not include this cpu in a currently in progress
261 * smp_call_function().
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700262 *
263 * We need to hold vector_lock so there the set of online cpus
264 * does not change while we are assigning vectors to cpus. Holding
265 * this lock ensures we don't half assign or remove an irq from a cpu.
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300266 */
Manfred Spraul0cefa5b2008-09-07 11:29:58 +0200267 ipi_call_lock();
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700268 lock_vector_lock();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800269 set_cpu_online(smp_processor_id(), true);
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700270 unlock_vector_lock();
Manfred Spraul0cefa5b2008-09-07 11:29:58 +0200271 ipi_call_unlock();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300272 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Russ Anderson78c06172010-02-26 10:49:12 -0600273 x86_platform.nmi_init();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300274
Manfred Spraul0cefa5b2008-09-07 11:29:58 +0200275 /* enable local interrupts */
276 local_irq_enable();
277
Jacob Pan35f720c2009-09-17 07:36:43 -0700278 /* to prevent fake stack check failure in clock setup */
279 boot_init_stack_canary();
280
Thomas Gleixner736deca2009-08-19 12:35:53 +0200281 x86_cpuinit.setup_percpu_clockev();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300282
283 wmb();
284 cpu_idle();
285}
286
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300287/*
288 * The bootstrap kernel entry code has set these up. Save them for
289 * a given CPU
290 */
291
292void __cpuinit smp_store_cpu_info(int id)
293{
294 struct cpuinfo_x86 *c = &cpu_data(id);
295
Yinghai Lub3d73362011-01-21 15:29:44 -0800296 *c = boot_cpu_data;
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300297 c->cpu_index = id;
298 if (id != 0)
299 identify_secondary_cpu(c);
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300300}
301
Andreas Herrmannd4fbe4f2010-09-30 14:41:56 +0200302static void __cpuinit link_thread_siblings(int cpu1, int cpu2)
303{
Andreas Herrmannd4fbe4f2010-09-30 14:41:56 +0200304 cpumask_set_cpu(cpu1, cpu_sibling_mask(cpu2));
305 cpumask_set_cpu(cpu2, cpu_sibling_mask(cpu1));
306 cpumask_set_cpu(cpu1, cpu_core_mask(cpu2));
307 cpumask_set_cpu(cpu2, cpu_core_mask(cpu1));
Yinghai Lub3d73362011-01-21 15:29:44 -0800308 cpumask_set_cpu(cpu1, cpu_llc_shared_mask(cpu2));
309 cpumask_set_cpu(cpu2, cpu_llc_shared_mask(cpu1));
Andreas Herrmannd4fbe4f2010-09-30 14:41:56 +0200310}
311
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300312
Glauber Costa768d9502008-03-03 14:13:02 -0300313void __cpuinit set_cpu_sibling_map(int cpu)
314{
315 int i;
316 struct cpuinfo_x86 *c = &cpu_data(cpu);
317
Mike Travisc2d1cec2009-01-04 05:18:03 -0800318 cpumask_set_cpu(cpu, cpu_sibling_setup_mask);
Glauber Costa768d9502008-03-03 14:13:02 -0300319
320 if (smp_num_siblings > 1) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800321 for_each_cpu(i, cpu_sibling_setup_mask) {
322 struct cpuinfo_x86 *o = &cpu_data(i);
323
Andreas Herrmannd4fbe4f2010-09-30 14:41:56 +0200324 if (cpu_has(c, X86_FEATURE_TOPOEXT)) {
325 if (c->phys_proc_id == o->phys_proc_id &&
Andreas Herrmannd5185732011-01-24 16:05:40 +0100326 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i) &&
Andreas Herrmannd4fbe4f2010-09-30 14:41:56 +0200327 c->compute_unit_id == o->compute_unit_id)
328 link_thread_siblings(cpu, i);
329 } else if (c->phys_proc_id == o->phys_proc_id &&
330 c->cpu_core_id == o->cpu_core_id) {
331 link_thread_siblings(cpu, i);
Glauber Costa768d9502008-03-03 14:13:02 -0300332 }
333 }
334 } else {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800335 cpumask_set_cpu(cpu, cpu_sibling_mask(cpu));
Glauber Costa768d9502008-03-03 14:13:02 -0300336 }
337
Yinghai Lub3d73362011-01-21 15:29:44 -0800338 cpumask_set_cpu(cpu, cpu_llc_shared_mask(cpu));
Glauber Costa768d9502008-03-03 14:13:02 -0300339
Tejun Heo7b543a52010-12-18 16:30:05 +0100340 if (__this_cpu_read(cpu_info.x86_max_cores) == 1) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800341 cpumask_copy(cpu_core_mask(cpu), cpu_sibling_mask(cpu));
Glauber Costa768d9502008-03-03 14:13:02 -0300342 c->booted_cores = 1;
343 return;
344 }
345
Mike Travisc2d1cec2009-01-04 05:18:03 -0800346 for_each_cpu(i, cpu_sibling_setup_mask) {
Glauber Costa768d9502008-03-03 14:13:02 -0300347 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
348 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
Yinghai Lub3d73362011-01-21 15:29:44 -0800349 cpumask_set_cpu(i, cpu_llc_shared_mask(cpu));
350 cpumask_set_cpu(cpu, cpu_llc_shared_mask(i));
Glauber Costa768d9502008-03-03 14:13:02 -0300351 }
352 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800353 cpumask_set_cpu(i, cpu_core_mask(cpu));
354 cpumask_set_cpu(cpu, cpu_core_mask(i));
Glauber Costa768d9502008-03-03 14:13:02 -0300355 /*
356 * Does this new cpu bringup a new core?
357 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800358 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1) {
Glauber Costa768d9502008-03-03 14:13:02 -0300359 /*
360 * for each core in package, increment
361 * the booted_cores for this new cpu
362 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800363 if (cpumask_first(cpu_sibling_mask(i)) == i)
Glauber Costa768d9502008-03-03 14:13:02 -0300364 c->booted_cores++;
365 /*
366 * increment the core count for all
367 * the other cpus in this package
368 */
369 if (i != cpu)
370 cpu_data(i).booted_cores++;
371 } else if (i != cpu && !c->booted_cores)
372 c->booted_cores = cpu_data(i).booted_cores;
373 }
374 }
375}
376
Glauber Costa70708a12008-03-03 14:13:03 -0300377/* maps the cpu to the sched domain representing multi-core */
Rusty Russell030bb202008-12-26 22:23:41 +1030378const struct cpumask *cpu_coregroup_mask(int cpu)
Glauber Costa70708a12008-03-03 14:13:03 -0300379{
380 struct cpuinfo_x86 *c = &cpu_data(cpu);
381 /*
382 * For perf, we return last level cache shared map.
383 * And for power savings, we return cpu_core_map
384 */
Andreas Herrmann5a925b42009-09-03 09:44:28 +0200385 if ((sched_mc_power_savings || sched_smt_power_savings) &&
386 !(cpu_has(c, X86_FEATURE_AMD_DCM)))
Mike Travisc2d1cec2009-01-04 05:18:03 -0800387 return cpu_core_mask(cpu);
Glauber Costa70708a12008-03-03 14:13:03 -0300388 else
Yinghai Lub3d73362011-01-21 15:29:44 -0800389 return cpu_llc_shared_mask(cpu);
Rusty Russell030bb202008-12-26 22:23:41 +1030390}
391
Ingo Molnara4928cf2008-04-23 13:20:56 +0200392static void impress_friends(void)
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300393{
394 int cpu;
395 unsigned long bogosum = 0;
396 /*
397 * Allow the user to impress friends.
398 */
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200399 pr_debug("Before bogomips.\n");
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300400 for_each_possible_cpu(cpu)
Mike Travisc2d1cec2009-01-04 05:18:03 -0800401 if (cpumask_test_cpu(cpu, cpu_callout_mask))
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300402 bogosum += cpu_data(cpu).loops_per_jiffy;
403 printk(KERN_INFO
404 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
Glauber de Oliveira Costaf68e00a2008-03-19 14:25:29 -0300405 num_online_cpus(),
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300406 bogosum/(500000/HZ),
407 (bogosum/(5000/HZ))%100);
408
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200409 pr_debug("Before bogocount - setting activated=1.\n");
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300410}
411
Yinghai Lu569712b2008-11-16 03:12:49 -0800412void __inquire_remote_apic(int apicid)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300413{
414 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
Greg Dietschea6c239052011-06-30 20:10:53 -0500415 const char * const names[] = { "ID", "VERSION", "SPIV" };
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300416 int timeout;
417 u32 status;
418
Yinghai Lu823b2592008-09-10 21:56:46 -0700419 printk(KERN_INFO "Inquiring remote APIC 0x%x...\n", apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300420
421 for (i = 0; i < ARRAY_SIZE(regs); i++) {
Yinghai Lu823b2592008-09-10 21:56:46 -0700422 printk(KERN_INFO "... APIC 0x%x %s: ", apicid, names[i]);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300423
424 /*
425 * Wait for idle.
426 */
427 status = safe_apic_wait_icr_idle();
428 if (status)
429 printk(KERN_CONT
430 "a previous APIC delivery may have failed\n");
431
Suresh Siddha1b374e42008-07-10 11:16:49 -0700432 apic_icr_write(APIC_DM_REMRD | regs[i], apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300433
434 timeout = 0;
435 do {
436 udelay(100);
437 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
438 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
439
440 switch (status) {
441 case APIC_ICR_RR_VALID:
442 status = apic_read(APIC_RRR);
443 printk(KERN_CONT "%08x\n", status);
444 break;
445 default:
446 printk(KERN_CONT "failed\n");
447 }
448 }
449}
450
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300451/*
452 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
453 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
454 * won't ... remember to clear down the APIC, etc later.
455 */
Cyrill Gorcunovcece3152009-04-18 23:45:28 +0400456int __cpuinit
Yinghai Lu569712b2008-11-16 03:12:49 -0800457wakeup_secondary_cpu_via_nmi(int logical_apicid, unsigned long start_eip)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300458{
459 unsigned long send_status, accept_status = 0;
460 int maxlvt;
461
462 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300463 /* Boot on the stack */
464 /* Kick the second */
Ingo Molnarbdb1a9b2009-01-28 05:29:25 +0100465 apic_icr_write(APIC_DM_NMI | apic->dest_logical, logical_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300466
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200467 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300468 send_status = safe_apic_wait_icr_idle();
469
470 /*
471 * Give the other CPU some time to accept the IPI.
472 */
473 udelay(200);
Yinghai Lu569712b2008-11-16 03:12:49 -0800474 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunov59ef48a2008-09-14 21:58:49 +0400475 maxlvt = lapic_get_maxlvt();
476 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
477 apic_write(APIC_ESR, 0);
478 accept_status = (apic_read(APIC_ESR) & 0xEF);
479 }
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200480 pr_debug("NMI sent.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300481
482 if (send_status)
483 printk(KERN_ERR "APIC never delivered???\n");
484 if (accept_status)
485 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
486
487 return (send_status | accept_status);
488}
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300489
Cyrill Gorcunovcece3152009-04-18 23:45:28 +0400490static int __cpuinit
Yinghai Lu569712b2008-11-16 03:12:49 -0800491wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300492{
493 unsigned long send_status, accept_status = 0;
494 int maxlvt, num_starts, j;
495
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100496 maxlvt = lapic_get_maxlvt();
497
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300498 /*
499 * Be paranoid about clearing APIC errors.
500 */
501 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100502 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
503 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300504 apic_read(APIC_ESR);
505 }
506
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200507 pr_debug("Asserting INIT.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300508
509 /*
510 * Turn INIT on target chip
511 */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300512 /*
513 * Send IPI
514 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700515 apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT,
516 phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300517
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200518 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300519 send_status = safe_apic_wait_icr_idle();
520
521 mdelay(10);
522
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200523 pr_debug("Deasserting INIT.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300524
525 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300526 /* Send IPI */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700527 apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300528
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200529 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300530 send_status = safe_apic_wait_icr_idle();
531
532 mb();
533 atomic_set(&init_deasserted, 1);
534
535 /*
536 * Should we send STARTUP IPIs ?
537 *
538 * Determine this based on the APIC version.
539 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
540 */
541 if (APIC_INTEGRATED(apic_version[phys_apicid]))
542 num_starts = 2;
543 else
544 num_starts = 0;
545
546 /*
547 * Paravirt / VMI wants a startup IPI hook here to set up the
548 * target processor state.
549 */
550 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
H. Peter Anvin11d4c3f2011-02-04 16:14:11 -0800551 stack_start);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300552
553 /*
554 * Run STARTUP IPI loop.
555 */
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200556 pr_debug("#startup loops: %d.\n", num_starts);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300557
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300558 for (j = 1; j <= num_starts; j++) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200559 pr_debug("Sending STARTUP #%d.\n", j);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100560 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
561 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300562 apic_read(APIC_ESR);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200563 pr_debug("After apic_write.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300564
565 /*
566 * STARTUP IPI
567 */
568
569 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300570 /* Boot on the stack */
571 /* Kick the second */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700572 apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12),
573 phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300574
575 /*
576 * Give the other CPU some time to accept the IPI.
577 */
578 udelay(300);
579
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200580 pr_debug("Startup point 1.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300581
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200582 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300583 send_status = safe_apic_wait_icr_idle();
584
585 /*
586 * Give the other CPU some time to accept the IPI.
587 */
588 udelay(200);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100589 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300590 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300591 accept_status = (apic_read(APIC_ESR) & 0xEF);
592 if (send_status || accept_status)
593 break;
594 }
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200595 pr_debug("After Startup.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300596
597 if (send_status)
598 printk(KERN_ERR "APIC never delivered???\n");
599 if (accept_status)
600 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
601
602 return (send_status | accept_status);
603}
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300604
Mike Travis2eaad1f2009-12-10 17:19:36 -0800605/* reduce the number of lines printed when booting a large cpu count system */
606static void __cpuinit announce_cpu(int cpu, int apicid)
607{
608 static int current_node = -1;
Borislav Petkov4adc8b72010-06-01 21:04:55 +0200609 int node = early_cpu_to_node(cpu);
Mike Travis2eaad1f2009-12-10 17:19:36 -0800610
611 if (system_state == SYSTEM_BOOTING) {
612 if (node != current_node) {
613 if (current_node > (-1))
614 pr_cont(" Ok.\n");
615 current_node = node;
616 pr_info("Booting Node %3d, Processors ", node);
617 }
618 pr_cont(" #%d%s", cpu, cpu == (nr_cpu_ids - 1) ? " Ok.\n" : "");
619 return;
620 } else
621 pr_info("Booting Node %d Processor %d APIC 0x%x\n",
622 node, cpu, apicid);
623}
624
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300625/*
626 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
627 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100628 * Returns zero if CPU booted OK, else error code from
629 * ->wakeup_secondary_cpu.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300630 */
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000631static int __cpuinit do_boot_cpu(int apicid, int cpu, struct task_struct *idle)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300632{
633 unsigned long boot_error = 0;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300634 unsigned long start_ip;
Ingo Molnarab6fb7c2009-02-17 16:22:09 +0100635 int timeout;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300636
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300637 alternatives_smp_switch(1);
638
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000639 idle->thread.sp = (unsigned long) (((struct pt_regs *)
640 (THREAD_SIZE + task_stack_page(idle))) - 1);
641 per_cpu(current_task, cpu) = idle;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300642
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900643#ifdef CONFIG_X86_32
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300644 /* Stack for startup_32 can be just as for start_secondary onwards */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300645 irq_ctx_init(cpu);
646#else
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000647 clear_tsk_thread_flag(idle, TIF_FORK);
Tejun Heo004aa322009-01-13 20:41:35 +0900648 initial_gs = per_cpu_offset(cpu);
Brian Gerst9af45652009-01-19 00:38:58 +0900649 per_cpu(kernel_stack, cpu) =
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000650 (unsigned long)task_stack_page(idle) -
Brian Gerst9af45652009-01-19 00:38:58 +0900651 KERNEL_STACK_OFFSET + THREAD_SIZE;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300652#endif
Glauber Costaa9390982008-05-28 16:19:53 -0700653 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
Glauber Costa3e970472008-05-28 13:01:54 -0300654 initial_code = (unsigned long)start_secondary;
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000655 stack_start = idle->thread.sp;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300656
657 /* start_ip had better be page-aligned! */
H. Peter Anvin4822b7f2011-02-14 15:34:57 -0800658 start_ip = trampoline_address();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300659
Mike Travis2eaad1f2009-12-10 17:19:36 -0800660 /* So we see what's up */
661 announce_cpu(cpu, apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300662
663 /*
664 * This grunge runs the startup process for
665 * the targeted processor.
666 */
667
668 atomic_set(&init_deasserted, 0);
669
Jack Steiner34d05592008-04-16 11:45:15 -0500670 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300671
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200672 pr_debug("Setting warm reset code and vector.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300673
Jack Steiner34d05592008-04-16 11:45:15 -0500674 smpboot_setup_warm_reset_vector(start_ip);
675 /*
676 * Be paranoid about clearing APIC errors.
Cyrill Gorcunovdb96b0a2008-10-22 18:00:09 +0400677 */
678 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
679 apic_write(APIC_ESR, 0);
680 apic_read(APIC_ESR);
681 }
Jack Steiner34d05592008-04-16 11:45:15 -0500682 }
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300683
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300684 /*
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100685 * Kick the secondary CPU. Use the method in the APIC driver
686 * if it's defined - or use an INIT boot APIC message otherwise:
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300687 */
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100688 if (apic->wakeup_secondary_cpu)
689 boot_error = apic->wakeup_secondary_cpu(apicid, start_ip);
690 else
691 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300692
693 if (!boot_error) {
694 /*
695 * allow APs to start initializing.
696 */
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200697 pr_debug("Before Callout %d.\n", cpu);
Mike Travisc2d1cec2009-01-04 05:18:03 -0800698 cpumask_set_cpu(cpu, cpu_callout_mask);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200699 pr_debug("After Callout %d.\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300700
701 /*
702 * Wait 5s total for a response
703 */
704 for (timeout = 0; timeout < 50000; timeout++) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800705 if (cpumask_test_cpu(cpu, cpu_callin_mask))
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300706 break; /* It has booted */
707 udelay(100);
Suresh Siddha68f202e2010-07-30 11:46:42 -0700708 /*
709 * Allow other tasks to run while we wait for the
710 * AP to come online. This also gives a chance
711 * for the MTRR work(triggered by the AP coming online)
712 * to be completed in the stop machine context.
713 */
714 schedule();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300715 }
716
Yinghai Lu21c3fcf2012-02-12 09:53:57 -0800717 if (cpumask_test_cpu(cpu, cpu_callin_mask)) {
718 print_cpu_msr(&cpu_data(cpu));
Mike Travis2eaad1f2009-12-10 17:19:36 -0800719 pr_debug("CPU%d: has booted.\n", cpu);
Yinghai Lu21c3fcf2012-02-12 09:53:57 -0800720 } else {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300721 boot_error = 1;
H. Peter Anvin4822b7f2011-02-14 15:34:57 -0800722 if (*(volatile u32 *)TRAMPOLINE_SYM(trampoline_status)
723 == 0xA5A5A5A5)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300724 /* trampoline started but...? */
Mike Travis2eaad1f2009-12-10 17:19:36 -0800725 pr_err("CPU%d: Stuck ??\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300726 else
727 /* trampoline code not run */
Mike Travis2eaad1f2009-12-10 17:19:36 -0800728 pr_err("CPU%d: Not responding.\n", cpu);
Ingo Molnar25dc0042009-01-28 16:31:52 +0100729 if (apic->inquire_remote_apic)
730 apic->inquire_remote_apic(apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300731 }
732 }
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900733
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300734 if (boot_error) {
735 /* Try to put things back the way they were before ... */
Mike Travis23ca4bb2008-05-12 21:21:12 +0200736 numa_remove_cpu(cpu); /* was set by numa_add_cpu */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800737
738 /* was set by do_boot_cpu() */
739 cpumask_clear_cpu(cpu, cpu_callout_mask);
740
741 /* was set by cpu_init() */
742 cpumask_clear_cpu(cpu, cpu_initialized_mask);
743
744 set_cpu_present(cpu, false);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300745 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
746 }
747
748 /* mark "stuck" area as not stuck */
H. Peter Anvin4822b7f2011-02-14 15:34:57 -0800749 *(volatile u32 *)TRAMPOLINE_SYM(trampoline_status) = 0;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300750
Yinghai Lu02421f92009-04-03 17:15:53 -0700751 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
752 /*
753 * Cleanup possible dangling ends...
754 */
755 smpboot_restore_warm_reset_vector();
756 }
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300757 return boot_error;
758}
759
Thomas Gleixner5cdaf182012-04-20 13:05:47 +0000760int __cpuinit native_cpu_up(unsigned int cpu, struct task_struct *tidle)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300761{
Ingo Molnara21769a42009-01-28 06:50:47 +0100762 int apicid = apic->cpu_present_to_apicid(cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300763 unsigned long flags;
764 int err;
765
766 WARN_ON(irqs_disabled());
767
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200768 pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300769
770 if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
Suresh Siddhac284b422011-12-21 17:45:19 -0800771 !physid_isset(apicid, phys_cpu_present_map) ||
Daniel J Bluemanfa630302012-03-14 15:17:34 +0800772 !apic->apic_id_valid(apicid)) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300773 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
774 return -EINVAL;
775 }
776
777 /*
778 * Already booted CPU?
779 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800780 if (cpumask_test_cpu(cpu, cpu_callin_mask)) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200781 pr_debug("do_boot_cpu %d Already started\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300782 return -ENOSYS;
783 }
784
785 /*
786 * Save current MTRR state in case it was changed since early boot
787 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
788 */
789 mtrr_save_state();
790
791 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
792
Thomas Gleixner7eb43a62012-04-20 13:05:48 +0000793 err = do_boot_cpu(apicid, cpu, tidle);
Hugh Dickins61165d72008-05-13 14:26:57 +0100794 if (err) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200795 pr_debug("do_boot_cpu failed %d\n", err);
Hugh Dickins61165d72008-05-13 14:26:57 +0100796 return -EIO;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300797 }
798
799 /*
800 * Check TSC synchronization with the AP (keep irqs disabled
801 * while doing so):
802 */
803 local_irq_save(flags);
804 check_tsc_sync_source(cpu);
805 local_irq_restore(flags);
806
Akinobu Mita7c04e642008-04-19 23:55:17 +0900807 while (!cpu_online(cpu)) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300808 cpu_relax();
809 touch_nmi_watchdog();
810 }
811
812 return 0;
813}
814
Henrik Kretzschmar7167d082011-02-22 15:38:05 +0100815/**
816 * arch_disable_smp_support() - disables SMP support for x86 at runtime
817 */
818void arch_disable_smp_support(void)
819{
820 disable_ioapic_support();
821}
822
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -0300823/*
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300824 * Fall back to non SMP mode after errors.
825 *
826 * RED-PEN audit/test this more. I bet there is more state messed up here.
827 */
828static __init void disable_smp(void)
829{
Rusty Russell4f062892009-03-13 14:49:54 +1030830 init_cpu_present(cpumask_of(0));
831 init_cpu_possible(cpumask_of(0));
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300832 smpboot_clear_io_apic_irqs();
Glauber Costa0f385d12008-05-28 17:09:53 -0700833
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300834 if (smp_found_config)
Jack Steinerb6df1b82008-06-19 21:51:05 -0500835 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300836 else
Jack Steinerb6df1b82008-06-19 21:51:05 -0500837 physid_set_mask_of_physid(0, &phys_cpu_present_map);
Mike Travisc2d1cec2009-01-04 05:18:03 -0800838 cpumask_set_cpu(0, cpu_sibling_mask(0));
839 cpumask_set_cpu(0, cpu_core_mask(0));
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300840}
841
842/*
843 * Various sanity checks.
844 */
845static int __init smp_sanity_check(unsigned max_cpus)
846{
Jack Steinerac23d4e2008-03-28 14:12:16 -0500847 preempt_disable();
Yinghai Lua58f03b2008-08-14 02:16:30 -0700848
Yinghai Lu1ff2f202009-01-29 19:30:04 -0800849#if !defined(CONFIG_X86_BIGSMP) && defined(CONFIG_X86_32)
Yinghai Lua58f03b2008-08-14 02:16:30 -0700850 if (def_to_bigsmp && nr_cpu_ids > 8) {
851 unsigned int cpu;
852 unsigned nr;
853
854 printk(KERN_WARNING
855 "More than 8 CPUs detected - skipping them.\n"
Yinghai Lu26f7ef12009-01-29 14:19:22 -0800856 "Use CONFIG_X86_BIGSMP.\n");
Yinghai Lua58f03b2008-08-14 02:16:30 -0700857
858 nr = 0;
859 for_each_present_cpu(cpu) {
860 if (nr >= 8)
Mike Travisc2d1cec2009-01-04 05:18:03 -0800861 set_cpu_present(cpu, false);
Yinghai Lua58f03b2008-08-14 02:16:30 -0700862 nr++;
863 }
864
865 nr = 0;
866 for_each_possible_cpu(cpu) {
867 if (nr >= 8)
Mike Travisc2d1cec2009-01-04 05:18:03 -0800868 set_cpu_possible(cpu, false);
Yinghai Lua58f03b2008-08-14 02:16:30 -0700869 nr++;
870 }
871
872 nr_cpu_ids = 8;
873 }
874#endif
875
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300876 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
Michael Tokarev55c395b2008-12-05 14:42:20 +0300877 printk(KERN_WARNING
878 "weird, boot CPU (#%d) not listed by the BIOS.\n",
879 hard_smp_processor_id());
880
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300881 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
882 }
883
884 /*
885 * If we couldn't find an SMP configuration at boot time,
886 * get out of here now!
887 */
888 if (!smp_found_config && !acpi_lapic) {
Jack Steinerac23d4e2008-03-28 14:12:16 -0500889 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300890 printk(KERN_NOTICE "SMP motherboard not detected.\n");
891 disable_smp();
892 if (APIC_init_uniprocessor())
893 printk(KERN_NOTICE "Local APIC not detected."
894 " Using dummy APIC emulation.\n");
895 return -1;
896 }
897
898 /*
899 * Should not be necessary because the MP table should list the boot
900 * CPU too, but we do it for the sake of robustness anyway.
901 */
Ingo Molnara27a6212009-01-28 12:43:18 +0100902 if (!apic->check_phys_apicid_present(boot_cpu_physical_apicid)) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300903 printk(KERN_NOTICE
904 "weird, boot CPU (#%d) not listed by the BIOS.\n",
905 boot_cpu_physical_apicid);
906 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
907 }
Jack Steinerac23d4e2008-03-28 14:12:16 -0500908 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300909
910 /*
911 * If we couldn't find a local APIC, then get out of here now!
912 */
913 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
914 !cpu_has_apic) {
Cyrill Gorcunov103428e2009-06-07 16:48:40 +0400915 if (!disable_apic) {
916 pr_err("BIOS bug, local APIC #%d not detected!...\n",
917 boot_cpu_physical_apicid);
918 pr_err("... forcing use of dummy APIC emulation."
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300919 "(tell your hw vendor)\n");
Cyrill Gorcunov103428e2009-06-07 16:48:40 +0400920 }
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300921 smpboot_clear_io_apic();
Henrik Kretzschmar7167d082011-02-22 15:38:05 +0100922 disable_ioapic_support();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300923 return -1;
924 }
925
926 verify_local_APIC();
927
928 /*
929 * If SMP should be disabled, then really disable it!
930 */
931 if (!max_cpus) {
Maciej W. Rozycki73d08e62008-05-21 22:09:43 +0100932 printk(KERN_INFO "SMP mode deactivated.\n");
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300933 smpboot_clear_io_apic();
Maciej W. Rozyckid54db1a2008-06-06 03:28:02 +0100934
Jesse Barnese90955c2008-04-21 14:14:44 -0700935 connect_bsp_APIC();
Jesse Barnese90955c2008-04-21 14:14:44 -0700936 setup_local_APIC();
Jan Beulich2fb270f2011-02-09 08:21:02 +0000937 bsp_end_local_APIC_setup();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300938 return -1;
939 }
940
941 return 0;
942}
943
944static void __init smp_cpu_index_default(void)
945{
946 int i;
947 struct cpuinfo_x86 *c;
948
Akinobu Mita7c04e642008-04-19 23:55:17 +0900949 for_each_possible_cpu(i) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300950 c = &cpu_data(i);
951 /* mark all to hotplug */
Mike Travis96289372008-12-31 18:08:46 -0800952 c->cpu_index = nr_cpu_ids;
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300953 }
954}
955
956/*
957 * Prepare for SMP bootup. The MP table or ACPI has been read
958 * earlier. Just do some sanity checking here and enable APIC mode.
959 */
960void __init native_smp_prepare_cpus(unsigned int max_cpus)
961{
Rusty Russell7ad728f2009-03-13 14:49:50 +1030962 unsigned int i;
963
Ingo Molnardeef3252008-05-12 15:44:38 +0200964 preempt_disable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300965 smp_cpu_index_default();
Yinghai Lu792363d2011-01-21 15:29:54 -0800966
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300967 /*
968 * Setup boot CPU information
969 */
970 smp_store_cpu_info(0); /* Final full version of the data */
Yinghai Lu792363d2011-01-21 15:29:54 -0800971 cpumask_copy(cpu_callin_mask, cpumask_of(0));
972 mb();
Tejun Heobd22a2f2011-01-23 14:37:27 +0100973
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300974 current_thread_info()->cpu = 0; /* needed? */
Rusty Russell7ad728f2009-03-13 14:49:50 +1030975 for_each_possible_cpu(i) {
Li Zefan79f55992009-06-15 14:58:26 +0800976 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
977 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
Yinghai Lub3d73362011-01-21 15:29:44 -0800978 zalloc_cpumask_var(&per_cpu(cpu_llc_shared_map, i), GFP_KERNEL);
Rusty Russell7ad728f2009-03-13 14:49:50 +1030979 }
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300980 set_cpu_sibling_map(0);
981
Suresh Siddha6e1cb382008-07-10 11:16:58 -0700982
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300983 if (smp_sanity_check(max_cpus) < 0) {
984 printk(KERN_INFO "SMP disabled\n");
985 disable_smp();
Ingo Molnardeef3252008-05-12 15:44:38 +0200986 goto out;
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300987 }
988
Suresh Siddhafa47f7e2010-08-27 11:09:50 -0700989 default_setup_apic_routing();
990
Jack Steinerac23d4e2008-03-28 14:12:16 -0500991 preempt_disable();
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700992 if (read_apic_id() != boot_cpu_physical_apicid) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300993 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700994 read_apic_id(), boot_cpu_physical_apicid);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300995 /* Or can we switch back to PIC here? */
996 }
Jack Steinerac23d4e2008-03-28 14:12:16 -0500997 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300998
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300999 connect_bsp_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001000
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001001 /*
1002 * Switch from PIC to APIC mode.
1003 */
1004 setup_local_APIC();
1005
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001006 /*
1007 * Enable IO APIC before setting up error vector
1008 */
1009 if (!skip_ioapic_setup && nr_ioapics)
1010 enable_IO_APIC();
Yinghai Lu88d0f552009-02-14 23:57:28 -08001011
Jan Beulich2fb270f2011-02-09 08:21:02 +00001012 bsp_end_local_APIC_setup();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001013
Ingo Molnard83093b2009-01-28 12:43:18 +01001014 if (apic->setup_portio_remap)
1015 apic->setup_portio_remap();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001016
1017 smpboot_setup_io_apic();
1018 /*
1019 * Set up local APIC timer on boot CPU.
1020 */
1021
1022 printk(KERN_INFO "CPU%d: ", 0);
1023 print_cpu_info(&cpu_data(0));
Thomas Gleixner736deca2009-08-19 12:35:53 +02001024 x86_init.timers.setup_percpu_clockev();
Marcin Slusarzc4bd1fd2008-08-21 20:49:05 +02001025
1026 if (is_uv_system())
1027 uv_system_init();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001028
1029 set_mtrr_aps_delayed_init();
Ingo Molnardeef3252008-05-12 15:44:38 +02001030out:
1031 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001032}
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001033
Suresh Siddha3fb82d52010-11-23 16:11:40 -08001034void arch_disable_nonboot_cpus_begin(void)
1035{
1036 /*
1037 * Avoid the smp alternatives switch during the disable_nonboot_cpus().
1038 * In the suspend path, we will be back in the SMP mode shortly anyways.
1039 */
1040 skip_smp_alternatives = true;
1041}
1042
1043void arch_disable_nonboot_cpus_end(void)
1044{
1045 skip_smp_alternatives = false;
1046}
1047
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001048void arch_enable_nonboot_cpus_begin(void)
1049{
1050 set_mtrr_aps_delayed_init();
1051}
1052
1053void arch_enable_nonboot_cpus_end(void)
1054{
1055 mtrr_aps_init();
1056}
1057
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001058/*
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001059 * Early setup to make printk work.
1060 */
1061void __init native_smp_prepare_boot_cpu(void)
1062{
1063 int me = smp_processor_id();
Brian Gerst552be872009-01-30 17:47:53 +09001064 switch_to_new_gdt(me);
Mike Travisc2d1cec2009-01-04 05:18:03 -08001065 /* already set me in cpu_online_mask in boot_cpu_init() */
1066 cpumask_set_cpu(me, cpu_callout_mask);
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001067 per_cpu(cpu_state, me) = CPU_ONLINE;
1068}
1069
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001070void __init native_smp_cpus_done(unsigned int max_cpus)
1071{
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +02001072 pr_debug("Boot done.\n");
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001073
Don Zickus99e8b9c2011-10-13 15:14:26 -04001074 nmi_selftest();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001075 impress_friends();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001076#ifdef CONFIG_X86_IO_APIC
1077 setup_ioapic_dest();
1078#endif
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001079 mtrr_aps_init();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001080}
1081
Mike Travis3b11ce72008-12-17 15:21:39 -08001082static int __initdata setup_possible_cpus = -1;
1083static int __init _setup_possible_cpus(char *str)
1084{
1085 get_option(&str, &setup_possible_cpus);
1086 return 0;
1087}
1088early_param("possible_cpus", _setup_possible_cpus);
1089
1090
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001091/*
Rusty Russell4f062892009-03-13 14:49:54 +10301092 * cpu_possible_mask should be static, it cannot change as cpu's
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001093 * are onlined, or offlined. The reason is per-cpu data-structures
1094 * are allocated by some modules at init time, and dont expect to
1095 * do this dynamically on cpu arrival/departure.
Rusty Russell4f062892009-03-13 14:49:54 +10301096 * cpu_present_mask on the other hand can change dynamically.
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001097 * In case when cpu_hotplug is not compiled, then we resort to current
1098 * behaviour, which is cpu_possible == cpu_present.
1099 * - Ashok Raj
1100 *
1101 * Three ways to find out the number of additional hotplug CPUs:
1102 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
Mike Travis3b11ce72008-12-17 15:21:39 -08001103 * - The user can overwrite it with possible_cpus=NUM
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001104 * - Otherwise don't reserve additional CPUs.
1105 * We do this because additional CPUs waste a lot of memory.
1106 * -AK
1107 */
1108__init void prefill_possible_map(void)
1109{
Thomas Gleixnercb48bb52008-10-05 17:51:52 +02001110 int i, possible;
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001111
Yinghai Lu329513a2008-07-02 18:54:40 -07001112 /* no processor from mptable or madt */
1113 if (!num_processors)
1114 num_processors = 1;
1115
Jan Beulich5f2eb552010-05-24 12:13:17 -07001116 i = setup_max_cpus ?: 1;
1117 if (setup_possible_cpus == -1) {
1118 possible = num_processors;
1119#ifdef CONFIG_HOTPLUG_CPU
1120 if (setup_max_cpus)
1121 possible += disabled_cpus;
1122#else
1123 if (possible > i)
1124 possible = i;
1125#endif
1126 } else
Mike Travis3b11ce72008-12-17 15:21:39 -08001127 possible = setup_possible_cpus;
1128
Mike Travis730cf272008-12-31 18:08:45 -08001129 total_cpus = max_t(int, possible, num_processors + disabled_cpus);
1130
Yinghai Lu2b633e32010-02-10 01:20:37 -08001131 /* nr_cpu_ids could be reduced via nr_cpus= */
1132 if (possible > nr_cpu_ids) {
Mike Travis3b11ce72008-12-17 15:21:39 -08001133 printk(KERN_WARNING
1134 "%d Processors exceeds NR_CPUS limit of %d\n",
Yinghai Lu2b633e32010-02-10 01:20:37 -08001135 possible, nr_cpu_ids);
1136 possible = nr_cpu_ids;
Mike Travis3b11ce72008-12-17 15:21:39 -08001137 }
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001138
Jan Beulich5f2eb552010-05-24 12:13:17 -07001139#ifdef CONFIG_HOTPLUG_CPU
1140 if (!setup_max_cpus)
1141#endif
1142 if (possible > i) {
1143 printk(KERN_WARNING
1144 "%d Processors exceeds max_cpus limit of %u\n",
1145 possible, setup_max_cpus);
1146 possible = i;
1147 }
1148
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001149 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
1150 possible, max_t(int, possible - num_processors, 0));
1151
1152 for (i = 0; i < possible; i++)
Mike Travisc2d1cec2009-01-04 05:18:03 -08001153 set_cpu_possible(i, true);
Jan Beulich5f2eb552010-05-24 12:13:17 -07001154 for (; i < NR_CPUS; i++)
1155 set_cpu_possible(i, false);
Mike Travis3461b0a2008-05-12 21:21:13 +02001156
1157 nr_cpu_ids = possible;
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001158}
Glauber Costa69c18c12008-03-03 14:13:07 -03001159
Chuck Ebbert14adf852008-09-29 18:29:42 -04001160#ifdef CONFIG_HOTPLUG_CPU
1161
1162static void remove_siblinginfo(int cpu)
1163{
1164 int sibling;
1165 struct cpuinfo_x86 *c = &cpu_data(cpu);
1166
Mike Travisc2d1cec2009-01-04 05:18:03 -08001167 for_each_cpu(sibling, cpu_core_mask(cpu)) {
1168 cpumask_clear_cpu(cpu, cpu_core_mask(sibling));
Chuck Ebbert14adf852008-09-29 18:29:42 -04001169 /*/
1170 * last thread sibling in this cpu core going down
1171 */
Mike Travisc2d1cec2009-01-04 05:18:03 -08001172 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1)
Chuck Ebbert14adf852008-09-29 18:29:42 -04001173 cpu_data(sibling).booted_cores--;
1174 }
1175
Mike Travisc2d1cec2009-01-04 05:18:03 -08001176 for_each_cpu(sibling, cpu_sibling_mask(cpu))
1177 cpumask_clear_cpu(cpu, cpu_sibling_mask(sibling));
1178 cpumask_clear(cpu_sibling_mask(cpu));
1179 cpumask_clear(cpu_core_mask(cpu));
Chuck Ebbert14adf852008-09-29 18:29:42 -04001180 c->phys_proc_id = 0;
1181 c->cpu_core_id = 0;
Mike Travisc2d1cec2009-01-04 05:18:03 -08001182 cpumask_clear_cpu(cpu, cpu_sibling_setup_mask);
Chuck Ebbert14adf852008-09-29 18:29:42 -04001183}
1184
Glauber Costa69c18c12008-03-03 14:13:07 -03001185static void __ref remove_cpu_from_maps(int cpu)
1186{
Mike Travisc2d1cec2009-01-04 05:18:03 -08001187 set_cpu_online(cpu, false);
1188 cpumask_clear_cpu(cpu, cpu_callout_mask);
1189 cpumask_clear_cpu(cpu, cpu_callin_mask);
Glauber Costa69c18c12008-03-03 14:13:07 -03001190 /* was set by cpu_init() */
Mike Travisc2d1cec2009-01-04 05:18:03 -08001191 cpumask_clear_cpu(cpu, cpu_initialized_mask);
Mike Travis23ca4bb2008-05-12 21:21:12 +02001192 numa_remove_cpu(cpu);
Glauber Costa69c18c12008-03-03 14:13:07 -03001193}
1194
Alex Nixon8227dce2008-08-22 11:52:14 +01001195void cpu_disable_common(void)
1196{
1197 int cpu = smp_processor_id();
Alex Nixon8227dce2008-08-22 11:52:14 +01001198
Alex Nixon8227dce2008-08-22 11:52:14 +01001199 remove_siblinginfo(cpu);
1200
1201 /* It's now safe to remove this processor from the online map */
1202 lock_vector_lock();
1203 remove_cpu_from_maps(cpu);
1204 unlock_vector_lock();
Mike Travisd7b381b2008-12-16 17:33:58 -08001205 fixup_irqs();
Alex Nixon8227dce2008-08-22 11:52:14 +01001206}
1207
Alex Nixon93be71b2008-08-22 11:52:11 +01001208int native_cpu_disable(void)
Glauber Costa69c18c12008-03-03 14:13:07 -03001209{
1210 int cpu = smp_processor_id();
1211
1212 /*
1213 * Perhaps use cpufreq to drop frequency, but that could go
1214 * into generic code.
1215 *
1216 * We won't take down the boot processor on i386 due to some
1217 * interrupts only being able to be serviced by the BSP.
1218 * Especially so if we're not using an IOAPIC -zwane
1219 */
1220 if (cpu == 0)
1221 return -EBUSY;
1222
Glauber Costa69c18c12008-03-03 14:13:07 -03001223 clear_local_APIC();
1224
Alex Nixon8227dce2008-08-22 11:52:14 +01001225 cpu_disable_common();
Glauber Costa69c18c12008-03-03 14:13:07 -03001226 return 0;
1227}
1228
Alex Nixon93be71b2008-08-22 11:52:11 +01001229void native_cpu_die(unsigned int cpu)
Glauber Costa69c18c12008-03-03 14:13:07 -03001230{
1231 /* We don't do anything here: idle task is faking death itself. */
1232 unsigned int i;
1233
1234 for (i = 0; i < 10; i++) {
1235 /* They ack this in play_dead by setting CPU_DEAD */
1236 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
Mike Travis2eaad1f2009-12-10 17:19:36 -08001237 if (system_state == SYSTEM_RUNNING)
1238 pr_info("CPU %u is now offline\n", cpu);
1239
Glauber Costa69c18c12008-03-03 14:13:07 -03001240 if (1 == num_online_cpus())
1241 alternatives_smp_switch(0);
1242 return;
1243 }
1244 msleep(100);
1245 }
Mike Travis2eaad1f2009-12-10 17:19:36 -08001246 pr_err("CPU %u didn't die...\n", cpu);
Glauber Costa69c18c12008-03-03 14:13:07 -03001247}
Alex Nixona21f5d82008-08-22 11:52:13 +01001248
1249void play_dead_common(void)
1250{
1251 idle_task_exit();
1252 reset_lazy_tlbstate();
Len Brown02c68a02011-04-01 16:59:53 -04001253 amd_e400_remove_cpu(raw_smp_processor_id());
Alex Nixona21f5d82008-08-22 11:52:13 +01001254
1255 mb();
1256 /* Ack it */
Tejun Heo0a3aee02010-12-18 16:28:55 +01001257 __this_cpu_write(cpu_state, CPU_DEAD);
Alex Nixona21f5d82008-08-22 11:52:13 +01001258
1259 /*
1260 * With physical CPU hotplug, we should halt the cpu
1261 */
1262 local_irq_disable();
1263}
1264
H. Peter Anvinea530692010-09-17 15:39:11 -07001265/*
1266 * We need to flush the caches before going to sleep, lest we have
1267 * dirty data in our caches when we come back up.
1268 */
1269static inline void mwait_play_dead(void)
1270{
1271 unsigned int eax, ebx, ecx, edx;
1272 unsigned int highest_cstate = 0;
1273 unsigned int highest_subcstate = 0;
1274 int i;
H. Peter Anvince5f6822010-09-20 13:04:45 -07001275 void *mwait_ptr;
Borislav Petkov93789b32011-01-20 15:42:52 +01001276 struct cpuinfo_x86 *c = __this_cpu_ptr(&cpu_info);
H. Peter Anvinea530692010-09-17 15:39:11 -07001277
Avi Kivity4f3c1252011-05-30 08:23:57 -04001278 if (!(this_cpu_has(X86_FEATURE_MWAIT) && mwait_usable(c)))
H. Peter Anvinea530692010-09-17 15:39:11 -07001279 return;
Christoph Lameter349c0042011-03-12 12:50:10 +01001280 if (!this_cpu_has(X86_FEATURE_CLFLSH))
H. Peter Anvince5f6822010-09-20 13:04:45 -07001281 return;
Tejun Heo7b543a52010-12-18 16:30:05 +01001282 if (__this_cpu_read(cpu_info.cpuid_level) < CPUID_MWAIT_LEAF)
H. Peter Anvinea530692010-09-17 15:39:11 -07001283 return;
1284
1285 eax = CPUID_MWAIT_LEAF;
1286 ecx = 0;
1287 native_cpuid(&eax, &ebx, &ecx, &edx);
1288
1289 /*
1290 * eax will be 0 if EDX enumeration is not valid.
1291 * Initialized below to cstate, sub_cstate value when EDX is valid.
1292 */
1293 if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED)) {
1294 eax = 0;
1295 } else {
1296 edx >>= MWAIT_SUBSTATE_SIZE;
1297 for (i = 0; i < 7 && edx; i++, edx >>= MWAIT_SUBSTATE_SIZE) {
1298 if (edx & MWAIT_SUBSTATE_MASK) {
1299 highest_cstate = i;
1300 highest_subcstate = edx & MWAIT_SUBSTATE_MASK;
1301 }
1302 }
1303 eax = (highest_cstate << MWAIT_SUBSTATE_SIZE) |
1304 (highest_subcstate - 1);
1305 }
1306
H. Peter Anvince5f6822010-09-20 13:04:45 -07001307 /*
1308 * This should be a memory location in a cache line which is
1309 * unlikely to be touched by other processors. The actual
1310 * content is immaterial as it is not actually modified in any way.
1311 */
1312 mwait_ptr = &current_thread_info()->flags;
1313
H. Peter Anvina68e5c92010-09-17 17:06:46 -07001314 wbinvd();
1315
H. Peter Anvinea530692010-09-17 15:39:11 -07001316 while (1) {
H. Peter Anvince5f6822010-09-20 13:04:45 -07001317 /*
1318 * The CLFLUSH is a workaround for erratum AAI65 for
1319 * the Xeon 7400 series. It's not clear it is actually
1320 * needed, but it should be harmless in either case.
1321 * The WBINVD is insufficient due to the spurious-wakeup
1322 * case where we return around the loop.
1323 */
1324 clflush(mwait_ptr);
1325 __monitor(mwait_ptr, 0, 0);
H. Peter Anvinea530692010-09-17 15:39:11 -07001326 mb();
1327 __mwait(eax, 0);
1328 }
1329}
1330
1331static inline void hlt_play_dead(void)
1332{
Tejun Heo7b543a52010-12-18 16:30:05 +01001333 if (__this_cpu_read(cpu_info.x86) >= 4)
H. Peter Anvina68e5c92010-09-17 17:06:46 -07001334 wbinvd();
1335
H. Peter Anvinea530692010-09-17 15:39:11 -07001336 while (1) {
H. Peter Anvinea530692010-09-17 15:39:11 -07001337 native_halt();
1338 }
1339}
1340
Alex Nixona21f5d82008-08-22 11:52:13 +01001341void native_play_dead(void)
1342{
1343 play_dead_common();
Joseph Cihula86886e52009-06-30 19:31:07 -07001344 tboot_shutdown(TB_SHUTDOWN_WFS);
H. Peter Anvinea530692010-09-17 15:39:11 -07001345
1346 mwait_play_dead(); /* Only returns on failure */
Boris Ostrovsky1a022e32012-03-13 19:55:09 +01001347 if (cpuidle_play_dead())
1348 hlt_play_dead();
Alex Nixona21f5d82008-08-22 11:52:13 +01001349}
1350
Glauber Costa69c18c12008-03-03 14:13:07 -03001351#else /* ... !CONFIG_HOTPLUG_CPU */
Alex Nixon93be71b2008-08-22 11:52:11 +01001352int native_cpu_disable(void)
Glauber Costa69c18c12008-03-03 14:13:07 -03001353{
1354 return -ENOSYS;
1355}
1356
Alex Nixon93be71b2008-08-22 11:52:11 +01001357void native_cpu_die(unsigned int cpu)
Glauber Costa69c18c12008-03-03 14:13:07 -03001358{
1359 /* We said "no" in __cpu_disable */
1360 BUG();
1361}
Alex Nixona21f5d82008-08-22 11:52:13 +01001362
1363void native_play_dead(void)
1364{
1365 BUG();
1366}
1367
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001368#endif