blob: 06535e7687ceb277d9fedd2e1cbc68fc6fd674a7 [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 * Copyright 2001 Andi Kleen, SuSE Labs.
7 *
8 * Much of the core SMP work is based on previous work by Thomas Radke, to
9 * whom a great many thanks are extended.
10 *
11 * Thanks to Intel for making available several different Pentium,
12 * Pentium Pro and Pentium-II/Xeon MP machines.
13 * Original development of Linux SMP code supported by Caldera.
14 *
Andi Kleena8ab26f2005-04-16 15:25:19 -070015 * This code is released under the GNU General Public License version 2
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * Fixes
18 * Felix Koop : NR_CPUS used properly
19 * Jose Renau : Handle single CPU case.
20 * Alan Cox : By repeated request 8) - Total BogoMIP 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 * Andi Kleen : Changed for SMP boot into long mode.
Andi Kleena8ab26f2005-04-16 15:25:19 -070033 * Rusty Russell : Hacked into shape for new "hotplug" boot process.
34 * Andi Kleen : Converted to new state machine.
35 * Various cleanups.
36 * Probably mostly hotplug CPU ready now.
Ashok Raj76e4f662005-06-25 14:55:00 -070037 * Ashok Raj : CPU hotplug support
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
Andi Kleena8ab26f2005-04-16 15:25:19 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/config.h>
42#include <linux/init.h>
43
44#include <linux/mm.h>
45#include <linux/kernel_stat.h>
46#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <linux/bootmem.h>
48#include <linux/thread_info.h>
49#include <linux/module.h>
50
51#include <linux/delay.h>
52#include <linux/mc146818rtc.h>
53#include <asm/mtrr.h>
54#include <asm/pgalloc.h>
55#include <asm/desc.h>
56#include <asm/kdebug.h>
57#include <asm/tlbflush.h>
58#include <asm/proto.h>
Andi Kleen75152112005-05-16 21:53:34 -070059#include <asm/nmi.h>
Al Viro9cdd3042005-09-12 18:49:25 +020060#include <asm/irq.h>
61#include <asm/hw_irq.h>
Ravikiran G Thirumalai488fc082006-02-07 12:58:23 -080062#include <asm/numa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64/* Number of siblings per CPU package */
65int smp_num_siblings = 1;
66/* Package ID of each logical CPU */
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070067u8 phys_proc_id[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = BAD_APICID };
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010068/* core ID of each logical CPU */
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070069u8 cpu_core_id[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = BAD_APICID };
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -080071/* Last level cache ID of each logical CPU */
72u8 cpu_llc_id[NR_CPUS] __cpuinitdata = {[0 ... NR_CPUS-1] = BAD_APICID};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* Bitmask of currently online CPUs */
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070075cpumask_t cpu_online_map __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Andi Kleena8ab26f2005-04-16 15:25:19 -070077EXPORT_SYMBOL(cpu_online_map);
78
79/*
80 * Private maps to synchronize booting between AP and BP.
81 * Probably not needed anymore, but it makes for easier debugging. -AK
82 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083cpumask_t cpu_callin_map;
84cpumask_t cpu_callout_map;
Andi Kleena8ab26f2005-04-16 15:25:19 -070085
86cpumask_t cpu_possible_map;
87EXPORT_SYMBOL(cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
89/* Per CPU bogomips and other parameters */
90struct cpuinfo_x86 cpu_data[NR_CPUS] __cacheline_aligned;
91
Andi Kleena8ab26f2005-04-16 15:25:19 -070092/* Set when the idlers are all forked */
93int smp_threads_ready;
94
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010095/* representing HT siblings of each logical CPU */
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070096cpumask_t cpu_sibling_map[NR_CPUS] __read_mostly;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +010097
98/* representing HT and core siblings of each logical CPU */
Ravikiran G Thirumalai6c231b72005-09-06 15:17:45 -070099cpumask_t cpu_core_map[NR_CPUS] __read_mostly;
Andi Kleen2df9fa32005-05-20 14:27:59 -0700100EXPORT_SYMBOL(cpu_core_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102/*
103 * Trampoline 80x86 program as an array.
104 */
105
Andi Kleena8ab26f2005-04-16 15:25:19 -0700106extern unsigned char trampoline_data[];
107extern unsigned char trampoline_end[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Ashok Raj76e4f662005-06-25 14:55:00 -0700109/* State of each CPU */
110DEFINE_PER_CPU(int, cpu_state) = { 0 };
111
112/*
113 * Store all idle threads, this can be reused instead of creating
114 * a new thread. Also avoids complicated thread destroy functionality
115 * for idle threads.
116 */
117struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
118
119#define get_idle_for_cpu(x) (idle_thread_array[(x)])
120#define set_idle_for_cpu(x,p) (idle_thread_array[(x)] = (p))
121
122/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * 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
Andi Kleena8ab26f2005-04-16 15:25:19 -0700128static unsigned long __cpuinit setup_trampoline(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 void *tramp = __va(SMP_TRAMPOLINE_BASE);
131 memcpy(tramp, trampoline_data, trampoline_end - trampoline_data);
132 return virt_to_phys(tramp);
133}
134
135/*
136 * The bootstrap kernel entry code has set these up. Save them for
137 * a given CPU
138 */
139
Andi Kleena8ab26f2005-04-16 15:25:19 -0700140static void __cpuinit smp_store_cpu_info(int id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 struct cpuinfo_x86 *c = cpu_data + id;
143
144 *c = boot_cpu_data;
145 identify_cpu(c);
Andi Kleendda50e72005-05-16 21:53:25 -0700146 print_cpu_info(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}
148
149/*
Andi Kleendda50e72005-05-16 21:53:25 -0700150 * New Funky TSC sync algorithm borrowed from IA64.
151 * Main advantage is that it doesn't reset the TSCs fully and
152 * in general looks more robust and it works better than my earlier
153 * attempts. I believe it was written by David Mosberger. Some minor
154 * adjustments for x86-64 by me -AK
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 *
Andi Kleendda50e72005-05-16 21:53:25 -0700156 * Original comment reproduced below.
157 *
158 * Synchronize TSC of the current (slave) CPU with the TSC of the
159 * MASTER CPU (normally the time-keeper CPU). We use a closed loop to
160 * eliminate the possibility of unaccounted-for errors (such as
161 * getting a machine check in the middle of a calibration step). The
162 * basic idea is for the slave to ask the master what itc value it has
163 * and to read its own itc before and after the master responds. Each
164 * iteration gives us three timestamps:
165 *
166 * slave master
167 *
168 * t0 ---\
169 * ---\
170 * --->
171 * tm
172 * /---
173 * /---
174 * t1 <---
175 *
176 *
177 * The goal is to adjust the slave's TSC such that tm falls exactly
178 * half-way between t0 and t1. If we achieve this, the clocks are
179 * synchronized provided the interconnect between the slave and the
180 * master is symmetric. Even if the interconnect were asymmetric, we
181 * would still know that the synchronization error is smaller than the
182 * roundtrip latency (t0 - t1).
183 *
184 * When the interconnect is quiet and symmetric, this lets us
185 * synchronize the TSC to within one or two cycles. However, we can
186 * only *guarantee* that the synchronization is accurate to within a
187 * round-trip time, which is typically in the range of several hundred
188 * cycles (e.g., ~500 cycles). In practice, this means that the TSCs
189 * are usually almost perfectly synchronized, but we shouldn't assume
190 * that the accuracy is much better than half a micro second or so.
191 *
192 * [there are other errors like the latency of RDTSC and of the
193 * WRMSR. These can also account to hundreds of cycles. So it's
194 * probably worse. It claims 153 cycles error on a dual Opteron,
195 * but I suspect the numbers are actually somewhat worse -AK]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 */
197
Andi Kleendda50e72005-05-16 21:53:25 -0700198#define MASTER 0
199#define SLAVE (SMP_CACHE_BYTES/8)
200
201/* Intentionally don't use cpu_relax() while TSC synchronization
202 because we don't want to go into funky power save modi or cause
203 hypervisors to schedule us away. Going to sleep would likely affect
204 latency and low latency is the primary objective here. -AK */
205#define no_cpu_relax() barrier()
206
Andi Kleena8ab26f2005-04-16 15:25:19 -0700207static __cpuinitdata DEFINE_SPINLOCK(tsc_sync_lock);
Andi Kleendda50e72005-05-16 21:53:25 -0700208static volatile __cpuinitdata unsigned long go[SLAVE + 1];
209static int notscsync __cpuinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Andi Kleendda50e72005-05-16 21:53:25 -0700211#undef DEBUG_TSC_SYNC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Andi Kleendda50e72005-05-16 21:53:25 -0700213#define NUM_ROUNDS 64 /* magic value */
214#define NUM_ITERS 5 /* likewise */
215
216/* Callback on boot CPU */
217static __cpuinit void sync_master(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Andi Kleendda50e72005-05-16 21:53:25 -0700219 unsigned long flags, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Andi Kleendda50e72005-05-16 21:53:25 -0700221 go[MASTER] = 0;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700222
Andi Kleendda50e72005-05-16 21:53:25 -0700223 local_irq_save(flags);
224 {
225 for (i = 0; i < NUM_ROUNDS*NUM_ITERS; ++i) {
226 while (!go[MASTER])
227 no_cpu_relax();
228 go[MASTER] = 0;
229 rdtscll(go[SLAVE]);
230 }
Andi Kleena8ab26f2005-04-16 15:25:19 -0700231 }
Andi Kleendda50e72005-05-16 21:53:25 -0700232 local_irq_restore(flags);
Andi Kleena8ab26f2005-04-16 15:25:19 -0700233}
234
Andi Kleendda50e72005-05-16 21:53:25 -0700235/*
236 * Return the number of cycles by which our tsc differs from the tsc
237 * on the master (time-keeper) CPU. A positive number indicates our
238 * tsc is ahead of the master, negative that it is behind.
239 */
240static inline long
241get_delta(long *rt, long *master)
242{
243 unsigned long best_t0 = 0, best_t1 = ~0UL, best_tm = 0;
244 unsigned long tcenter, t0, t1, tm;
245 int i;
246
247 for (i = 0; i < NUM_ITERS; ++i) {
248 rdtscll(t0);
249 go[MASTER] = 1;
250 while (!(tm = go[SLAVE]))
251 no_cpu_relax();
252 go[SLAVE] = 0;
253 rdtscll(t1);
254
255 if (t1 - t0 < best_t1 - best_t0)
256 best_t0 = t0, best_t1 = t1, best_tm = tm;
257 }
258
259 *rt = best_t1 - best_t0;
260 *master = best_tm - best_t0;
261
262 /* average best_t0 and best_t1 without overflow: */
263 tcenter = (best_t0/2 + best_t1/2);
264 if (best_t0 % 2 + best_t1 % 2 == 2)
265 ++tcenter;
266 return tcenter - best_tm;
267}
268
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700269static __cpuinit void sync_tsc(unsigned int master)
Andi Kleendda50e72005-05-16 21:53:25 -0700270{
271 int i, done = 0;
272 long delta, adj, adjust_latency = 0;
273 unsigned long flags, rt, master_time_stamp, bound;
Olaf Hering44456d32005-07-27 11:45:17 -0700274#ifdef DEBUG_TSC_SYNC
Andi Kleendda50e72005-05-16 21:53:25 -0700275 static struct syncdebug {
276 long rt; /* roundtrip time */
277 long master; /* master's timestamp */
278 long diff; /* difference between midpoint and master's timestamp */
279 long lat; /* estimate of tsc adjustment latency */
280 } t[NUM_ROUNDS] __cpuinitdata;
281#endif
282
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700283 printk(KERN_INFO "CPU %d: Syncing TSC to CPU %u.\n",
284 smp_processor_id(), master);
285
Andi Kleendda50e72005-05-16 21:53:25 -0700286 go[MASTER] = 1;
287
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700288 /* It is dangerous to broadcast IPI as cpus are coming up,
289 * as they may not be ready to accept them. So since
290 * we only need to send the ipi to the boot cpu direct
291 * the message, and avoid the race.
292 */
293 smp_call_function_single(master, sync_master, NULL, 1, 0);
Andi Kleendda50e72005-05-16 21:53:25 -0700294
295 while (go[MASTER]) /* wait for master to be ready */
296 no_cpu_relax();
297
298 spin_lock_irqsave(&tsc_sync_lock, flags);
299 {
300 for (i = 0; i < NUM_ROUNDS; ++i) {
301 delta = get_delta(&rt, &master_time_stamp);
302 if (delta == 0) {
303 done = 1; /* let's lock on to this... */
304 bound = rt;
305 }
306
307 if (!done) {
308 unsigned long t;
309 if (i > 0) {
310 adjust_latency += -delta;
311 adj = -delta + adjust_latency/4;
312 } else
313 adj = -delta;
314
315 rdtscll(t);
316 wrmsrl(MSR_IA32_TSC, t + adj);
317 }
Olaf Hering44456d32005-07-27 11:45:17 -0700318#ifdef DEBUG_TSC_SYNC
Andi Kleendda50e72005-05-16 21:53:25 -0700319 t[i].rt = rt;
320 t[i].master = master_time_stamp;
321 t[i].diff = delta;
322 t[i].lat = adjust_latency/4;
323#endif
324 }
325 }
326 spin_unlock_irqrestore(&tsc_sync_lock, flags);
327
Olaf Hering44456d32005-07-27 11:45:17 -0700328#ifdef DEBUG_TSC_SYNC
Andi Kleendda50e72005-05-16 21:53:25 -0700329 for (i = 0; i < NUM_ROUNDS; ++i)
330 printk("rt=%5ld master=%5ld diff=%5ld adjlat=%5ld\n",
331 t[i].rt, t[i].master, t[i].diff, t[i].lat);
332#endif
333
334 printk(KERN_INFO
335 "CPU %d: synchronized TSC with CPU %u (last diff %ld cycles, "
336 "maxerr %lu cycles)\n",
Eric W. Biederman3d483f42005-07-29 14:03:29 -0700337 smp_processor_id(), master, delta, rt);
Andi Kleendda50e72005-05-16 21:53:25 -0700338}
339
340static void __cpuinit tsc_sync_wait(void)
341{
Andi Kleen737c5c32006-01-11 22:45:15 +0100342 /*
343 * When the CPU has synchronized TSCs assume the BIOS
344 * or the hardware already synced. Otherwise we could
345 * mess up a possible perfect synchronization with a
346 * not-quite-perfect algorithm.
347 */
348 if (notscsync || !cpu_has_tsc || !unsynchronized_tsc())
Andi Kleendda50e72005-05-16 21:53:25 -0700349 return;
Eric W. Biederman349188f2005-08-11 22:26:25 -0600350 sync_tsc(0);
Andi Kleendda50e72005-05-16 21:53:25 -0700351}
352
353static __init int notscsync_setup(char *s)
354{
355 notscsync = 1;
OGAWA Hirofumi9b410462006-03-31 02:30:33 -0800356 return 1;
Andi Kleendda50e72005-05-16 21:53:25 -0700357}
358__setup("notscsync", notscsync_setup);
359
Andi Kleena8ab26f2005-04-16 15:25:19 -0700360static atomic_t init_deasserted __cpuinitdata;
361
362/*
363 * Report back to the Boot Processor.
364 * Running on AP.
365 */
366void __cpuinit smp_callin(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
368 int cpuid, phys_id;
369 unsigned long timeout;
370
371 /*
372 * If waken up by an INIT in an 82489DX configuration
373 * we may get here before an INIT-deassert IPI reaches
374 * our local APIC. We have to wait for the IPI or we'll
375 * lock up on an APIC access.
376 */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700377 while (!atomic_read(&init_deasserted))
378 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 /*
381 * (This works even if the APIC is not enabled.)
382 */
383 phys_id = GET_APIC_ID(apic_read(APIC_ID));
384 cpuid = smp_processor_id();
385 if (cpu_isset(cpuid, cpu_callin_map)) {
386 panic("smp_callin: phys CPU#%d, CPU#%d already present??\n",
387 phys_id, cpuid);
388 }
389 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
390
391 /*
392 * STARTUP IPIs are fragile beasts as they might sometimes
393 * trigger some glue motherboard logic. Complete APIC bus
394 * silence for 1 second, this overestimates the time the
395 * boot CPU is spending to send the up to 2 STARTUP IPIs
396 * by a factor of two. This should be enough.
397 */
398
399 /*
400 * Waiting 2s total for startup (udelay is not yet working)
401 */
402 timeout = jiffies + 2*HZ;
403 while (time_before(jiffies, timeout)) {
404 /*
405 * Has the boot CPU finished it's STARTUP sequence?
406 */
407 if (cpu_isset(cpuid, cpu_callout_map))
408 break;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700409 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411
412 if (!time_before(jiffies, timeout)) {
413 panic("smp_callin: CPU%d started up but did not get a callout!\n",
414 cpuid);
415 }
416
417 /*
418 * the boot CPU has finished the init stage and is spinning
419 * on callin_map until we finish. We are free to set up this
420 * CPU, first the APIC. (this is probably redundant on most
421 * boards)
422 */
423
424 Dprintk("CALLIN, before setup_local_APIC().\n");
425 setup_local_APIC();
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /*
428 * Get our bogomips.
Andi Kleenb4452212005-09-12 18:49:24 +0200429 *
430 * Need to enable IRQs because it can take longer and then
431 * the NMI watchdog might kill us.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 */
Andi Kleenb4452212005-09-12 18:49:24 +0200433 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 calibrate_delay();
Andi Kleenb4452212005-09-12 18:49:24 +0200435 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 Dprintk("Stack at about %p\n",&cpuid);
437
438 disable_APIC_timer();
439
440 /*
441 * Save our processor parameters
442 */
443 smp_store_cpu_info(cpuid);
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /*
446 * Allow the master to continue.
447 */
448 cpu_set(cpuid, cpu_callin_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800451/* maps the cpu to the sched domain representing multi-core */
452cpumask_t cpu_coregroup_map(int cpu)
453{
454 struct cpuinfo_x86 *c = cpu_data + cpu;
455 /*
456 * For perf, we return last level cache shared map.
457 * TBD: when power saving sched policy is added, we will return
458 * cpu_core_map when power saving policy is enabled
459 */
460 return c->llc_shared_map;
461}
462
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100463/* representing cpus for which sibling maps can be computed */
464static cpumask_t cpu_sibling_setup_map;
465
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700466static inline void set_cpu_sibling_map(int cpu)
467{
468 int i;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100469 struct cpuinfo_x86 *c = cpu_data;
470
471 cpu_set(cpu, cpu_sibling_setup_map);
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700472
473 if (smp_num_siblings > 1) {
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100474 for_each_cpu_mask(i, cpu_sibling_setup_map) {
475 if (phys_proc_id[cpu] == phys_proc_id[i] &&
476 cpu_core_id[cpu] == cpu_core_id[i]) {
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700477 cpu_set(i, cpu_sibling_map[cpu]);
478 cpu_set(cpu, cpu_sibling_map[i]);
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100479 cpu_set(i, cpu_core_map[cpu]);
480 cpu_set(cpu, cpu_core_map[i]);
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800481 cpu_set(i, c[cpu].llc_shared_map);
482 cpu_set(cpu, c[i].llc_shared_map);
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700483 }
484 }
485 } else {
486 cpu_set(cpu, cpu_sibling_map[cpu]);
487 }
488
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800489 cpu_set(cpu, c[cpu].llc_shared_map);
490
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100491 if (current_cpu_data.x86_max_cores == 1) {
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700492 cpu_core_map[cpu] = cpu_sibling_map[cpu];
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100493 c[cpu].booted_cores = 1;
494 return;
495 }
496
497 for_each_cpu_mask(i, cpu_sibling_setup_map) {
Siddha, Suresh B1e9f28f2006-03-27 01:15:22 -0800498 if (cpu_llc_id[cpu] != BAD_APICID &&
499 cpu_llc_id[cpu] == cpu_llc_id[i]) {
500 cpu_set(i, c[cpu].llc_shared_map);
501 cpu_set(cpu, c[i].llc_shared_map);
502 }
Siddha, Suresh B94605ef2005-11-05 17:25:54 +0100503 if (phys_proc_id[cpu] == phys_proc_id[i]) {
504 cpu_set(i, cpu_core_map[cpu]);
505 cpu_set(cpu, cpu_core_map[i]);
506 /*
507 * Does this new cpu bringup a new core?
508 */
509 if (cpus_weight(cpu_sibling_map[cpu]) == 1) {
510 /*
511 * for each core in package, increment
512 * the booted_cores for this new cpu
513 */
514 if (first_cpu(cpu_sibling_map[i]) == i)
515 c[cpu].booted_cores++;
516 /*
517 * increment the core count for all
518 * the other cpus in this package
519 */
520 if (i != cpu)
521 c[i].booted_cores++;
522 } else if (i != cpu && !c[cpu].booted_cores)
523 c[cpu].booted_cores = c[i].booted_cores;
524 }
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700525 }
526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700529 * Setup code on secondary processor (after comming out of the trampoline)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700531void __cpuinit start_secondary(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 /*
534 * Dont put anything before smp_callin(), SMP
535 * booting is too fragile that we want to limit the
536 * things done here to the most necessary things.
537 */
538 cpu_init();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800539 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 smp_callin();
541
542 /* otherwise gcc will move up the smp_processor_id before the cpu_init */
543 barrier();
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 Dprintk("cpu %d: setting up apic clock\n", smp_processor_id());
546 setup_secondary_APIC_clock();
547
Andi Kleena8ab26f2005-04-16 15:25:19 -0700548 Dprintk("cpu %d: enabling apic timer\n", smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
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
Andi Kleena8ab26f2005-04-16 15:25:19 -0700556 enable_APIC_timer();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 /*
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700559 * The sibling maps must be set before turing the online map on for
560 * this cpu
561 */
562 set_cpu_sibling_map(smp_processor_id());
563
Andi Kleen1eecd732005-08-19 06:56:40 +0200564 /*
565 * Wait for TSC sync to not schedule things before.
566 * We still process interrupts, which could see an inconsistent
567 * time in that window unfortunately.
568 * Do this here because TSC sync has global unprotected state.
569 */
570 tsc_sync_wait();
571
Ashok Rajcb0cd8d2005-06-25 14:55:01 -0700572 /*
Ashok Raj884d9e42005-06-25 14:55:02 -0700573 * We need to hold call_lock, so there is no inconsistency
574 * between the time smp_call_function() determines number of
575 * IPI receipients, and the time when the determination is made
576 * for which cpus receive the IPI in genapic_flat.c. Holding this
577 * lock helps us to not include this cpu in a currently in progress
578 * smp_call_function().
579 */
580 lock_ipi_call_lock();
581
582 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700583 * Allow the master to continue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 cpu_set(smp_processor_id(), cpu_online_map);
Ashok Raj884d9e42005-06-25 14:55:02 -0700586 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
587 unlock_ipi_call_lock();
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 cpu_idle();
590}
591
Andi Kleena8ab26f2005-04-16 15:25:19 -0700592extern volatile unsigned long init_rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593extern void (*initial_code)(void);
594
Olaf Hering44456d32005-07-27 11:45:17 -0700595#ifdef APIC_DEBUG
Andi Kleena8ab26f2005-04-16 15:25:19 -0700596static void inquire_remote_apic(int apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
599 char *names[] = { "ID", "VERSION", "SPIV" };
600 int timeout, status;
601
602 printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
603
604 for (i = 0; i < sizeof(regs) / sizeof(*regs); i++) {
605 printk("... APIC #%d %s: ", apicid, names[i]);
606
607 /*
608 * Wait for idle.
609 */
610 apic_wait_icr_idle();
611
Andi Kleenc1507eb2005-09-12 18:49:23 +0200612 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
613 apic_write(APIC_ICR, APIC_DM_REMRD | regs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 timeout = 0;
616 do {
617 udelay(100);
618 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
619 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
620
621 switch (status) {
622 case APIC_ICR_RR_VALID:
623 status = apic_read(APIC_RRR);
624 printk("%08x\n", status);
625 break;
626 default:
627 printk("failed\n");
628 }
629 }
630}
631#endif
632
Andi Kleena8ab26f2005-04-16 15:25:19 -0700633/*
634 * Kick the secondary to wake up.
635 */
636static int __cpuinit wakeup_secondary_via_INIT(int phys_apicid, unsigned int start_rip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 unsigned long send_status = 0, accept_status = 0;
639 int maxlvt, timeout, num_starts, j;
640
641 Dprintk("Asserting INIT.\n");
642
643 /*
644 * Turn INIT on target chip
645 */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200646 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 /*
649 * Send IPI
650 */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200651 apic_write(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 | APIC_DM_INIT);
653
654 Dprintk("Waiting for send to finish...\n");
655 timeout = 0;
656 do {
657 Dprintk("+");
658 udelay(100);
659 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
660 } while (send_status && (timeout++ < 1000));
661
662 mdelay(10);
663
664 Dprintk("Deasserting INIT.\n");
665
666 /* Target chip */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200667 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 /* Send IPI */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200670 apic_write(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 Dprintk("Waiting for send to finish...\n");
673 timeout = 0;
674 do {
675 Dprintk("+");
676 udelay(100);
677 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
678 } while (send_status && (timeout++ < 1000));
679
Benjamin LaHaisef2ecfab2006-01-11 22:43:03 +0100680 mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 atomic_set(&init_deasserted, 1);
682
Andi Kleen5a40b7c2005-09-12 18:49:24 +0200683 num_starts = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /*
686 * Run STARTUP IPI loop.
687 */
688 Dprintk("#startup loops: %d.\n", num_starts);
689
690 maxlvt = get_maxlvt();
691
692 for (j = 1; j <= num_starts; j++) {
693 Dprintk("Sending STARTUP #%d.\n",j);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 apic_write(APIC_ESR, 0);
695 apic_read(APIC_ESR);
696 Dprintk("After apic_write.\n");
697
698 /*
699 * STARTUP IPI
700 */
701
702 /* Target chip */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200703 apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705 /* Boot on the stack */
706 /* Kick the second */
Andi Kleenc1507eb2005-09-12 18:49:23 +0200707 apic_write(APIC_ICR, APIC_DM_STARTUP | (start_rip >> 12));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 /*
710 * Give the other CPU some time to accept the IPI.
711 */
712 udelay(300);
713
714 Dprintk("Startup point 1.\n");
715
716 Dprintk("Waiting for send to finish...\n");
717 timeout = 0;
718 do {
719 Dprintk("+");
720 udelay(100);
721 send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
722 } while (send_status && (timeout++ < 1000));
723
724 /*
725 * Give the other CPU some time to accept the IPI.
726 */
727 udelay(200);
728 /*
729 * Due to the Pentium erratum 3AP.
730 */
731 if (maxlvt > 3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 apic_write(APIC_ESR, 0);
733 }
734 accept_status = (apic_read(APIC_ESR) & 0xEF);
735 if (send_status || accept_status)
736 break;
737 }
738 Dprintk("After Startup.\n");
739
740 if (send_status)
741 printk(KERN_ERR "APIC never delivered???\n");
742 if (accept_status)
743 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
744
745 return (send_status | accept_status);
746}
747
Ashok Raj76e4f662005-06-25 14:55:00 -0700748struct create_idle {
749 struct task_struct *idle;
750 struct completion done;
751 int cpu;
752};
753
754void do_fork_idle(void *_c_idle)
755{
756 struct create_idle *c_idle = _c_idle;
757
758 c_idle->idle = fork_idle(c_idle->cpu);
759 complete(&c_idle->done);
760}
761
Andi Kleena8ab26f2005-04-16 15:25:19 -0700762/*
763 * Boot one CPU.
764 */
765static int __cpuinit do_boot_cpu(int cpu, int apicid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 unsigned long boot_error;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700768 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 unsigned long start_rip;
Ashok Raj76e4f662005-06-25 14:55:00 -0700770 struct create_idle c_idle = {
771 .cpu = cpu,
772 .done = COMPLETION_INITIALIZER(c_idle.done),
773 };
774 DECLARE_WORK(work, do_fork_idle, &c_idle);
775
Ravikiran G Thirumalaic11efdf2006-01-11 22:43:57 +0100776 /* allocate memory for gdts of secondary cpus. Hotplug is considered */
777 if (!cpu_gdt_descr[cpu].address &&
778 !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
779 printk(KERN_ERR "Failed to allocate GDT for CPU %d\n", cpu);
780 return -1;
781 }
782
Ravikiran G Thirumalai365ba912006-01-11 22:45:42 +0100783 /* Allocate node local memory for AP pdas */
784 if (cpu_pda(cpu) == &boot_cpu_pda[cpu]) {
785 struct x8664_pda *newpda, *pda;
786 int node = cpu_to_node(cpu);
787 pda = cpu_pda(cpu);
788 newpda = kmalloc_node(sizeof (struct x8664_pda), GFP_ATOMIC,
789 node);
790 if (newpda) {
791 memcpy(newpda, pda, sizeof (struct x8664_pda));
792 cpu_pda(cpu) = newpda;
793 } else
794 printk(KERN_ERR
795 "Could not allocate node local PDA for CPU %d on node %d\n",
796 cpu, node);
797 }
798
799
Gerd Hoffmannd167a512006-06-26 13:56:16 +0200800 alternatives_smp_switch(1);
801
Ashok Raj76e4f662005-06-25 14:55:00 -0700802 c_idle.idle = get_idle_for_cpu(cpu);
803
804 if (c_idle.idle) {
805 c_idle.idle->thread.rsp = (unsigned long) (((struct pt_regs *)
Al Viro57eafdc2006-01-12 01:05:39 -0800806 (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
Ashok Raj76e4f662005-06-25 14:55:00 -0700807 init_idle(c_idle.idle, cpu);
808 goto do_rest;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
Ashok Raj76e4f662005-06-25 14:55:00 -0700811 /*
812 * During cold boot process, keventd thread is not spun up yet.
813 * When we do cpu hot-add, we create idle threads on the fly, we should
814 * not acquire any attributes from the calling context. Hence the clean
815 * way to create kernel_threads() is to do that from keventd().
816 * We do the current_is_keventd() due to the fact that ACPI notifier
817 * was also queuing to keventd() and when the caller is already running
818 * in context of keventd(), we would end up with locking up the keventd
819 * thread.
820 */
821 if (!keventd_up() || current_is_keventd())
822 work.func(work.data);
823 else {
824 schedule_work(&work);
825 wait_for_completion(&c_idle.done);
826 }
827
828 if (IS_ERR(c_idle.idle)) {
829 printk("failed fork for CPU %d\n", cpu);
830 return PTR_ERR(c_idle.idle);
831 }
832
833 set_idle_for_cpu(cpu, c_idle.idle);
834
835do_rest:
836
Ravikiran G Thirumalaidf79efd2006-01-11 22:45:39 +0100837 cpu_pda(cpu)->pcurrent = c_idle.idle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 start_rip = setup_trampoline();
840
Ashok Raj76e4f662005-06-25 14:55:00 -0700841 init_rsp = c_idle.idle->thread.rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 per_cpu(init_tss,cpu).rsp0 = init_rsp;
843 initial_code = start_secondary;
Al Viroe4f17c42006-01-12 01:05:38 -0800844 clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Andi Kleende04f322005-07-28 21:15:29 -0700846 printk(KERN_INFO "Booting processor %d/%d APIC 0x%x\n", cpu,
847 cpus_weight(cpu_present_map),
848 apicid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 /*
851 * This grunge runs the startup process for
852 * the targeted processor.
853 */
854
855 atomic_set(&init_deasserted, 0);
856
857 Dprintk("Setting warm reset code and vector.\n");
858
859 CMOS_WRITE(0xa, 0xf);
860 local_flush_tlb();
861 Dprintk("1.\n");
862 *((volatile unsigned short *) phys_to_virt(0x469)) = start_rip >> 4;
863 Dprintk("2.\n");
864 *((volatile unsigned short *) phys_to_virt(0x467)) = start_rip & 0xf;
865 Dprintk("3.\n");
866
867 /*
868 * Be paranoid about clearing APIC errors.
869 */
Andi Kleen11a8e772006-01-11 22:46:51 +0100870 apic_write(APIC_ESR, 0);
871 apic_read(APIC_ESR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 /*
874 * Status is now clean
875 */
876 boot_error = 0;
877
878 /*
879 * Starting actual IPI sequence...
880 */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700881 boot_error = wakeup_secondary_via_INIT(apicid, start_rip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 if (!boot_error) {
884 /*
885 * allow APs to start initializing.
886 */
887 Dprintk("Before Callout %d.\n", cpu);
888 cpu_set(cpu, cpu_callout_map);
889 Dprintk("After Callout %d.\n", cpu);
890
891 /*
892 * Wait 5s total for a response
893 */
894 for (timeout = 0; timeout < 50000; timeout++) {
895 if (cpu_isset(cpu, cpu_callin_map))
896 break; /* It has booted */
897 udelay(100);
898 }
899
900 if (cpu_isset(cpu, cpu_callin_map)) {
901 /* number CPUs logically, starting from 1 (BSP is 0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 Dprintk("CPU has booted.\n");
903 } else {
904 boot_error = 1;
905 if (*((volatile unsigned char *)phys_to_virt(SMP_TRAMPOLINE_BASE))
906 == 0xA5)
907 /* trampoline started but...? */
908 printk("Stuck ??\n");
909 else
910 /* trampoline code not run */
911 printk("Not responding.\n");
Olaf Hering44456d32005-07-27 11:45:17 -0700912#ifdef APIC_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 inquire_remote_apic(apicid);
914#endif
915 }
916 }
917 if (boot_error) {
918 cpu_clear(cpu, cpu_callout_map); /* was set here (do_boot_cpu()) */
919 clear_bit(cpu, &cpu_initialized); /* was set by cpu_init() */
Ravikiran G Thirumalai488fc082006-02-07 12:58:23 -0800920 clear_node_cpumask(cpu); /* was set by numa_add_cpu */
Andi Kleena8ab26f2005-04-16 15:25:19 -0700921 cpu_clear(cpu, cpu_present_map);
922 cpu_clear(cpu, cpu_possible_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 x86_cpu_to_apicid[cpu] = BAD_APICID;
924 x86_cpu_to_log_apicid[cpu] = BAD_APICID;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700925 return -EIO;
926 }
927
928 return 0;
929}
930
931cycles_t cacheflush_time;
932unsigned long cache_decay_ticks;
933
934/*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700935 * Cleanup possible dangling ends...
936 */
937static __cpuinit void smp_cleanup_boot(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -0700940 * Paranoid: Set warm reset code and vector here back
941 * to default values.
942 */
943 CMOS_WRITE(0, 0xf);
944
945 /*
946 * Reset trampoline flag
947 */
948 *((volatile int *) phys_to_virt(0x467)) = 0;
Andi Kleena8ab26f2005-04-16 15:25:19 -0700949}
950
951/*
952 * Fall back to non SMP mode after errors.
953 *
954 * RED-PEN audit/test this more. I bet there is more state messed up here.
955 */
Ashok Raje6982c62005-06-25 14:54:58 -0700956static __init void disable_smp(void)
Andi Kleena8ab26f2005-04-16 15:25:19 -0700957{
958 cpu_present_map = cpumask_of_cpu(0);
959 cpu_possible_map = cpumask_of_cpu(0);
960 if (smp_found_config)
961 phys_cpu_present_map = physid_mask_of_physid(boot_cpu_id);
962 else
963 phys_cpu_present_map = physid_mask_of_physid(0);
964 cpu_set(0, cpu_sibling_map[0]);
965 cpu_set(0, cpu_core_map[0]);
966}
967
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700968#ifdef CONFIG_HOTPLUG_CPU
Andi Kleen420f8f62005-11-05 17:25:54 +0100969
970int additional_cpus __initdata = -1;
971
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700972/*
973 * cpu_possible_map should be static, it cannot change as cpu's
974 * are onlined, or offlined. The reason is per-cpu data-structures
975 * are allocated by some modules at init time, and dont expect to
976 * do this dynamically on cpu arrival/departure.
977 * cpu_present_map on the other hand can change dynamically.
978 * In case when cpu_hotplug is not compiled, then we resort to current
979 * behaviour, which is cpu_possible == cpu_present.
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700980 * - Ashok Raj
Andi Kleen420f8f62005-11-05 17:25:54 +0100981 *
982 * Three ways to find out the number of additional hotplug CPUs:
983 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
Andi Kleen420f8f62005-11-05 17:25:54 +0100984 * - The user can overwrite it with additional_cpus=NUM
Andi Kleenf62a91f2006-01-11 22:42:35 +0100985 * - Otherwise don't reserve additional CPUs.
Andi Kleen420f8f62005-11-05 17:25:54 +0100986 * We do this because additional CPUs waste a lot of memory.
987 * -AK
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700988 */
Andi Kleen421c7ce2005-10-10 22:32:45 +0200989__init void prefill_possible_map(void)
Andi Kleen61b1b2d2005-07-28 21:15:27 -0700990{
991 int i;
Andi Kleen420f8f62005-11-05 17:25:54 +0100992 int possible;
993
994 if (additional_cpus == -1) {
Andi Kleenf62a91f2006-01-11 22:42:35 +0100995 if (disabled_cpus > 0)
Andi Kleen420f8f62005-11-05 17:25:54 +0100996 additional_cpus = disabled_cpus;
Andi Kleenf62a91f2006-01-11 22:42:35 +0100997 else
998 additional_cpus = 0;
Andi Kleen420f8f62005-11-05 17:25:54 +0100999 }
1000 possible = num_processors + additional_cpus;
1001 if (possible > NR_CPUS)
1002 possible = NR_CPUS;
1003
1004 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
1005 possible,
1006 max_t(int, possible - num_processors, 0));
1007
1008 for (i = 0; i < possible; i++)
Andi Kleen61b1b2d2005-07-28 21:15:27 -07001009 cpu_set(i, cpu_possible_map);
1010}
1011#endif
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*
Andi Kleena8ab26f2005-04-16 15:25:19 -07001014 * Various sanity checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 */
Ashok Raje6982c62005-06-25 14:54:58 -07001016static int __init smp_sanity_check(unsigned max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
1019 printk("weird, boot CPU (#%d) not listed by the BIOS.\n",
1020 hard_smp_processor_id());
1021 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1022 }
1023
1024 /*
1025 * If we couldn't find an SMP configuration at boot time,
1026 * get out of here now!
1027 */
1028 if (!smp_found_config) {
1029 printk(KERN_NOTICE "SMP motherboard not detected.\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -07001030 disable_smp();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (APIC_init_uniprocessor())
1032 printk(KERN_NOTICE "Local APIC not detected."
1033 " Using dummy APIC emulation.\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -07001034 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036
1037 /*
1038 * Should not be necessary because the MP table should list the boot
1039 * CPU too, but we do it for the sake of robustness anyway.
1040 */
1041 if (!physid_isset(boot_cpu_id, phys_cpu_present_map)) {
1042 printk(KERN_NOTICE "weird, boot CPU (#%d) not listed by the BIOS.\n",
1043 boot_cpu_id);
1044 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1045 }
1046
1047 /*
1048 * If we couldn't find a local APIC, then get out of here now!
1049 */
Andi Kleen11a8e772006-01-11 22:46:51 +01001050 if (!cpu_has_apic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1052 boot_cpu_id);
1053 printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -07001054 nr_ioapics = 0;
1055 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 }
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /*
1059 * If SMP should be disabled, then really disable it!
1060 */
1061 if (!max_cpus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n");
Andi Kleena8ab26f2005-04-16 15:25:19 -07001063 nr_ioapics = 0;
1064 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066
Andi Kleena8ab26f2005-04-16 15:25:19 -07001067 return 0;
1068}
1069
1070/*
1071 * Prepare for SMP bootup. The MP table or ACPI has been read
1072 * earlier. Just do some sanity checking here and enable APIC mode.
1073 */
Ashok Raje6982c62005-06-25 14:54:58 -07001074void __init smp_prepare_cpus(unsigned int max_cpus)
Andi Kleena8ab26f2005-04-16 15:25:19 -07001075{
Andi Kleena8ab26f2005-04-16 15:25:19 -07001076 nmi_watchdog_default();
1077 current_cpu_data = boot_cpu_data;
1078 current_thread_info()->cpu = 0; /* needed? */
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001079 set_cpu_sibling_map(0);
Andi Kleena8ab26f2005-04-16 15:25:19 -07001080
Andi Kleena8ab26f2005-04-16 15:25:19 -07001081 if (smp_sanity_check(max_cpus) < 0) {
1082 printk(KERN_INFO "SMP disabled\n");
1083 disable_smp();
1084 return;
1085 }
1086
1087
1088 /*
1089 * Switch from PIC to APIC mode.
1090 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 connect_bsp_APIC();
1092 setup_local_APIC();
1093
Andi Kleena8ab26f2005-04-16 15:25:19 -07001094 if (GET_APIC_ID(apic_read(APIC_ID)) != boot_cpu_id) {
1095 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
1096 GET_APIC_ID(apic_read(APIC_ID)), boot_cpu_id);
1097 /* Or can we switch back to PIC here? */
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -07001101 * Now start the IO-APICs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 */
1103 if (!skip_ioapic_setup && nr_ioapics)
1104 setup_IO_APIC();
1105 else
1106 nr_ioapics = 0;
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /*
Andi Kleena8ab26f2005-04-16 15:25:19 -07001109 * Set up local APIC timer on boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Andi Kleena8ab26f2005-04-16 15:25:19 -07001112 setup_boot_APIC_clock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113}
1114
Andi Kleena8ab26f2005-04-16 15:25:19 -07001115/*
1116 * Early setup to make printk work.
1117 */
1118void __init smp_prepare_boot_cpu(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Andi Kleena8ab26f2005-04-16 15:25:19 -07001120 int me = smp_processor_id();
1121 cpu_set(me, cpu_online_map);
1122 cpu_set(me, cpu_callout_map);
Ashok Raj884d9e42005-06-25 14:55:02 -07001123 per_cpu(cpu_state, me) = CPU_ONLINE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124}
1125
Andi Kleena8ab26f2005-04-16 15:25:19 -07001126/*
1127 * Entry point to boot a CPU.
Andi Kleena8ab26f2005-04-16 15:25:19 -07001128 */
1129int __cpuinit __cpu_up(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Andi Kleena8ab26f2005-04-16 15:25:19 -07001131 int err;
1132 int apicid = cpu_present_to_apicid(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Andi Kleena8ab26f2005-04-16 15:25:19 -07001134 WARN_ON(irqs_disabled());
1135
1136 Dprintk("++++++++++++++++++++=_---CPU UP %u\n", cpu);
1137
1138 if (apicid == BAD_APICID || apicid == boot_cpu_id ||
1139 !physid_isset(apicid, phys_cpu_present_map)) {
1140 printk("__cpu_up: bad cpu %d\n", cpu);
1141 return -EINVAL;
1142 }
Andi Kleena8ab26f2005-04-16 15:25:19 -07001143
Ashok Raj76e4f662005-06-25 14:55:00 -07001144 /*
1145 * Already booted CPU?
1146 */
1147 if (cpu_isset(cpu, cpu_callin_map)) {
1148 Dprintk("do_boot_cpu %d Already started\n", cpu);
1149 return -ENOSYS;
1150 }
1151
Ashok Raj884d9e42005-06-25 14:55:02 -07001152 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
Andi Kleena8ab26f2005-04-16 15:25:19 -07001153 /* Boot it! */
1154 err = do_boot_cpu(cpu, apicid);
1155 if (err < 0) {
Andi Kleena8ab26f2005-04-16 15:25:19 -07001156 Dprintk("do_boot_cpu failed %d\n", err);
1157 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 }
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 /* Unleash the CPU! */
1161 Dprintk("waiting for cpu %d\n", cpu);
1162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 while (!cpu_isset(cpu, cpu_online_map))
Andi Kleena8ab26f2005-04-16 15:25:19 -07001164 cpu_relax();
Ashok Raj76e4f662005-06-25 14:55:00 -07001165 err = 0;
1166
1167 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
Andi Kleena8ab26f2005-04-16 15:25:19 -07001170/*
1171 * Finish the SMP boot.
1172 */
Ashok Raje6982c62005-06-25 14:54:58 -07001173void __init smp_cpus_done(unsigned int max_cpus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
Andi Kleena8ab26f2005-04-16 15:25:19 -07001175 smp_cleanup_boot();
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177#ifdef CONFIG_X86_IO_APIC
1178 setup_ioapic_dest();
1179#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Andi Kleen75152112005-05-16 21:53:34 -07001181 check_nmi_watchdog();
Andi Kleena8ab26f2005-04-16 15:25:19 -07001182}
Ashok Raj76e4f662005-06-25 14:55:00 -07001183
1184#ifdef CONFIG_HOTPLUG_CPU
1185
Ashok Rajcb0cd8d2005-06-25 14:55:01 -07001186static void remove_siblinginfo(int cpu)
Ashok Raj76e4f662005-06-25 14:55:00 -07001187{
1188 int sibling;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001189 struct cpuinfo_x86 *c = cpu_data;
Ashok Raj76e4f662005-06-25 14:55:00 -07001190
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001191 for_each_cpu_mask(sibling, cpu_core_map[cpu]) {
1192 cpu_clear(cpu, cpu_core_map[sibling]);
1193 /*
1194 * last thread sibling in this cpu core going down
1195 */
1196 if (cpus_weight(cpu_sibling_map[cpu]) == 1)
1197 c[sibling].booted_cores--;
1198 }
1199
Ashok Raj76e4f662005-06-25 14:55:00 -07001200 for_each_cpu_mask(sibling, cpu_sibling_map[cpu])
1201 cpu_clear(cpu, cpu_sibling_map[sibling]);
Ashok Raj76e4f662005-06-25 14:55:00 -07001202 cpus_clear(cpu_sibling_map[cpu]);
1203 cpus_clear(cpu_core_map[cpu]);
1204 phys_proc_id[cpu] = BAD_APICID;
1205 cpu_core_id[cpu] = BAD_APICID;
Siddha, Suresh B94605ef2005-11-05 17:25:54 +01001206 cpu_clear(cpu, cpu_sibling_setup_map);
Ashok Raj76e4f662005-06-25 14:55:00 -07001207}
1208
1209void remove_cpu_from_maps(void)
1210{
1211 int cpu = smp_processor_id();
1212
1213 cpu_clear(cpu, cpu_callout_map);
1214 cpu_clear(cpu, cpu_callin_map);
1215 clear_bit(cpu, &cpu_initialized); /* was set by cpu_init() */
Ravikiran G Thirumalai488fc082006-02-07 12:58:23 -08001216 clear_node_cpumask(cpu);
Ashok Raj76e4f662005-06-25 14:55:00 -07001217}
1218
1219int __cpu_disable(void)
1220{
1221 int cpu = smp_processor_id();
1222
1223 /*
1224 * Perhaps use cpufreq to drop frequency, but that could go
1225 * into generic code.
1226 *
1227 * We won't take down the boot processor on i386 due to some
1228 * interrupts only being able to be serviced by the BSP.
1229 * Especially so if we're not using an IOAPIC -zwane
1230 */
1231 if (cpu == 0)
1232 return -EBUSY;
1233
Shaohua Li5e9ef022005-12-12 22:17:08 -08001234 clear_local_APIC();
Ashok Raj76e4f662005-06-25 14:55:00 -07001235
1236 /*
1237 * HACK:
1238 * Allow any queued timer interrupts to get serviced
1239 * This is only a temporary solution until we cleanup
1240 * fixup_irqs as we do for IA64.
1241 */
1242 local_irq_enable();
1243 mdelay(1);
1244
1245 local_irq_disable();
1246 remove_siblinginfo(cpu);
1247
1248 /* It's now safe to remove this processor from the online map */
1249 cpu_clear(cpu, cpu_online_map);
1250 remove_cpu_from_maps();
1251 fixup_irqs(cpu_online_map);
1252 return 0;
1253}
1254
1255void __cpu_die(unsigned int cpu)
1256{
1257 /* We don't do anything here: idle task is faking death itself. */
1258 unsigned int i;
1259
1260 for (i = 0; i < 10; i++) {
1261 /* They ack this in play_dead by setting CPU_DEAD */
Ashok Raj884d9e42005-06-25 14:55:02 -07001262 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1263 printk ("CPU %d is now offline\n", cpu);
Gerd Hoffmannd167a512006-06-26 13:56:16 +02001264 if (1 == num_online_cpus())
1265 alternatives_smp_switch(0);
Ashok Raj76e4f662005-06-25 14:55:00 -07001266 return;
Ashok Raj884d9e42005-06-25 14:55:02 -07001267 }
Nishanth Aravamudanef6e5252005-07-28 21:15:53 -07001268 msleep(100);
Ashok Raj76e4f662005-06-25 14:55:00 -07001269 }
1270 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1271}
1272
Andi Kleene2c03882006-02-26 04:18:46 +01001273__init int setup_additional_cpus(char *s)
Andi Kleen420f8f62005-11-05 17:25:54 +01001274{
1275 return get_option(&s, &additional_cpus);
1276}
1277__setup("additional_cpus=", setup_additional_cpus);
1278
Ashok Raj76e4f662005-06-25 14:55:00 -07001279#else /* ... !CONFIG_HOTPLUG_CPU */
1280
1281int __cpu_disable(void)
1282{
1283 return -ENOSYS;
1284}
1285
1286void __cpu_die(unsigned int cpu)
1287{
1288 /* We said "no" in __cpu_disable */
1289 BUG();
1290}
1291#endif /* CONFIG_HOTPLUG_CPU */