blob: 095636620fa20e9e6b5f6e29850a0ca322ba44b3 [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>
43#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/bootmem.h>
Zwane Mwaikambof3705132005-06-25 14:54:50 -070045#include <linux/notifier.h>
46#include <linux/cpu.h>
47#include <linux/percpu.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>
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +010055#include <asm/pda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#include <mach_apic.h>
58#include <mach_wakecpu.h>
59#include <smpboot_hooks.h>
60
61/* Set if we find a B stepping CPU */
Li Shaohua0bb31842005-06-25 14:54:55 -070062static int __devinitdata smp_b_stepping;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/* Number of siblings per CPU package */
65int smp_num_siblings = 1;
Alexey Dobriyan129f6942005-06-23 00:08:33 -070066#ifdef CONFIG_X86_HT
67EXPORT_SYMBOL(smp_num_siblings);
68#endif
Li Shaohuad7208032005-06-25 14:54:54 -070069
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -080070/* Last level cache ID of each logical CPU */
71int cpu_llc_id[NR_CPUS] __cpuinitdata = {[0 ... NR_CPUS-1] = BAD_APICID};
72
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010073/* representing HT siblings of each logical CPU */
Christoph Lameter6c036522005-07-07 17:56:59 -070074cpumask_t cpu_sibling_map[NR_CPUS] __read_mostly;
Li Shaohuad7208032005-06-25 14:54:54 -070075EXPORT_SYMBOL(cpu_sibling_map);
76
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010077/* representing HT and core siblings of each logical CPU */
Christoph Lameter6c036522005-07-07 17:56:59 -070078cpumask_t cpu_core_map[NR_CPUS] __read_mostly;
Li Shaohuad7208032005-06-25 14:54:54 -070079EXPORT_SYMBOL(cpu_core_map);
80
Linus Torvalds1da177e2005-04-16 15:20:36 -070081/* bitmap of online cpus */
Christoph Lameter6c036522005-07-07 17:56:59 -070082cpumask_t cpu_online_map __read_mostly;
Alexey Dobriyan129f6942005-06-23 00:08:33 -070083EXPORT_SYMBOL(cpu_online_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85cpumask_t cpu_callin_map;
86cpumask_t cpu_callout_map;
Alexey Dobriyan129f6942005-06-23 00:08:33 -070087EXPORT_SYMBOL(cpu_callout_map);
Zwane Mwaikambo4ad8d382005-09-03 15:56:51 -070088cpumask_t cpu_possible_map;
89EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static cpumask_t smp_commenced_mask;
91
Li Shaohuae1367da2005-06-25 14:54:56 -070092/* TSC's upper 32 bits can't be written in eariler CPU (before prescott), there
93 * is no way to resync one AP against BP. TBD: for prescott and above, we
94 * should use IA64's algorithm
95 */
96static int __devinitdata tsc_sync_disabled;
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/* Per CPU bogomips and other parameters */
99struct cpuinfo_x86 cpu_data[NR_CPUS] __cacheline_aligned;
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700100EXPORT_SYMBOL(cpu_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Christoph Lameter6c036522005-07-07 17:56:59 -0700102u8 x86_cpu_to_apicid[NR_CPUS] __read_mostly =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 { [0 ... NR_CPUS-1] = 0xff };
104EXPORT_SYMBOL(x86_cpu_to_apicid);
105
keith mannthey3b086062006-09-29 01:58:46 -0700106u8 apicid_2_node[MAX_APICID];
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * Trampoline 80x86 program as an array.
110 */
111
112extern unsigned char trampoline_data [];
113extern unsigned char trampoline_end [];
114static unsigned char *trampoline_base;
115static int trampoline_exec;
116
117static void map_cpu_to_logical_apicid(void);
118
Zwane Mwaikambof3705132005-06-25 14:54:50 -0700119/* State of each CPU. */
120DEFINE_PER_CPU(int, cpu_state) = { 0 };
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/*
123 * Currently trivial. Write the real->protected mode
124 * bootstrap into the page concerned. The caller
125 * has made sure it's suitably aligned.
126 */
127
Li Shaohua0bb31842005-06-25 14:54:55 -0700128static unsigned long __devinit setup_trampoline(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 memcpy(trampoline_base, trampoline_data, trampoline_end - trampoline_data);
131 return virt_to_phys(trampoline_base);
132}
133
134/*
135 * We are called very early to get the low memory for the
136 * SMP bootup trampoline page.
137 */
138void __init smp_alloc_memory(void)
139{
140 trampoline_base = (void *) alloc_bootmem_low_pages(PAGE_SIZE);
141 /*
142 * Has to be in very low memory so we can execute
143 * real-mode AP code.
144 */
145 if (__pa(trampoline_base) >= 0x9F000)
146 BUG();
147 /*
148 * Make the SMP trampoline executable:
149 */
150 trampoline_exec = set_kernel_exec((unsigned long)trampoline_base, 1);
151}
152
153/*
154 * The bootstrap kernel entry code has set these up. Save them for
155 * a given CPU
156 */
157
Li Shaohua0bb31842005-06-25 14:54:55 -0700158static void __devinit smp_store_cpu_info(int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
160 struct cpuinfo_x86 *c = cpu_data + id;
161
162 *c = boot_cpu_data;
163 if (id!=0)
164 identify_cpu(c);
165 /*
166 * Mask B, Pentium, but not Pentium MMX
167 */
168 if (c->x86_vendor == X86_VENDOR_INTEL &&
169 c->x86 == 5 &&
170 c->x86_mask >= 1 && c->x86_mask <= 4 &&
171 c->x86_model <= 3)
172 /*
173 * Remember we have B step Pentia with bugs
174 */
175 smp_b_stepping = 1;
176
177 /*
178 * Certain Athlons might work (for various values of 'work') in SMP
179 * but they are not certified as MP capable.
180 */
181 if ((c->x86_vendor == X86_VENDOR_AMD) && (c->x86 == 6)) {
182
Dave Jones3ca113e2006-09-26 10:52:34 +0200183 if (num_possible_cpus() == 1)
184 goto valid_k7;
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /* Athlon 660/661 is valid. */
187 if ((c->x86_model==6) && ((c->x86_mask==0) || (c->x86_mask==1)))
188 goto valid_k7;
189
190 /* Duron 670 is valid */
191 if ((c->x86_model==7) && (c->x86_mask==0))
192 goto valid_k7;
193
194 /*
195 * Athlon 662, Duron 671, and Athlon >model 7 have capability bit.
196 * It's worth noting that the A5 stepping (662) of some Athlon XP's
197 * have the MP bit set.
198 * See http://www.heise.de/newsticker/data/jow-18.10.01-000 for more.
199 */
200 if (((c->x86_model==6) && (c->x86_mask>=2)) ||
201 ((c->x86_model==7) && (c->x86_mask>=1)) ||
202 (c->x86_model> 7))
203 if (cpu_has_mp)
204 goto valid_k7;
205
206 /* If we get here, it's not a certified SMP capable AMD system. */
Randy Dunlap9f158332005-09-13 01:25:16 -0700207 add_taint(TAINT_UNSAFE_SMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
209
210valid_k7:
211 ;
212}
213
214/*
215 * TSC synchronization.
216 *
217 * We first check whether all CPUs have their TSC's synchronized,
218 * then we print a warning if not, and always resync.
219 */
220
Andrew Mortonc35a7262006-07-30 03:03:19 -0700221static struct {
222 atomic_t start_flag;
223 atomic_t count_start;
224 atomic_t count_stop;
225 unsigned long long values[NR_CPUS];
226} tsc __initdata = {
227 .start_flag = ATOMIC_INIT(0),
228 .count_start = ATOMIC_INIT(0),
229 .count_stop = ATOMIC_INIT(0),
230};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232#define NR_LOOPS 5
233
Andrew Mortonc35a7262006-07-30 03:03:19 -0700234static void __init synchronize_tsc_bp(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 int i;
237 unsigned long long t0;
238 unsigned long long sum, avg;
239 long long delta;
Andrew Mortona3a255e2005-06-23 00:08:34 -0700240 unsigned int one_usec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int buggy = 0;
242
243 printk(KERN_INFO "checking TSC synchronization across %u CPUs: ", num_booting_cpus());
244
245 /* convert from kcyc/sec to cyc/usec */
246 one_usec = cpu_khz / 1000;
247
Andrew Mortonc35a7262006-07-30 03:03:19 -0700248 atomic_set(&tsc.start_flag, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 wmb();
250
251 /*
252 * We loop a few times to get a primed instruction cache,
253 * then the last pass is more or less synchronized and
254 * the BP and APs set their cycle counters to zero all at
255 * once. This reduces the chance of having random offsets
256 * between the processors, and guarantees that the maximum
257 * delay between the cycle counters is never bigger than
258 * the latency of information-passing (cachelines) between
259 * two CPUs.
260 */
261 for (i = 0; i < NR_LOOPS; i++) {
262 /*
263 * all APs synchronize but they loop on '== num_cpus'
264 */
Andrew Mortonc35a7262006-07-30 03:03:19 -0700265 while (atomic_read(&tsc.count_start) != num_booting_cpus()-1)
Andreas Mohr18698912006-06-25 05:46:52 -0700266 cpu_relax();
Andrew Mortonc35a7262006-07-30 03:03:19 -0700267 atomic_set(&tsc.count_stop, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 wmb();
269 /*
270 * this lets the APs save their current TSC:
271 */
Andrew Mortonc35a7262006-07-30 03:03:19 -0700272 atomic_inc(&tsc.count_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Andrew Mortonc35a7262006-07-30 03:03:19 -0700274 rdtscll(tsc.values[smp_processor_id()]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /*
276 * We clear the TSC in the last loop:
277 */
278 if (i == NR_LOOPS-1)
279 write_tsc(0, 0);
280
281 /*
282 * Wait for all APs to leave the synchronization point:
283 */
Andrew Mortonc35a7262006-07-30 03:03:19 -0700284 while (atomic_read(&tsc.count_stop) != num_booting_cpus()-1)
Andreas Mohr18698912006-06-25 05:46:52 -0700285 cpu_relax();
Andrew Mortonc35a7262006-07-30 03:03:19 -0700286 atomic_set(&tsc.count_start, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 wmb();
Andrew Mortonc35a7262006-07-30 03:03:19 -0700288 atomic_inc(&tsc.count_stop);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
291 sum = 0;
292 for (i = 0; i < NR_CPUS; i++) {
293 if (cpu_isset(i, cpu_callout_map)) {
Andrew Mortonc35a7262006-07-30 03:03:19 -0700294 t0 = tsc.values[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 sum += t0;
296 }
297 }
298 avg = sum;
299 do_div(avg, num_booting_cpus());
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 for (i = 0; i < NR_CPUS; i++) {
302 if (!cpu_isset(i, cpu_callout_map))
303 continue;
Andrew Mortonc35a7262006-07-30 03:03:19 -0700304 delta = tsc.values[i] - avg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (delta < 0)
306 delta = -delta;
307 /*
308 * We report bigger than 2 microseconds clock differences.
309 */
310 if (delta > 2*one_usec) {
Andrew Mortonc35a7262006-07-30 03:03:19 -0700311 long long realdelta;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (!buggy) {
314 buggy = 1;
315 printk("\n");
316 }
317 realdelta = delta;
318 do_div(realdelta, one_usec);
Andrew Mortonc35a7262006-07-30 03:03:19 -0700319 if (tsc.values[i] < avg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 realdelta = -realdelta;
321
Andrew Mortonc35a7262006-07-30 03:03:19 -0700322 if (realdelta)
323 printk(KERN_INFO "CPU#%d had %Ld usecs TSC "
Dave Jones7f5910e2006-04-27 18:39:24 -0700324 "skew, fixed it up.\n", i, realdelta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327 if (!buggy)
328 printk("passed.\n");
329}
330
Andrew Mortonc35a7262006-07-30 03:03:19 -0700331static void __init synchronize_tsc_ap(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 int i;
334
335 /*
336 * Not every cpu is online at the time
337 * this gets called, so we first wait for the BP to
338 * finish SMP initialization:
339 */
Andrew Mortonc35a7262006-07-30 03:03:19 -0700340 while (!atomic_read(&tsc.start_flag))
Andreas Mohr18698912006-06-25 05:46:52 -0700341 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 for (i = 0; i < NR_LOOPS; i++) {
Andrew Mortonc35a7262006-07-30 03:03:19 -0700344 atomic_inc(&tsc.count_start);
345 while (atomic_read(&tsc.count_start) != num_booting_cpus())
Andreas Mohr18698912006-06-25 05:46:52 -0700346 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Andrew Mortonc35a7262006-07-30 03:03:19 -0700348 rdtscll(tsc.values[smp_processor_id()]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 if (i == NR_LOOPS-1)
350 write_tsc(0, 0);
351
Andrew Mortonc35a7262006-07-30 03:03:19 -0700352 atomic_inc(&tsc.count_stop);
353 while (atomic_read(&tsc.count_stop) != num_booting_cpus())
Andreas Mohr18698912006-06-25 05:46:52 -0700354 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356}
357#undef NR_LOOPS
358
359extern void calibrate_delay(void);
360
361static atomic_t init_deasserted;
362
Li Shaohua0bb31842005-06-25 14:54:55 -0700363static void __devinit smp_callin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 int cpuid, phys_id;
366 unsigned long timeout;
367
368 /*
369 * If waken up by an INIT in an 82489DX configuration
370 * we may get here before an INIT-deassert IPI reaches
371 * our local APIC. We have to wait for the IPI or we'll
372 * lock up on an APIC access.
373 */
374 wait_for_init_deassert(&init_deasserted);
375
376 /*
377 * (This works even if the APIC is not enabled.)
378 */
379 phys_id = GET_APIC_ID(apic_read(APIC_ID));
380 cpuid = smp_processor_id();
381 if (cpu_isset(cpuid, cpu_callin_map)) {
382 printk("huh, phys CPU#%d, CPU#%d already present??\n",
383 phys_id, cpuid);
384 BUG();
385 }
386 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
387
388 /*
389 * STARTUP IPIs are fragile beasts as they might sometimes
390 * trigger some glue motherboard logic. Complete APIC bus
391 * silence for 1 second, this overestimates the time the
392 * boot CPU is spending to send the up to 2 STARTUP IPIs
393 * by a factor of two. This should be enough.
394 */
395
396 /*
397 * Waiting 2s total for startup (udelay is not yet working)
398 */
399 timeout = jiffies + 2*HZ;
400 while (time_before(jiffies, timeout)) {
401 /*
402 * Has the boot CPU finished it's STARTUP sequence?
403 */
404 if (cpu_isset(cpuid, cpu_callout_map))
405 break;
406 rep_nop();
407 }
408
409 if (!time_before(jiffies, timeout)) {
410 printk("BUG: CPU%d started up but did not get a callout!\n",
411 cpuid);
412 BUG();
413 }
414
415 /*
416 * the boot CPU has finished the init stage and is spinning
417 * on callin_map until we finish. We are free to set up this
418 * CPU, first the APIC. (this is probably redundant on most
419 * boards)
420 */
421
422 Dprintk("CALLIN, before setup_local_APIC().\n");
423 smp_callin_clear_local_apic();
424 setup_local_APIC();
425 map_cpu_to_logical_apicid();
426
427 /*
428 * Get our bogomips.
429 */
430 calibrate_delay();
431 Dprintk("Stack at about %p\n",&cpuid);
432
433 /*
434 * Save our processor parameters
435 */
436 smp_store_cpu_info(cpuid);
437
438 disable_APIC_timer();
439
440 /*
441 * Allow the master to continue.
442 */
443 cpu_set(cpuid, cpu_callin_map);
444
445 /*
446 * Synchronize the TSC with the BP
447 */
Li Shaohuae1367da2005-06-25 14:54:56 -0700448 if (cpu_has_tsc && cpu_khz && !tsc_sync_disabled)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 synchronize_tsc_ap();
450}
451
452static int cpucount;
453
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800454/* maps the cpu to the sched domain representing multi-core */
455cpumask_t cpu_coregroup_map(int cpu)
456{
457 struct cpuinfo_x86 *c = cpu_data + cpu;
458 /*
459 * For perf, we return last level cache shared map.
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700460 * And for power savings, we return cpu_core_map
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800461 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700462 if (sched_mc_power_savings || sched_smt_power_savings)
463 return cpu_core_map[cpu];
464 else
465 return c->llc_shared_map;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800466}
467
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100468/* representing cpus for which sibling maps can be computed */
469static cpumask_t cpu_sibling_setup_map;
470
Li Shaohuad7208032005-06-25 14:54:54 -0700471static inline void
472set_cpu_sibling_map(int cpu)
473{
474 int i;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100475 struct cpuinfo_x86 *c = cpu_data;
476
477 cpu_set(cpu, cpu_sibling_setup_map);
Li Shaohuad7208032005-06-25 14:54:54 -0700478
479 if (smp_num_siblings > 1) {
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100480 for_each_cpu_mask(i, cpu_sibling_setup_map) {
Rohit Seth4b89aff2006-06-27 02:53:46 -0700481 if (c[cpu].phys_proc_id == c[i].phys_proc_id &&
482 c[cpu].cpu_core_id == c[i].cpu_core_id) {
Li Shaohuad7208032005-06-25 14:54:54 -0700483 cpu_set(i, cpu_sibling_map[cpu]);
484 cpu_set(cpu, cpu_sibling_map[i]);
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100485 cpu_set(i, cpu_core_map[cpu]);
486 cpu_set(cpu, cpu_core_map[i]);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800487 cpu_set(i, c[cpu].llc_shared_map);
488 cpu_set(cpu, c[i].llc_shared_map);
Li Shaohuad7208032005-06-25 14:54:54 -0700489 }
490 }
491 } else {
492 cpu_set(cpu, cpu_sibling_map[cpu]);
493 }
494
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800495 cpu_set(cpu, c[cpu].llc_shared_map);
496
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100497 if (current_cpu_data.x86_max_cores == 1) {
Li Shaohuad7208032005-06-25 14:54:54 -0700498 cpu_core_map[cpu] = cpu_sibling_map[cpu];
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100499 c[cpu].booted_cores = 1;
500 return;
501 }
502
503 for_each_cpu_mask(i, cpu_sibling_setup_map) {
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800504 if (cpu_llc_id[cpu] != BAD_APICID &&
505 cpu_llc_id[cpu] == cpu_llc_id[i]) {
506 cpu_set(i, c[cpu].llc_shared_map);
507 cpu_set(cpu, c[i].llc_shared_map);
508 }
Rohit Seth4b89aff2006-06-27 02:53:46 -0700509 if (c[cpu].phys_proc_id == c[i].phys_proc_id) {
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100510 cpu_set(i, cpu_core_map[cpu]);
511 cpu_set(cpu, cpu_core_map[i]);
512 /*
513 * Does this new cpu bringup a new core?
514 */
515 if (cpus_weight(cpu_sibling_map[cpu]) == 1) {
516 /*
517 * for each core in package, increment
518 * the booted_cores for this new cpu
519 */
520 if (first_cpu(cpu_sibling_map[i]) == i)
521 c[cpu].booted_cores++;
522 /*
523 * increment the core count for all
524 * the other cpus in this package
525 */
526 if (i != cpu)
527 c[i].booted_cores++;
528 } else if (i != cpu && !c[cpu].booted_cores)
529 c[cpu].booted_cores = c[i].booted_cores;
530 }
Li Shaohuad7208032005-06-25 14:54:54 -0700531 }
532}
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534/*
535 * Activate a secondary processor.
536 */
Li Shaohua0bb31842005-06-25 14:54:55 -0700537static void __devinit start_secondary(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 /*
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100540 * Don't put *anything* before secondary_cpu_init(), SMP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 * booting is too fragile that we want to limit the
542 * things done here to the most necessary things.
543 */
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100544 secondary_cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800545 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 smp_callin();
547 while (!cpu_isset(smp_processor_id(), smp_commenced_mask))
548 rep_nop();
549 setup_secondary_APIC_clock();
550 if (nmi_watchdog == NMI_IO_APIC) {
551 disable_8259A_irq(0);
552 enable_NMI_through_LVT0(NULL);
553 enable_8259A_irq(0);
554 }
555 enable_APIC_timer();
556 /*
557 * low-memory mappings have been cleared, flush them from
558 * the local TLBs too.
559 */
560 local_flush_tlb();
Li Shaohua6fe940d2005-06-25 14:54:53 -0700561
Li Shaohuad7208032005-06-25 14:54:54 -0700562 /* This must be done before setting cpu_online_map */
563 set_cpu_sibling_map(raw_smp_processor_id());
564 wmb();
565
Li Shaohua6fe940d2005-06-25 14:54:53 -0700566 /*
567 * We need to hold call_lock, so there is no inconsistency
568 * between the time smp_call_function() determines number of
569 * IPI receipients, and the time when the determination is made
570 * for which cpus receive the IPI. Holding this
571 * lock helps us to not include this cpu in a currently in progress
572 * smp_call_function().
573 */
574 lock_ipi_call_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 cpu_set(smp_processor_id(), cpu_online_map);
Li Shaohua6fe940d2005-06-25 14:54:53 -0700576 unlock_ipi_call_lock();
Li Shaohuae1367da2005-06-25 14:54:56 -0700577 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* We can take interrupts now: we're officially "up". */
580 local_irq_enable();
581
582 wmb();
583 cpu_idle();
584}
585
586/*
587 * Everything has been set up for the secondary
588 * CPUs - they just need to reload everything
589 * from the task structure
590 * This function must not return.
591 */
Li Shaohua0bb31842005-06-25 14:54:55 -0700592void __devinit initialize_secondary(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
594 /*
595 * We don't actually need to load the full TSS,
596 * basically just the stack pointer and the eip.
597 */
598
599 asm volatile(
600 "movl %0,%%esp\n\t"
601 "jmp *%1"
602 :
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100603 :"m" (current->thread.esp),"m" (current->thread.eip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100606/* Static state in head.S used to set up a CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607extern struct {
608 void * esp;
609 unsigned short ss;
610} stack_start;
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100611extern struct i386_pda *start_pda;
612extern struct Xgt_desc_struct cpu_gdt_descr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614#ifdef CONFIG_NUMA
615
616/* which logical CPUs are on which nodes */
Christoph Lameter6c036522005-07-07 17:56:59 -0700617cpumask_t node_2_cpu_mask[MAX_NUMNODES] __read_mostly =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 { [0 ... MAX_NUMNODES-1] = CPU_MASK_NONE };
Greg Banksa406c362006-10-02 02:17:41 -0700619EXPORT_SYMBOL(node_2_cpu_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/* which node each logical CPU is on */
Christoph Lameter6c036522005-07-07 17:56:59 -0700621int cpu_2_node[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622EXPORT_SYMBOL(cpu_2_node);
623
624/* set up a mapping between cpu and node. */
625static inline void map_cpu_to_node(int cpu, int node)
626{
627 printk("Mapping cpu %d to node %d\n", cpu, node);
628 cpu_set(cpu, node_2_cpu_mask[node]);
629 cpu_2_node[cpu] = node;
630}
631
632/* undo a mapping between cpu and node. */
633static inline void unmap_cpu_to_node(int cpu)
634{
635 int node;
636
637 printk("Unmapping cpu %d from all nodes\n", cpu);
638 for (node = 0; node < MAX_NUMNODES; node ++)
639 cpu_clear(cpu, node_2_cpu_mask[node]);
640 cpu_2_node[cpu] = 0;
641}
642#else /* !CONFIG_NUMA */
643
644#define map_cpu_to_node(cpu, node) ({})
645#define unmap_cpu_to_node(cpu) ({})
646
647#endif /* CONFIG_NUMA */
648
Christoph Lameter6c036522005-07-07 17:56:59 -0700649u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = BAD_APICID };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651static void map_cpu_to_logical_apicid(void)
652{
653 int cpu = smp_processor_id();
654 int apicid = logical_smp_processor_id();
Keith Mannthey78b656b2006-10-03 18:25:52 -0700655 int node = apicid_to_node(apicid);
keith manntheybfa0e9a2006-09-25 16:25:35 -0700656
657 if (!node_online(node))
658 node = first_online_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 cpu_2_logical_apicid[cpu] = apicid;
keith manntheybfa0e9a2006-09-25 16:25:35 -0700661 map_cpu_to_node(cpu, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664static void unmap_cpu_to_logical_apicid(int cpu)
665{
666 cpu_2_logical_apicid[cpu] = BAD_APICID;
667 unmap_cpu_to_node(cpu);
668}
669
670#if APIC_DEBUG
671static inline void __inquire_remote_apic(int apicid)
672{
673 int i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
674 char *names[] = { "ID", "VERSION", "SPIV" };
675 int timeout, status;
676
677 printk("Inquiring remote APIC #%d...\n", apicid);
678
Tobias Klauser38e548e2005-11-07 00:58:31 -0800679 for (i = 0; i < ARRAY_SIZE(regs); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 printk("... APIC #%d %s: ", apicid, names[i]);
681
682 /*
683 * Wait for idle.
684 */
685 apic_wait_icr_idle();
686
687 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
688 apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
689
690 timeout = 0;
691 do {
692 udelay(100);
693 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
694 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
695
696 switch (status) {
697 case APIC_ICR_RR_VALID:
698 status = apic_read(APIC_RRR);
699 printk("%08x\n", status);
700 break;
701 default:
702 printk("failed\n");
703 }
704 }
705}
706#endif
707
708#ifdef WAKE_SECONDARY_VIA_NMI
709/*
710 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
711 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
712 * won't ... remember to clear down the APIC, etc later.
713 */
Li Shaohua0bb31842005-06-25 14:54:55 -0700714static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
716{
717 unsigned long send_status = 0, accept_status = 0;
718 int timeout, maxlvt;
719
720 /* Target chip */
721 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
722
723 /* Boot on the stack */
724 /* Kick the second */
725 apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
726
727 Dprintk("Waiting for send to finish...\n");
728 timeout = 0;
729 do {
730 Dprintk("+");
731 udelay(100);
732 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
733 } while (send_status && (timeout++ < 1000));
734
735 /*
736 * Give the other CPU some time to accept the IPI.
737 */
738 udelay(200);
739 /*
740 * Due to the Pentium erratum 3AP.
741 */
742 maxlvt = get_maxlvt();
743 if (maxlvt > 3) {
744 apic_read_around(APIC_SPIV);
745 apic_write(APIC_ESR, 0);
746 }
747 accept_status = (apic_read(APIC_ESR) & 0xEF);
748 Dprintk("NMI sent.\n");
749
750 if (send_status)
751 printk("APIC never delivered???\n");
752 if (accept_status)
753 printk("APIC delivery error (%lx).\n", accept_status);
754
755 return (send_status | accept_status);
756}
757#endif /* WAKE_SECONDARY_VIA_NMI */
758
759#ifdef WAKE_SECONDARY_VIA_INIT
Li Shaohua0bb31842005-06-25 14:54:55 -0700760static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
762{
763 unsigned long send_status = 0, accept_status = 0;
764 int maxlvt, timeout, num_starts, j;
765
766 /*
767 * Be paranoid about clearing APIC errors.
768 */
769 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
770 apic_read_around(APIC_SPIV);
771 apic_write(APIC_ESR, 0);
772 apic_read(APIC_ESR);
773 }
774
775 Dprintk("Asserting INIT.\n");
776
777 /*
778 * Turn INIT on target chip
779 */
780 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
781
782 /*
783 * Send IPI
784 */
785 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
786 | APIC_DM_INIT);
787
788 Dprintk("Waiting for send to finish...\n");
789 timeout = 0;
790 do {
791 Dprintk("+");
792 udelay(100);
793 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
794 } while (send_status && (timeout++ < 1000));
795
796 mdelay(10);
797
798 Dprintk("Deasserting INIT.\n");
799
800 /* Target chip */
801 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
802
803 /* Send IPI */
804 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
805
806 Dprintk("Waiting for send to finish...\n");
807 timeout = 0;
808 do {
809 Dprintk("+");
810 udelay(100);
811 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
812 } while (send_status && (timeout++ < 1000));
813
814 atomic_set(&init_deasserted, 1);
815
816 /*
817 * Should we send STARTUP IPIs ?
818 *
819 * Determine this based on the APIC version.
820 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
821 */
822 if (APIC_INTEGRATED(apic_version[phys_apicid]))
823 num_starts = 2;
824 else
825 num_starts = 0;
826
827 /*
828 * Run STARTUP IPI loop.
829 */
830 Dprintk("#startup loops: %d.\n", num_starts);
831
832 maxlvt = get_maxlvt();
833
834 for (j = 1; j <= num_starts; j++) {
835 Dprintk("Sending STARTUP #%d.\n",j);
836 apic_read_around(APIC_SPIV);
837 apic_write(APIC_ESR, 0);
838 apic_read(APIC_ESR);
839 Dprintk("After apic_write.\n");
840
841 /*
842 * STARTUP IPI
843 */
844
845 /* Target chip */
846 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
847
848 /* Boot on the stack */
849 /* Kick the second */
850 apic_write_around(APIC_ICR, APIC_DM_STARTUP
851 | (start_eip >> 12));
852
853 /*
854 * Give the other CPU some time to accept the IPI.
855 */
856 udelay(300);
857
858 Dprintk("Startup point 1.\n");
859
860 Dprintk("Waiting for send to finish...\n");
861 timeout = 0;
862 do {
863 Dprintk("+");
864 udelay(100);
865 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
866 } while (send_status && (timeout++ < 1000));
867
868 /*
869 * Give the other CPU some time to accept the IPI.
870 */
871 udelay(200);
872 /*
873 * Due to the Pentium erratum 3AP.
874 */
875 if (maxlvt > 3) {
876 apic_read_around(APIC_SPIV);
877 apic_write(APIC_ESR, 0);
878 }
879 accept_status = (apic_read(APIC_ESR) & 0xEF);
880 if (send_status || accept_status)
881 break;
882 }
883 Dprintk("After Startup.\n");
884
885 if (send_status)
886 printk("APIC never delivered???\n");
887 if (accept_status)
888 printk("APIC delivery error (%lx).\n", accept_status);
889
890 return (send_status | accept_status);
891}
892#endif /* WAKE_SECONDARY_VIA_INIT */
893
894extern cpumask_t cpu_initialized;
Li Shaohuae1367da2005-06-25 14:54:56 -0700895static inline int alloc_cpu_id(void)
896{
897 cpumask_t tmp_map;
898 int cpu;
899 cpus_complement(tmp_map, cpu_present_map);
900 cpu = first_cpu(tmp_map);
901 if (cpu >= NR_CPUS)
902 return -ENODEV;
903 return cpu;
904}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Li Shaohuae1367da2005-06-25 14:54:56 -0700906#ifdef CONFIG_HOTPLUG_CPU
907static struct task_struct * __devinitdata cpu_idle_tasks[NR_CPUS];
908static inline struct task_struct * alloc_idle_task(int cpu)
909{
910 struct task_struct *idle;
911
912 if ((idle = cpu_idle_tasks[cpu]) != NULL) {
913 /* initialize thread_struct. we really want to avoid destroy
914 * idle tread
915 */
akpm@osdl.org07b047f2006-01-12 01:05:41 -0800916 idle->thread.esp = (unsigned long)task_pt_regs(idle);
Li Shaohuae1367da2005-06-25 14:54:56 -0700917 init_idle(idle, cpu);
918 return idle;
919 }
920 idle = fork_idle(cpu);
921
922 if (!IS_ERR(idle))
923 cpu_idle_tasks[cpu] = idle;
924 return idle;
925}
926#else
927#define alloc_idle_task(cpu) fork_idle(cpu)
928#endif
929
930static int __devinit do_boot_cpu(int apicid, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931/*
932 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
933 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
934 * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
935 */
936{
937 struct task_struct *idle;
938 unsigned long boot_error;
Li Shaohuae1367da2005-06-25 14:54:56 -0700939 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 unsigned long start_eip;
941 unsigned short nmi_high = 0, nmi_low = 0;
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 /*
944 * We can't use kernel_thread since we must avoid to
945 * reschedule the child.
946 */
Li Shaohuae1367da2005-06-25 14:54:56 -0700947 idle = alloc_idle_task(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (IS_ERR(idle))
949 panic("failed fork for CPU %d", cpu);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100950
951 /* Pre-allocate and initialize the CPU's GDT and PDA so it
952 doesn't have to do any memory allocation during the
953 delicate CPU-bringup phase. */
954 if (!init_gdt(cpu, idle)) {
955 printk(KERN_INFO "Couldn't allocate GDT/PDA for CPU %d\n", cpu);
956 return -1; /* ? */
957 }
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 idle->thread.eip = (unsigned long) start_secondary;
960 /* start_eip had better be page-aligned! */
961 start_eip = setup_trampoline();
962
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100963 ++cpucount;
964 alternatives_smp_switch(1);
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 /* So we see what's up */
967 printk("Booting processor %d/%d eip %lx\n", cpu, apicid, start_eip);
968 /* Stack for startup_32 can be just as for start_secondary onwards */
969 stack_start.esp = (void *) idle->thread.esp;
970
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100971 start_pda = cpu_pda(cpu);
972 cpu_gdt_descr = per_cpu(cpu_gdt_descr, cpu);
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 irq_ctx_init(cpu);
975
keith mannthey3b086062006-09-29 01:58:46 -0700976 x86_cpu_to_apicid[cpu] = apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /*
978 * This grunge runs the startup process for
979 * the targeted processor.
980 */
981
982 atomic_set(&init_deasserted, 0);
983
984 Dprintk("Setting warm reset code and vector.\n");
985
986 store_NMI_vector(&nmi_high, &nmi_low);
987
988 smpboot_setup_warm_reset_vector(start_eip);
989
990 /*
991 * Starting actual IPI sequence...
992 */
993 boot_error = wakeup_secondary_cpu(apicid, start_eip);
994
995 if (!boot_error) {
996 /*
997 * allow APs to start initializing.
998 */
999 Dprintk("Before Callout %d.\n", cpu);
1000 cpu_set(cpu, cpu_callout_map);
1001 Dprintk("After Callout %d.\n", cpu);
1002
1003 /*
1004 * Wait 5s total for a response
1005 */
1006 for (timeout = 0; timeout < 50000; timeout++) {
1007 if (cpu_isset(cpu, cpu_callin_map))
1008 break; /* It has booted */
1009 udelay(100);
1010 }
1011
1012 if (cpu_isset(cpu, cpu_callin_map)) {
1013 /* number CPUs logically, starting from 1 (BSP is 0) */
1014 Dprintk("OK.\n");
1015 printk("CPU%d: ", cpu);
1016 print_cpu_info(&cpu_data[cpu]);
1017 Dprintk("CPU has booted.\n");
1018 } else {
1019 boot_error= 1;
1020 if (*((volatile unsigned char *)trampoline_base)
1021 == 0xA5)
1022 /* trampoline started but...? */
1023 printk("Stuck ??\n");
1024 else
1025 /* trampoline code not run */
1026 printk("Not responding.\n");
1027 inquire_remote_apic(apicid);
1028 }
1029 }
Li Shaohuae1367da2005-06-25 14:54:56 -07001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (boot_error) {
1032 /* Try to put things back the way they were before ... */
1033 unmap_cpu_to_logical_apicid(cpu);
1034 cpu_clear(cpu, cpu_callout_map); /* was set here (do_boot_cpu()) */
1035 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
1036 cpucount--;
Li Shaohuae1367da2005-06-25 14:54:56 -07001037 } else {
1038 x86_cpu_to_apicid[cpu] = apicid;
1039 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041
1042 /* mark "stuck" area as not stuck */
1043 *((volatile unsigned long *)trampoline_base) = 0;
1044
1045 return boot_error;
1046}
1047
Li Shaohuae1367da2005-06-25 14:54:56 -07001048#ifdef CONFIG_HOTPLUG_CPU
1049void cpu_exit_clear(void)
1050{
1051 int cpu = raw_smp_processor_id();
1052
1053 idle_task_exit();
1054
1055 cpucount --;
1056 cpu_uninit();
1057 irq_ctx_exit(cpu);
1058
1059 cpu_clear(cpu, cpu_callout_map);
1060 cpu_clear(cpu, cpu_callin_map);
Li Shaohuae1367da2005-06-25 14:54:56 -07001061
1062 cpu_clear(cpu, smp_commenced_mask);
1063 unmap_cpu_to_logical_apicid(cpu);
1064}
1065
1066struct warm_boot_cpu_info {
1067 struct completion *complete;
1068 int apicid;
1069 int cpu;
1070};
1071
Ashok Raj34f361a2006-03-25 03:08:18 -08001072static void __cpuinit do_warm_boot_cpu(void *p)
Li Shaohuae1367da2005-06-25 14:54:56 -07001073{
1074 struct warm_boot_cpu_info *info = p;
1075 do_boot_cpu(info->apicid, info->cpu);
1076 complete(info->complete);
1077}
1078
Ashok Raj34f361a2006-03-25 03:08:18 -08001079static int __cpuinit __smp_prepare_cpu(int cpu)
Li Shaohuae1367da2005-06-25 14:54:56 -07001080{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -07001081 DECLARE_COMPLETION_ONSTACK(done);
Li Shaohuae1367da2005-06-25 14:54:56 -07001082 struct warm_boot_cpu_info info;
1083 struct work_struct task;
1084 int apicid, ret;
Shaohua Libd9e0b72006-06-27 02:53:43 -07001085 struct Xgt_desc_struct *cpu_gdt_descr = &per_cpu(cpu_gdt_descr, cpu);
Li Shaohuae1367da2005-06-25 14:54:56 -07001086
Li Shaohuae1367da2005-06-25 14:54:56 -07001087 apicid = x86_cpu_to_apicid[cpu];
1088 if (apicid == BAD_APICID) {
1089 ret = -ENODEV;
1090 goto exit;
1091 }
1092
Shaohua Libd9e0b72006-06-27 02:53:43 -07001093 /*
1094 * the CPU isn't initialized at boot time, allocate gdt table here.
1095 * cpu_init will initialize it
1096 */
1097 if (!cpu_gdt_descr->address) {
1098 cpu_gdt_descr->address = get_zeroed_page(GFP_KERNEL);
1099 if (!cpu_gdt_descr->address)
1100 printk(KERN_CRIT "CPU%d failed to allocate GDT\n", cpu);
1101 ret = -ENOMEM;
1102 goto exit;
1103 }
1104
Li Shaohuae1367da2005-06-25 14:54:56 -07001105 info.complete = &done;
1106 info.apicid = apicid;
1107 info.cpu = cpu;
1108 INIT_WORK(&task, do_warm_boot_cpu, &info);
1109
1110 tsc_sync_disabled = 1;
1111
1112 /* init low mem mapping */
Zachary Amsdend7271b12005-09-03 15:56:50 -07001113 clone_pgd_range(swapper_pg_dir, swapper_pg_dir + USER_PGD_PTRS,
1114 KERNEL_PGD_PTRS);
Li Shaohuae1367da2005-06-25 14:54:56 -07001115 flush_tlb_all();
1116 schedule_work(&task);
1117 wait_for_completion(&done);
1118
1119 tsc_sync_disabled = 0;
1120 zap_low_mappings();
1121 ret = 0;
1122exit:
Li Shaohuae1367da2005-06-25 14:54:56 -07001123 return ret;
1124}
1125#endif
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127static void smp_tune_scheduling (void)
1128{
1129 unsigned long cachesize; /* kB */
1130 unsigned long bandwidth = 350; /* MB/s */
1131 /*
1132 * Rough estimation for SMP scheduling, this is the number of
1133 * cycles it takes for a fully memory-limited process to flush
1134 * the SMP-local cache.
1135 *
1136 * (For a P5 this pretty much means we will choose another idle
1137 * CPU almost always at wakeup time (this is due to the small
1138 * L1 cache), on PIIs it's around 50-100 usecs, depending on
1139 * the cache size)
1140 */
1141
1142 if (!cpu_khz) {
1143 /*
1144 * this basically disables processor-affinity
1145 * scheduling on SMP without a TSC.
1146 */
1147 return;
1148 } else {
1149 cachesize = boot_cpu_data.x86_cache_size;
1150 if (cachesize == -1) {
1151 cachesize = 16; /* Pentiums, 2x8kB cache */
1152 bandwidth = 100;
1153 }
akpm@osdl.org198e2f12006-01-12 01:05:30 -08001154 max_cache_size = cachesize * 1024;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156}
1157
1158/*
1159 * Cycle through the processors sending APIC IPIs to boot each.
1160 */
1161
1162static int boot_cpu_logical_apicid;
1163/* Where the IO area was mapped on multiquad, always 0 otherwise */
1164void *xquad_portio;
Alexey Dobriyan129f6942005-06-23 00:08:33 -07001165#ifdef CONFIG_X86_NUMAQ
1166EXPORT_SYMBOL(xquad_portio);
1167#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169static void __init smp_boot_cpus(unsigned int max_cpus)
1170{
1171 int apicid, cpu, bit, kicked;
1172 unsigned long bogosum = 0;
1173
1174 /*
1175 * Setup boot CPU information
1176 */
1177 smp_store_cpu_info(0); /* Final full version of the data */
1178 printk("CPU%d: ", 0);
1179 print_cpu_info(&cpu_data[0]);
1180
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001181 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 boot_cpu_logical_apicid = logical_smp_processor_id();
1183 x86_cpu_to_apicid[0] = boot_cpu_physical_apicid;
1184
1185 current_thread_info()->cpu = 0;
1186 smp_tune_scheduling();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001188 set_cpu_sibling_map(0);
Andi Kleen3dd9d512005-04-16 15:25:15 -07001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 /*
1191 * If we couldn't find an SMP configuration at boot time,
1192 * get out of here now!
1193 */
1194 if (!smp_found_config && !acpi_lapic) {
1195 printk(KERN_NOTICE "SMP motherboard not detected.\n");
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001196 smpboot_clear_io_apic_irqs();
1197 phys_cpu_present_map = physid_mask_of_physid(0);
1198 if (APIC_init_uniprocessor())
1199 printk(KERN_NOTICE "Local APIC not detected."
1200 " Using dummy APIC emulation.\n");
1201 map_cpu_to_logical_apicid();
1202 cpu_set(0, cpu_sibling_map[0]);
1203 cpu_set(0, cpu_core_map[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return;
1205 }
1206
1207 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001208 * Should not be necessary because the MP table should list the boot
1209 * CPU too, but we do it for the sake of robustness anyway.
1210 * Makes no sense to do this check in clustered apic mode, so skip it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 */
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001212 if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
1213 printk("weird, boot CPU (#%d) not listed by the BIOS.\n",
1214 boot_cpu_physical_apicid);
1215 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1216 }
1217
1218 /*
1219 * If we couldn't find a local APIC, then get out of here now!
1220 */
1221 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) && !cpu_has_apic) {
1222 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1223 boot_cpu_physical_apicid);
1224 printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
1225 smpboot_clear_io_apic_irqs();
1226 phys_cpu_present_map = physid_mask_of_physid(0);
1227 cpu_set(0, cpu_sibling_map[0]);
1228 cpu_set(0, cpu_core_map[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 return;
1230 }
1231
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001232 verify_local_APIC();
1233
1234 /*
1235 * If SMP should be disabled, then really disable it!
1236 */
1237 if (!max_cpus) {
1238 smp_found_config = 0;
1239 printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n");
1240 smpboot_clear_io_apic_irqs();
1241 phys_cpu_present_map = physid_mask_of_physid(0);
1242 cpu_set(0, cpu_sibling_map[0]);
1243 cpu_set(0, cpu_core_map[0]);
1244 return;
1245 }
1246
1247 connect_bsp_APIC();
1248 setup_local_APIC();
1249 map_cpu_to_logical_apicid();
1250
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 setup_portio_remap();
1253
1254 /*
1255 * Scan the CPU present map and fire up the other CPUs via do_boot_cpu
1256 *
1257 * In clustered apic mode, phys_cpu_present_map is a constructed thus:
1258 * bits 0-3 are quad0, 4-7 are quad1, etc. A perverse twist on the
1259 * clustered apic ID.
1260 */
1261 Dprintk("CPU present map: %lx\n", physids_coerce(phys_cpu_present_map));
1262
1263 kicked = 1;
1264 for (bit = 0; kicked < NR_CPUS && bit < MAX_APICS; bit++) {
1265 apicid = cpu_present_to_apicid(bit);
1266 /*
1267 * Don't even attempt to start the boot CPU!
1268 */
1269 if ((apicid == boot_cpu_apicid) || (apicid == BAD_APICID))
1270 continue;
1271
1272 if (!check_apicid_present(bit))
1273 continue;
1274 if (max_cpus <= cpucount+1)
1275 continue;
1276
Li Shaohuae1367da2005-06-25 14:54:56 -07001277 if (((cpu = alloc_cpu_id()) <= 0) || do_boot_cpu(apicid, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 printk("CPU #%d not responding - cannot use it.\n",
1279 apicid);
1280 else
1281 ++kicked;
1282 }
1283
1284 /*
1285 * Cleanup possible dangling ends...
1286 */
1287 smpboot_restore_warm_reset_vector();
1288
1289 /*
1290 * Allow the user to impress friends.
1291 */
1292 Dprintk("Before bogomips.\n");
1293 for (cpu = 0; cpu < NR_CPUS; cpu++)
1294 if (cpu_isset(cpu, cpu_callout_map))
1295 bogosum += cpu_data[cpu].loops_per_jiffy;
1296 printk(KERN_INFO
1297 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
1298 cpucount+1,
1299 bogosum/(500000/HZ),
1300 (bogosum/(5000/HZ))%100);
1301
1302 Dprintk("Before bogocount - setting activated=1.\n");
1303
1304 if (smp_b_stepping)
1305 printk(KERN_WARNING "WARNING: SMP operation may be unreliable with B stepping processors.\n");
1306
1307 /*
1308 * Don't taint if we are running SMP kernel on a single non-MP
1309 * approved Athlon
1310 */
1311 if (tainted & TAINT_UNSAFE_SMP) {
1312 if (cpucount)
1313 printk (KERN_INFO "WARNING: This combination of AMD processors is not suitable for SMP.\n");
1314 else
1315 tainted &= ~TAINT_UNSAFE_SMP;
1316 }
1317
1318 Dprintk("Boot done.\n");
1319
1320 /*
1321 * construct cpu_sibling_map[], so that we can tell sibling CPUs
1322 * efficiently.
1323 */
Andi Kleen3dd9d512005-04-16 15:25:15 -07001324 for (cpu = 0; cpu < NR_CPUS; cpu++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 cpus_clear(cpu_sibling_map[cpu]);
Andi Kleen3dd9d512005-04-16 15:25:15 -07001326 cpus_clear(cpu_core_map[cpu]);
1327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Li Shaohuad7208032005-06-25 14:54:54 -07001329 cpu_set(0, cpu_sibling_map[0]);
1330 cpu_set(0, cpu_core_map[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001332 smpboot_setup_io_apic();
1333
1334 setup_boot_APIC_clock();
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 /*
1337 * Synchronize the TSC with the AP
1338 */
1339 if (cpu_has_tsc && cpucount && cpu_khz)
1340 synchronize_tsc_bp();
1341}
1342
1343/* These are wrappers to interface to the new boot process. Someone
1344 who understands all this stuff should rewrite it properly. --RR 15/Jul/02 */
1345void __init smp_prepare_cpus(unsigned int max_cpus)
1346{
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001347 smp_commenced_mask = cpumask_of_cpu(0);
1348 cpu_callin_map = cpumask_of_cpu(0);
1349 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 smp_boot_cpus(max_cpus);
1351}
1352
1353void __devinit smp_prepare_boot_cpu(void)
1354{
1355 cpu_set(smp_processor_id(), cpu_online_map);
1356 cpu_set(smp_processor_id(), cpu_callout_map);
Li Shaohuae1367da2005-06-25 14:54:56 -07001357 cpu_set(smp_processor_id(), cpu_present_map);
Zwane Mwaikambo4ad8d382005-09-03 15:56:51 -07001358 cpu_set(smp_processor_id(), cpu_possible_map);
Li Shaohuae1367da2005-06-25 14:54:56 -07001359 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360}
1361
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001362#ifdef CONFIG_HOTPLUG_CPU
Li Shaohuae1367da2005-06-25 14:54:56 -07001363static void
1364remove_siblinginfo(int cpu)
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001365{
Li Shaohuae1367da2005-06-25 14:54:56 -07001366 int sibling;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001367 struct cpuinfo_x86 *c = cpu_data;
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001368
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001369 for_each_cpu_mask(sibling, cpu_core_map[cpu]) {
1370 cpu_clear(cpu, cpu_core_map[sibling]);
1371 /*
1372 * last thread sibling in this cpu core going down
1373 */
1374 if (cpus_weight(cpu_sibling_map[cpu]) == 1)
1375 c[sibling].booted_cores--;
1376 }
1377
Li Shaohuae1367da2005-06-25 14:54:56 -07001378 for_each_cpu_mask(sibling, cpu_sibling_map[cpu])
1379 cpu_clear(cpu, cpu_sibling_map[sibling]);
Li Shaohuae1367da2005-06-25 14:54:56 -07001380 cpus_clear(cpu_sibling_map[cpu]);
1381 cpus_clear(cpu_core_map[cpu]);
Rohit Seth4b89aff2006-06-27 02:53:46 -07001382 c[cpu].phys_proc_id = 0;
1383 c[cpu].cpu_core_id = 0;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001384 cpu_clear(cpu, cpu_sibling_setup_map);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001385}
1386
1387int __cpu_disable(void)
1388{
1389 cpumask_t map = cpu_online_map;
1390 int cpu = smp_processor_id();
1391
1392 /*
1393 * Perhaps use cpufreq to drop frequency, but that could go
1394 * into generic code.
1395 *
1396 * We won't take down the boot processor on i386 due to some
1397 * interrupts only being able to be serviced by the BSP.
1398 * Especially so if we're not using an IOAPIC -zwane
1399 */
1400 if (cpu == 0)
1401 return -EBUSY;
Shaohua Li4038f902006-09-26 10:52:27 +02001402 if (nmi_watchdog == NMI_LOCAL_APIC)
1403 stop_apic_nmi_watchdog(NULL);
Shaohua Li5e9ef022005-12-12 22:17:08 -08001404 clear_local_APIC();
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001405 /* Allow any queued timer interrupts to get serviced */
1406 local_irq_enable();
1407 mdelay(1);
1408 local_irq_disable();
1409
Li Shaohuae1367da2005-06-25 14:54:56 -07001410 remove_siblinginfo(cpu);
1411
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001412 cpu_clear(cpu, map);
1413 fixup_irqs(map);
1414 /* It's now safe to remove this processor from the online map */
1415 cpu_clear(cpu, cpu_online_map);
1416 return 0;
1417}
1418
1419void __cpu_die(unsigned int cpu)
1420{
1421 /* We don't do anything here: idle task is faking death itself. */
1422 unsigned int i;
1423
1424 for (i = 0; i < 10; i++) {
1425 /* They ack this in play_dead by setting CPU_DEAD */
Li Shaohuae1367da2005-06-25 14:54:56 -07001426 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1427 printk ("CPU %d is now offline\n", cpu);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001428 if (1 == num_online_cpus())
1429 alternatives_smp_switch(0);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001430 return;
Li Shaohuae1367da2005-06-25 14:54:56 -07001431 }
Nishanth Aravamudanaeb83972005-09-10 00:26:50 -07001432 msleep(100);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001433 }
1434 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1435}
1436#else /* ... !CONFIG_HOTPLUG_CPU */
1437int __cpu_disable(void)
1438{
1439 return -ENOSYS;
1440}
1441
1442void __cpu_die(unsigned int cpu)
1443{
1444 /* We said "no" in __cpu_disable */
1445 BUG();
1446}
1447#endif /* CONFIG_HOTPLUG_CPU */
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449int __devinit __cpu_up(unsigned int cpu)
1450{
Ashok Raj34f361a2006-03-25 03:08:18 -08001451#ifdef CONFIG_HOTPLUG_CPU
1452 int ret=0;
1453
1454 /*
1455 * We do warm boot only on cpus that had booted earlier
1456 * Otherwise cold boot is all handled from smp_boot_cpus().
1457 * cpu_callin_map is set during AP kickstart process. Its reset
1458 * when a cpu is taken offline from cpu_exit_clear().
1459 */
1460 if (!cpu_isset(cpu, cpu_callin_map))
1461 ret = __smp_prepare_cpu(cpu);
1462
1463 if (ret)
1464 return -EIO;
1465#endif
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /* In case one didn't come up */
1468 if (!cpu_isset(cpu, cpu_callin_map)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001469 printk(KERN_DEBUG "skipping cpu%d, didn't come online\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 local_irq_enable();
1471 return -EIO;
1472 }
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 local_irq_enable();
Li Shaohuae1367da2005-06-25 14:54:56 -07001475 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 /* Unleash the CPU! */
1477 cpu_set(cpu, smp_commenced_mask);
1478 while (!cpu_isset(cpu, cpu_online_map))
Andreas Mohr18698912006-06-25 05:46:52 -07001479 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return 0;
1481}
1482
1483void __init smp_cpus_done(unsigned int max_cpus)
1484{
1485#ifdef CONFIG_X86_IO_APIC
1486 setup_ioapic_dest();
1487#endif
1488 zap_low_mappings();
Li Shaohuae1367da2005-06-25 14:54:56 -07001489#ifndef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 /*
1491 * Disable executability of the SMP trampoline:
1492 */
1493 set_kernel_exec((unsigned long)trampoline_base, trampoline_exec);
Li Shaohuae1367da2005-06-25 14:54:56 -07001494#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
1497void __init smp_intr_init(void)
1498{
1499 /*
1500 * IRQ0 must be given a fixed assignment and initialized,
1501 * because it's used before the IO-APIC is set up.
1502 */
1503 set_intr_gate(FIRST_DEVICE_VECTOR, interrupt[0]);
1504
1505 /*
1506 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
1507 * IPI, driven by wakeup.
1508 */
1509 set_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
1510
1511 /* IPI for invalidation */
1512 set_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
1513
1514 /* IPI for generic function call */
1515 set_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
1516}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001517
1518/*
1519 * If the BIOS enumerates physical processors before logical,
1520 * maxcpus=N at enumeration-time can be used to disable HT.
1521 */
1522static int __init parse_maxcpus(char *arg)
1523{
1524 extern unsigned int maxcpus;
1525
1526 maxcpus = simple_strtoul(arg, NULL, 0);
1527 return 0;
1528}
1529early_param("maxcpus", parse_maxcpus);