blob: 3566191832b32128538570a7a820495f7617ac59 [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
Mike Travis71fff5e2007-10-19 20:35:03 +020094/*
95 * The following static array is used during kernel startup
96 * and the x86_cpu_to_apicid_ptr contains the address of the
97 * array during this time. Is it zeroed when the per_cpu
98 * data area is removed.
99 */
100u8 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
101 { [0 ... NR_CPUS-1] = BAD_APICID };
102void *x86_cpu_to_apicid_ptr;
103DEFINE_PER_CPU(u8, x86_cpu_to_apicid) = BAD_APICID;
104EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
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
Jan Beulich121d7bf2007-10-17 18:04:37 +0200112extern const unsigned char trampoline_data [];
113extern const unsigned char trampoline_end [];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114static 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
Adrian Bunk8957eca2007-10-17 18:04:32 +0200128static unsigned long __cpuinit 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
Jeremy Fitzhardinge724faa82007-07-17 18:37:03 -0700158void __cpuinit smp_store_cpu_info(int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Mike Travis92cb7612007-10-19 20:35:04 +0200160 struct cpuinfo_x86 *c = &cpu_data(id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 *c = boot_cpu_data;
Mike Travis92cb7612007-10-19 20:35:04 +0200163 c->cpu_index = id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (id!=0)
Jeremy Fitzhardingea6c4e072007-05-02 19:27:12 +0200165 identify_secondary_cpu(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 /*
167 * Mask B, Pentium, but not Pentium MMX
168 */
169 if (c->x86_vendor == X86_VENDOR_INTEL &&
170 c->x86 == 5 &&
171 c->x86_mask >= 1 && c->x86_mask <= 4 &&
172 c->x86_model <= 3)
173 /*
174 * Remember we have B step Pentia with bugs
175 */
176 smp_b_stepping = 1;
177
178 /*
179 * Certain Athlons might work (for various values of 'work') in SMP
180 * but they are not certified as MP capable.
181 */
182 if ((c->x86_vendor == X86_VENDOR_AMD) && (c->x86 == 6)) {
183
Dave Jones3ca113e2006-09-26 10:52:34 +0200184 if (num_possible_cpus() == 1)
185 goto valid_k7;
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* Athlon 660/661 is valid. */
188 if ((c->x86_model==6) && ((c->x86_mask==0) || (c->x86_mask==1)))
189 goto valid_k7;
190
191 /* Duron 670 is valid */
192 if ((c->x86_model==7) && (c->x86_mask==0))
193 goto valid_k7;
194
195 /*
196 * Athlon 662, Duron 671, and Athlon >model 7 have capability bit.
197 * It's worth noting that the A5 stepping (662) of some Athlon XP's
198 * have the MP bit set.
199 * See http://www.heise.de/newsticker/data/jow-18.10.01-000 for more.
200 */
201 if (((c->x86_model==6) && (c->x86_mask>=2)) ||
202 ((c->x86_model==7) && (c->x86_mask>=1)) ||
203 (c->x86_model> 7))
204 if (cpu_has_mp)
205 goto valid_k7;
206
207 /* If we get here, it's not a certified SMP capable AMD system. */
Randy Dunlap9f158332005-09-13 01:25:16 -0700208 add_taint(TAINT_UNSAFE_SMP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
211valid_k7:
212 ;
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215extern void calibrate_delay(void);
216
217static atomic_t init_deasserted;
218
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100219static void __cpuinit smp_callin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int cpuid, phys_id;
222 unsigned long timeout;
223
224 /*
225 * If waken up by an INIT in an 82489DX configuration
226 * we may get here before an INIT-deassert IPI reaches
227 * our local APIC. We have to wait for the IPI or we'll
228 * lock up on an APIC access.
229 */
230 wait_for_init_deassert(&init_deasserted);
231
232 /*
233 * (This works even if the APIC is not enabled.)
234 */
235 phys_id = GET_APIC_ID(apic_read(APIC_ID));
236 cpuid = smp_processor_id();
237 if (cpu_isset(cpuid, cpu_callin_map)) {
238 printk("huh, phys CPU#%d, CPU#%d already present??\n",
239 phys_id, cpuid);
240 BUG();
241 }
242 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
243
244 /*
245 * STARTUP IPIs are fragile beasts as they might sometimes
246 * trigger some glue motherboard logic. Complete APIC bus
247 * silence for 1 second, this overestimates the time the
248 * boot CPU is spending to send the up to 2 STARTUP IPIs
249 * by a factor of two. This should be enough.
250 */
251
252 /*
253 * Waiting 2s total for startup (udelay is not yet working)
254 */
255 timeout = jiffies + 2*HZ;
256 while (time_before(jiffies, timeout)) {
257 /*
258 * Has the boot CPU finished it's STARTUP sequence?
259 */
260 if (cpu_isset(cpuid, cpu_callout_map))
261 break;
262 rep_nop();
263 }
264
265 if (!time_before(jiffies, timeout)) {
266 printk("BUG: CPU%d started up but did not get a callout!\n",
267 cpuid);
268 BUG();
269 }
270
271 /*
272 * the boot CPU has finished the init stage and is spinning
273 * on callin_map until we finish. We are free to set up this
274 * CPU, first the APIC. (this is probably redundant on most
275 * boards)
276 */
277
278 Dprintk("CALLIN, before setup_local_APIC().\n");
279 smp_callin_clear_local_apic();
280 setup_local_APIC();
281 map_cpu_to_logical_apicid();
282
283 /*
284 * Get our bogomips.
285 */
286 calibrate_delay();
287 Dprintk("Stack at about %p\n",&cpuid);
288
289 /*
290 * Save our processor parameters
291 */
Thomas Gleixnere9e2cdb2007-02-16 01:28:04 -0800292 smp_store_cpu_info(cpuid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 /*
295 * Allow the master to continue.
296 */
297 cpu_set(cpuid, cpu_callin_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300static int cpucount;
301
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800302/* maps the cpu to the sched domain representing multi-core */
303cpumask_t cpu_coregroup_map(int cpu)
304{
Mike Travis92cb7612007-10-19 20:35:04 +0200305 struct cpuinfo_x86 *c = &cpu_data(cpu);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800306 /*
307 * For perf, we return last level cache shared map.
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700308 * And for power savings, we return cpu_core_map
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800309 */
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700310 if (sched_mc_power_savings || sched_smt_power_savings)
Mike Travis08357612007-10-16 01:24:04 -0700311 return per_cpu(cpu_core_map, cpu);
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700312 else
313 return c->llc_shared_map;
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800314}
315
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100316/* representing cpus for which sibling maps can be computed */
317static cpumask_t cpu_sibling_setup_map;
318
Andi Kleenfbab6e72007-07-22 11:12:33 +0200319void __cpuinit set_cpu_sibling_map(int cpu)
Li Shaohuad7208032005-06-25 14:54:54 -0700320{
321 int i;
Mike Travis92cb7612007-10-19 20:35:04 +0200322 struct cpuinfo_x86 *c = &cpu_data(cpu);
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100323
324 cpu_set(cpu, cpu_sibling_setup_map);
Li Shaohuad7208032005-06-25 14:54:54 -0700325
326 if (smp_num_siblings > 1) {
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100327 for_each_cpu_mask(i, cpu_sibling_setup_map) {
Mike Travis92cb7612007-10-19 20:35:04 +0200328 if (c->phys_proc_id == cpu_data(i).phys_proc_id &&
329 c->cpu_core_id == cpu_data(i).cpu_core_id) {
Mike Travisd5a74302007-10-16 01:24:05 -0700330 cpu_set(i, per_cpu(cpu_sibling_map, cpu));
331 cpu_set(cpu, per_cpu(cpu_sibling_map, i));
Mike Travis08357612007-10-16 01:24:04 -0700332 cpu_set(i, per_cpu(cpu_core_map, cpu));
333 cpu_set(cpu, per_cpu(cpu_core_map, i));
Mike Travis92cb7612007-10-19 20:35:04 +0200334 cpu_set(i, c->llc_shared_map);
335 cpu_set(cpu, cpu_data(i).llc_shared_map);
Li Shaohuad7208032005-06-25 14:54:54 -0700336 }
337 }
338 } else {
Mike Travisd5a74302007-10-16 01:24:05 -0700339 cpu_set(cpu, per_cpu(cpu_sibling_map, cpu));
Li Shaohuad7208032005-06-25 14:54:54 -0700340 }
341
Mike Travis92cb7612007-10-19 20:35:04 +0200342 cpu_set(cpu, c->llc_shared_map);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800343
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100344 if (current_cpu_data.x86_max_cores == 1) {
Mike Travisd5a74302007-10-16 01:24:05 -0700345 per_cpu(cpu_core_map, cpu) = per_cpu(cpu_sibling_map, cpu);
Mike Travis92cb7612007-10-19 20:35:04 +0200346 c->booted_cores = 1;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100347 return;
348 }
349
350 for_each_cpu_mask(i, cpu_sibling_setup_map) {
Mike Travisb6278472007-10-19 20:35:03 +0200351 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
352 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
Mike Travis92cb7612007-10-19 20:35:04 +0200353 cpu_set(i, c->llc_shared_map);
354 cpu_set(cpu, cpu_data(i).llc_shared_map);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800355 }
Mike Travis92cb7612007-10-19 20:35:04 +0200356 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
Mike Travis08357612007-10-16 01:24:04 -0700357 cpu_set(i, per_cpu(cpu_core_map, cpu));
358 cpu_set(cpu, per_cpu(cpu_core_map, i));
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100359 /*
360 * Does this new cpu bringup a new core?
361 */
Mike Travisd5a74302007-10-16 01:24:05 -0700362 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1) {
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100363 /*
364 * for each core in package, increment
365 * the booted_cores for this new cpu
366 */
Mike Travisd5a74302007-10-16 01:24:05 -0700367 if (first_cpu(per_cpu(cpu_sibling_map, i)) == i)
Mike Travis92cb7612007-10-19 20:35:04 +0200368 c->booted_cores++;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100369 /*
370 * increment the core count for all
371 * the other cpus in this package
372 */
373 if (i != cpu)
Mike Travis92cb7612007-10-19 20:35:04 +0200374 cpu_data(i).booted_cores++;
375 } else if (i != cpu && !c->booted_cores)
376 c->booted_cores = cpu_data(i).booted_cores;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100377 }
Li Shaohuad7208032005-06-25 14:54:54 -0700378 }
379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/*
382 * Activate a secondary processor.
383 */
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100384static void __cpuinit start_secondary(void *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
386 /*
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200387 * Don't put *anything* before cpu_init(), SMP booting is too
388 * fragile that we want to limit the things done here to the
389 * most necessary things.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 */
Zachary Amsden7ce0bcf2007-02-13 13:26:21 +0100391#ifdef CONFIG_VMI
392 vmi_bringup();
393#endif
Rusty Russelld2cbcc42007-05-02 19:27:10 +0200394 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800395 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 smp_callin();
397 while (!cpu_isset(smp_processor_id(), smp_commenced_mask))
398 rep_nop();
Ingo Molnar95492e42007-02-16 01:27:34 -0800399 /*
400 * Check TSC synchronization with the BP:
401 */
402 check_tsc_sync_target();
403
Zachary Amsdenbbab4f32007-02-13 13:26:21 +0100404 setup_secondary_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 if (nmi_watchdog == NMI_IO_APIC) {
406 disable_8259A_irq(0);
407 enable_NMI_through_LVT0(NULL);
408 enable_8259A_irq(0);
409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /*
411 * low-memory mappings have been cleared, flush them from
412 * the local TLBs too.
413 */
414 local_flush_tlb();
Li Shaohua6fe940d2005-06-25 14:54:53 -0700415
Li Shaohuad7208032005-06-25 14:54:54 -0700416 /* This must be done before setting cpu_online_map */
417 set_cpu_sibling_map(raw_smp_processor_id());
418 wmb();
419
Li Shaohua6fe940d2005-06-25 14:54:53 -0700420 /*
421 * We need to hold call_lock, so there is no inconsistency
422 * between the time smp_call_function() determines number of
Simon Arlott27b46d72007-10-20 01:13:56 +0200423 * IPI recipients, and the time when the determination is made
Li Shaohua6fe940d2005-06-25 14:54:53 -0700424 * for which cpus receive the IPI. Holding this
425 * lock helps us to not include this cpu in a currently in progress
426 * smp_call_function().
427 */
428 lock_ipi_call_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 cpu_set(smp_processor_id(), cpu_online_map);
Li Shaohua6fe940d2005-06-25 14:54:53 -0700430 unlock_ipi_call_lock();
Li Shaohuae1367da2005-06-25 14:54:56 -0700431 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* We can take interrupts now: we're officially "up". */
434 local_irq_enable();
435
436 wmb();
437 cpu_idle();
438}
439
440/*
441 * Everything has been set up for the secondary
442 * CPUs - they just need to reload everything
443 * from the task structure
444 * This function must not return.
445 */
Li Shaohua0bb31842005-06-25 14:54:55 -0700446void __devinit initialize_secondary(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 /*
449 * We don't actually need to load the full TSS,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100450 * basically just the stack pointer and the ip.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 */
452
453 asm volatile(
454 "movl %0,%%esp\n\t"
455 "jmp *%1"
456 :
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100457 :"m" (current->thread.esp),"m" (current->thread.eip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100460/* Static state in head.S used to set up a CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461extern struct {
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100462 void * sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 unsigned short ss;
464} stack_start;
465
466#ifdef CONFIG_NUMA
467
468/* which logical CPUs are on which nodes */
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100469cpumask_t node_to_cpumask_map[MAX_NUMNODES] __read_mostly =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 { [0 ... MAX_NUMNODES-1] = CPU_MASK_NONE };
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100471EXPORT_SYMBOL(node_to_cpumask_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/* which node each logical CPU is on */
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100473int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
474EXPORT_SYMBOL(cpu_to_node_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476/* set up a mapping between cpu and node. */
477static inline void map_cpu_to_node(int cpu, int node)
478{
479 printk("Mapping cpu %d to node %d\n", cpu, node);
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100480 cpu_set(cpu, node_to_cpumask_map[node]);
481 cpu_to_node_map[cpu] = node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
484/* undo a mapping between cpu and node. */
485static inline void unmap_cpu_to_node(int cpu)
486{
487 int node;
488
489 printk("Unmapping cpu %d from all nodes\n", cpu);
490 for (node = 0; node < MAX_NUMNODES; node ++)
Thomas Gleixnerfe21a442008-01-30 13:30:38 +0100491 cpu_clear(cpu, node_to_cpumask_map[node]);
492 cpu_to_node_map[cpu] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494#else /* !CONFIG_NUMA */
495
496#define map_cpu_to_node(cpu, node) ({})
497#define unmap_cpu_to_node(cpu) ({})
498
499#endif /* CONFIG_NUMA */
500
Christoph Lameter6c036522005-07-07 17:56:59 -0700501u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = BAD_APICID };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503static void map_cpu_to_logical_apicid(void)
504{
505 int cpu = smp_processor_id();
506 int apicid = logical_smp_processor_id();
Keith Mannthey78b656b2006-10-03 18:25:52 -0700507 int node = apicid_to_node(apicid);
keith manntheybfa0e9a2006-09-25 16:25:35 -0700508
509 if (!node_online(node))
510 node = first_online_node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512 cpu_2_logical_apicid[cpu] = apicid;
keith manntheybfa0e9a2006-09-25 16:25:35 -0700513 map_cpu_to_node(cpu, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516static void unmap_cpu_to_logical_apicid(int cpu)
517{
518 cpu_2_logical_apicid[cpu] = BAD_APICID;
519 unmap_cpu_to_node(cpu);
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static inline void __inquire_remote_apic(int apicid)
523{
524 int i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
525 char *names[] = { "ID", "VERSION", "SPIV" };
Fernando Luis VazquezCao4312fa82007-05-02 19:27:17 +0200526 int timeout;
527 unsigned long status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 printk("Inquiring remote APIC #%d...\n", apicid);
530
Tobias Klauser38e548e2005-11-07 00:58:31 -0800531 for (i = 0; i < ARRAY_SIZE(regs); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 printk("... APIC #%d %s: ", apicid, names[i]);
533
534 /*
535 * Wait for idle.
536 */
Fernando Luis VazquezCao4312fa82007-05-02 19:27:17 +0200537 status = safe_apic_wait_icr_idle();
538 if (status)
539 printk("a previous APIC delivery may have failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
542 apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
543
544 timeout = 0;
545 do {
546 udelay(100);
547 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
548 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
549
550 switch (status) {
551 case APIC_ICR_RR_VALID:
552 status = apic_read(APIC_RRR);
Andi Kleenec1180d2007-05-02 19:27:21 +0200553 printk("%lx\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 break;
555 default:
556 printk("failed\n");
557 }
558 }
559}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561#ifdef WAKE_SECONDARY_VIA_NMI
562/*
563 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
564 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
565 * won't ... remember to clear down the APIC, etc later.
566 */
Li Shaohua0bb31842005-06-25 14:54:55 -0700567static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
569{
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200570 unsigned long send_status, accept_status = 0;
571 int maxlvt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 /* Target chip */
574 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
575
576 /* Boot on the stack */
577 /* Kick the second */
578 apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
579
580 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200581 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /*
584 * Give the other CPU some time to accept the IPI.
585 */
586 udelay(200);
587 /*
588 * Due to the Pentium erratum 3AP.
589 */
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800590 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (maxlvt > 3) {
592 apic_read_around(APIC_SPIV);
593 apic_write(APIC_ESR, 0);
594 }
595 accept_status = (apic_read(APIC_ESR) & 0xEF);
596 Dprintk("NMI sent.\n");
597
598 if (send_status)
599 printk("APIC never delivered???\n");
600 if (accept_status)
601 printk("APIC delivery error (%lx).\n", accept_status);
602
603 return (send_status | accept_status);
604}
605#endif /* WAKE_SECONDARY_VIA_NMI */
606
607#ifdef WAKE_SECONDARY_VIA_INIT
Li Shaohua0bb31842005-06-25 14:54:55 -0700608static int __devinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
610{
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200611 unsigned long send_status, accept_status = 0;
612 int maxlvt, num_starts, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 /*
615 * Be paranoid about clearing APIC errors.
616 */
617 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
618 apic_read_around(APIC_SPIV);
619 apic_write(APIC_ESR, 0);
620 apic_read(APIC_ESR);
621 }
622
623 Dprintk("Asserting INIT.\n");
624
625 /*
626 * Turn INIT on target chip
627 */
628 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
629
630 /*
631 * Send IPI
632 */
633 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
634 | APIC_DM_INIT);
635
636 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200637 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 mdelay(10);
640
641 Dprintk("Deasserting INIT.\n");
642
643 /* Target chip */
644 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
645
646 /* Send IPI */
647 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
648
649 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200650 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 atomic_set(&init_deasserted, 1);
653
654 /*
655 * Should we send STARTUP IPIs ?
656 *
657 * Determine this based on the APIC version.
658 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
659 */
660 if (APIC_INTEGRATED(apic_version[phys_apicid]))
661 num_starts = 2;
662 else
663 num_starts = 0;
664
665 /*
Zachary Amsdenae5da272007-02-13 13:26:21 +0100666 * Paravirt / VMI wants a startup IPI hook here to set up the
667 * target processor state.
668 */
669 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100670 (unsigned long) stack_start.sp);
Zachary Amsdenae5da272007-02-13 13:26:21 +0100671
672 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 * Run STARTUP IPI loop.
674 */
675 Dprintk("#startup loops: %d.\n", num_starts);
676
Thomas Gleixnere05d7232007-02-16 01:27:58 -0800677 maxlvt = lapic_get_maxlvt();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 for (j = 1; j <= num_starts; j++) {
680 Dprintk("Sending STARTUP #%d.\n",j);
681 apic_read_around(APIC_SPIV);
682 apic_write(APIC_ESR, 0);
683 apic_read(APIC_ESR);
684 Dprintk("After apic_write.\n");
685
686 /*
687 * STARTUP IPI
688 */
689
690 /* Target chip */
691 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
692
693 /* Boot on the stack */
694 /* Kick the second */
695 apic_write_around(APIC_ICR, APIC_DM_STARTUP
696 | (start_eip >> 12));
697
698 /*
699 * Give the other CPU some time to accept the IPI.
700 */
701 udelay(300);
702
703 Dprintk("Startup point 1.\n");
704
705 Dprintk("Waiting for send to finish...\n");
Fernando Luis VazquezCaoae08e432007-05-02 19:27:17 +0200706 send_status = safe_apic_wait_icr_idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 /*
709 * Give the other CPU some time to accept the IPI.
710 */
711 udelay(200);
712 /*
713 * Due to the Pentium erratum 3AP.
714 */
715 if (maxlvt > 3) {
716 apic_read_around(APIC_SPIV);
717 apic_write(APIC_ESR, 0);
718 }
719 accept_status = (apic_read(APIC_ESR) & 0xEF);
720 if (send_status || accept_status)
721 break;
722 }
723 Dprintk("After Startup.\n");
724
725 if (send_status)
726 printk("APIC never delivered???\n");
727 if (accept_status)
728 printk("APIC delivery error (%lx).\n", accept_status);
729
730 return (send_status | accept_status);
731}
732#endif /* WAKE_SECONDARY_VIA_INIT */
733
734extern cpumask_t cpu_initialized;
Li Shaohuae1367da2005-06-25 14:54:56 -0700735static inline int alloc_cpu_id(void)
736{
737 cpumask_t tmp_map;
738 int cpu;
739 cpus_complement(tmp_map, cpu_present_map);
740 cpu = first_cpu(tmp_map);
741 if (cpu >= NR_CPUS)
742 return -ENODEV;
743 return cpu;
744}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Li Shaohuae1367da2005-06-25 14:54:56 -0700746#ifdef CONFIG_HOTPLUG_CPU
Adrian Bunkf2206ec2007-12-19 23:20:18 +0100747static struct task_struct * __cpuinitdata cpu_idle_tasks[NR_CPUS];
748static inline struct task_struct * __cpuinit alloc_idle_task(int cpu)
Li Shaohuae1367da2005-06-25 14:54:56 -0700749{
750 struct task_struct *idle;
751
752 if ((idle = cpu_idle_tasks[cpu]) != NULL) {
753 /* initialize thread_struct. we really want to avoid destroy
754 * idle tread
755 */
akpm@osdl.org07b047f2006-01-12 01:05:41 -0800756 idle->thread.esp = (unsigned long)task_pt_regs(idle);
Li Shaohuae1367da2005-06-25 14:54:56 -0700757 init_idle(idle, cpu);
758 return idle;
759 }
760 idle = fork_idle(cpu);
761
762 if (!IS_ERR(idle))
763 cpu_idle_tasks[cpu] = idle;
764 return idle;
765}
766#else
767#define alloc_idle_task(cpu) fork_idle(cpu)
768#endif
769
Vivek Goyal4a5d1072007-01-11 01:52:44 +0100770static int __cpuinit do_boot_cpu(int apicid, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/*
772 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
773 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
774 * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
775 */
776{
777 struct task_struct *idle;
778 unsigned long boot_error;
Li Shaohuae1367da2005-06-25 14:54:56 -0700779 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 unsigned long start_eip;
781 unsigned short nmi_high = 0, nmi_low = 0;
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /*
Bernhard Kaindl2b1f6272007-05-02 19:27:17 +0200784 * Save current MTRR state in case it was changed since early boot
785 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
786 */
787 mtrr_save_state();
788
789 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 * We can't use kernel_thread since we must avoid to
791 * reschedule the child.
792 */
Li Shaohuae1367da2005-06-25 14:54:56 -0700793 idle = alloc_idle_task(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (IS_ERR(idle))
795 panic("failed fork for CPU %d", cpu);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100796
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +0200797 init_gdt(cpu);
798 per_cpu(current_task, cpu) = idle;
Rusty Russellbf5046722007-05-02 19:27:10 +0200799 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 idle->thread.eip = (unsigned long) start_secondary;
802 /* start_eip had better be page-aligned! */
803 start_eip = setup_trampoline();
804
Jeremy Fitzhardinge62111192006-12-07 02:14:02 +0100805 ++cpucount;
806 alternatives_smp_switch(1);
807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* So we see what's up */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100809 printk("Booting processor %d/%d ip %lx\n", cpu, apicid, start_eip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /* Stack for startup_32 can be just as for start_secondary onwards */
H. Peter Anvin65ea5b02008-01-30 13:30:56 +0100811 stack_start.sp = (void *) idle->thread.esp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 irq_ctx_init(cpu);
814
Mike Travis71fff5e2007-10-19 20:35:03 +0200815 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
817 * This grunge runs the startup process for
818 * the targeted processor.
819 */
820
821 atomic_set(&init_deasserted, 0);
822
823 Dprintk("Setting warm reset code and vector.\n");
824
825 store_NMI_vector(&nmi_high, &nmi_low);
826
827 smpboot_setup_warm_reset_vector(start_eip);
828
829 /*
830 * Starting actual IPI sequence...
831 */
832 boot_error = wakeup_secondary_cpu(apicid, start_eip);
833
834 if (!boot_error) {
835 /*
836 * allow APs to start initializing.
837 */
838 Dprintk("Before Callout %d.\n", cpu);
839 cpu_set(cpu, cpu_callout_map);
840 Dprintk("After Callout %d.\n", cpu);
841
842 /*
843 * Wait 5s total for a response
844 */
845 for (timeout = 0; timeout < 50000; timeout++) {
846 if (cpu_isset(cpu, cpu_callin_map))
847 break; /* It has booted */
848 udelay(100);
849 }
850
851 if (cpu_isset(cpu, cpu_callin_map)) {
852 /* number CPUs logically, starting from 1 (BSP is 0) */
853 Dprintk("OK.\n");
854 printk("CPU%d: ", cpu);
Mike Travis92cb7612007-10-19 20:35:04 +0200855 print_cpu_info(&cpu_data(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 Dprintk("CPU has booted.\n");
857 } else {
858 boot_error= 1;
859 if (*((volatile unsigned char *)trampoline_base)
860 == 0xA5)
861 /* trampoline started but...? */
862 printk("Stuck ??\n");
863 else
864 /* trampoline code not run */
865 printk("Not responding.\n");
866 inquire_remote_apic(apicid);
867 }
868 }
Li Shaohuae1367da2005-06-25 14:54:56 -0700869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (boot_error) {
871 /* Try to put things back the way they were before ... */
872 unmap_cpu_to_logical_apicid(cpu);
873 cpu_clear(cpu, cpu_callout_map); /* was set here (do_boot_cpu()) */
874 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
875 cpucount--;
Li Shaohuae1367da2005-06-25 14:54:56 -0700876 } else {
Mike Travis71fff5e2007-10-19 20:35:03 +0200877 per_cpu(x86_cpu_to_apicid, cpu) = apicid;
Li Shaohuae1367da2005-06-25 14:54:56 -0700878 cpu_set(cpu, cpu_present_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880
881 /* mark "stuck" area as not stuck */
882 *((volatile unsigned long *)trampoline_base) = 0;
883
884 return boot_error;
885}
886
Li Shaohuae1367da2005-06-25 14:54:56 -0700887#ifdef CONFIG_HOTPLUG_CPU
888void cpu_exit_clear(void)
889{
890 int cpu = raw_smp_processor_id();
891
892 idle_task_exit();
893
894 cpucount --;
895 cpu_uninit();
896 irq_ctx_exit(cpu);
897
898 cpu_clear(cpu, cpu_callout_map);
899 cpu_clear(cpu, cpu_callin_map);
Li Shaohuae1367da2005-06-25 14:54:56 -0700900
901 cpu_clear(cpu, smp_commenced_mask);
902 unmap_cpu_to_logical_apicid(cpu);
903}
904
905struct warm_boot_cpu_info {
906 struct completion *complete;
David Howellsc4028952006-11-22 14:57:56 +0000907 struct work_struct task;
Li Shaohuae1367da2005-06-25 14:54:56 -0700908 int apicid;
909 int cpu;
910};
911
David Howellsc4028952006-11-22 14:57:56 +0000912static void __cpuinit do_warm_boot_cpu(struct work_struct *work)
Li Shaohuae1367da2005-06-25 14:54:56 -0700913{
David Howellsc4028952006-11-22 14:57:56 +0000914 struct warm_boot_cpu_info *info =
915 container_of(work, struct warm_boot_cpu_info, task);
Li Shaohuae1367da2005-06-25 14:54:56 -0700916 do_boot_cpu(info->apicid, info->cpu);
917 complete(info->complete);
918}
919
Ashok Raj34f361a2006-03-25 03:08:18 -0800920static int __cpuinit __smp_prepare_cpu(int cpu)
Li Shaohuae1367da2005-06-25 14:54:56 -0700921{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700922 DECLARE_COMPLETION_ONSTACK(done);
Li Shaohuae1367da2005-06-25 14:54:56 -0700923 struct warm_boot_cpu_info info;
Li Shaohuae1367da2005-06-25 14:54:56 -0700924 int apicid, ret;
925
Mike Travis71fff5e2007-10-19 20:35:03 +0200926 apicid = per_cpu(x86_cpu_to_apicid, cpu);
Li Shaohuae1367da2005-06-25 14:54:56 -0700927 if (apicid == BAD_APICID) {
928 ret = -ENODEV;
929 goto exit;
930 }
931
932 info.complete = &done;
933 info.apicid = apicid;
934 info.cpu = cpu;
David Howellsc4028952006-11-22 14:57:56 +0000935 INIT_WORK(&info.task, do_warm_boot_cpu);
Li Shaohuae1367da2005-06-25 14:54:56 -0700936
Li Shaohuae1367da2005-06-25 14:54:56 -0700937 /* init low mem mapping */
Zachary Amsdend7271b12005-09-03 15:56:50 -0700938 clone_pgd_range(swapper_pg_dir, swapper_pg_dir + USER_PGD_PTRS,
Shaohua Li3b1bdf42006-12-08 02:41:13 -0800939 min_t(unsigned long, KERNEL_PGD_PTRS, USER_PGD_PTRS));
Li Shaohuae1367da2005-06-25 14:54:56 -0700940 flush_tlb_all();
David Howellsc4028952006-11-22 14:57:56 +0000941 schedule_work(&info.task);
Li Shaohuae1367da2005-06-25 14:54:56 -0700942 wait_for_completion(&done);
943
Li Shaohuae1367da2005-06-25 14:54:56 -0700944 zap_low_mappings();
945 ret = 0;
946exit:
Li Shaohuae1367da2005-06-25 14:54:56 -0700947 return ret;
948}
949#endif
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951/*
952 * Cycle through the processors sending APIC IPIs to boot each.
953 */
954
955static int boot_cpu_logical_apicid;
956/* Where the IO area was mapped on multiquad, always 0 otherwise */
957void *xquad_portio;
Alexey Dobriyan129f6942005-06-23 00:08:33 -0700958#ifdef CONFIG_X86_NUMAQ
959EXPORT_SYMBOL(xquad_portio);
960#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962static void __init smp_boot_cpus(unsigned int max_cpus)
963{
964 int apicid, cpu, bit, kicked;
965 unsigned long bogosum = 0;
966
967 /*
968 * Setup boot CPU information
969 */
970 smp_store_cpu_info(0); /* Final full version of the data */
971 printk("CPU%d: ", 0);
Mike Travis92cb7612007-10-19 20:35:04 +0200972 print_cpu_info(&cpu_data(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Linus Torvalds1e4c85f2005-10-31 19:16:17 -0800974 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 boot_cpu_logical_apicid = logical_smp_processor_id();
Mike Travis71fff5e2007-10-19 20:35:03 +0200976 per_cpu(x86_cpu_to_apicid, 0) = boot_cpu_physical_apicid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
978 current_thread_info()->cpu = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100980 set_cpu_sibling_map(0);
Andi Kleen3dd9d512005-04-16 15:25:15 -0700981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /*
983 * If we couldn't find an SMP configuration at boot time,
984 * get out of here now!
985 */
986 if (!smp_found_config && !acpi_lapic) {
987 printk(KERN_NOTICE "SMP motherboard not detected.\n");
Linus Torvalds1e4c85f2005-10-31 19:16:17 -0800988 smpboot_clear_io_apic_irqs();
989 phys_cpu_present_map = physid_mask_of_physid(0);
990 if (APIC_init_uniprocessor())
991 printk(KERN_NOTICE "Local APIC not detected."
992 " Using dummy APIC emulation.\n");
993 map_cpu_to_logical_apicid();
Mike Travisd5a74302007-10-16 01:24:05 -0700994 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -0700995 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 return;
997 }
998
999 /*
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001000 * Should not be necessary because the MP table should list the boot
1001 * CPU too, but we do it for the sake of robustness anyway.
1002 * Makes no sense to do this check in clustered apic mode, so skip it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 */
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001004 if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
1005 printk("weird, boot CPU (#%d) not listed by the BIOS.\n",
1006 boot_cpu_physical_apicid);
1007 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1008 }
1009
1010 /*
1011 * If we couldn't find a local APIC, then get out of here now!
1012 */
1013 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) && !cpu_has_apic) {
1014 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1015 boot_cpu_physical_apicid);
1016 printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
1017 smpboot_clear_io_apic_irqs();
1018 phys_cpu_present_map = physid_mask_of_physid(0);
Ingo Molnar54ffaa42007-10-19 20:35:02 +02001019 map_cpu_to_logical_apicid();
Mike Travisd5a74302007-10-16 01:24:05 -07001020 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -07001021 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return;
1023 }
1024
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001025 verify_local_APIC();
1026
1027 /*
1028 * If SMP should be disabled, then really disable it!
1029 */
1030 if (!max_cpus) {
1031 smp_found_config = 0;
1032 printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n");
Ingo Molnar3fb450a2007-10-17 18:04:34 +02001033
1034 if (nmi_watchdog == NMI_LOCAL_APIC) {
1035 printk(KERN_INFO "activating minimal APIC for NMI watchdog use.\n");
1036 connect_bsp_APIC();
1037 setup_local_APIC();
1038 }
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001039 smpboot_clear_io_apic_irqs();
1040 phys_cpu_present_map = physid_mask_of_physid(0);
Ingo Molnar54ffaa42007-10-19 20:35:02 +02001041 map_cpu_to_logical_apicid();
Mike Travisd5a74302007-10-16 01:24:05 -07001042 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -07001043 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001044 return;
1045 }
1046
1047 connect_bsp_APIC();
1048 setup_local_APIC();
1049 map_cpu_to_logical_apicid();
1050
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 setup_portio_remap();
1053
1054 /*
1055 * Scan the CPU present map and fire up the other CPUs via do_boot_cpu
1056 *
1057 * In clustered apic mode, phys_cpu_present_map is a constructed thus:
1058 * bits 0-3 are quad0, 4-7 are quad1, etc. A perverse twist on the
1059 * clustered apic ID.
1060 */
1061 Dprintk("CPU present map: %lx\n", physids_coerce(phys_cpu_present_map));
1062
1063 kicked = 1;
1064 for (bit = 0; kicked < NR_CPUS && bit < MAX_APICS; bit++) {
1065 apicid = cpu_present_to_apicid(bit);
1066 /*
1067 * Don't even attempt to start the boot CPU!
1068 */
1069 if ((apicid == boot_cpu_apicid) || (apicid == BAD_APICID))
1070 continue;
1071
1072 if (!check_apicid_present(bit))
1073 continue;
1074 if (max_cpus <= cpucount+1)
1075 continue;
1076
Li Shaohuae1367da2005-06-25 14:54:56 -07001077 if (((cpu = alloc_cpu_id()) <= 0) || do_boot_cpu(apicid, cpu))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 printk("CPU #%d not responding - cannot use it.\n",
1079 apicid);
1080 else
1081 ++kicked;
1082 }
1083
1084 /*
1085 * Cleanup possible dangling ends...
1086 */
1087 smpboot_restore_warm_reset_vector();
1088
1089 /*
1090 * Allow the user to impress friends.
1091 */
1092 Dprintk("Before bogomips.\n");
Mike Travis7bf0c232008-01-30 13:30:55 +01001093 for_each_possible_cpu(cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (cpu_isset(cpu, cpu_callout_map))
Mike Travis92cb7612007-10-19 20:35:04 +02001095 bogosum += cpu_data(cpu).loops_per_jiffy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 printk(KERN_INFO
1097 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
1098 cpucount+1,
1099 bogosum/(500000/HZ),
1100 (bogosum/(5000/HZ))%100);
1101
1102 Dprintk("Before bogocount - setting activated=1.\n");
1103
1104 if (smp_b_stepping)
1105 printk(KERN_WARNING "WARNING: SMP operation may be unreliable with B stepping processors.\n");
1106
1107 /*
1108 * Don't taint if we are running SMP kernel on a single non-MP
1109 * approved Athlon
1110 */
1111 if (tainted & TAINT_UNSAFE_SMP) {
1112 if (cpucount)
1113 printk (KERN_INFO "WARNING: This combination of AMD processors is not suitable for SMP.\n");
1114 else
1115 tainted &= ~TAINT_UNSAFE_SMP;
1116 }
1117
1118 Dprintk("Boot done.\n");
1119
1120 /*
Mike Travisd5a74302007-10-16 01:24:05 -07001121 * construct cpu_sibling_map, so that we can tell sibling CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 * efficiently.
1123 */
Mike Travis7bf0c232008-01-30 13:30:55 +01001124 for_each_possible_cpu(cpu) {
Mike Travisd5a74302007-10-16 01:24:05 -07001125 cpus_clear(per_cpu(cpu_sibling_map, cpu));
Mike Travis08357612007-10-16 01:24:04 -07001126 cpus_clear(per_cpu(cpu_core_map, cpu));
Andi Kleen3dd9d512005-04-16 15:25:15 -07001127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Mike Travisd5a74302007-10-16 01:24:05 -07001129 cpu_set(0, per_cpu(cpu_sibling_map, 0));
Mike Travis08357612007-10-16 01:24:04 -07001130 cpu_set(0, per_cpu(cpu_core_map, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Linus Torvalds1e4c85f2005-10-31 19:16:17 -08001132 smpboot_setup_io_apic();
1133
Zachary Amsdenbbab4f32007-02-13 13:26:21 +01001134 setup_boot_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
1137/* These are wrappers to interface to the new boot process. Someone
1138 who understands all this stuff should rewrite it properly. --RR 15/Jul/02 */
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001139void __init native_smp_prepare_cpus(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001141 smp_commenced_mask = cpumask_of_cpu(0);
1142 cpu_callin_map = cpumask_of_cpu(0);
1143 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 smp_boot_cpus(max_cpus);
1145}
1146
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001147void __init native_smp_prepare_boot_cpu(void)
Rusty Russellbf5046722007-05-02 19:27:10 +02001148{
1149 unsigned int cpu = smp_processor_id();
1150
Jeremy Fitzhardinge7c3576d2007-05-02 19:27:16 +02001151 init_gdt(cpu);
Rusty Russellbf5046722007-05-02 19:27:10 +02001152 switch_to_new_gdt();
1153
1154 cpu_set(cpu, cpu_online_map);
1155 cpu_set(cpu, cpu_callout_map);
1156 cpu_set(cpu, cpu_present_map);
1157 cpu_set(cpu, cpu_possible_map);
1158 __get_cpu_var(cpu_state) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001161#ifdef CONFIG_HOTPLUG_CPU
Jeremy Fitzhardingec70df742007-07-17 18:37:03 -07001162void remove_siblinginfo(int cpu)
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001163{
Li Shaohuae1367da2005-06-25 14:54:56 -07001164 int sibling;
Mike Travis92cb7612007-10-19 20:35:04 +02001165 struct cpuinfo_x86 *c = &cpu_data(cpu);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001166
Mike Travis08357612007-10-16 01:24:04 -07001167 for_each_cpu_mask(sibling, per_cpu(cpu_core_map, cpu)) {
1168 cpu_clear(cpu, per_cpu(cpu_core_map, sibling));
1169 /*/
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001170 * last thread sibling in this cpu core going down
1171 */
Mike Travisd5a74302007-10-16 01:24:05 -07001172 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1)
Mike Travis92cb7612007-10-19 20:35:04 +02001173 cpu_data(sibling).booted_cores--;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001174 }
1175
Mike Travisd5a74302007-10-16 01:24:05 -07001176 for_each_cpu_mask(sibling, per_cpu(cpu_sibling_map, cpu))
1177 cpu_clear(cpu, per_cpu(cpu_sibling_map, sibling));
1178 cpus_clear(per_cpu(cpu_sibling_map, cpu));
Mike Travis08357612007-10-16 01:24:04 -07001179 cpus_clear(per_cpu(cpu_core_map, cpu));
Mike Travis92cb7612007-10-19 20:35:04 +02001180 c->phys_proc_id = 0;
1181 c->cpu_core_id = 0;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001182 cpu_clear(cpu, cpu_sibling_setup_map);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001183}
1184
1185int __cpu_disable(void)
1186{
1187 cpumask_t map = cpu_online_map;
1188 int cpu = smp_processor_id();
1189
1190 /*
1191 * Perhaps use cpufreq to drop frequency, but that could go
1192 * into generic code.
1193 *
1194 * We won't take down the boot processor on i386 due to some
1195 * interrupts only being able to be serviced by the BSP.
1196 * Especially so if we're not using an IOAPIC -zwane
1197 */
1198 if (cpu == 0)
1199 return -EBUSY;
Shaohua Li4038f902006-09-26 10:52:27 +02001200 if (nmi_watchdog == NMI_LOCAL_APIC)
1201 stop_apic_nmi_watchdog(NULL);
Shaohua Li5e9ef022005-12-12 22:17:08 -08001202 clear_local_APIC();
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001203 /* Allow any queued timer interrupts to get serviced */
1204 local_irq_enable();
1205 mdelay(1);
1206 local_irq_disable();
1207
Li Shaohuae1367da2005-06-25 14:54:56 -07001208 remove_siblinginfo(cpu);
1209
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001210 cpu_clear(cpu, map);
1211 fixup_irqs(map);
1212 /* It's now safe to remove this processor from the online map */
1213 cpu_clear(cpu, cpu_online_map);
1214 return 0;
1215}
1216
1217void __cpu_die(unsigned int cpu)
1218{
1219 /* We don't do anything here: idle task is faking death itself. */
1220 unsigned int i;
1221
1222 for (i = 0; i < 10; i++) {
1223 /* They ack this in play_dead by setting CPU_DEAD */
Li Shaohuae1367da2005-06-25 14:54:56 -07001224 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1225 printk ("CPU %d is now offline\n", cpu);
Gerd Hoffmann9a0b5812006-03-23 02:59:32 -08001226 if (1 == num_online_cpus())
1227 alternatives_smp_switch(0);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001228 return;
Li Shaohuae1367da2005-06-25 14:54:56 -07001229 }
Nishanth Aravamudanaeb83972005-09-10 00:26:50 -07001230 msleep(100);
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001231 }
1232 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1233}
1234#else /* ... !CONFIG_HOTPLUG_CPU */
1235int __cpu_disable(void)
1236{
1237 return -ENOSYS;
1238}
1239
1240void __cpu_die(unsigned int cpu)
1241{
1242 /* We said "no" in __cpu_disable */
1243 BUG();
1244}
1245#endif /* CONFIG_HOTPLUG_CPU */
1246
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001247int __cpuinit native_cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
Ingo Molnard04f41e2007-03-07 18:12:31 +01001249 unsigned long flags;
Ashok Raj34f361a2006-03-25 03:08:18 -08001250#ifdef CONFIG_HOTPLUG_CPU
Ingo Molnard04f41e2007-03-07 18:12:31 +01001251 int ret = 0;
Ashok Raj34f361a2006-03-25 03:08:18 -08001252
1253 /*
1254 * We do warm boot only on cpus that had booted earlier
1255 * Otherwise cold boot is all handled from smp_boot_cpus().
1256 * cpu_callin_map is set during AP kickstart process. Its reset
1257 * when a cpu is taken offline from cpu_exit_clear().
1258 */
1259 if (!cpu_isset(cpu, cpu_callin_map))
1260 ret = __smp_prepare_cpu(cpu);
1261
1262 if (ret)
1263 return -EIO;
1264#endif
1265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /* In case one didn't come up */
1267 if (!cpu_isset(cpu, cpu_callin_map)) {
Zwane Mwaikambof3705132005-06-25 14:54:50 -07001268 printk(KERN_DEBUG "skipping cpu%d, didn't come online\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return -EIO;
1270 }
1271
Li Shaohuae1367da2005-06-25 14:54:56 -07001272 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 /* Unleash the CPU! */
1274 cpu_set(cpu, smp_commenced_mask);
Ingo Molnar95492e42007-02-16 01:27:34 -08001275
1276 /*
Ingo Molnard04f41e2007-03-07 18:12:31 +01001277 * Check TSC synchronization with the AP (keep irqs disabled
1278 * while doing so):
Ingo Molnar95492e42007-02-16 01:27:34 -08001279 */
Ingo Molnard04f41e2007-03-07 18:12:31 +01001280 local_irq_save(flags);
Ingo Molnar95492e42007-02-16 01:27:34 -08001281 check_tsc_sync_source(cpu);
Ingo Molnard04f41e2007-03-07 18:12:31 +01001282 local_irq_restore(flags);
Ingo Molnar95492e42007-02-16 01:27:34 -08001283
Ingo Molnard04f41e2007-03-07 18:12:31 +01001284 while (!cpu_isset(cpu, cpu_online_map)) {
Andreas Mohr18698912006-06-25 05:46:52 -07001285 cpu_relax();
Ingo Molnard04f41e2007-03-07 18:12:31 +01001286 touch_nmi_watchdog();
1287 }
Siddha, Suresh Bb0d0a4b2006-12-07 02:14:10 +01001288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return 0;
1290}
1291
Jeremy Fitzhardinge01a2f432007-05-02 19:27:11 +02001292void __init native_smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293{
1294#ifdef CONFIG_X86_IO_APIC
1295 setup_ioapic_dest();
1296#endif
1297 zap_low_mappings();
Li Shaohuae1367da2005-06-25 14:54:56 -07001298#ifndef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 /*
1300 * Disable executability of the SMP trampoline:
1301 */
1302 set_kernel_exec((unsigned long)trampoline_base, trampoline_exec);
Li Shaohuae1367da2005-06-25 14:54:56 -07001303#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304}
1305
1306void __init smp_intr_init(void)
1307{
1308 /*
1309 * IRQ0 must be given a fixed assignment and initialized,
1310 * because it's used before the IO-APIC is set up.
1311 */
1312 set_intr_gate(FIRST_DEVICE_VECTOR, interrupt[0]);
1313
1314 /*
1315 * The reschedule interrupt is a CPU-to-CPU reschedule-helper
1316 * IPI, driven by wakeup.
1317 */
1318 set_intr_gate(RESCHEDULE_VECTOR, reschedule_interrupt);
1319
1320 /* IPI for invalidation */
1321 set_intr_gate(INVALIDATE_TLB_VECTOR, invalidate_interrupt);
1322
1323 /* IPI for generic function call */
1324 set_intr_gate(CALL_FUNCTION_VECTOR, call_function_interrupt);
1325}
Rusty Russell1a3f2392006-09-26 10:52:32 +02001326
1327/*
1328 * If the BIOS enumerates physical processors before logical,
1329 * maxcpus=N at enumeration-time can be used to disable HT.
1330 */
1331static int __init parse_maxcpus(char *arg)
1332{
1333 extern unsigned int maxcpus;
1334
1335 maxcpus = simple_strtoul(arg, NULL, 0);
1336 return 0;
1337}
1338early_param("maxcpus", parse_maxcpus);