blob: 915ec626732678c790068333c1586f1852a87945 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * x86 SMP booting functions
3 *
4 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
5 * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
6 *
7 * Much of the core SMP work is based on previous work by Thomas Radke, to
8 * whom a great many thanks are extended.
9 *
10 * Thanks to Intel for making available several different Pentium,
11 * Pentium Pro and Pentium-II/Xeon MP machines.
12 * Original development of Linux SMP code supported by Caldera.
13 *
14 * This code is released under the GNU General Public License version 2 or
15 * later.
16 *
17 * Fixes
18 * Felix Koop : NR_CPUS used properly
19 * Jose Renau : Handle single CPU case.
20 * Alan Cox : By repeated request 8) - Total BogoMIPS report.
21 * Greg Wright : Fix for kernel stacks panic.
22 * Erich Boleyn : MP v1.4 and additional changes.
23 * Matthias Sattler : Changes for 2.1 kernel map.
24 * Michel Lespinasse : Changes for 2.1 kernel map.
25 * Michael Chastain : Change trampoline.S to gnu as.
26 * Alan Cox : Dumb bug: 'B' step PPro's are fine
27 * Ingo Molnar : Added APIC timers, based on code
28 * from Jose Renau
29 * Ingo Molnar : various cleanups and rewrites
30 * Tigran Aivazian : fixed "0.00 in /proc/uptime on SMP" bug.
31 * Maciej W. Rozycki : Bits for genuine 82489DX APICs
32 * Martin J. Bligh : Added support for multi-quad systems
33 * Dave Jones : Report invalid combinations of Athlon CPUs.
34* Rusty Russell : Hacked into shape for new "hotplug" boot process. */
35
36#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/init.h>
38#include <linux/kernel.h>
39
40#include <linux/mm.h>
41#include <linux/sched.h>
42#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/bootmem.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070044#include <linux/notifier.h>
45#include <linux/cpu.h>
46#include <linux/percpu.h>
Ingo Molnard04f41e2007-03-07 18:12:31 +010047#include <linux/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#include <linux/delay.h>
50#include <linux/mc146818rtc.h>
51#include <asm/tlbflush.h>
52#include <asm/desc.h>
53#include <asm/arch_hooks.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020054#include <asm/nmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include <mach_apic.h>
57#include <mach_wakecpu.h>
58#include <smpboot_hooks.h>
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +010059#include <asm/vmi.h>
Bernhard Kaindl2b1f6272007-05-02 19:27:17 +020060#include <asm/mtrr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/* Set if we find a B stepping CPU */
Adrian Bunkf2206ec2007-12-19 23:20:18 +010063static int __cpuinitdata smp_b_stepping;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65/* Number of siblings per CPU package */
66int smp_num_siblings = 1;
Alexey Dobriyan129f6942005-06-23 00:08:33 -070067EXPORT_SYMBOL(smp_num_siblings);
Li Shaohuad7208032005-06-25 14:54:54 -070068
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -080069/* Last level cache ID of each logical CPU */
Mike Travisb6278472007-10-19 20:35:03 +020070DEFINE_PER_CPU(u8, cpu_llc_id) = BAD_APICID;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -080071
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010072/* representing HT siblings of each logical CPU */
Mike Travisd5a74302007-10-16 01:24:05 -070073DEFINE_PER_CPU(cpumask_t, cpu_sibling_map);
74EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
Li Shaohuad7208032005-06-25 14:54:54 -070075
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010076/* representing HT and core siblings of each logical CPU */
Mike Travis08357612007-10-16 01:24:04 -070077DEFINE_PER_CPU(cpumask_t, cpu_core_map);
78EXPORT_PER_CPU_SYMBOL(cpu_core_map);
Li Shaohuad7208032005-06-25 14:54:54 -070079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* bitmap of online cpus */
Christoph Lameter6c036522005-07-07 17:56:59 -070081cpumask_t cpu_online_map __read_mostly;
Alexey Dobriyan129f6942005-06-23 00:08:33 -070082EXPORT_SYMBOL(cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84cpumask_t cpu_callin_map;
85cpumask_t cpu_callout_map;
Zwane Mwaikambo4ad8d382005-09-03 15:56:51 -070086cpumask_t cpu_possible_map;
87EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static cpumask_t smp_commenced_mask;
89
90/* Per CPU bogomips and other parameters */
Mike Travis92cb7612007-10-19 20:35:04 +020091DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
92EXPORT_PER_CPU_SYMBOL(cpu_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
travis@sgi.com3b419082008-01-30 13:33:11 +010094/* which logical CPU number maps to which CPU (physical APIC ID) */
Mike Travis71fff5e2007-10-19 20:35:03 +020095u8 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
96 { [0 ... NR_CPUS-1] = BAD_APICID };
travis@sgi.com3b419082008-01-30 13:33:11 +010097void *x86_cpu_to_apicid_early_ptr;
Mike Travis71fff5e2007-10-19 20:35:03 +020098DEFINE_PER_CPU(u8, x86_cpu_to_apicid) = BAD_APICID;
99EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
keith mannthey3b086062006-09-29 01:58:46 -0700101u8 apicid_2_node[MAX_APICID];
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*
104 * Trampoline 80x86 program as an array.
105 */
106
Jan Beulich121d7bf2007-10-17 18:04:37 +0200107extern const unsigned char trampoline_data [];
108extern const unsigned char trampoline_end [];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109static unsigned char *trampoline_base;
110static int trampoline_exec;
111
112static void map_cpu_to_logical_apicid(void);
113
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700114/* State of each CPU. */
115DEFINE_PER_CPU(int, cpu_state) = { 0 };
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
118 * Currently trivial. Write the real->protected mode
119 * bootstrap into the page concerned. The caller
120 * has made sure it's suitably aligned.
121 */
122
Adrian Bunk8957eca2007-10-17 18:04:32 +0200123static unsigned long __cpuinit setup_trampoline(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125 memcpy(trampoline_base, trampoline_data, trampoline_end - trampoline_data);
126 return virt_to_phys(trampoline_base);
127}
128
129/*
130 * We are called very early to get the low memory for the
131 * SMP bootup trampoline page.
132 */
133void __init smp_alloc_memory(void)
134{
135 trampoline_base = (void *) alloc_bootmem_low_pages(PAGE_SIZE);
136 /*
137 * Has to be in very low memory so we can execute
138 * real-mode AP code.
139 */
140 if (__pa(trampoline_base) >= 0x9F000)
141 BUG();
142 /*
143 * Make the SMP trampoline executable:
144 */
145 trampoline_exec = set_kernel_exec((unsigned long)trampoline_base, 1);
146}
147
148/*
149 * The bootstrap kernel entry code has set these up. Save them for
150 * a given CPU
151 */
152
Jeremy Fitzhardinge724faa82007-07-17 18:37:03 -0700153void __cpuinit smp_store_cpu_info(int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Mike Travis92cb7612007-10-19 20:35:04 +0200155 struct cpuinfo_x86 *c = &cpu_data(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 *c = boot_cpu_data;
Mike Travis92cb7612007-10-19 20:35:04 +0200158 c->cpu_index = id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (id!=0)
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200160 identify_secondary_cpu(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 /*
162 * Mask B, Pentium, but not Pentium MMX
163 */
164 if (c->x86_vendor == X86_VENDOR_INTEL &&
165 c->x86 == 5 &&
166 c->x86_mask >= 1 && c->x86_mask <= 4 &&
167 c->x86_model <= 3)
168 /*
169 * Remember we have B step Pentia with bugs
170 */
171 smp_b_stepping = 1;
172
173 /*
174 * Certain Athlons might work (for various values of 'work') in SMP
175 * but they are not certified as MP capable.
176 */
177 if ((c->x86_vendor == X86_VENDOR_AMD) && (c->x86 == 6)) {
178
Dave Jones3ca113e2006-09-26 10:52:34 +0200179 if (num_possible_cpus() == 1)
180 goto valid_k7;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /* Athlon 660/661 is valid. */
183 if ((c->x86_model==6) && ((c->x86_mask==0) || (c->x86_mask==1)))
184 goto valid_k7;
185
186 /* Duron 670 is valid */
187 if ((c->x86_model==7) && (c->x86_mask==0))
188 goto valid_k7;
189
190 /*
191 * Athlon 662, Duron 671, and Athlon >model 7 have capability bit.
192 * It's worth noting that the A5 stepping (662) of some Athlon XP's
193 * have the MP bit set.
194 * See http://www.heise.de/newsticker/data/jow-18.10.01-000 for more.
195 */
196 if (((c->x86_model==6) && (c->x86_mask>=2)) ||
197 ((c->x86_model==7) && (c->x86_mask>=1)) ||
198 (c->x86_model> 7))
199 if (cpu_has_mp)
200 goto valid_k7;
201
202 /* If we get here, it's not a certified SMP capable AMD system. */
Randy Dunlap9f158332005-09-13 01:25:16 -0700203 add_taint(TAINT_UNSAFE_SMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
205
206valid_k7:
207 ;
208}
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210extern void calibrate_delay(void);
211
212static atomic_t init_deasserted;
213
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100214static void __cpuinit smp_callin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 int cpuid, phys_id;
217 unsigned long timeout;
218
219 /*
220 * If waken up by an INIT in an 82489DX configuration
221 * we may get here before an INIT-deassert IPI reaches
222 * our local APIC. We have to wait for the IPI or we'll
223 * lock up on an APIC access.
224 */
225 wait_for_init_deassert(&init_deasserted);
226
227 /*
228 * (This works even if the APIC is not enabled.)
229 */
230 phys_id = GET_APIC_ID(apic_read(APIC_ID));
231 cpuid = smp_processor_id();
232 if (cpu_isset(cpuid, cpu_callin_map)) {
233 printk("huh, phys CPU#%d, CPU#%d already present??\n",
234 phys_id, cpuid);
235 BUG();
236 }
237 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
238
239 /*
240 * STARTUP IPIs are fragile beasts as they might sometimes
241 * trigger some glue motherboard logic. Complete APIC bus
242 * silence for 1 second, this overestimates the time the
243 * boot CPU is spending to send the up to 2 STARTUP IPIs
244 * by a factor of two. This should be enough.
245 */
246
247 /*
248 * Waiting 2s total for startup (udelay is not yet working)
249 */
250 timeout = jiffies + 2*HZ;
251 while (time_before(jiffies, timeout)) {
252 /*
253 * Has the boot CPU finished it's STARTUP sequence?
254 */
255 if (cpu_isset(cpuid, cpu_callout_map))
256 break;
257 rep_nop();
258 }
259
260 if (!time_before(jiffies, timeout)) {
261 printk("BUG: CPU%d started up but did not get a callout!\n",
262 cpuid);
263 BUG();
264 }
265
266 /*
267 * the boot CPU has finished the init stage and is spinning
268 * on callin_map until we finish. We are free to set up this
269 * CPU, first the APIC. (this is probably redundant on most
270 * boards)
271 */
272
273 Dprintk("CALLIN, before setup_local_APIC().\n");
274 smp_callin_clear_local_apic();
275 setup_local_APIC();
276 map_cpu_to_logical_apicid();
277
278 /*
279 * Get our bogomips.
280 */
281 calibrate_delay();
282 Dprintk("Stack at about %p\n",&cpuid);
283
284 /*
285 * Save our processor parameters
286 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800287 smp_store_cpu_info(cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 /*
290 * Allow the master to continue.
291 */
292 cpu_set(cpuid, cpu_callin_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295static int cpucount;
296
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800297/* maps the cpu to the sched domain representing multi-core */
298cpumask_t cpu_coregroup_map(int cpu)
299{
Mike Travis92cb7612007-10-19 20:35:04 +0200300 struct cpuinfo_x86 *c = &cpu_data(cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800301 /*
302 * For perf, we return last level cache shared map.
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700303 * And for power savings, we return cpu_core_map
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800304 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700305 if (sched_mc_power_savings || sched_smt_power_savings)
Mike Travis08357612007-10-16 01:24:04 -0700306 return per_cpu(cpu_core_map, cpu);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700307 else
308 return c->llc_shared_map;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800309}
310
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100311/* representing cpus for which sibling maps can be computed */
312static cpumask_t cpu_sibling_setup_map;
313
Andi Kleenfbab6e72007-07-22 11:12:33 +0200314void __cpuinit set_cpu_sibling_map(int cpu)
Li Shaohuad7208032005-06-25 14:54:54 -0700315{
316 int i;
Mike Travis92cb7612007-10-19 20:35:04 +0200317 struct cpuinfo_x86 *c = &cpu_data(cpu);
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100318
319 cpu_set(cpu, cpu_sibling_setup_map);
Li Shaohuad7208032005-06-25 14:54:54 -0700320
321 if (smp_num_siblings > 1) {
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100322 for_each_cpu_mask(i, cpu_sibling_setup_map) {
Mike Travis92cb7612007-10-19 20:35:04 +0200323 if (c->phys_proc_id == cpu_data(i).phys_proc_id &&
324 c->cpu_core_id == cpu_data(i).cpu_core_id) {
Mike Travisd5a74302007-10-16 01:24:05 -0700325 cpu_set(i, per_cpu(cpu_sibling_map, cpu));
326 cpu_set(cpu, per_cpu(cpu_sibling_map, i));
Mike Travis08357612007-10-16 01:24:04 -0700327 cpu_set(i, per_cpu(cpu_core_map, cpu));
328 cpu_set(cpu, per_cpu(cpu_core_map, i));
Mike Travis92cb7612007-10-19 20:35:04 +0200329 cpu_set(i, c->llc_shared_map);
330 cpu_set(cpu, cpu_data(i).llc_shared_map);
Li Shaohuad7208032005-06-25 14:54:54 -0700331 }
332 }
333 } else {
Mike Travisd5a74302007-10-16 01:24:05 -0700334 cpu_set(cpu, per_cpu(cpu_sibling_map, cpu));
Li Shaohuad7208032005-06-25 14:54:54 -0700335 }
336
Mike Travis92cb7612007-10-19 20:35:04 +0200337 cpu_set(cpu, c->llc_shared_map);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800338
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100339 if (current_cpu_data.x86_max_cores == 1) {
Mike Travisd5a74302007-10-16 01:24:05 -0700340 per_cpu(cpu_core_map, cpu) = per_cpu(cpu_sibling_map, cpu);
Mike Travis92cb7612007-10-19 20:35:04 +0200341 c->booted_cores = 1;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100342 return;
343 }
344
345 for_each_cpu_mask(i, cpu_sibling_setup_map) {
Mike Travisb6278472007-10-19 20:35:03 +0200346 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
347 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
Mike Travis92cb7612007-10-19 20:35:04 +0200348 cpu_set(i, c->llc_shared_map);
349 cpu_set(cpu, cpu_data(i).llc_shared_map);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800350 }
Mike Travis92cb7612007-10-19 20:35:04 +0200351 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
Mike Travis08357612007-10-16 01:24:04 -0700352 cpu_set(i, per_cpu(cpu_core_map, cpu));
353 cpu_set(cpu, per_cpu(cpu_core_map, i));
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100354 /*
355 * Does this new cpu bringup a new core?
356 */
Mike Travisd5a74302007-10-16 01:24:05 -0700357 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1) {
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100358 /*
359 * for each core in package, increment
360 * the booted_cores for this new cpu
361 */
Mike Travisd5a74302007-10-16 01:24:05 -0700362 if (first_cpu(per_cpu(cpu_sibling_map, i)) == i)
Mike Travis92cb7612007-10-19 20:35:04 +0200363 c->booted_cores++;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100364 /*
365 * increment the core count for all
366 * the other cpus in this package
367 */
368 if (i != cpu)
Mike Travis92cb7612007-10-19 20:35:04 +0200369 cpu_data(i).booted_cores++;
370 } else if (i != cpu && !c->booted_cores)
371 c->booted_cores = cpu_data(i).booted_cores;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100372 }
Li Shaohuad7208032005-06-25 14:54:54 -0700373 }
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * Activate a secondary processor.
378 */
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100379static void __cpuinit start_secondary(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 /*
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200382 * Don't put *anything* before cpu_init(), SMP booting is too
383 * fragile that we want to limit the things done here to the
384 * most necessary things.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 */
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +0100386#ifdef CONFIG_VMI
387 vmi_bringup();
388#endif
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200389 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800390 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 smp_callin();
392 while (!cpu_isset(smp_processor_id(), smp_commenced_mask))
393 rep_nop();
Ingo Molnar95492e42007-02-16 01:27:34 -0800394 /*
395 * Check TSC synchronization with the BP:
396 */
397 check_tsc_sync_target();
398
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100399 setup_secondary_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 if (nmi_watchdog == NMI_IO_APIC) {
401 disable_8259A_irq(0);
Jan Beuliche9427102008-01-30 13:31:24 +0100402 enable_NMI_through_LVT0();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 enable_8259A_irq(0);
404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /*
406 * low-memory mappings have been cleared, flush them from
407 * the local TLBs too.
408 */
409 local_flush_tlb();
Li Shaohua6fe940d2005-06-25 14:54:53 -0700410
Li Shaohuad7208032005-06-25 14:54:54 -0700411 /* This must be done before setting cpu_online_map */
412 set_cpu_sibling_map(raw_smp_processor_id());
413 wmb();
414
Li Shaohua6fe940d2005-06-25 14:54:53 -0700415 /*
416 * We need to hold call_lock, so there is no inconsistency
417 * between the time smp_call_function() determines number of
Simon Arlott27b46d72007-10-20 01:13:56 +0200418 * IPI recipients, and the time when the determination is made
Li Shaohua6fe940d2005-06-25 14:54:53 -0700419 * for which cpus receive the IPI. Holding this
420 * lock helps us to not include this cpu in a currently in progress
421 * smp_call_function().
422 */
423 lock_ipi_call_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 cpu_set(smp_processor_id(), cpu_online_map);
Li Shaohua6fe940d2005-06-25 14:54:53 -0700425 unlock_ipi_call_lock();
Li Shaohuae1367da2005-06-25 14:54:56 -0700426 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* We can take interrupts now: we're officially "up". */
429 local_irq_enable();
430
431 wmb();
432 cpu_idle();
433}
434
435/*
436 * Everything has been set up for the secondary
437 * CPUs - they just need to reload everything
438 * from the task structure
439 * This function must not return.
440 */
Li Shaohua0bb31842005-06-25 14:54:55 -0700441void __devinit initialize_secondary(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 /*
444 * We don't actually need to load the full TSS,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100445 * basically just the stack pointer and the ip.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
447
448 asm volatile(
449 "movl %0,%%esp\n\t"
450 "jmp *%1"
451 :
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100452 :"m" (current->thread.sp),"m" (current->thread.ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100455/* Static state in head.S used to set up a CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456extern struct {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100457 void * sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 unsigned short ss;
459} stack_start;
460
461#ifdef CONFIG_NUMA
462
463/* which logical CPUs are on which nodes */
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100464cpumask_t node_to_cpumask_map[MAX_NUMNODES] __read_mostly =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 { [0 ... MAX_NUMNODES-1] = CPU_MASK_NONE };
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100466EXPORT_SYMBOL(node_to_cpumask_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/* which node each logical CPU is on */
travis@sgi.com602a54a2008-01-30 13:33:21 +0100468int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100469EXPORT_SYMBOL(cpu_to_node_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471/* set up a mapping between cpu and node. */
472static inline void map_cpu_to_node(int cpu, int node)
473{
474 printk("Mapping cpu %d to node %d\n", cpu, node);
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100475 cpu_set(cpu, node_to_cpumask_map[node]);
476 cpu_to_node_map[cpu] = node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479/* undo a mapping between cpu and node. */
480static inline void unmap_cpu_to_node(int cpu)
481{
482 int node;
483
484 printk("Unmapping cpu %d from all nodes\n", cpu);
485 for (node = 0; node < MAX_NUMNODES; node ++)
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100486 cpu_clear(cpu, node_to_cpumask_map[node]);
487 cpu_to_node_map[cpu] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489#else /* !CONFIG_NUMA */
490
491#define map_cpu_to_node(cpu, node) ({})
492#define unmap_cpu_to_node(cpu) ({})
493
494#endif /* CONFIG_NUMA */
495
Christoph Lameter6c036522005-07-07 17:56:59 -0700496u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = BAD_APICID };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498static void map_cpu_to_logical_apicid(void)
499{
500 int cpu = smp_processor_id();
501 int apicid = logical_smp_processor_id();
Keith Mannthey78b656b2006-10-03 18:25:52 -0700502 int node = apicid_to_node(apicid);
keith manntheybfa0e9a2006-09-25 16:25:35 -0700503
504 if (!node_online(node))
505 node = first_online_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 cpu_2_logical_apicid[cpu] = apicid;
keith manntheybfa0e9a2006-09-25 16:25:35 -0700508 map_cpu_to_node(cpu, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511static void unmap_cpu_to_logical_apicid(int cpu)
512{
513 cpu_2_logical_apicid[cpu] = BAD_APICID;
514 unmap_cpu_to_node(cpu);
515}
516
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517static inline void __inquire_remote_apic(int apicid)
518{
519 int i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
520 char *names[] = { "ID", "VERSION", "SPIV" };
Fernando Luis VazquezCao4312fa82007-05-02 19:27:17 +0200521 int timeout;
522 unsigned long status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 printk("Inquiring remote APIC #%d...\n", apicid);
525
Tobias Klauser38e548e2005-11-07 00:58:31 -0800526 for (i = 0; i < ARRAY_SIZE(regs); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 printk("... APIC #%d %s: ", apicid, names[i]);
528
529 /*
530 * Wait for idle.
531 */
Fernando Luis VazquezCao4312fa82007-05-02 19:27:17 +0200532 status = safe_apic_wait_icr_idle();
533 if (status)
534 printk("a previous APIC delivery may have failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
537 apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
538
539 timeout = 0;
540 do {
541 udelay(100);
542 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
543 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
544
545 switch (status) {
546 case APIC_ICR_RR_VALID:
547 status = apic_read(APIC_RRR);
Andi Kleenec1180d2007-05-02 19:27:21 +0200548 printk("%lx\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 break;
550 default:
551 printk("failed\n");
552 }
553 }
554}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556#ifdef WAKE_SECONDARY_VIA_NMI
557/*
558 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
559 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
560 * won't ... remember to clear down the APIC, etc later.
561 */
Li Shaohua0bb31842005-06-25 14:54:55 -0700562static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
564{
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200565 unsigned long send_status, accept_status = 0;
566 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 /* Target chip */
569 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
570
571 /* Boot on the stack */
572 /* Kick the second */
573 apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
574
575 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200576 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 /*
579 * Give the other CPU some time to accept the IPI.
580 */
581 udelay(200);
582 /*
583 * Due to the Pentium erratum 3AP.
584 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800585 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (maxlvt > 3) {
587 apic_read_around(APIC_SPIV);
588 apic_write(APIC_ESR, 0);
589 }
590 accept_status = (apic_read(APIC_ESR) & 0xEF);
591 Dprintk("NMI sent.\n");
592
593 if (send_status)
594 printk("APIC never delivered???\n");
595 if (accept_status)
596 printk("APIC delivery error (%lx).\n", accept_status);
597
598 return (send_status | accept_status);
599}
600#endif /* WAKE_SECONDARY_VIA_NMI */
601
602#ifdef WAKE_SECONDARY_VIA_INIT
Li Shaohua0bb31842005-06-25 14:54:55 -0700603static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
605{
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200606 unsigned long send_status, accept_status = 0;
607 int maxlvt, num_starts, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 /*
610 * Be paranoid about clearing APIC errors.
611 */
612 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
613 apic_read_around(APIC_SPIV);
614 apic_write(APIC_ESR, 0);
615 apic_read(APIC_ESR);
616 }
617
618 Dprintk("Asserting INIT.\n");
619
620 /*
621 * Turn INIT on target chip
622 */
623 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
624
625 /*
626 * Send IPI
627 */
628 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
629 | APIC_DM_INIT);
630
631 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200632 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 mdelay(10);
635
636 Dprintk("Deasserting INIT.\n");
637
638 /* Target chip */
639 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
640
641 /* Send IPI */
642 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
643
644 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200645 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 atomic_set(&init_deasserted, 1);
648
649 /*
650 * Should we send STARTUP IPIs ?
651 *
652 * Determine this based on the APIC version.
653 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
654 */
655 if (APIC_INTEGRATED(apic_version[phys_apicid]))
656 num_starts = 2;
657 else
658 num_starts = 0;
659
660 /*
Zachary Amsdenae5da272007-02-13 13:26:21 +0100661 * Paravirt / VMI wants a startup IPI hook here to set up the
662 * target processor state.
663 */
664 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100665 (unsigned long) stack_start.sp);
Zachary Amsdenae5da272007-02-13 13:26:21 +0100666
667 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * Run STARTUP IPI loop.
669 */
670 Dprintk("#startup loops: %d.\n", num_starts);
671
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800672 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 for (j = 1; j <= num_starts; j++) {
675 Dprintk("Sending STARTUP #%d.\n",j);
676 apic_read_around(APIC_SPIV);
677 apic_write(APIC_ESR, 0);
678 apic_read(APIC_ESR);
679 Dprintk("After apic_write.\n");
680
681 /*
682 * STARTUP IPI
683 */
684
685 /* Target chip */
686 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
687
688 /* Boot on the stack */
689 /* Kick the second */
690 apic_write_around(APIC_ICR, APIC_DM_STARTUP
691 | (start_eip >> 12));
692
693 /*
694 * Give the other CPU some time to accept the IPI.
695 */
696 udelay(300);
697
698 Dprintk("Startup point 1.\n");
699
700 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200701 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 /*
704 * Give the other CPU some time to accept the IPI.
705 */
706 udelay(200);
707 /*
708 * Due to the Pentium erratum 3AP.
709 */
710 if (maxlvt > 3) {
711 apic_read_around(APIC_SPIV);
712 apic_write(APIC_ESR, 0);
713 }
714 accept_status = (apic_read(APIC_ESR) & 0xEF);
715 if (send_status || accept_status)
716 break;
717 }
718 Dprintk("After Startup.\n");
719
720 if (send_status)
721 printk("APIC never delivered???\n");
722 if (accept_status)
723 printk("APIC delivery error (%lx).\n", accept_status);
724
725 return (send_status | accept_status);
726}
727#endif /* WAKE_SECONDARY_VIA_INIT */
728
729extern cpumask_t cpu_initialized;
Li Shaohuae1367da2005-06-25 14:54:56 -0700730static inline int alloc_cpu_id(void)
731{
732 cpumask_t tmp_map;
733 int cpu;
734 cpus_complement(tmp_map, cpu_present_map);
735 cpu = first_cpu(tmp_map);
736 if (cpu >= NR_CPUS)
737 return -ENODEV;
738 return cpu;
739}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Li Shaohuae1367da2005-06-25 14:54:56 -0700741#ifdef CONFIG_HOTPLUG_CPU
Adrian Bunkf2206ec2007-12-19 23:20:18 +0100742static struct task_struct * __cpuinitdata cpu_idle_tasks[NR_CPUS];
743static inline struct task_struct * __cpuinit alloc_idle_task(int cpu)
Li Shaohuae1367da2005-06-25 14:54:56 -0700744{
745 struct task_struct *idle;
746
747 if ((idle = cpu_idle_tasks[cpu]) != NULL) {
748 /* initialize thread_struct. we really want to avoid destroy
749 * idle tread
750 */
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100751 idle->thread.sp = (unsigned long)task_pt_regs(idle);
Li Shaohuae1367da2005-06-25 14:54:56 -0700752 init_idle(idle, cpu);
753 return idle;
754 }
755 idle = fork_idle(cpu);
756
757 if (!IS_ERR(idle))
758 cpu_idle_tasks[cpu] = idle;
759 return idle;
760}
761#else
762#define alloc_idle_task(cpu) fork_idle(cpu)
763#endif
764
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100765static int __cpuinit do_boot_cpu(int apicid, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/*
767 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
768 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
769 * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
770 */
771{
772 struct task_struct *idle;
773 unsigned long boot_error;
Li Shaohuae1367da2005-06-25 14:54:56 -0700774 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 unsigned long start_eip;
776 unsigned short nmi_high = 0, nmi_low = 0;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 /*
Bernhard Kaindl2b1f6272007-05-02 19:27:17 +0200779 * Save current MTRR state in case it was changed since early boot
780 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
781 */
782 mtrr_save_state();
783
784 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 * We can't use kernel_thread since we must avoid to
786 * reschedule the child.
787 */
Li Shaohuae1367da2005-06-25 14:54:56 -0700788 idle = alloc_idle_task(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 if (IS_ERR(idle))
790 panic("failed fork for CPU %d", cpu);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100791
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +0200792 init_gdt(cpu);
793 per_cpu(current_task, cpu) = idle;
Rusty Russellbf5046722007-05-02 19:27:10 +0200794 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100795
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100796 idle->thread.ip = (unsigned long) start_secondary;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 /* start_eip had better be page-aligned! */
798 start_eip = setup_trampoline();
799
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100800 ++cpucount;
801 alternatives_smp_switch(1);
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /* So we see what's up */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100804 printk("Booting processor %d/%d ip %lx\n", cpu, apicid, start_eip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* Stack for startup_32 can be just as for start_secondary onwards */
H. Peter Anvinfaca6222008-01-30 13:31:02 +0100806 stack_start.sp = (void *) idle->thread.sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
808 irq_ctx_init(cpu);
809
Mike Travis71fff5e2007-10-19 20:35:03 +0200810 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 /*
812 * This grunge runs the startup process for
813 * the targeted processor.
814 */
815
816 atomic_set(&init_deasserted, 0);
817
818 Dprintk("Setting warm reset code and vector.\n");
819
820 store_NMI_vector(&nmi_high, &nmi_low);
821
822 smpboot_setup_warm_reset_vector(start_eip);
823
824 /*
825 * Starting actual IPI sequence...
826 */
827 boot_error = wakeup_secondary_cpu(apicid, start_eip);
828
829 if (!boot_error) {
830 /*
831 * allow APs to start initializing.
832 */
833 Dprintk("Before Callout %d.\n", cpu);
834 cpu_set(cpu, cpu_callout_map);
835 Dprintk("After Callout %d.\n", cpu);
836
837 /*
838 * Wait 5s total for a response
839 */
840 for (timeout = 0; timeout < 50000; timeout++) {
841 if (cpu_isset(cpu, cpu_callin_map))
842 break; /* It has booted */
843 udelay(100);
844 }
845
846 if (cpu_isset(cpu, cpu_callin_map)) {
847 /* number CPUs logically, starting from 1 (BSP is 0) */
848 Dprintk("OK.\n");
849 printk("CPU%d: ", cpu);
Mike Travis92cb7612007-10-19 20:35:04 +0200850 print_cpu_info(&cpu_data(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 Dprintk("CPU has booted.\n");
852 } else {
853 boot_error= 1;
854 if (*((volatile unsigned char *)trampoline_base)
855 == 0xA5)
856 /* trampoline started but...? */
857 printk("Stuck ??\n");
858 else
859 /* trampoline code not run */
860 printk("Not responding.\n");
861 inquire_remote_apic(apicid);
862 }
863 }
Li Shaohuae1367da2005-06-25 14:54:56 -0700864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (boot_error) {
866 /* Try to put things back the way they were before ... */
867 unmap_cpu_to_logical_apicid(cpu);
868 cpu_clear(cpu, cpu_callout_map); /* was set here (do_boot_cpu()) */
869 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
870 cpucount--;
Li Shaohuae1367da2005-06-25 14:54:56 -0700871 } else {
Mike Travis71fff5e2007-10-19 20:35:03 +0200872 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
Li Shaohuae1367da2005-06-25 14:54:56 -0700873 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
876 /* mark "stuck" area as not stuck */
877 *((volatile unsigned long *)trampoline_base) = 0;
878
879 return boot_error;
880}
881
Li Shaohuae1367da2005-06-25 14:54:56 -0700882#ifdef CONFIG_HOTPLUG_CPU
883void cpu_exit_clear(void)
884{
885 int cpu = raw_smp_processor_id();
886
887 idle_task_exit();
888
889 cpucount --;
890 cpu_uninit();
891 irq_ctx_exit(cpu);
892
893 cpu_clear(cpu, cpu_callout_map);
894 cpu_clear(cpu, cpu_callin_map);
Li Shaohuae1367da2005-06-25 14:54:56 -0700895
896 cpu_clear(cpu, smp_commenced_mask);
897 unmap_cpu_to_logical_apicid(cpu);
898}
899
900struct warm_boot_cpu_info {
901 struct completion *complete;
David Howellsc4028952006-11-22 14:57:56 +0000902 struct work_struct task;
Li Shaohuae1367da2005-06-25 14:54:56 -0700903 int apicid;
904 int cpu;
905};
906
David Howellsc4028952006-11-22 14:57:56 +0000907static void __cpuinit do_warm_boot_cpu(struct work_struct *work)
Li Shaohuae1367da2005-06-25 14:54:56 -0700908{
David Howellsc4028952006-11-22 14:57:56 +0000909 struct warm_boot_cpu_info *info =
910 container_of(work, struct warm_boot_cpu_info, task);
Li Shaohuae1367da2005-06-25 14:54:56 -0700911 do_boot_cpu(info->apicid, info->cpu);
912 complete(info->complete);
913}
914
Ashok Raj34f361a2006-03-25 03:08:18 -0800915static int __cpuinit __smp_prepare_cpu(int cpu)
Li Shaohuae1367da2005-06-25 14:54:56 -0700916{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700917 DECLARE_COMPLETION_ONSTACK(done);
Li Shaohuae1367da2005-06-25 14:54:56 -0700918 struct warm_boot_cpu_info info;
Li Shaohuae1367da2005-06-25 14:54:56 -0700919 int apicid, ret;
920
Mike Travis71fff5e2007-10-19 20:35:03 +0200921 apicid = per_cpu(x86_cpu_to_apicid, cpu);
Li Shaohuae1367da2005-06-25 14:54:56 -0700922 if (apicid == BAD_APICID) {
923 ret = -ENODEV;
924 goto exit;
925 }
926
927 info.complete = &done;
928 info.apicid = apicid;
929 info.cpu = cpu;
David Howellsc4028952006-11-22 14:57:56 +0000930 INIT_WORK(&info.task, do_warm_boot_cpu);
Li Shaohuae1367da2005-06-25 14:54:56 -0700931
Li Shaohuae1367da2005-06-25 14:54:56 -0700932 /* init low mem mapping */
Zachary Amsdend7271b12005-09-03 15:56:50 -0700933 clone_pgd_range(swapper_pg_dir, swapper_pg_dir + USER_PGD_PTRS,
Shaohua Li3b1bdf42006-12-08 02:41:13 -0800934 min_t(unsigned long, KERNEL_PGD_PTRS, USER_PGD_PTRS));
Li Shaohuae1367da2005-06-25 14:54:56 -0700935 flush_tlb_all();
David Howellsc4028952006-11-22 14:57:56 +0000936 schedule_work(&info.task);
Li Shaohuae1367da2005-06-25 14:54:56 -0700937 wait_for_completion(&done);
938
Li Shaohuae1367da2005-06-25 14:54:56 -0700939 zap_low_mappings();
940 ret = 0;
941exit:
Li Shaohuae1367da2005-06-25 14:54:56 -0700942 return ret;
943}
944#endif
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946/*
947 * Cycle through the processors sending APIC IPIs to boot each.
948 */
949
950static int boot_cpu_logical_apicid;
951/* Where the IO area was mapped on multiquad, always 0 otherwise */
952void *xquad_portio;
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700953#ifdef CONFIG_X86_NUMAQ
954EXPORT_SYMBOL(xquad_portio);
955#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957static void __init smp_boot_cpus(unsigned int max_cpus)
958{
959 int apicid, cpu, bit, kicked;
960 unsigned long bogosum = 0;
961
962 /*
963 * Setup boot CPU information
964 */
965 smp_store_cpu_info(0); /* Final full version of the data */
966 printk("CPU%d: ", 0);
Mike Travis92cb7612007-10-19 20:35:04 +0200967 print_cpu_info(&cpu_data(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Linus Torvalds1e4c85f2005-10-31 19:16:17 -0800969 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 boot_cpu_logical_apicid = logical_smp_processor_id();
Mike Travis71fff5e2007-10-19 20:35:03 +0200971 per_cpu(x86_cpu_to_apicid, 0) = boot_cpu_physical_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 current_thread_info()->cpu = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100975 set_cpu_sibling_map(0);
Andi Kleen3dd9d512005-04-16 15:25:15 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /*
978 * If we couldn't find an SMP configuration at boot time,
979 * get out of here now!
980 */
981 if (!smp_found_config && !acpi_lapic) {
982 printk(KERN_NOTICE "SMP motherboard not detected.\n");
Linus Torvalds1e4c85f2005-10-31 19:16:17 -0800983 smpboot_clear_io_apic_irqs();
984 phys_cpu_present_map = physid_mask_of_physid(0);
985 if (APIC_init_uniprocessor())
986 printk(KERN_NOTICE "Local APIC not detected."
987 " Using dummy APIC emulation.\n");
988 map_cpu_to_logical_apicid();
Mike Travisd5a74302007-10-16 01:24:05 -0700989 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -0700990 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return;
992 }
993
994 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -0800995 * Should not be necessary because the MP table should list the boot
996 * CPU too, but we do it for the sake of robustness anyway.
997 * Makes no sense to do this check in clustered apic mode, so skip it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 */
Linus Torvalds1e4c85f2005-10-31 19:16:17 -0800999 if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
1000 printk("weird, boot CPU (#%d) not listed by the BIOS.\n",
1001 boot_cpu_physical_apicid);
1002 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1003 }
1004
1005 /*
1006 * If we couldn't find a local APIC, then get out of here now!
1007 */
1008 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) && !cpu_has_apic) {
1009 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1010 boot_cpu_physical_apicid);
1011 printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
1012 smpboot_clear_io_apic_irqs();
1013 phys_cpu_present_map = physid_mask_of_physid(0);
Ingo Molnar54ffaa42007-10-19 20:35:02 +02001014 map_cpu_to_logical_apicid();
Mike Travisd5a74302007-10-16 01:24:05 -07001015 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -07001016 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return;
1018 }
1019
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001020 verify_local_APIC();
1021
1022 /*
1023 * If SMP should be disabled, then really disable it!
1024 */
1025 if (!max_cpus) {
1026 smp_found_config = 0;
1027 printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n");
Ingo Molnar3fb450a2007-10-17 18:04:34 +02001028
1029 if (nmi_watchdog == NMI_LOCAL_APIC) {
1030 printk(KERN_INFO "activating minimal APIC for NMI watchdog use.\n");
1031 connect_bsp_APIC();
1032 setup_local_APIC();
1033 }
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001034 smpboot_clear_io_apic_irqs();
1035 phys_cpu_present_map = physid_mask_of_physid(0);
Ingo Molnar54ffaa42007-10-19 20:35:02 +02001036 map_cpu_to_logical_apicid();
Mike Travisd5a74302007-10-16 01:24:05 -07001037 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -07001038 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001039 return;
1040 }
1041
1042 connect_bsp_APIC();
1043 setup_local_APIC();
1044 map_cpu_to_logical_apicid();
1045
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 setup_portio_remap();
1048
1049 /*
1050 * Scan the CPU present map and fire up the other CPUs via do_boot_cpu
1051 *
1052 * In clustered apic mode, phys_cpu_present_map is a constructed thus:
1053 * bits 0-3 are quad0, 4-7 are quad1, etc. A perverse twist on the
1054 * clustered apic ID.
1055 */
1056 Dprintk("CPU present map: %lx\n", physids_coerce(phys_cpu_present_map));
1057
1058 kicked = 1;
1059 for (bit = 0; kicked < NR_CPUS && bit < MAX_APICS; bit++) {
1060 apicid = cpu_present_to_apicid(bit);
1061 /*
1062 * Don't even attempt to start the boot CPU!
1063 */
1064 if ((apicid == boot_cpu_apicid) || (apicid == BAD_APICID))
1065 continue;
1066
1067 if (!check_apicid_present(bit))
1068 continue;
1069 if (max_cpus <= cpucount+1)
1070 continue;
1071
Li Shaohuae1367da2005-06-25 14:54:56 -07001072 if (((cpu = alloc_cpu_id()) <= 0) || do_boot_cpu(apicid, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 printk("CPU #%d not responding - cannot use it.\n",
1074 apicid);
1075 else
1076 ++kicked;
1077 }
1078
1079 /*
1080 * Cleanup possible dangling ends...
1081 */
1082 smpboot_restore_warm_reset_vector();
1083
1084 /*
1085 * Allow the user to impress friends.
1086 */
1087 Dprintk("Before bogomips.\n");
Mike Travis7bf0c232008-01-30 13:30:55 +01001088 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 if (cpu_isset(cpu, cpu_callout_map))
Mike Travis92cb7612007-10-19 20:35:04 +02001090 bogosum += cpu_data(cpu).loops_per_jiffy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 printk(KERN_INFO
1092 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
1093 cpucount+1,
1094 bogosum/(500000/HZ),
1095 (bogosum/(5000/HZ))%100);
1096
1097 Dprintk("Before bogocount - setting activated=1.\n");
1098
1099 if (smp_b_stepping)
1100 printk(KERN_WARNING "WARNING: SMP operation may be unreliable with B stepping processors.\n");
1101
1102 /*
1103 * Don't taint if we are running SMP kernel on a single non-MP
1104 * approved Athlon
1105 */
1106 if (tainted & TAINT_UNSAFE_SMP) {
1107 if (cpucount)
1108 printk (KERN_INFO "WARNING: This combination of AMD processors is not suitable for SMP.\n");
1109 else
1110 tainted &= ~TAINT_UNSAFE_SMP;
1111 }
1112
1113 Dprintk("Boot done.\n");
1114
1115 /*
Mike Travisd5a74302007-10-16 01:24:05 -07001116 * construct cpu_sibling_map, so that we can tell sibling CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 * efficiently.
1118 */
Mike Travis7bf0c232008-01-30 13:30:55 +01001119 for_each_possible_cpu(cpu) {
Mike Travisd5a74302007-10-16 01:24:05 -07001120 cpus_clear(per_cpu(cpu_sibling_map, cpu));
Mike Travis08357612007-10-16 01:24:04 -07001121 cpus_clear(per_cpu(cpu_core_map, cpu));
Andi Kleen3dd9d512005-04-16 15:25:15 -07001122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Mike Travisd5a74302007-10-16 01:24:05 -07001124 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -07001125 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001127 smpboot_setup_io_apic();
1128
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001129 setup_boot_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132/* These are wrappers to interface to the new boot process. Someone
1133 who understands all this stuff should rewrite it properly. --RR 15/Jul/02 */
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001134void __init native_smp_prepare_cpus(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001136 smp_commenced_mask = cpumask_of_cpu(0);
1137 cpu_callin_map = cpumask_of_cpu(0);
1138 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 smp_boot_cpus(max_cpus);
1140}
1141
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001142void __init native_smp_prepare_boot_cpu(void)
Rusty Russellbf5046722007-05-02 19:27:10 +02001143{
1144 unsigned int cpu = smp_processor_id();
1145
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +02001146 init_gdt(cpu);
Rusty Russellbf5046722007-05-02 19:27:10 +02001147 switch_to_new_gdt();
1148
1149 cpu_set(cpu, cpu_online_map);
1150 cpu_set(cpu, cpu_callout_map);
1151 cpu_set(cpu, cpu_present_map);
1152 cpu_set(cpu, cpu_possible_map);
1153 __get_cpu_var(cpu_state) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154}
1155
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001156#ifdef CONFIG_HOTPLUG_CPU
Jeremy Fitzhardingec70df742007-07-17 18:37:03 -07001157void remove_siblinginfo(int cpu)
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001158{
Li Shaohuae1367da2005-06-25 14:54:56 -07001159 int sibling;
Mike Travis92cb7612007-10-19 20:35:04 +02001160 struct cpuinfo_x86 *c = &cpu_data(cpu);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001161
Mike Travis08357612007-10-16 01:24:04 -07001162 for_each_cpu_mask(sibling, per_cpu(cpu_core_map, cpu)) {
1163 cpu_clear(cpu, per_cpu(cpu_core_map, sibling));
1164 /*/
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001165 * last thread sibling in this cpu core going down
1166 */
Mike Travisd5a74302007-10-16 01:24:05 -07001167 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1)
Mike Travis92cb7612007-10-19 20:35:04 +02001168 cpu_data(sibling).booted_cores--;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001169 }
1170
Mike Travisd5a74302007-10-16 01:24:05 -07001171 for_each_cpu_mask(sibling, per_cpu(cpu_sibling_map, cpu))
1172 cpu_clear(cpu, per_cpu(cpu_sibling_map, sibling));
1173 cpus_clear(per_cpu(cpu_sibling_map, cpu));
Mike Travis08357612007-10-16 01:24:04 -07001174 cpus_clear(per_cpu(cpu_core_map, cpu));
Mike Travis92cb7612007-10-19 20:35:04 +02001175 c->phys_proc_id = 0;
1176 c->cpu_core_id = 0;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001177 cpu_clear(cpu, cpu_sibling_setup_map);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001178}
1179
1180int __cpu_disable(void)
1181{
1182 cpumask_t map = cpu_online_map;
1183 int cpu = smp_processor_id();
1184
1185 /*
1186 * Perhaps use cpufreq to drop frequency, but that could go
1187 * into generic code.
1188 *
1189 * We won't take down the boot processor on i386 due to some
1190 * interrupts only being able to be serviced by the BSP.
1191 * Especially so if we're not using an IOAPIC -zwane
1192 */
1193 if (cpu == 0)
1194 return -EBUSY;
Shaohua Li4038f902006-09-26 10:52:27 +02001195 if (nmi_watchdog == NMI_LOCAL_APIC)
1196 stop_apic_nmi_watchdog(NULL);
Shaohua Li5e9ef022005-12-12 22:17:08 -08001197 clear_local_APIC();
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001198 /* Allow any queued timer interrupts to get serviced */
1199 local_irq_enable();
1200 mdelay(1);
1201 local_irq_disable();
1202
Li Shaohuae1367da2005-06-25 14:54:56 -07001203 remove_siblinginfo(cpu);
1204
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001205 cpu_clear(cpu, map);
1206 fixup_irqs(map);
1207 /* It's now safe to remove this processor from the online map */
1208 cpu_clear(cpu, cpu_online_map);
1209 return 0;
1210}
1211
1212void __cpu_die(unsigned int cpu)
1213{
1214 /* We don't do anything here: idle task is faking death itself. */
1215 unsigned int i;
1216
1217 for (i = 0; i < 10; i++) {
1218 /* They ack this in play_dead by setting CPU_DEAD */
Li Shaohuae1367da2005-06-25 14:54:56 -07001219 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1220 printk ("CPU %d is now offline\n", cpu);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001221 if (1 == num_online_cpus())
1222 alternatives_smp_switch(0);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001223 return;
Li Shaohuae1367da2005-06-25 14:54:56 -07001224 }
Nishanth Aravamudanaeb83972005-09-10 00:26:50 -07001225 msleep(100);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001226 }
1227 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1228}
1229#else /* ... !CONFIG_HOTPLUG_CPU */
1230int __cpu_disable(void)
1231{
1232 return -ENOSYS;
1233}
1234
1235void __cpu_die(unsigned int cpu)
1236{
1237 /* We said "no" in __cpu_disable */
1238 BUG();
1239}
1240#endif /* CONFIG_HOTPLUG_CPU */
1241
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001242int __cpuinit native_cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
Ingo Molnard04f41e2007-03-07 18:12:31 +01001244 unsigned long flags;
Ashok Raj34f361a2006-03-25 03:08:18 -08001245#ifdef CONFIG_HOTPLUG_CPU
Ingo Molnard04f41e2007-03-07 18:12:31 +01001246 int ret = 0;
Ashok Raj34f361a2006-03-25 03:08:18 -08001247
1248 /*
1249 * We do warm boot only on cpus that had booted earlier
1250 * Otherwise cold boot is all handled from smp_boot_cpus().
1251 * cpu_callin_map is set during AP kickstart process. Its reset
1252 * when a cpu is taken offline from cpu_exit_clear().
1253 */
1254 if (!cpu_isset(cpu, cpu_callin_map))
1255 ret = __smp_prepare_cpu(cpu);
1256
1257 if (ret)
1258 return -EIO;
1259#endif
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 /* In case one didn't come up */
1262 if (!cpu_isset(cpu, cpu_callin_map)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001263 printk(KERN_DEBUG "skipping cpu%d, didn't come online\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return -EIO;
1265 }
1266
Li Shaohuae1367da2005-06-25 14:54:56 -07001267 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /* Unleash the CPU! */
1269 cpu_set(cpu, smp_commenced_mask);
Ingo Molnar95492e42007-02-16 01:27:34 -08001270
1271 /*
Ingo Molnard04f41e2007-03-07 18:12:31 +01001272 * Check TSC synchronization with the AP (keep irqs disabled
1273 * while doing so):
Ingo Molnar95492e42007-02-16 01:27:34 -08001274 */
Ingo Molnard04f41e2007-03-07 18:12:31 +01001275 local_irq_save(flags);
Ingo Molnar95492e42007-02-16 01:27:34 -08001276 check_tsc_sync_source(cpu);
Ingo Molnard04f41e2007-03-07 18:12:31 +01001277 local_irq_restore(flags);
Ingo Molnar95492e42007-02-16 01:27:34 -08001278
Ingo Molnard04f41e2007-03-07 18:12:31 +01001279 while (!cpu_isset(cpu, cpu_online_map)) {
Andreas Mohr18698912006-06-25 05:46:52 -07001280 cpu_relax();
Ingo Molnard04f41e2007-03-07 18:12:31 +01001281 touch_nmi_watchdog();
1282 }
Siddha, Suresh Bb0d0a4b2006-12-07 02:14:10 +01001283
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return 0;
1285}
1286
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001287void __init native_smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288{
1289#ifdef CONFIG_X86_IO_APIC
1290 setup_ioapic_dest();
1291#endif
1292 zap_low_mappings();
Li Shaohuae1367da2005-06-25 14:54:56 -07001293#ifndef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 /*
1295 * Disable executability of the SMP trampoline:
1296 */
1297 set_kernel_exec((unsigned long)trampoline_base, trampoline_exec);
Li Shaohuae1367da2005-06-25 14:54:56 -07001298#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
1301void __init smp_intr_init(void)
1302{
1303 /*
1304 * IRQ0 must be given a fixed assignment and initialized,
1305 * because it's used before the IO-APIC is set up.
1306 */
1307 set_intr_gate(FIRST_DEVICE_VECTOR, interrupt[0]);
1308
1309 /*
1310 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
1311 * IPI, driven by wakeup.
1312 */
1313 set_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
1314
1315 /* IPI for invalidation */
1316 set_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
1317
1318 /* IPI for generic function call */
1319 set_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
1320}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001321
1322/*
1323 * If the BIOS enumerates physical processors before logical,
1324 * maxcpus=N at enumeration-time can be used to disable HT.
1325 */
1326static int __init parse_maxcpus(char *arg)
1327{
1328 extern unsigned int maxcpus;
1329
1330 maxcpus = simple_strtoul(arg, NULL, 0);
1331 return 0;
1332}
1333early_param("maxcpus", parse_maxcpus);