blob: abf4a86ffc54fc66ebd55bda0956cbacdd90283b [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>
Glauber Costa69c18c12008-03-03 14:13:07 -030053
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -030054#include <asm/acpi.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030055#include <asm/desc.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030056#include <asm/nmi.h>
57#include <asm/irq.h>
Ingo Molnar07bbc162008-09-23 23:26:42 +020058#include <asm/idle.h>
Pavel Macheke44b7b72008-04-10 23:28:10 +020059#include <asm/trampoline.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030060#include <asm/cpu.h>
61#include <asm/numa.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030062#include <asm/pgtable.h>
63#include <asm/tlbflush.h>
64#include <asm/mtrr.h>
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -030065#include <asm/vmi.h>
Ingo Molnar7b6aa332009-02-17 13:58:15 +010066#include <asm/apic.h>
Yinghai Lu569712b2008-11-16 03:12:49 -080067#include <asm/setup.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090068#include <asm/uv/uv.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030069#include <linux/mc146818rtc.h>
Glauber Costa68a1c3f2008-03-03 14:12:42 -030070
Ingo Molnar1164dd02009-01-28 19:34:09 +010071#include <asm/smpboot_hooks.h>
Jacob Panb81bb372009-11-09 11:27:04 -080072#include <asm/i8259.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030073
Alexey Starikovskiy16ecf7a2008-04-04 23:41:00 +040074#ifdef CONFIG_X86_32
Glauber de Oliveira Costa4cedb332008-03-19 14:26:14 -030075u8 apicid_2_node[MAX_APICID];
Glauber de Oliveira Costaacbb6732008-03-19 14:26:13 -030076#endif
77
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -030078/* State of each CPU */
79DEFINE_PER_CPU(int, cpu_state) = { 0 };
80
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030081/* Store all idle threads, this can be reused instead of creating
82* a new thread. Also avoids complicated thread destroy functionality
83* for idle threads.
84*/
85#ifdef CONFIG_HOTPLUG_CPU
86/*
87 * Needed only for CONFIG_HOTPLUG_CPU because __cpuinitdata is
88 * removed after init for !CONFIG_HOTPLUG_CPU.
89 */
90static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
91#define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x))
92#define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p))
93#else
Jaswinder Singhf86c9982008-07-25 10:52:53 +053094static struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030095#define get_idle_for_cpu(x) (idle_thread_array[(x)])
96#define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
97#endif
Glauber de Oliveira Costaf6bc4022008-03-19 14:25:53 -030098
Glauber Costaa3553522008-03-03 14:12:58 -030099/* Number of siblings per CPU package */
100int smp_num_siblings = 1;
101EXPORT_SYMBOL(smp_num_siblings);
102
103/* Last level cache ID of each logical CPU */
104DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
105
Glauber Costaa3553522008-03-03 14:12:58 -0300106/* representing HT siblings of each logical CPU */
Rusty Russell7ad728f2009-03-13 14:49:50 +1030107DEFINE_PER_CPU(cpumask_var_t, cpu_sibling_map);
Glauber Costaa3553522008-03-03 14:12:58 -0300108EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
109
110/* representing HT and core siblings of each logical CPU */
Rusty Russell7ad728f2009-03-13 14:49:50 +1030111DEFINE_PER_CPU(cpumask_var_t, cpu_core_map);
Glauber Costaa3553522008-03-03 14:12:58 -0300112EXPORT_PER_CPU_SYMBOL(cpu_core_map);
113
114/* Per CPU bogomips and other parameters */
115DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
116EXPORT_PER_CPU_SYMBOL(cpu_info);
Glauber Costa768d9502008-03-03 14:13:02 -0300117
Yinghai Lu2b6163b2009-02-25 20:50:49 -0800118atomic_t init_deasserted;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300119
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300120#if defined(CONFIG_NUMA) && defined(CONFIG_X86_32)
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300121/* which node each logical CPU is on */
122int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
123EXPORT_SYMBOL(cpu_to_node_map);
124
125/* set up a mapping between cpu and node. */
126static void map_cpu_to_node(int cpu, int node)
127{
128 printk(KERN_INFO "Mapping cpu %d to node %d\n", cpu, node);
Rusty Russellc032ef602009-03-13 14:49:53 +1030129 cpumask_set_cpu(cpu, node_to_cpumask_map[node]);
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300130 cpu_to_node_map[cpu] = node;
131}
132
133/* undo a mapping between cpu and node. */
134static void unmap_cpu_to_node(int cpu)
135{
136 int node;
137
138 printk(KERN_INFO "Unmapping cpu %d from all nodes\n", cpu);
139 for (node = 0; node < MAX_NUMNODES; node++)
Rusty Russellc032ef602009-03-13 14:49:53 +1030140 cpumask_clear_cpu(cpu, node_to_cpumask_map[node]);
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300141 cpu_to_node_map[cpu] = 0;
142}
143#else /* !(CONFIG_NUMA && CONFIG_X86_32) */
144#define map_cpu_to_node(cpu, node) ({})
145#define unmap_cpu_to_node(cpu) ({})
146#endif
147
148#ifdef CONFIG_X86_32
Suresh Siddha1b374e42008-07-10 11:16:49 -0700149static int boot_cpu_logical_apicid;
150
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300151u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly =
152 { [0 ... NR_CPUS-1] = BAD_APICID };
153
Ingo Molnara4928cf2008-04-23 13:20:56 +0200154static void map_cpu_to_logical_apicid(void)
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300155{
156 int cpu = smp_processor_id();
157 int apicid = logical_smp_processor_id();
Ingo Molnar3f57a312009-01-28 06:50:47 +0100158 int node = apic->apicid_to_node(apicid);
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300159
160 if (!node_online(node))
161 node = first_online_node;
162
163 cpu_2_logical_apicid[cpu] = apicid;
164 map_cpu_to_node(cpu, node);
165}
166
Glauber Costa1481a3d2008-06-04 15:35:03 -0300167void numa_remove_cpu(int cpu)
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300168{
169 cpu_2_logical_apicid[cpu] = BAD_APICID;
170 unmap_cpu_to_node(cpu);
171}
172#else
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300173#define map_cpu_to_logical_apicid() do {} while (0)
174#endif
175
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300176/*
177 * Report back to the Boot Processor.
178 * Running on AP.
179 */
Ingo Molnara4928cf2008-04-23 13:20:56 +0200180static void __cpuinit smp_callin(void)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300181{
182 int cpuid, phys_id;
183 unsigned long timeout;
184
185 /*
186 * If waken up by an INIT in an 82489DX configuration
187 * we may get here before an INIT-deassert IPI reaches
188 * our local APIC. We have to wait for the IPI or we'll
189 * lock up on an APIC access.
190 */
Ingo Molnara9659362009-01-28 16:21:32 +0100191 if (apic->wait_for_init_deassert)
192 apic->wait_for_init_deassert(&init_deasserted);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300193
194 /*
195 * (This works even if the APIC is not enabled.)
196 */
Yinghai Lu4c9961d2008-07-11 18:44:16 -0700197 phys_id = read_apic_id();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300198 cpuid = smp_processor_id();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800199 if (cpumask_test_cpu(cpuid, cpu_callin_mask)) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300200 panic("%s: phys CPU#%d, CPU#%d already present??\n", __func__,
201 phys_id, cpuid);
202 }
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200203 pr_debug("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300204
205 /*
206 * STARTUP IPIs are fragile beasts as they might sometimes
207 * trigger some glue motherboard logic. Complete APIC bus
208 * silence for 1 second, this overestimates the time the
209 * boot CPU is spending to send the up to 2 STARTUP IPIs
210 * by a factor of two. This should be enough.
211 */
212
213 /*
214 * Waiting 2s total for startup (udelay is not yet working)
215 */
216 timeout = jiffies + 2*HZ;
217 while (time_before(jiffies, timeout)) {
218 /*
219 * Has the boot CPU finished it's STARTUP sequence?
220 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800221 if (cpumask_test_cpu(cpuid, cpu_callout_mask))
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300222 break;
223 cpu_relax();
224 }
225
226 if (!time_before(jiffies, timeout)) {
227 panic("%s: CPU%d started up but did not get a callout!\n",
228 __func__, cpuid);
229 }
230
231 /*
232 * the boot CPU has finished the init stage and is spinning
233 * on callin_map until we finish. We are free to set up this
234 * CPU, first the APIC. (this is probably redundant on most
235 * boards)
236 */
237
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200238 pr_debug("CALLIN, before setup_local_APIC().\n");
Ingo Molnar333344d2009-01-28 16:31:52 +0100239 if (apic->smp_callin_clear_local_apic)
240 apic->smp_callin_clear_local_apic();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300241 setup_local_APIC();
242 end_local_APIC_setup();
243 map_cpu_to_logical_apicid();
244
Suresh Siddha9d133e52010-01-29 11:42:21 -0800245 /*
246 * Need to setup vector mappings before we enable interrupts.
247 */
Suresh Siddha36e9e1e2010-03-15 14:33:06 -0800248 setup_vector_irq(smp_processor_id());
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300249 /*
250 * Get our bogomips.
251 *
252 * Need to enable IRQs because it can take longer and then
253 * the NMI watchdog might kill us.
254 */
255 local_irq_enable();
256 calibrate_delay();
257 local_irq_disable();
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200258 pr_debug("Stack at about %p\n", &cpuid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300259
260 /*
261 * Save our processor parameters
262 */
263 smp_store_cpu_info(cpuid);
264
Peter Zijlstra85257022010-03-23 19:30:52 +0100265 notify_cpu_starting(cpuid);
266
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300267 /*
268 * Allow the master to continue.
269 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800270 cpumask_set_cpu(cpuid, cpu_callin_mask);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300271}
272
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300273/*
274 * Activate a secondary processor.
275 */
Frederic Weisbecker0ca59dd2008-12-24 23:30:02 +0100276notrace static void __cpuinit start_secondary(void *unused)
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300277{
278 /*
279 * Don't put *anything* before cpu_init(), SMP booting is too
280 * fragile that we want to limit the things done here to the
281 * most necessary things.
282 */
Joerg Roedelfd89a132010-08-16 14:38:33 +0200283
284#ifdef CONFIG_X86_32
285 /*
286 * Switch away from the trampoline page-table
287 *
288 * Do this before cpu_init() because it needs to access per-cpu
289 * data which may not be mapped in the trampoline page-table.
290 */
291 load_cr3(swapper_pg_dir);
292 __flush_tlb_all();
293#endif
294
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300295 vmi_bringup();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300296 cpu_init();
297 preempt_disable();
298 smp_callin();
299
300 /* otherwise gcc will move up smp_processor_id before the cpu_init */
301 barrier();
302 /*
303 * Check TSC synchronization with the BP:
304 */
305 check_tsc_sync_target();
306
307 if (nmi_watchdog == NMI_IO_APIC) {
Jacob Panb81bb372009-11-09 11:27:04 -0800308 legacy_pic->chip->mask(0);
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300309 enable_NMI_through_LVT0();
Jacob Panb81bb372009-11-09 11:27:04 -0800310 legacy_pic->chip->unmask(0);
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300311 }
312
Rusty Russell4f062892009-03-13 14:49:54 +1030313 /* This must be done before setting cpu_online_mask */
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300314 set_cpu_sibling_map(raw_smp_processor_id());
315 wmb();
316
317 /*
318 * We need to hold call_lock, so there is no inconsistency
319 * between the time smp_call_function() determines number of
320 * IPI recipients, and the time when the determination is made
321 * for which cpus receive the IPI. Holding this
322 * lock helps us to not include this cpu in a currently in progress
323 * smp_call_function().
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700324 *
325 * We need to hold vector_lock so there the set of online cpus
326 * does not change while we are assigning vectors to cpus. Holding
327 * this lock ensures we don't half assign or remove an irq from a cpu.
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300328 */
Manfred Spraul0cefa5b2008-09-07 11:29:58 +0200329 ipi_call_lock();
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700330 lock_vector_lock();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800331 set_cpu_online(smp_processor_id(), true);
Eric W. Biedermand388e5f2008-08-09 15:09:02 -0700332 unlock_vector_lock();
Manfred Spraul0cefa5b2008-09-07 11:29:58 +0200333 ipi_call_unlock();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300334 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Russ Anderson78c06172010-02-26 10:49:12 -0600335 x86_platform.nmi_init();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300336
Manfred Spraul0cefa5b2008-09-07 11:29:58 +0200337 /* enable local interrupts */
338 local_irq_enable();
339
Jacob Pan35f720c2009-09-17 07:36:43 -0700340 /* to prevent fake stack check failure in clock setup */
341 boot_init_stack_canary();
342
Thomas Gleixner736deca2009-08-19 12:35:53 +0200343 x86_cpuinit.setup_percpu_clockev();
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300344
345 wmb();
346 cpu_idle();
347}
348
Rusty Russell155dd722009-03-13 14:49:53 +1030349#ifdef CONFIG_CPUMASK_OFFSTACK
350/* In this case, llc_shared_map is a pointer to a cpumask. */
351static inline void copy_cpuinfo_x86(struct cpuinfo_x86 *dst,
352 const struct cpuinfo_x86 *src)
353{
354 struct cpumask *llc = dst->llc_shared_map;
355 *dst = *src;
356 dst->llc_shared_map = llc;
357}
358#else
359static inline void copy_cpuinfo_x86(struct cpuinfo_x86 *dst,
360 const struct cpuinfo_x86 *src)
361{
362 *dst = *src;
363}
364#endif /* CONFIG_CPUMASK_OFFSTACK */
365
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300366/*
367 * The bootstrap kernel entry code has set these up. Save them for
368 * a given CPU
369 */
370
371void __cpuinit smp_store_cpu_info(int id)
372{
373 struct cpuinfo_x86 *c = &cpu_data(id);
374
Rusty Russell155dd722009-03-13 14:49:53 +1030375 copy_cpuinfo_x86(c, &boot_cpu_data);
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300376 c->cpu_index = id;
377 if (id != 0)
378 identify_secondary_cpu(c);
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300379}
380
381
Glauber Costa768d9502008-03-03 14:13:02 -0300382void __cpuinit set_cpu_sibling_map(int cpu)
383{
384 int i;
385 struct cpuinfo_x86 *c = &cpu_data(cpu);
386
Mike Travisc2d1cec2009-01-04 05:18:03 -0800387 cpumask_set_cpu(cpu, cpu_sibling_setup_mask);
Glauber Costa768d9502008-03-03 14:13:02 -0300388
389 if (smp_num_siblings > 1) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800390 for_each_cpu(i, cpu_sibling_setup_mask) {
391 struct cpuinfo_x86 *o = &cpu_data(i);
392
393 if (c->phys_proc_id == o->phys_proc_id &&
394 c->cpu_core_id == o->cpu_core_id) {
395 cpumask_set_cpu(i, cpu_sibling_mask(cpu));
396 cpumask_set_cpu(cpu, cpu_sibling_mask(i));
397 cpumask_set_cpu(i, cpu_core_mask(cpu));
398 cpumask_set_cpu(cpu, cpu_core_mask(i));
Rusty Russell155dd722009-03-13 14:49:53 +1030399 cpumask_set_cpu(i, c->llc_shared_map);
400 cpumask_set_cpu(cpu, o->llc_shared_map);
Glauber Costa768d9502008-03-03 14:13:02 -0300401 }
402 }
403 } else {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800404 cpumask_set_cpu(cpu, cpu_sibling_mask(cpu));
Glauber Costa768d9502008-03-03 14:13:02 -0300405 }
406
Rusty Russell155dd722009-03-13 14:49:53 +1030407 cpumask_set_cpu(cpu, c->llc_shared_map);
Glauber Costa768d9502008-03-03 14:13:02 -0300408
409 if (current_cpu_data.x86_max_cores == 1) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800410 cpumask_copy(cpu_core_mask(cpu), cpu_sibling_mask(cpu));
Glauber Costa768d9502008-03-03 14:13:02 -0300411 c->booted_cores = 1;
412 return;
413 }
414
Mike Travisc2d1cec2009-01-04 05:18:03 -0800415 for_each_cpu(i, cpu_sibling_setup_mask) {
Glauber Costa768d9502008-03-03 14:13:02 -0300416 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
417 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
Rusty Russell155dd722009-03-13 14:49:53 +1030418 cpumask_set_cpu(i, c->llc_shared_map);
419 cpumask_set_cpu(cpu, cpu_data(i).llc_shared_map);
Glauber Costa768d9502008-03-03 14:13:02 -0300420 }
421 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800422 cpumask_set_cpu(i, cpu_core_mask(cpu));
423 cpumask_set_cpu(cpu, cpu_core_mask(i));
Glauber Costa768d9502008-03-03 14:13:02 -0300424 /*
425 * Does this new cpu bringup a new core?
426 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800427 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1) {
Glauber Costa768d9502008-03-03 14:13:02 -0300428 /*
429 * for each core in package, increment
430 * the booted_cores for this new cpu
431 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800432 if (cpumask_first(cpu_sibling_mask(i)) == i)
Glauber Costa768d9502008-03-03 14:13:02 -0300433 c->booted_cores++;
434 /*
435 * increment the core count for all
436 * the other cpus in this package
437 */
438 if (i != cpu)
439 cpu_data(i).booted_cores++;
440 } else if (i != cpu && !c->booted_cores)
441 c->booted_cores = cpu_data(i).booted_cores;
442 }
443 }
444}
445
Glauber Costa70708a12008-03-03 14:13:03 -0300446/* maps the cpu to the sched domain representing multi-core */
Rusty Russell030bb202008-12-26 22:23:41 +1030447const struct cpumask *cpu_coregroup_mask(int cpu)
Glauber Costa70708a12008-03-03 14:13:03 -0300448{
449 struct cpuinfo_x86 *c = &cpu_data(cpu);
450 /*
451 * For perf, we return last level cache shared map.
452 * And for power savings, we return cpu_core_map
453 */
Andreas Herrmann5a925b42009-09-03 09:44:28 +0200454 if ((sched_mc_power_savings || sched_smt_power_savings) &&
455 !(cpu_has(c, X86_FEATURE_AMD_DCM)))
Mike Travisc2d1cec2009-01-04 05:18:03 -0800456 return cpu_core_mask(cpu);
Glauber Costa70708a12008-03-03 14:13:03 -0300457 else
Rusty Russell155dd722009-03-13 14:49:53 +1030458 return c->llc_shared_map;
Rusty Russell030bb202008-12-26 22:23:41 +1030459}
460
Ingo Molnara4928cf2008-04-23 13:20:56 +0200461static void impress_friends(void)
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300462{
463 int cpu;
464 unsigned long bogosum = 0;
465 /*
466 * Allow the user to impress friends.
467 */
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200468 pr_debug("Before bogomips.\n");
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300469 for_each_possible_cpu(cpu)
Mike Travisc2d1cec2009-01-04 05:18:03 -0800470 if (cpumask_test_cpu(cpu, cpu_callout_mask))
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300471 bogosum += cpu_data(cpu).loops_per_jiffy;
472 printk(KERN_INFO
473 "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
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200478 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 };
484 char *names[] = { "ID", "VERSION", "SPIV" };
485 int timeout;
486 u32 status;
487
Yinghai Lu823b2592008-09-10 21:56:46 -0700488 printk(KERN_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++) {
Yinghai Lu823b2592008-09-10 21:56:46 -0700491 printk(KERN_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)
498 printk(KERN_CONT
499 "a previous APIC delivery may have failed\n");
500
Suresh Siddha1b374e42008-07-10 11:16:49 -0700501 apic_icr_write(APIC_DM_REMRD | regs[i], apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300502
503 timeout = 0;
504 do {
505 udelay(100);
506 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
507 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
508
509 switch (status) {
510 case APIC_ICR_RR_VALID:
511 status = apic_read(APIC_RRR);
512 printk(KERN_CONT "%08x\n", status);
513 break;
514 default:
515 printk(KERN_CONT "failed\n");
516 }
517 }
518}
519
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300520/*
521 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
522 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
523 * won't ... remember to clear down the APIC, etc later.
524 */
Cyrill Gorcunovcece3152009-04-18 23:45:28 +0400525int __cpuinit
Yinghai Lu569712b2008-11-16 03:12:49 -0800526wakeup_secondary_cpu_via_nmi(int logical_apicid, unsigned long start_eip)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300527{
528 unsigned long send_status, accept_status = 0;
529 int maxlvt;
530
531 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300532 /* Boot on the stack */
533 /* Kick the second */
Ingo Molnarbdb1a9b2009-01-28 05:29:25 +0100534 apic_icr_write(APIC_DM_NMI | apic->dest_logical, logical_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300535
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200536 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300537 send_status = safe_apic_wait_icr_idle();
538
539 /*
540 * Give the other CPU some time to accept the IPI.
541 */
542 udelay(200);
Yinghai Lu569712b2008-11-16 03:12:49 -0800543 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
Cyrill Gorcunov59ef48a2008-09-14 21:58:49 +0400544 maxlvt = lapic_get_maxlvt();
545 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
546 apic_write(APIC_ESR, 0);
547 accept_status = (apic_read(APIC_ESR) & 0xEF);
548 }
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200549 pr_debug("NMI sent.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300550
551 if (send_status)
552 printk(KERN_ERR "APIC never delivered???\n");
553 if (accept_status)
554 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
555
556 return (send_status | accept_status);
557}
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300558
Cyrill Gorcunovcece3152009-04-18 23:45:28 +0400559static int __cpuinit
Yinghai Lu569712b2008-11-16 03:12:49 -0800560wakeup_secondary_cpu_via_init(int phys_apicid, unsigned long start_eip)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300561{
562 unsigned long send_status, accept_status = 0;
563 int maxlvt, num_starts, j;
564
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100565 maxlvt = lapic_get_maxlvt();
566
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300567 /*
568 * Be paranoid about clearing APIC errors.
569 */
570 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100571 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
572 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300573 apic_read(APIC_ESR);
574 }
575
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200576 pr_debug("Asserting INIT.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300577
578 /*
579 * Turn INIT on target chip
580 */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300581 /*
582 * Send IPI
583 */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700584 apic_icr_write(APIC_INT_LEVELTRIG | APIC_INT_ASSERT | APIC_DM_INIT,
585 phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300586
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200587 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300588 send_status = safe_apic_wait_icr_idle();
589
590 mdelay(10);
591
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200592 pr_debug("Deasserting INIT.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300593
594 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300595 /* Send IPI */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700596 apic_icr_write(APIC_INT_LEVELTRIG | APIC_DM_INIT, phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300597
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200598 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300599 send_status = safe_apic_wait_icr_idle();
600
601 mb();
602 atomic_set(&init_deasserted, 1);
603
604 /*
605 * Should we send STARTUP IPIs ?
606 *
607 * Determine this based on the APIC version.
608 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
609 */
610 if (APIC_INTEGRATED(apic_version[phys_apicid]))
611 num_starts = 2;
612 else
613 num_starts = 0;
614
615 /*
616 * Paravirt / VMI wants a startup IPI hook here to set up the
617 * target processor state.
618 */
619 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300620 (unsigned long)stack_start.sp);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300621
622 /*
623 * Run STARTUP IPI loop.
624 */
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200625 pr_debug("#startup loops: %d.\n", num_starts);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300626
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300627 for (j = 1; j <= num_starts; j++) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200628 pr_debug("Sending STARTUP #%d.\n", j);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100629 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
630 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300631 apic_read(APIC_ESR);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200632 pr_debug("After apic_write.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300633
634 /*
635 * STARTUP IPI
636 */
637
638 /* Target chip */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300639 /* Boot on the stack */
640 /* Kick the second */
Suresh Siddha1b374e42008-07-10 11:16:49 -0700641 apic_icr_write(APIC_DM_STARTUP | (start_eip >> 12),
642 phys_apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300643
644 /*
645 * Give the other CPU some time to accept the IPI.
646 */
647 udelay(300);
648
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200649 pr_debug("Startup point 1.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300650
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200651 pr_debug("Waiting for send to finish...\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300652 send_status = safe_apic_wait_icr_idle();
653
654 /*
655 * Give the other CPU some time to accept the IPI.
656 */
657 udelay(200);
Maciej W. Rozycki593f4a72008-07-16 19:15:30 +0100658 if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300659 apic_write(APIC_ESR, 0);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300660 accept_status = (apic_read(APIC_ESR) & 0xEF);
661 if (send_status || accept_status)
662 break;
663 }
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200664 pr_debug("After Startup.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300665
666 if (send_status)
667 printk(KERN_ERR "APIC never delivered???\n");
668 if (accept_status)
669 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
670
671 return (send_status | accept_status);
672}
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300673
674struct create_idle {
675 struct work_struct work;
676 struct task_struct *idle;
677 struct completion done;
678 int cpu;
679};
680
681static void __cpuinit do_fork_idle(struct work_struct *work)
682{
683 struct create_idle *c_idle =
684 container_of(work, struct create_idle, work);
685
686 c_idle->idle = fork_idle(c_idle->cpu);
687 complete(&c_idle->done);
688}
689
Mike Travis2eaad1f2009-12-10 17:19:36 -0800690/* reduce the number of lines printed when booting a large cpu count system */
691static void __cpuinit announce_cpu(int cpu, int apicid)
692{
693 static int current_node = -1;
Borislav Petkov4adc8b72010-06-01 21:04:55 +0200694 int node = early_cpu_to_node(cpu);
Mike Travis2eaad1f2009-12-10 17:19:36 -0800695
696 if (system_state == SYSTEM_BOOTING) {
697 if (node != current_node) {
698 if (current_node > (-1))
699 pr_cont(" Ok.\n");
700 current_node = node;
701 pr_info("Booting Node %3d, Processors ", node);
702 }
703 pr_cont(" #%d%s", cpu, cpu == (nr_cpu_ids - 1) ? " Ok.\n" : "");
704 return;
705 } else
706 pr_info("Booting Node %d Processor %d APIC 0x%x\n",
707 node, cpu, apicid);
708}
709
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300710/*
711 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
712 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100713 * Returns zero if CPU booted OK, else error code from
714 * ->wakeup_secondary_cpu.
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300715 */
Ingo Molnarab6fb7c2009-02-17 16:22:09 +0100716static int __cpuinit do_boot_cpu(int apicid, int cpu)
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300717{
718 unsigned long boot_error = 0;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300719 unsigned long start_ip;
Ingo Molnarab6fb7c2009-02-17 16:22:09 +0100720 int timeout;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300721 struct create_idle c_idle = {
Ingo Molnarab6fb7c2009-02-17 16:22:09 +0100722 .cpu = cpu,
723 .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300724 };
Ingo Molnarab6fb7c2009-02-17 16:22:09 +0100725
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900726 INIT_WORK_ON_STACK(&c_idle.work, do_fork_idle);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300727
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300728 alternatives_smp_switch(1);
729
730 c_idle.idle = get_idle_for_cpu(cpu);
731
732 /*
733 * We can't use kernel_thread since we must avoid to
734 * reschedule the child.
735 */
736 if (c_idle.idle) {
737 c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
738 (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
739 init_idle(c_idle.idle, cpu);
740 goto do_rest;
741 }
742
Suresh Siddhad7a7c572010-08-09 17:20:33 -0700743 schedule_work(&c_idle.work);
744 wait_for_completion(&c_idle.done);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300745
746 if (IS_ERR(c_idle.idle)) {
747 printk("failed fork for CPU %d\n", cpu);
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900748 destroy_work_on_stack(&c_idle.work);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300749 return PTR_ERR(c_idle.idle);
750 }
751
752 set_idle_for_cpu(cpu, c_idle.idle);
753do_rest:
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300754 per_cpu(current_task, cpu) = c_idle.idle;
Brian Gerstc6f5e0a2009-01-19 00:38:58 +0900755#ifdef CONFIG_X86_32
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300756 /* Stack for startup_32 can be just as for start_secondary onwards */
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300757 irq_ctx_init(cpu);
Joerg Roedelfd89a132010-08-16 14:38:33 +0200758 initial_page_table = __pa(&trampoline_pg_dir);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300759#else
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300760 clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
Tejun Heo004aa322009-01-13 20:41:35 +0900761 initial_gs = per_cpu_offset(cpu);
Brian Gerst9af45652009-01-19 00:38:58 +0900762 per_cpu(kernel_stack, cpu) =
763 (unsigned long)task_stack_page(c_idle.idle) -
764 KERNEL_STACK_OFFSET + THREAD_SIZE;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300765#endif
Glauber Costaa9390982008-05-28 16:19:53 -0700766 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
Glauber Costa3e970472008-05-28 13:01:54 -0300767 initial_code = (unsigned long)start_secondary;
Glauber Costa9cf4f292008-05-27 18:22:54 -0700768 stack_start.sp = (void *) c_idle.idle->thread.sp;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300769
770 /* start_ip had better be page-aligned! */
771 start_ip = setup_trampoline();
772
Mike Travis2eaad1f2009-12-10 17:19:36 -0800773 /* So we see what's up */
774 announce_cpu(cpu, apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300775
776 /*
777 * This grunge runs the startup process for
778 * the targeted processor.
779 */
780
781 atomic_set(&init_deasserted, 0);
782
Jack Steiner34d05592008-04-16 11:45:15 -0500783 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300784
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200785 pr_debug("Setting warm reset code and vector.\n");
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300786
Jack Steiner34d05592008-04-16 11:45:15 -0500787 smpboot_setup_warm_reset_vector(start_ip);
788 /*
789 * Be paranoid about clearing APIC errors.
Cyrill Gorcunovdb96b0a2008-10-22 18:00:09 +0400790 */
791 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
792 apic_write(APIC_ESR, 0);
793 apic_read(APIC_ESR);
794 }
Jack Steiner34d05592008-04-16 11:45:15 -0500795 }
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300796
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300797 /*
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100798 * Kick the secondary CPU. Use the method in the APIC driver
799 * if it's defined - or use an INIT boot APIC message otherwise:
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300800 */
Ingo Molnar1f5bcab2009-02-26 13:51:40 +0100801 if (apic->wakeup_secondary_cpu)
802 boot_error = apic->wakeup_secondary_cpu(apicid, start_ip);
803 else
804 boot_error = wakeup_secondary_cpu_via_init(apicid, start_ip);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300805
806 if (!boot_error) {
807 /*
808 * allow APs to start initializing.
809 */
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200810 pr_debug("Before Callout %d.\n", cpu);
Mike Travisc2d1cec2009-01-04 05:18:03 -0800811 cpumask_set_cpu(cpu, cpu_callout_mask);
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200812 pr_debug("After Callout %d.\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300813
814 /*
815 * Wait 5s total for a response
816 */
817 for (timeout = 0; timeout < 50000; timeout++) {
Mike Travisc2d1cec2009-01-04 05:18:03 -0800818 if (cpumask_test_cpu(cpu, cpu_callin_mask))
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300819 break; /* It has booted */
820 udelay(100);
Suresh Siddha68f202e2010-07-30 11:46:42 -0700821 /*
822 * Allow other tasks to run while we wait for the
823 * AP to come online. This also gives a chance
824 * for the MTRR work(triggered by the AP coming online)
825 * to be completed in the stop machine context.
826 */
827 schedule();
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300828 }
829
Mike Travis2eaad1f2009-12-10 17:19:36 -0800830 if (cpumask_test_cpu(cpu, cpu_callin_mask))
831 pr_debug("CPU%d: has booted.\n", cpu);
832 else {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300833 boot_error = 1;
834 if (*((volatile unsigned char *)trampoline_base)
835 == 0xA5)
836 /* trampoline started but...? */
Mike Travis2eaad1f2009-12-10 17:19:36 -0800837 pr_err("CPU%d: Stuck ??\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300838 else
839 /* trampoline code not run */
Mike Travis2eaad1f2009-12-10 17:19:36 -0800840 pr_err("CPU%d: Not responding.\n", cpu);
Ingo Molnar25dc0042009-01-28 16:31:52 +0100841 if (apic->inquire_remote_apic)
842 apic->inquire_remote_apic(apicid);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300843 }
844 }
Tejun Heo1a51e3a2009-01-13 20:41:35 +0900845
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300846 if (boot_error) {
847 /* Try to put things back the way they were before ... */
Mike Travis23ca4bb2008-05-12 21:21:12 +0200848 numa_remove_cpu(cpu); /* was set by numa_add_cpu */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800849
850 /* was set by do_boot_cpu() */
851 cpumask_clear_cpu(cpu, cpu_callout_mask);
852
853 /* was set by cpu_init() */
854 cpumask_clear_cpu(cpu, cpu_initialized_mask);
855
856 set_cpu_present(cpu, false);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300857 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
858 }
859
860 /* mark "stuck" area as not stuck */
861 *((volatile unsigned long *)trampoline_base) = 0;
862
Yinghai Lu02421f92009-04-03 17:15:53 -0700863 if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
864 /*
865 * Cleanup possible dangling ends...
866 */
867 smpboot_restore_warm_reset_vector();
868 }
Alok Kataria63d38192008-04-07 11:38:33 -0700869
Thomas Gleixnerdc186ad2009-11-16 01:09:48 +0900870 destroy_work_on_stack(&c_idle.work);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300871 return boot_error;
872}
873
874int __cpuinit native_cpu_up(unsigned int cpu)
875{
Ingo Molnara21769a42009-01-28 06:50:47 +0100876 int apicid = apic->cpu_present_to_apicid(cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300877 unsigned long flags;
878 int err;
879
880 WARN_ON(irqs_disabled());
881
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200882 pr_debug("++++++++++++++++++++=_---CPU UP %u\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300883
884 if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
885 !physid_isset(apicid, phys_cpu_present_map)) {
886 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
887 return -EINVAL;
888 }
889
890 /*
891 * Already booted CPU?
892 */
Mike Travisc2d1cec2009-01-04 05:18:03 -0800893 if (cpumask_test_cpu(cpu, cpu_callin_mask)) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200894 pr_debug("do_boot_cpu %d Already started\n", cpu);
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300895 return -ENOSYS;
896 }
897
898 /*
899 * Save current MTRR state in case it was changed since early boot
900 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
901 */
902 mtrr_save_state();
903
904 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
905
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300906 err = do_boot_cpu(apicid, cpu);
Hugh Dickins61165d72008-05-13 14:26:57 +0100907
Hugh Dickins61165d72008-05-13 14:26:57 +0100908 if (err) {
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +0200909 pr_debug("do_boot_cpu failed %d\n", err);
Hugh Dickins61165d72008-05-13 14:26:57 +0100910 return -EIO;
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300911 }
912
913 /*
914 * Check TSC synchronization with the AP (keep irqs disabled
915 * while doing so):
916 */
917 local_irq_save(flags);
918 check_tsc_sync_source(cpu);
919 local_irq_restore(flags);
920
Akinobu Mita7c04e642008-04-19 23:55:17 +0900921 while (!cpu_online(cpu)) {
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300922 cpu_relax();
923 touch_nmi_watchdog();
924 }
925
926 return 0;
927}
928
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -0300929/*
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300930 * Fall back to non SMP mode after errors.
931 *
932 * RED-PEN audit/test this more. I bet there is more state messed up here.
933 */
934static __init void disable_smp(void)
935{
Rusty Russell4f062892009-03-13 14:49:54 +1030936 init_cpu_present(cpumask_of(0));
937 init_cpu_possible(cpumask_of(0));
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300938 smpboot_clear_io_apic_irqs();
Glauber Costa0f385d12008-05-28 17:09:53 -0700939
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300940 if (smp_found_config)
Jack Steinerb6df1b82008-06-19 21:51:05 -0500941 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300942 else
Jack Steinerb6df1b82008-06-19 21:51:05 -0500943 physid_set_mask_of_physid(0, &phys_cpu_present_map);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300944 map_cpu_to_logical_apicid();
Mike Travisc2d1cec2009-01-04 05:18:03 -0800945 cpumask_set_cpu(0, cpu_sibling_mask(0));
946 cpumask_set_cpu(0, cpu_core_mask(0));
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300947}
948
949/*
950 * Various sanity checks.
951 */
952static int __init smp_sanity_check(unsigned max_cpus)
953{
Jack Steinerac23d4e2008-03-28 14:12:16 -0500954 preempt_disable();
Yinghai Lua58f03b2008-08-14 02:16:30 -0700955
Yinghai Lu1ff2f202009-01-29 19:30:04 -0800956#if !defined(CONFIG_X86_BIGSMP) && defined(CONFIG_X86_32)
Yinghai Lua58f03b2008-08-14 02:16:30 -0700957 if (def_to_bigsmp && nr_cpu_ids > 8) {
958 unsigned int cpu;
959 unsigned nr;
960
961 printk(KERN_WARNING
962 "More than 8 CPUs detected - skipping them.\n"
Yinghai Lu26f7ef12009-01-29 14:19:22 -0800963 "Use CONFIG_X86_BIGSMP.\n");
Yinghai Lua58f03b2008-08-14 02:16:30 -0700964
965 nr = 0;
966 for_each_present_cpu(cpu) {
967 if (nr >= 8)
Mike Travisc2d1cec2009-01-04 05:18:03 -0800968 set_cpu_present(cpu, false);
Yinghai Lua58f03b2008-08-14 02:16:30 -0700969 nr++;
970 }
971
972 nr = 0;
973 for_each_possible_cpu(cpu) {
974 if (nr >= 8)
Mike Travisc2d1cec2009-01-04 05:18:03 -0800975 set_cpu_possible(cpu, false);
Yinghai Lua58f03b2008-08-14 02:16:30 -0700976 nr++;
977 }
978
979 nr_cpu_ids = 8;
980 }
981#endif
982
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300983 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
Michael Tokarev55c395b2008-12-05 14:42:20 +0300984 printk(KERN_WARNING
985 "weird, boot CPU (#%d) not listed by the BIOS.\n",
986 hard_smp_processor_id());
987
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300988 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
989 }
990
991 /*
992 * If we couldn't find an SMP configuration at boot time,
993 * get out of here now!
994 */
995 if (!smp_found_config && !acpi_lapic) {
Jack Steinerac23d4e2008-03-28 14:12:16 -0500996 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300997 printk(KERN_NOTICE "SMP motherboard not detected.\n");
998 disable_smp();
999 if (APIC_init_uniprocessor())
1000 printk(KERN_NOTICE "Local APIC not detected."
1001 " Using dummy APIC emulation.\n");
1002 return -1;
1003 }
1004
1005 /*
1006 * Should not be necessary because the MP table should list the boot
1007 * CPU too, but we do it for the sake of robustness anyway.
1008 */
Ingo Molnara27a6212009-01-28 12:43:18 +01001009 if (!apic->check_phys_apicid_present(boot_cpu_physical_apicid)) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001010 printk(KERN_NOTICE
1011 "weird, boot CPU (#%d) not listed by the BIOS.\n",
1012 boot_cpu_physical_apicid);
1013 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1014 }
Jack Steinerac23d4e2008-03-28 14:12:16 -05001015 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001016
1017 /*
1018 * If we couldn't find a local APIC, then get out of here now!
1019 */
1020 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1021 !cpu_has_apic) {
Cyrill Gorcunov103428e2009-06-07 16:48:40 +04001022 if (!disable_apic) {
1023 pr_err("BIOS bug, local APIC #%d not detected!...\n",
1024 boot_cpu_physical_apicid);
1025 pr_err("... forcing use of dummy APIC emulation."
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001026 "(tell your hw vendor)\n");
Cyrill Gorcunov103428e2009-06-07 16:48:40 +04001027 }
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001028 smpboot_clear_io_apic();
Ingo Molnar65a4e572009-01-31 03:36:17 +01001029 arch_disable_smp_support();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001030 return -1;
1031 }
1032
1033 verify_local_APIC();
1034
1035 /*
1036 * If SMP should be disabled, then really disable it!
1037 */
1038 if (!max_cpus) {
Maciej W. Rozycki73d08e62008-05-21 22:09:43 +01001039 printk(KERN_INFO "SMP mode deactivated.\n");
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001040 smpboot_clear_io_apic();
Maciej W. Rozyckid54db1a2008-06-06 03:28:02 +01001041
1042 localise_nmi_watchdog();
1043
Jesse Barnese90955c2008-04-21 14:14:44 -07001044 connect_bsp_APIC();
Jesse Barnese90955c2008-04-21 14:14:44 -07001045 setup_local_APIC();
1046 end_local_APIC_setup();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001047 return -1;
1048 }
1049
1050 return 0;
1051}
1052
1053static void __init smp_cpu_index_default(void)
1054{
1055 int i;
1056 struct cpuinfo_x86 *c;
1057
Akinobu Mita7c04e642008-04-19 23:55:17 +09001058 for_each_possible_cpu(i) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001059 c = &cpu_data(i);
1060 /* mark all to hotplug */
Mike Travis96289372008-12-31 18:08:46 -08001061 c->cpu_index = nr_cpu_ids;
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001062 }
1063}
1064
1065/*
1066 * Prepare for SMP bootup. The MP table or ACPI has been read
1067 * earlier. Just do some sanity checking here and enable APIC mode.
1068 */
1069void __init native_smp_prepare_cpus(unsigned int max_cpus)
1070{
Rusty Russell7ad728f2009-03-13 14:49:50 +10301071 unsigned int i;
1072
Ingo Molnardeef3252008-05-12 15:44:38 +02001073 preempt_disable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001074 smp_cpu_index_default();
1075 current_cpu_data = boot_cpu_data;
Mike Travisc2d1cec2009-01-04 05:18:03 -08001076 cpumask_copy(cpu_callin_mask, cpumask_of(0));
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001077 mb();
1078 /*
1079 * Setup boot CPU information
1080 */
1081 smp_store_cpu_info(0); /* Final full version of the data */
Suresh Siddha1b374e42008-07-10 11:16:49 -07001082#ifdef CONFIG_X86_32
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001083 boot_cpu_logical_apicid = logical_smp_processor_id();
Suresh Siddha1b374e42008-07-10 11:16:49 -07001084#endif
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001085 current_thread_info()->cpu = 0; /* needed? */
Rusty Russell7ad728f2009-03-13 14:49:50 +10301086 for_each_possible_cpu(i) {
Li Zefan79f55992009-06-15 14:58:26 +08001087 zalloc_cpumask_var(&per_cpu(cpu_sibling_map, i), GFP_KERNEL);
1088 zalloc_cpumask_var(&per_cpu(cpu_core_map, i), GFP_KERNEL);
1089 zalloc_cpumask_var(&cpu_data(i).llc_shared_map, GFP_KERNEL);
Rusty Russell7ad728f2009-03-13 14:49:50 +10301090 }
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001091 set_cpu_sibling_map(0);
1092
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001093 enable_IR_x2apic();
Ingo Molnar72ce0162009-01-28 06:50:47 +01001094 default_setup_apic_routing();
Suresh Siddha6e1cb382008-07-10 11:16:58 -07001095
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001096 if (smp_sanity_check(max_cpus) < 0) {
1097 printk(KERN_INFO "SMP disabled\n");
1098 disable_smp();
Ingo Molnardeef3252008-05-12 15:44:38 +02001099 goto out;
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001100 }
1101
Jack Steinerac23d4e2008-03-28 14:12:16 -05001102 preempt_disable();
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001103 if (read_apic_id() != boot_cpu_physical_apicid) {
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001104 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
Yinghai Lu4c9961d2008-07-11 18:44:16 -07001105 read_apic_id(), boot_cpu_physical_apicid);
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001106 /* Or can we switch back to PIC here? */
1107 }
Jack Steinerac23d4e2008-03-28 14:12:16 -05001108 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001109
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001110 connect_bsp_APIC();
Glauber Costab5841762008-05-28 13:38:28 -03001111
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001112 /*
1113 * Switch from PIC to APIC mode.
1114 */
1115 setup_local_APIC();
1116
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001117 /*
1118 * Enable IO APIC before setting up error vector
1119 */
1120 if (!skip_ioapic_setup && nr_ioapics)
1121 enable_IO_APIC();
Yinghai Lu88d0f552009-02-14 23:57:28 -08001122
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001123 end_local_APIC_setup();
1124
1125 map_cpu_to_logical_apicid();
1126
Ingo Molnard83093b2009-01-28 12:43:18 +01001127 if (apic->setup_portio_remap)
1128 apic->setup_portio_remap();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001129
1130 smpboot_setup_io_apic();
1131 /*
1132 * Set up local APIC timer on boot CPU.
1133 */
1134
1135 printk(KERN_INFO "CPU%d: ", 0);
1136 print_cpu_info(&cpu_data(0));
Thomas Gleixner736deca2009-08-19 12:35:53 +02001137 x86_init.timers.setup_percpu_clockev();
Marcin Slusarzc4bd1fd2008-08-21 20:49:05 +02001138
1139 if (is_uv_system())
1140 uv_system_init();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001141
1142 set_mtrr_aps_delayed_init();
Ingo Molnardeef3252008-05-12 15:44:38 +02001143out:
1144 preempt_enable();
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001145}
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001146
1147void arch_enable_nonboot_cpus_begin(void)
1148{
1149 set_mtrr_aps_delayed_init();
1150}
1151
1152void arch_enable_nonboot_cpus_end(void)
1153{
1154 mtrr_aps_init();
1155}
1156
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001157/*
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001158 * Early setup to make printk work.
1159 */
1160void __init native_smp_prepare_boot_cpu(void)
1161{
1162 int me = smp_processor_id();
Brian Gerst552be872009-01-30 17:47:53 +09001163 switch_to_new_gdt(me);
Mike Travisc2d1cec2009-01-04 05:18:03 -08001164 /* already set me in cpu_online_mask in boot_cpu_init() */
1165 cpumask_set_cpu(me, cpu_callout_mask);
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001166 per_cpu(cpu_state, me) = CPU_ONLINE;
1167}
1168
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001169void __init native_smp_cpus_done(unsigned int max_cpus)
1170{
Thomas Gleixnercfc1b9a2008-07-21 21:35:38 +02001171 pr_debug("Boot done.\n");
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001172
1173 impress_friends();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001174#ifdef CONFIG_X86_IO_APIC
1175 setup_ioapic_dest();
1176#endif
1177 check_nmi_watchdog();
Suresh Siddhad0af9ee2009-08-19 18:05:36 -07001178 mtrr_aps_init();
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001179}
1180
Mike Travis3b11ce72008-12-17 15:21:39 -08001181static int __initdata setup_possible_cpus = -1;
1182static int __init _setup_possible_cpus(char *str)
1183{
1184 get_option(&str, &setup_possible_cpus);
1185 return 0;
1186}
1187early_param("possible_cpus", _setup_possible_cpus);
1188
1189
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001190/*
Rusty Russell4f062892009-03-13 14:49:54 +10301191 * cpu_possible_mask should be static, it cannot change as cpu's
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001192 * are onlined, or offlined. The reason is per-cpu data-structures
1193 * are allocated by some modules at init time, and dont expect to
1194 * do this dynamically on cpu arrival/departure.
Rusty Russell4f062892009-03-13 14:49:54 +10301195 * cpu_present_mask on the other hand can change dynamically.
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001196 * In case when cpu_hotplug is not compiled, then we resort to current
1197 * behaviour, which is cpu_possible == cpu_present.
1198 * - Ashok Raj
1199 *
1200 * Three ways to find out the number of additional hotplug CPUs:
1201 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
Mike Travis3b11ce72008-12-17 15:21:39 -08001202 * - The user can overwrite it with possible_cpus=NUM
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001203 * - Otherwise don't reserve additional CPUs.
1204 * We do this because additional CPUs waste a lot of memory.
1205 * -AK
1206 */
1207__init void prefill_possible_map(void)
1208{
Thomas Gleixnercb48bb52008-10-05 17:51:52 +02001209 int i, possible;
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001210
Yinghai Lu329513a2008-07-02 18:54:40 -07001211 /* no processor from mptable or madt */
1212 if (!num_processors)
1213 num_processors = 1;
1214
Jan Beulich5f2eb552010-05-24 12:13:17 -07001215 i = setup_max_cpus ?: 1;
1216 if (setup_possible_cpus == -1) {
1217 possible = num_processors;
1218#ifdef CONFIG_HOTPLUG_CPU
1219 if (setup_max_cpus)
1220 possible += disabled_cpus;
1221#else
1222 if (possible > i)
1223 possible = i;
1224#endif
1225 } else
Mike Travis3b11ce72008-12-17 15:21:39 -08001226 possible = setup_possible_cpus;
1227
Mike Travis730cf272008-12-31 18:08:45 -08001228 total_cpus = max_t(int, possible, num_processors + disabled_cpus);
1229
Yinghai Lu2b633e32010-02-10 01:20:37 -08001230 /* nr_cpu_ids could be reduced via nr_cpus= */
1231 if (possible > nr_cpu_ids) {
Mike Travis3b11ce72008-12-17 15:21:39 -08001232 printk(KERN_WARNING
1233 "%d Processors exceeds NR_CPUS limit of %d\n",
Yinghai Lu2b633e32010-02-10 01:20:37 -08001234 possible, nr_cpu_ids);
1235 possible = nr_cpu_ids;
Mike Travis3b11ce72008-12-17 15:21:39 -08001236 }
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001237
Jan Beulich5f2eb552010-05-24 12:13:17 -07001238#ifdef CONFIG_HOTPLUG_CPU
1239 if (!setup_max_cpus)
1240#endif
1241 if (possible > i) {
1242 printk(KERN_WARNING
1243 "%d Processors exceeds max_cpus limit of %u\n",
1244 possible, setup_max_cpus);
1245 possible = i;
1246 }
1247
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001248 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
1249 possible, max_t(int, possible - num_processors, 0));
1250
1251 for (i = 0; i < possible; i++)
Mike Travisc2d1cec2009-01-04 05:18:03 -08001252 set_cpu_possible(i, true);
Jan Beulich5f2eb552010-05-24 12:13:17 -07001253 for (; i < NR_CPUS; i++)
1254 set_cpu_possible(i, false);
Mike Travis3461b0a2008-05-12 21:21:13 +02001255
1256 nr_cpu_ids = possible;
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001257}
Glauber Costa69c18c12008-03-03 14:13:07 -03001258
Chuck Ebbert14adf852008-09-29 18:29:42 -04001259#ifdef CONFIG_HOTPLUG_CPU
1260
1261static void remove_siblinginfo(int cpu)
1262{
1263 int sibling;
1264 struct cpuinfo_x86 *c = &cpu_data(cpu);
1265
Mike Travisc2d1cec2009-01-04 05:18:03 -08001266 for_each_cpu(sibling, cpu_core_mask(cpu)) {
1267 cpumask_clear_cpu(cpu, cpu_core_mask(sibling));
Chuck Ebbert14adf852008-09-29 18:29:42 -04001268 /*/
1269 * last thread sibling in this cpu core going down
1270 */
Mike Travisc2d1cec2009-01-04 05:18:03 -08001271 if (cpumask_weight(cpu_sibling_mask(cpu)) == 1)
Chuck Ebbert14adf852008-09-29 18:29:42 -04001272 cpu_data(sibling).booted_cores--;
1273 }
1274
Mike Travisc2d1cec2009-01-04 05:18:03 -08001275 for_each_cpu(sibling, cpu_sibling_mask(cpu))
1276 cpumask_clear_cpu(cpu, cpu_sibling_mask(sibling));
1277 cpumask_clear(cpu_sibling_mask(cpu));
1278 cpumask_clear(cpu_core_mask(cpu));
Chuck Ebbert14adf852008-09-29 18:29:42 -04001279 c->phys_proc_id = 0;
1280 c->cpu_core_id = 0;
Mike Travisc2d1cec2009-01-04 05:18:03 -08001281 cpumask_clear_cpu(cpu, cpu_sibling_setup_mask);
Chuck Ebbert14adf852008-09-29 18:29:42 -04001282}
1283
Glauber Costa69c18c12008-03-03 14:13:07 -03001284static void __ref remove_cpu_from_maps(int cpu)
1285{
Mike Travisc2d1cec2009-01-04 05:18:03 -08001286 set_cpu_online(cpu, false);
1287 cpumask_clear_cpu(cpu, cpu_callout_mask);
1288 cpumask_clear_cpu(cpu, cpu_callin_mask);
Glauber Costa69c18c12008-03-03 14:13:07 -03001289 /* was set by cpu_init() */
Mike Travisc2d1cec2009-01-04 05:18:03 -08001290 cpumask_clear_cpu(cpu, cpu_initialized_mask);
Mike Travis23ca4bb2008-05-12 21:21:12 +02001291 numa_remove_cpu(cpu);
Glauber Costa69c18c12008-03-03 14:13:07 -03001292}
1293
Alex Nixon8227dce2008-08-22 11:52:14 +01001294void cpu_disable_common(void)
1295{
1296 int cpu = smp_processor_id();
Alex Nixon8227dce2008-08-22 11:52:14 +01001297
Alex Nixon8227dce2008-08-22 11:52:14 +01001298 remove_siblinginfo(cpu);
1299
1300 /* It's now safe to remove this processor from the online map */
1301 lock_vector_lock();
1302 remove_cpu_from_maps(cpu);
1303 unlock_vector_lock();
Mike Travisd7b381b2008-12-16 17:33:58 -08001304 fixup_irqs();
Alex Nixon8227dce2008-08-22 11:52:14 +01001305}
1306
Alex Nixon93be71b2008-08-22 11:52:11 +01001307int native_cpu_disable(void)
Glauber Costa69c18c12008-03-03 14:13:07 -03001308{
1309 int cpu = smp_processor_id();
1310
1311 /*
1312 * Perhaps use cpufreq to drop frequency, but that could go
1313 * into generic code.
1314 *
1315 * We won't take down the boot processor on i386 due to some
1316 * interrupts only being able to be serviced by the BSP.
1317 * Especially so if we're not using an IOAPIC -zwane
1318 */
1319 if (cpu == 0)
1320 return -EBUSY;
1321
1322 if (nmi_watchdog == NMI_LOCAL_APIC)
1323 stop_apic_nmi_watchdog(NULL);
1324 clear_local_APIC();
1325
Alex Nixon8227dce2008-08-22 11:52:14 +01001326 cpu_disable_common();
Glauber Costa69c18c12008-03-03 14:13:07 -03001327 return 0;
1328}
1329
Alex Nixon93be71b2008-08-22 11:52:11 +01001330void native_cpu_die(unsigned int cpu)
Glauber Costa69c18c12008-03-03 14:13:07 -03001331{
1332 /* We don't do anything here: idle task is faking death itself. */
1333 unsigned int i;
1334
1335 for (i = 0; i < 10; i++) {
1336 /* They ack this in play_dead by setting CPU_DEAD */
1337 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
Mike Travis2eaad1f2009-12-10 17:19:36 -08001338 if (system_state == SYSTEM_RUNNING)
1339 pr_info("CPU %u is now offline\n", cpu);
1340
Glauber Costa69c18c12008-03-03 14:13:07 -03001341 if (1 == num_online_cpus())
1342 alternatives_smp_switch(0);
1343 return;
1344 }
1345 msleep(100);
1346 }
Mike Travis2eaad1f2009-12-10 17:19:36 -08001347 pr_err("CPU %u didn't die...\n", cpu);
Glauber Costa69c18c12008-03-03 14:13:07 -03001348}
Alex Nixona21f5d82008-08-22 11:52:13 +01001349
1350void play_dead_common(void)
1351{
1352 idle_task_exit();
1353 reset_lazy_tlbstate();
1354 irq_ctx_exit(raw_smp_processor_id());
Ingo Molnar07bbc162008-09-23 23:26:42 +02001355 c1e_remove_cpu(raw_smp_processor_id());
Alex Nixona21f5d82008-08-22 11:52:13 +01001356
1357 mb();
1358 /* Ack it */
1359 __get_cpu_var(cpu_state) = CPU_DEAD;
1360
1361 /*
1362 * With physical CPU hotplug, we should halt the cpu
1363 */
1364 local_irq_disable();
1365}
1366
1367void native_play_dead(void)
1368{
1369 play_dead_common();
Joseph Cihula86886e52009-06-30 19:31:07 -07001370 tboot_shutdown(TB_SHUTDOWN_WFS);
Alex Nixona21f5d82008-08-22 11:52:13 +01001371 wbinvd_halt();
1372}
1373
Glauber Costa69c18c12008-03-03 14:13:07 -03001374#else /* ... !CONFIG_HOTPLUG_CPU */
Alex Nixon93be71b2008-08-22 11:52:11 +01001375int native_cpu_disable(void)
Glauber Costa69c18c12008-03-03 14:13:07 -03001376{
1377 return -ENOSYS;
1378}
1379
Alex Nixon93be71b2008-08-22 11:52:11 +01001380void native_cpu_die(unsigned int cpu)
Glauber Costa69c18c12008-03-03 14:13:07 -03001381{
1382 /* We said "no" in __cpu_disable */
1383 BUG();
1384}
Alex Nixona21f5d82008-08-22 11:52:13 +01001385
1386void native_play_dead(void)
1387{
1388 BUG();
1389}
1390
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001391#endif