blob: eee7768de2ae54a041c7c26d0460f2d592278144 [file] [log] [blame]
Glauber de Oliveira Costa4cedb332008-03-19 14:26:14 -03001/*
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 *
15 * This code is released under the GNU General Public License version 2 or
16 * later.
17 *
18 * Fixes
19 * Felix Koop : NR_CPUS used properly
20 * Jose Renau : Handle single CPU case.
21 * Alan Cox : By repeated request 8) - Total BogoMIPS report.
22 * Greg Wright : Fix for kernel stacks panic.
23 * Erich Boleyn : MP v1.4 and additional changes.
24 * Matthias Sattler : Changes for 2.1 kernel map.
25 * Michel Lespinasse : Changes for 2.1 kernel map.
26 * Michael Chastain : Change trampoline.S to gnu as.
27 * Alan Cox : Dumb bug: 'B' step PPro's are fine
28 * Ingo Molnar : Added APIC timers, based on code
29 * from Jose Renau
30 * Ingo Molnar : various cleanups and rewrites
31 * Tigran Aivazian : fixed "0.00 in /proc/uptime on SMP" bug.
32 * Maciej W. Rozycki : Bits for genuine 82489DX APICs
33 * Andi Kleen : Changed for SMP boot into long mode.
34 * Martin J. Bligh : Added support for multi-quad systems
35 * Dave Jones : Report invalid combinations of Athlon CPUs.
36 * Rusty Russell : Hacked into shape for new "hotplug" boot process.
37 * Andi Kleen : Converted to new state machine.
38 * Ashok Raj : CPU hotplug support
39 * Glauber Costa : i386 and x86_64 integration
40 */
41
Glauber Costa68a1c3f2008-03-03 14:12:42 -030042#include <linux/init.h>
43#include <linux/smp.h>
Glauber Costaa3553522008-03-03 14:12:58 -030044#include <linux/module.h>
Glauber Costa70708a12008-03-03 14:13:03 -030045#include <linux/sched.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030046#include <linux/percpu.h>
Glauber Costa91718e82008-03-03 14:13:12 -030047#include <linux/bootmem.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030048#include <linux/err.h>
49#include <linux/nmi.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030050
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -030051#include <asm/acpi.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030052#include <asm/desc.h>
Glauber Costa69c18c12008-03-03 14:13:07 -030053#include <asm/nmi.h>
54#include <asm/irq.h>
55#include <asm/smp.h>
56#include <asm/cpu.h>
57#include <asm/numa.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030058#include <asm/pgtable.h>
59#include <asm/tlbflush.h>
60#include <asm/mtrr.h>
61#include <asm/nmi.h>
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -030062#include <asm/vmi.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030063#include <linux/mc146818rtc.h>
Glauber Costa68a1c3f2008-03-03 14:12:42 -030064
Glauber de Oliveira Costaf6bc4022008-03-19 14:25:53 -030065#include <mach_apic.h>
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -030066#include <mach_wakecpu.h>
67#include <smpboot_hooks.h>
68
Glauber de Oliveira Costaacbb6732008-03-19 14:26:13 -030069/*
70 * FIXME: For x86_64, those are defined in other files. But moving them here,
71 * would make the setup areas dependent on smp, which is a loss. When we
72 * integrate apic between arches, we can probably do a better job, but
73 * right now, they'll stay here -- glommer
74 */
75#ifdef CONFIG_X86_32
76/* which logical CPU number maps to which CPU (physical APIC ID) */
77u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
78 { [0 ... NR_CPUS-1] = BAD_APICID };
79void *x86_cpu_to_apicid_early_ptr;
80DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID;
81EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
82
83u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
84 = { [0 ... NR_CPUS-1] = BAD_APICID };
85void *x86_bios_cpu_apicid_early_ptr;
Alexey Starikovskiy40014ba2008-03-27 23:54:44 +030086
Alexey Starikovskiy2bb9e9d2008-03-27 23:54:50 +030087/* Internal processor count */
88unsigned int num_processors;
Alexey Starikovskiy53c4c792008-03-27 23:54:57 +030089unsigned disabled_cpus __cpuinitdata;
Alexey Starikovskiy2bb9e9d2008-03-27 23:54:50 +030090
Glauber de Oliveira Costa4cedb332008-03-19 14:26:14 -030091u8 apicid_2_node[MAX_APICID];
Glauber de Oliveira Costaacbb6732008-03-19 14:26:13 -030092#endif
93
Alexey Starikovskiy1d855432008-03-27 23:55:53 +030094/* Bitmask of physically existing CPUs */
95physid_mask_t phys_cpu_present_map;
96
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -030097/* State of each CPU */
98DEFINE_PER_CPU(int, cpu_state) = { 0 };
99
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300100/* Store all idle threads, this can be reused instead of creating
101* a new thread. Also avoids complicated thread destroy functionality
102* for idle threads.
103*/
104#ifdef CONFIG_HOTPLUG_CPU
105/*
106 * Needed only for CONFIG_HOTPLUG_CPU because __cpuinitdata is
107 * removed after init for !CONFIG_HOTPLUG_CPU.
108 */
109static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
110#define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x))
111#define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p))
112#else
113struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
114#define get_idle_for_cpu(x) (idle_thread_array[(x)])
115#define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
116#endif
Glauber de Oliveira Costaf6bc4022008-03-19 14:25:53 -0300117
Glauber Costaa3553522008-03-03 14:12:58 -0300118/* Number of siblings per CPU package */
119int smp_num_siblings = 1;
120EXPORT_SYMBOL(smp_num_siblings);
121
122/* Last level cache ID of each logical CPU */
123DEFINE_PER_CPU(u16, cpu_llc_id) = BAD_APICID;
124
125/* bitmap of online cpus */
126cpumask_t cpu_online_map __read_mostly;
127EXPORT_SYMBOL(cpu_online_map);
128
129cpumask_t cpu_callin_map;
130cpumask_t cpu_callout_map;
131cpumask_t cpu_possible_map;
132EXPORT_SYMBOL(cpu_possible_map);
133
134/* representing HT siblings of each logical CPU */
135DEFINE_PER_CPU(cpumask_t, cpu_sibling_map);
136EXPORT_PER_CPU_SYMBOL(cpu_sibling_map);
137
138/* representing HT and core siblings of each logical CPU */
139DEFINE_PER_CPU(cpumask_t, cpu_core_map);
140EXPORT_PER_CPU_SYMBOL(cpu_core_map);
141
142/* Per CPU bogomips and other parameters */
143DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
144EXPORT_PER_CPU_SYMBOL(cpu_info);
Glauber Costa768d9502008-03-03 14:13:02 -0300145
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300146static atomic_t init_deasserted;
147
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -0300148static int boot_cpu_logical_apicid;
149
Glauber Costa91718e82008-03-03 14:13:12 -0300150/* ready for x86_64, no harm for x86, since it will overwrite after alloc */
151unsigned char *trampoline_base = __va(SMP_TRAMPOLINE_BASE);
152
Glauber Costa768d9502008-03-03 14:13:02 -0300153/* representing cpus for which sibling maps can be computed */
154static cpumask_t cpu_sibling_setup_map;
155
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300156/* Set if we find a B stepping CPU */
157int __cpuinitdata smp_b_stepping;
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300158
Glauber de Oliveira Costa7cc39592008-03-19 14:25:56 -0300159#if defined(CONFIG_NUMA) && defined(CONFIG_X86_32)
160
161/* which logical CPUs are on which nodes */
162cpumask_t node_to_cpumask_map[MAX_NUMNODES] __read_mostly =
163 { [0 ... MAX_NUMNODES-1] = CPU_MASK_NONE };
164EXPORT_SYMBOL(node_to_cpumask_map);
165/* which node each logical CPU is on */
166int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
167EXPORT_SYMBOL(cpu_to_node_map);
168
169/* set up a mapping between cpu and node. */
170static void map_cpu_to_node(int cpu, int node)
171{
172 printk(KERN_INFO "Mapping cpu %d to node %d\n", cpu, node);
173 cpu_set(cpu, node_to_cpumask_map[node]);
174 cpu_to_node_map[cpu] = node;
175}
176
177/* undo a mapping between cpu and node. */
178static void unmap_cpu_to_node(int cpu)
179{
180 int node;
181
182 printk(KERN_INFO "Unmapping cpu %d from all nodes\n", cpu);
183 for (node = 0; node < MAX_NUMNODES; node++)
184 cpu_clear(cpu, node_to_cpumask_map[node]);
185 cpu_to_node_map[cpu] = 0;
186}
187#else /* !(CONFIG_NUMA && CONFIG_X86_32) */
188#define map_cpu_to_node(cpu, node) ({})
189#define unmap_cpu_to_node(cpu) ({})
190#endif
191
192#ifdef CONFIG_X86_32
193u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly =
194 { [0 ... NR_CPUS-1] = BAD_APICID };
195
196void map_cpu_to_logical_apicid(void)
197{
198 int cpu = smp_processor_id();
199 int apicid = logical_smp_processor_id();
200 int node = apicid_to_node(apicid);
201
202 if (!node_online(node))
203 node = first_online_node;
204
205 cpu_2_logical_apicid[cpu] = apicid;
206 map_cpu_to_node(cpu, node);
207}
208
209void unmap_cpu_to_logical_apicid(int cpu)
210{
211 cpu_2_logical_apicid[cpu] = BAD_APICID;
212 unmap_cpu_to_node(cpu);
213}
214#else
215#define unmap_cpu_to_logical_apicid(cpu) do {} while (0)
216#define map_cpu_to_logical_apicid() do {} while (0)
217#endif
218
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300219/*
220 * Report back to the Boot Processor.
221 * Running on AP.
222 */
223void __cpuinit smp_callin(void)
224{
225 int cpuid, phys_id;
226 unsigned long timeout;
227
228 /*
229 * If waken up by an INIT in an 82489DX configuration
230 * we may get here before an INIT-deassert IPI reaches
231 * our local APIC. We have to wait for the IPI or we'll
232 * lock up on an APIC access.
233 */
234 wait_for_init_deassert(&init_deasserted);
235
236 /*
237 * (This works even if the APIC is not enabled.)
238 */
239 phys_id = GET_APIC_ID(apic_read(APIC_ID));
240 cpuid = smp_processor_id();
241 if (cpu_isset(cpuid, cpu_callin_map)) {
242 panic("%s: phys CPU#%d, CPU#%d already present??\n", __func__,
243 phys_id, cpuid);
244 }
245 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
246
247 /*
248 * STARTUP IPIs are fragile beasts as they might sometimes
249 * trigger some glue motherboard logic. Complete APIC bus
250 * silence for 1 second, this overestimates the time the
251 * boot CPU is spending to send the up to 2 STARTUP IPIs
252 * by a factor of two. This should be enough.
253 */
254
255 /*
256 * Waiting 2s total for startup (udelay is not yet working)
257 */
258 timeout = jiffies + 2*HZ;
259 while (time_before(jiffies, timeout)) {
260 /*
261 * Has the boot CPU finished it's STARTUP sequence?
262 */
263 if (cpu_isset(cpuid, cpu_callout_map))
264 break;
265 cpu_relax();
266 }
267
268 if (!time_before(jiffies, timeout)) {
269 panic("%s: CPU%d started up but did not get a callout!\n",
270 __func__, cpuid);
271 }
272
273 /*
274 * the boot CPU has finished the init stage and is spinning
275 * on callin_map until we finish. We are free to set up this
276 * CPU, first the APIC. (this is probably redundant on most
277 * boards)
278 */
279
280 Dprintk("CALLIN, before setup_local_APIC().\n");
281 smp_callin_clear_local_apic();
282 setup_local_APIC();
283 end_local_APIC_setup();
284 map_cpu_to_logical_apicid();
285
286 /*
287 * Get our bogomips.
288 *
289 * Need to enable IRQs because it can take longer and then
290 * the NMI watchdog might kill us.
291 */
292 local_irq_enable();
293 calibrate_delay();
294 local_irq_disable();
295 Dprintk("Stack at about %p\n", &cpuid);
296
297 /*
298 * Save our processor parameters
299 */
300 smp_store_cpu_info(cpuid);
301
302 /*
303 * Allow the master to continue.
304 */
305 cpu_set(cpuid, cpu_callin_map);
306}
307
Glauber de Oliveira Costabbc2ff62008-03-19 14:26:00 -0300308/*
309 * Activate a secondary processor.
310 */
311void __cpuinit start_secondary(void *unused)
312{
313 /*
314 * Don't put *anything* before cpu_init(), SMP booting is too
315 * fragile that we want to limit the things done here to the
316 * most necessary things.
317 */
318#ifdef CONFIG_VMI
319 vmi_bringup();
320#endif
321 cpu_init();
322 preempt_disable();
323 smp_callin();
324
325 /* otherwise gcc will move up smp_processor_id before the cpu_init */
326 barrier();
327 /*
328 * Check TSC synchronization with the BP:
329 */
330 check_tsc_sync_target();
331
332 if (nmi_watchdog == NMI_IO_APIC) {
333 disable_8259A_irq(0);
334 enable_NMI_through_LVT0();
335 enable_8259A_irq(0);
336 }
337
338 /* This must be done before setting cpu_online_map */
339 set_cpu_sibling_map(raw_smp_processor_id());
340 wmb();
341
342 /*
343 * We need to hold call_lock, so there is no inconsistency
344 * between the time smp_call_function() determines number of
345 * IPI recipients, and the time when the determination is made
346 * for which cpus receive the IPI. Holding this
347 * lock helps us to not include this cpu in a currently in progress
348 * smp_call_function().
349 */
350 lock_ipi_call_lock();
351#ifdef CONFIG_X86_64
352 spin_lock(&vector_lock);
353
354 /* Setup the per cpu irq handling data structures */
355 __setup_vector_irq(smp_processor_id());
356 /*
357 * Allow the master to continue.
358 */
359 spin_unlock(&vector_lock);
360#endif
361 cpu_set(smp_processor_id(), cpu_online_map);
362 unlock_ipi_call_lock();
363 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
364
365 setup_secondary_clock();
366
367 wmb();
368 cpu_idle();
369}
370
371#ifdef CONFIG_X86_32
372/*
373 * Everything has been set up for the secondary
374 * CPUs - they just need to reload everything
375 * from the task structure
376 * This function must not return.
377 */
378void __devinit initialize_secondary(void)
379{
380 /*
381 * We don't actually need to load the full TSS,
382 * basically just the stack pointer and the ip.
383 */
384
385 asm volatile(
386 "movl %0,%%esp\n\t"
387 "jmp *%1"
388 :
389 :"m" (current->thread.sp), "m" (current->thread.ip));
390}
391#endif
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300392
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300393static void __cpuinit smp_apply_quirks(struct cpuinfo_x86 *c)
394{
395#ifdef CONFIG_X86_32
396 /*
397 * Mask B, Pentium, but not Pentium MMX
398 */
399 if (c->x86_vendor == X86_VENDOR_INTEL &&
400 c->x86 == 5 &&
401 c->x86_mask >= 1 && c->x86_mask <= 4 &&
402 c->x86_model <= 3)
403 /*
404 * Remember we have B step Pentia with bugs
405 */
406 smp_b_stepping = 1;
407
408 /*
409 * Certain Athlons might work (for various values of 'work') in SMP
410 * but they are not certified as MP capable.
411 */
412 if ((c->x86_vendor == X86_VENDOR_AMD) && (c->x86 == 6)) {
413
414 if (num_possible_cpus() == 1)
415 goto valid_k7;
416
417 /* Athlon 660/661 is valid. */
418 if ((c->x86_model == 6) && ((c->x86_mask == 0) ||
419 (c->x86_mask == 1)))
420 goto valid_k7;
421
422 /* Duron 670 is valid */
423 if ((c->x86_model == 7) && (c->x86_mask == 0))
424 goto valid_k7;
425
426 /*
427 * Athlon 662, Duron 671, and Athlon >model 7 have capability
428 * bit. It's worth noting that the A5 stepping (662) of some
429 * Athlon XP's have the MP bit set.
430 * See http://www.heise.de/newsticker/data/jow-18.10.01-000 for
431 * more.
432 */
433 if (((c->x86_model == 6) && (c->x86_mask >= 2)) ||
434 ((c->x86_model == 7) && (c->x86_mask >= 1)) ||
435 (c->x86_model > 7))
436 if (cpu_has_mp)
437 goto valid_k7;
438
439 /* If we get here, not a certified SMP capable AMD system. */
440 add_taint(TAINT_UNSAFE_SMP);
441 }
442
443valid_k7:
444 ;
445#endif
446}
447
Glauber de Oliveira Costa693d4b82008-03-19 14:25:28 -0300448void smp_checks(void)
449{
450 if (smp_b_stepping)
451 printk(KERN_WARNING "WARNING: SMP operation may be unreliable"
452 "with B stepping processors.\n");
453
454 /*
455 * Don't taint if we are running SMP kernel on a single non-MP
456 * approved Athlon
457 */
458 if (tainted & TAINT_UNSAFE_SMP) {
Glauber de Oliveira Costaf68e00a2008-03-19 14:25:29 -0300459 if (num_online_cpus())
Glauber de Oliveira Costa693d4b82008-03-19 14:25:28 -0300460 printk(KERN_INFO "WARNING: This combination of AMD"
461 "processors is not suitable for SMP.\n");
462 else
463 tainted &= ~TAINT_UNSAFE_SMP;
464 }
465}
466
Glauber de Oliveira Costa1d89a7f2008-03-19 14:25:05 -0300467/*
468 * The bootstrap kernel entry code has set these up. Save them for
469 * a given CPU
470 */
471
472void __cpuinit smp_store_cpu_info(int id)
473{
474 struct cpuinfo_x86 *c = &cpu_data(id);
475
476 *c = boot_cpu_data;
477 c->cpu_index = id;
478 if (id != 0)
479 identify_secondary_cpu(c);
480 smp_apply_quirks(c);
481}
482
483
Glauber Costa768d9502008-03-03 14:13:02 -0300484void __cpuinit set_cpu_sibling_map(int cpu)
485{
486 int i;
487 struct cpuinfo_x86 *c = &cpu_data(cpu);
488
489 cpu_set(cpu, cpu_sibling_setup_map);
490
491 if (smp_num_siblings > 1) {
492 for_each_cpu_mask(i, cpu_sibling_setup_map) {
493 if (c->phys_proc_id == cpu_data(i).phys_proc_id &&
494 c->cpu_core_id == cpu_data(i).cpu_core_id) {
495 cpu_set(i, per_cpu(cpu_sibling_map, cpu));
496 cpu_set(cpu, per_cpu(cpu_sibling_map, i));
497 cpu_set(i, per_cpu(cpu_core_map, cpu));
498 cpu_set(cpu, per_cpu(cpu_core_map, i));
499 cpu_set(i, c->llc_shared_map);
500 cpu_set(cpu, cpu_data(i).llc_shared_map);
501 }
502 }
503 } else {
504 cpu_set(cpu, per_cpu(cpu_sibling_map, cpu));
505 }
506
507 cpu_set(cpu, c->llc_shared_map);
508
509 if (current_cpu_data.x86_max_cores == 1) {
510 per_cpu(cpu_core_map, cpu) = per_cpu(cpu_sibling_map, cpu);
511 c->booted_cores = 1;
512 return;
513 }
514
515 for_each_cpu_mask(i, cpu_sibling_setup_map) {
516 if (per_cpu(cpu_llc_id, cpu) != BAD_APICID &&
517 per_cpu(cpu_llc_id, cpu) == per_cpu(cpu_llc_id, i)) {
518 cpu_set(i, c->llc_shared_map);
519 cpu_set(cpu, cpu_data(i).llc_shared_map);
520 }
521 if (c->phys_proc_id == cpu_data(i).phys_proc_id) {
522 cpu_set(i, per_cpu(cpu_core_map, cpu));
523 cpu_set(cpu, per_cpu(cpu_core_map, i));
524 /*
525 * Does this new cpu bringup a new core?
526 */
527 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1) {
528 /*
529 * for each core in package, increment
530 * the booted_cores for this new cpu
531 */
532 if (first_cpu(per_cpu(cpu_sibling_map, i)) == i)
533 c->booted_cores++;
534 /*
535 * increment the core count for all
536 * the other cpus in this package
537 */
538 if (i != cpu)
539 cpu_data(i).booted_cores++;
540 } else if (i != cpu && !c->booted_cores)
541 c->booted_cores = cpu_data(i).booted_cores;
542 }
543 }
544}
545
Glauber Costa70708a12008-03-03 14:13:03 -0300546/* maps the cpu to the sched domain representing multi-core */
547cpumask_t cpu_coregroup_map(int cpu)
548{
549 struct cpuinfo_x86 *c = &cpu_data(cpu);
550 /*
551 * For perf, we return last level cache shared map.
552 * And for power savings, we return cpu_core_map
553 */
554 if (sched_mc_power_savings || sched_smt_power_savings)
555 return per_cpu(cpu_core_map, cpu);
556 else
557 return c->llc_shared_map;
558}
559
Glauber Costa91718e82008-03-03 14:13:12 -0300560/*
561 * Currently trivial. Write the real->protected mode
562 * bootstrap into the page concerned. The caller
563 * has made sure it's suitably aligned.
564 */
565
566unsigned long __cpuinit setup_trampoline(void)
567{
568 memcpy(trampoline_base, trampoline_data,
569 trampoline_end - trampoline_data);
570 return virt_to_phys(trampoline_base);
571}
572
573#ifdef CONFIG_X86_32
574/*
575 * We are called very early to get the low memory for the
576 * SMP bootup trampoline page.
577 */
578void __init smp_alloc_memory(void)
579{
580 trampoline_base = alloc_bootmem_low_pages(PAGE_SIZE);
581 /*
582 * Has to be in very low memory so we can execute
583 * real-mode AP code.
584 */
585 if (__pa(trampoline_base) >= 0x9F000)
586 BUG();
587}
588#endif
Glauber Costa70708a12008-03-03 14:13:03 -0300589
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300590void impress_friends(void)
591{
592 int cpu;
593 unsigned long bogosum = 0;
594 /*
595 * Allow the user to impress friends.
596 */
597 Dprintk("Before bogomips.\n");
598 for_each_possible_cpu(cpu)
599 if (cpu_isset(cpu, cpu_callout_map))
600 bogosum += cpu_data(cpu).loops_per_jiffy;
601 printk(KERN_INFO
602 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
Glauber de Oliveira Costaf68e00a2008-03-19 14:25:29 -0300603 num_online_cpus(),
Glauber de Oliveira Costa904541e2008-03-19 14:25:27 -0300604 bogosum/(500000/HZ),
605 (bogosum/(5000/HZ))%100);
606
607 Dprintk("Before bogocount - setting activated=1.\n");
608}
609
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300610static inline void __inquire_remote_apic(int apicid)
611{
612 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
613 char *names[] = { "ID", "VERSION", "SPIV" };
614 int timeout;
615 u32 status;
616
617 printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
618
619 for (i = 0; i < ARRAY_SIZE(regs); i++) {
620 printk(KERN_INFO "... APIC #%d %s: ", apicid, names[i]);
621
622 /*
623 * Wait for idle.
624 */
625 status = safe_apic_wait_icr_idle();
626 if (status)
627 printk(KERN_CONT
628 "a previous APIC delivery may have failed\n");
629
630 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
631 apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
632
633 timeout = 0;
634 do {
635 udelay(100);
636 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
637 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
638
639 switch (status) {
640 case APIC_ICR_RR_VALID:
641 status = apic_read(APIC_RRR);
642 printk(KERN_CONT "%08x\n", status);
643 break;
644 default:
645 printk(KERN_CONT "failed\n");
646 }
647 }
648}
649
650#ifdef WAKE_SECONDARY_VIA_NMI
651/*
652 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
653 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
654 * won't ... remember to clear down the APIC, etc later.
655 */
656static int __devinit
657wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
658{
659 unsigned long send_status, accept_status = 0;
660 int maxlvt;
661
662 /* Target chip */
663 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
664
665 /* Boot on the stack */
666 /* Kick the second */
667 apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
668
669 Dprintk("Waiting for send to finish...\n");
670 send_status = safe_apic_wait_icr_idle();
671
672 /*
673 * Give the other CPU some time to accept the IPI.
674 */
675 udelay(200);
676 /*
677 * Due to the Pentium erratum 3AP.
678 */
679 maxlvt = lapic_get_maxlvt();
680 if (maxlvt > 3) {
681 apic_read_around(APIC_SPIV);
682 apic_write(APIC_ESR, 0);
683 }
684 accept_status = (apic_read(APIC_ESR) & 0xEF);
685 Dprintk("NMI sent.\n");
686
687 if (send_status)
688 printk(KERN_ERR "APIC never delivered???\n");
689 if (accept_status)
690 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
691
692 return (send_status | accept_status);
693}
694#endif /* WAKE_SECONDARY_VIA_NMI */
695
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300696#ifdef WAKE_SECONDARY_VIA_INIT
697static int __devinit
698wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
699{
700 unsigned long send_status, accept_status = 0;
701 int maxlvt, num_starts, j;
702
703 /*
704 * Be paranoid about clearing APIC errors.
705 */
706 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
707 apic_read_around(APIC_SPIV);
708 apic_write(APIC_ESR, 0);
709 apic_read(APIC_ESR);
710 }
711
712 Dprintk("Asserting INIT.\n");
713
714 /*
715 * Turn INIT on target chip
716 */
717 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
718
719 /*
720 * Send IPI
721 */
722 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
723 | APIC_DM_INIT);
724
725 Dprintk("Waiting for send to finish...\n");
726 send_status = safe_apic_wait_icr_idle();
727
728 mdelay(10);
729
730 Dprintk("Deasserting INIT.\n");
731
732 /* Target chip */
733 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
734
735 /* Send IPI */
736 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
737
738 Dprintk("Waiting for send to finish...\n");
739 send_status = safe_apic_wait_icr_idle();
740
741 mb();
742 atomic_set(&init_deasserted, 1);
743
744 /*
745 * Should we send STARTUP IPIs ?
746 *
747 * Determine this based on the APIC version.
748 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
749 */
750 if (APIC_INTEGRATED(apic_version[phys_apicid]))
751 num_starts = 2;
752 else
753 num_starts = 0;
754
755 /*
756 * Paravirt / VMI wants a startup IPI hook here to set up the
757 * target processor state.
758 */
759 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
760#ifdef CONFIG_X86_64
761 (unsigned long)init_rsp);
762#else
763 (unsigned long)stack_start.sp);
764#endif
765
766 /*
767 * Run STARTUP IPI loop.
768 */
769 Dprintk("#startup loops: %d.\n", num_starts);
770
771 maxlvt = lapic_get_maxlvt();
772
773 for (j = 1; j <= num_starts; j++) {
774 Dprintk("Sending STARTUP #%d.\n", j);
775 apic_read_around(APIC_SPIV);
776 apic_write(APIC_ESR, 0);
777 apic_read(APIC_ESR);
778 Dprintk("After apic_write.\n");
779
780 /*
781 * STARTUP IPI
782 */
783
784 /* Target chip */
785 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
786
787 /* Boot on the stack */
788 /* Kick the second */
789 apic_write_around(APIC_ICR, APIC_DM_STARTUP
790 | (start_eip >> 12));
791
792 /*
793 * Give the other CPU some time to accept the IPI.
794 */
795 udelay(300);
796
797 Dprintk("Startup point 1.\n");
798
799 Dprintk("Waiting for send to finish...\n");
800 send_status = safe_apic_wait_icr_idle();
801
802 /*
803 * Give the other CPU some time to accept the IPI.
804 */
805 udelay(200);
806 /*
807 * Due to the Pentium erratum 3AP.
808 */
809 if (maxlvt > 3) {
810 apic_read_around(APIC_SPIV);
811 apic_write(APIC_ESR, 0);
812 }
813 accept_status = (apic_read(APIC_ESR) & 0xEF);
814 if (send_status || accept_status)
815 break;
816 }
817 Dprintk("After Startup.\n");
818
819 if (send_status)
820 printk(KERN_ERR "APIC never delivered???\n");
821 if (accept_status)
822 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
823
824 return (send_status | accept_status);
825}
826#endif /* WAKE_SECONDARY_VIA_INIT */
827
828struct create_idle {
829 struct work_struct work;
830 struct task_struct *idle;
831 struct completion done;
832 int cpu;
833};
834
835static void __cpuinit do_fork_idle(struct work_struct *work)
836{
837 struct create_idle *c_idle =
838 container_of(work, struct create_idle, work);
839
840 c_idle->idle = fork_idle(c_idle->cpu);
841 complete(&c_idle->done);
842}
843
844static int __cpuinit do_boot_cpu(int apicid, int cpu)
845/*
846 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
847 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
848 * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
849 */
850{
851 unsigned long boot_error = 0;
852 int timeout;
853 unsigned long start_ip;
854 unsigned short nmi_high = 0, nmi_low = 0;
855 struct create_idle c_idle = {
856 .cpu = cpu,
857 .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
858 };
859 INIT_WORK(&c_idle.work, do_fork_idle);
860#ifdef CONFIG_X86_64
861 /* allocate memory for gdts of secondary cpus. Hotplug is considered */
862 if (!cpu_gdt_descr[cpu].address &&
863 !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
864 printk(KERN_ERR "Failed to allocate GDT for CPU %d\n", cpu);
865 return -1;
866 }
867
868 /* Allocate node local memory for AP pdas */
869 if (cpu_pda(cpu) == &boot_cpu_pda[cpu]) {
870 struct x8664_pda *newpda, *pda;
871 int node = cpu_to_node(cpu);
872 pda = cpu_pda(cpu);
873 newpda = kmalloc_node(sizeof(struct x8664_pda), GFP_ATOMIC,
874 node);
875 if (newpda) {
876 memcpy(newpda, pda, sizeof(struct x8664_pda));
877 cpu_pda(cpu) = newpda;
878 } else
879 printk(KERN_ERR
880 "Could not allocate node local PDA for CPU %d on node %d\n",
881 cpu, node);
882 }
883#endif
884
885 alternatives_smp_switch(1);
886
887 c_idle.idle = get_idle_for_cpu(cpu);
888
889 /*
890 * We can't use kernel_thread since we must avoid to
891 * reschedule the child.
892 */
893 if (c_idle.idle) {
894 c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
895 (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
896 init_idle(c_idle.idle, cpu);
897 goto do_rest;
898 }
899
900 if (!keventd_up() || current_is_keventd())
901 c_idle.work.func(&c_idle.work);
902 else {
903 schedule_work(&c_idle.work);
904 wait_for_completion(&c_idle.done);
905 }
906
907 if (IS_ERR(c_idle.idle)) {
908 printk("failed fork for CPU %d\n", cpu);
909 return PTR_ERR(c_idle.idle);
910 }
911
912 set_idle_for_cpu(cpu, c_idle.idle);
913do_rest:
914#ifdef CONFIG_X86_32
915 per_cpu(current_task, cpu) = c_idle.idle;
916 init_gdt(cpu);
917 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
918 c_idle.idle->thread.ip = (unsigned long) start_secondary;
919 /* Stack for startup_32 can be just as for start_secondary onwards */
920 stack_start.sp = (void *) c_idle.idle->thread.sp;
921 irq_ctx_init(cpu);
922#else
923 cpu_pda(cpu)->pcurrent = c_idle.idle;
924 init_rsp = c_idle.idle->thread.sp;
925 load_sp0(&per_cpu(init_tss, cpu), &c_idle.idle->thread);
926 initial_code = (unsigned long)start_secondary;
927 clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
928#endif
929
930 /* start_ip had better be page-aligned! */
931 start_ip = setup_trampoline();
932
933 /* So we see what's up */
934 printk(KERN_INFO "Booting processor %d/%d ip %lx\n",
935 cpu, apicid, start_ip);
936
937 /*
938 * This grunge runs the startup process for
939 * the targeted processor.
940 */
941
942 atomic_set(&init_deasserted, 0);
943
944 Dprintk("Setting warm reset code and vector.\n");
945
946 store_NMI_vector(&nmi_high, &nmi_low);
947
948 smpboot_setup_warm_reset_vector(start_ip);
949 /*
950 * Be paranoid about clearing APIC errors.
951 */
952 apic_write(APIC_ESR, 0);
953 apic_read(APIC_ESR);
954
Glauber de Oliveira Costacb3c8b92008-03-19 14:25:59 -0300955 /*
956 * Starting actual IPI sequence...
957 */
958 boot_error = wakeup_secondary_cpu(apicid, start_ip);
959
960 if (!boot_error) {
961 /*
962 * allow APs to start initializing.
963 */
964 Dprintk("Before Callout %d.\n", cpu);
965 cpu_set(cpu, cpu_callout_map);
966 Dprintk("After Callout %d.\n", cpu);
967
968 /*
969 * Wait 5s total for a response
970 */
971 for (timeout = 0; timeout < 50000; timeout++) {
972 if (cpu_isset(cpu, cpu_callin_map))
973 break; /* It has booted */
974 udelay(100);
975 }
976
977 if (cpu_isset(cpu, cpu_callin_map)) {
978 /* number CPUs logically, starting from 1 (BSP is 0) */
979 Dprintk("OK.\n");
980 printk(KERN_INFO "CPU%d: ", cpu);
981 print_cpu_info(&cpu_data(cpu));
982 Dprintk("CPU has booted.\n");
983 } else {
984 boot_error = 1;
985 if (*((volatile unsigned char *)trampoline_base)
986 == 0xA5)
987 /* trampoline started but...? */
988 printk(KERN_ERR "Stuck ??\n");
989 else
990 /* trampoline code not run */
991 printk(KERN_ERR "Not responding.\n");
992 inquire_remote_apic(apicid);
993 }
994 }
995
996 if (boot_error) {
997 /* Try to put things back the way they were before ... */
998 unmap_cpu_to_logical_apicid(cpu);
999#ifdef CONFIG_X86_64
1000 clear_node_cpumask(cpu); /* was set by numa_add_cpu */
1001#endif
1002 cpu_clear(cpu, cpu_callout_map); /* was set by do_boot_cpu() */
1003 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
1004 cpu_clear(cpu, cpu_possible_map);
1005 cpu_clear(cpu, cpu_present_map);
1006 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
1007 }
1008
1009 /* mark "stuck" area as not stuck */
1010 *((volatile unsigned long *)trampoline_base) = 0;
1011
1012 return boot_error;
1013}
1014
1015int __cpuinit native_cpu_up(unsigned int cpu)
1016{
1017 int apicid = cpu_present_to_apicid(cpu);
1018 unsigned long flags;
1019 int err;
1020
1021 WARN_ON(irqs_disabled());
1022
1023 Dprintk("++++++++++++++++++++=_---CPU UP %u\n", cpu);
1024
1025 if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
1026 !physid_isset(apicid, phys_cpu_present_map)) {
1027 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
1028 return -EINVAL;
1029 }
1030
1031 /*
1032 * Already booted CPU?
1033 */
1034 if (cpu_isset(cpu, cpu_callin_map)) {
1035 Dprintk("do_boot_cpu %d Already started\n", cpu);
1036 return -ENOSYS;
1037 }
1038
1039 /*
1040 * Save current MTRR state in case it was changed since early boot
1041 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
1042 */
1043 mtrr_save_state();
1044
1045 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
1046
1047#ifdef CONFIG_X86_32
1048 /* init low mem mapping */
1049 clone_pgd_range(swapper_pg_dir, swapper_pg_dir + USER_PGD_PTRS,
1050 min_t(unsigned long, KERNEL_PGD_PTRS, USER_PGD_PTRS));
1051 flush_tlb_all();
1052#endif
1053
1054 err = do_boot_cpu(apicid, cpu);
1055 if (err < 0) {
1056 Dprintk("do_boot_cpu failed %d\n", err);
1057 return err;
1058 }
1059
1060 /*
1061 * Check TSC synchronization with the AP (keep irqs disabled
1062 * while doing so):
1063 */
1064 local_irq_save(flags);
1065 check_tsc_sync_source(cpu);
1066 local_irq_restore(flags);
1067
1068 while (!cpu_isset(cpu, cpu_online_map)) {
1069 cpu_relax();
1070 touch_nmi_watchdog();
1071 }
1072
1073 return 0;
1074}
1075
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001076/*
Glauber de Oliveira Costa8aef1352008-03-19 14:26:11 -03001077 * Fall back to non SMP mode after errors.
1078 *
1079 * RED-PEN audit/test this more. I bet there is more state messed up here.
1080 */
1081static __init void disable_smp(void)
1082{
1083 cpu_present_map = cpumask_of_cpu(0);
1084 cpu_possible_map = cpumask_of_cpu(0);
1085#ifdef CONFIG_X86_32
1086 smpboot_clear_io_apic_irqs();
1087#endif
1088 if (smp_found_config)
1089 phys_cpu_present_map =
1090 physid_mask_of_physid(boot_cpu_physical_apicid);
1091 else
1092 phys_cpu_present_map = physid_mask_of_physid(0);
1093 map_cpu_to_logical_apicid();
1094 cpu_set(0, per_cpu(cpu_sibling_map, 0));
1095 cpu_set(0, per_cpu(cpu_core_map, 0));
1096}
1097
1098/*
1099 * Various sanity checks.
1100 */
1101static int __init smp_sanity_check(unsigned max_cpus)
1102{
1103 if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
1104 printk(KERN_WARNING "weird, boot CPU (#%d) not listed"
1105 "by the BIOS.\n", hard_smp_processor_id());
1106 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1107 }
1108
1109 /*
1110 * If we couldn't find an SMP configuration at boot time,
1111 * get out of here now!
1112 */
1113 if (!smp_found_config && !acpi_lapic) {
1114 printk(KERN_NOTICE "SMP motherboard not detected.\n");
1115 disable_smp();
1116 if (APIC_init_uniprocessor())
1117 printk(KERN_NOTICE "Local APIC not detected."
1118 " Using dummy APIC emulation.\n");
1119 return -1;
1120 }
1121
1122 /*
1123 * Should not be necessary because the MP table should list the boot
1124 * CPU too, but we do it for the sake of robustness anyway.
1125 */
1126 if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
1127 printk(KERN_NOTICE
1128 "weird, boot CPU (#%d) not listed by the BIOS.\n",
1129 boot_cpu_physical_apicid);
1130 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1131 }
1132
1133 /*
1134 * If we couldn't find a local APIC, then get out of here now!
1135 */
1136 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1137 !cpu_has_apic) {
1138 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1139 boot_cpu_physical_apicid);
1140 printk(KERN_ERR "... forcing use of dummy APIC emulation."
1141 "(tell your hw vendor)\n");
1142 smpboot_clear_io_apic();
1143 return -1;
1144 }
1145
1146 verify_local_APIC();
1147
1148 /*
1149 * If SMP should be disabled, then really disable it!
1150 */
1151 if (!max_cpus) {
1152 printk(KERN_INFO "SMP mode deactivated,"
1153 "forcing use of dummy APIC emulation.\n");
1154 smpboot_clear_io_apic();
1155#ifdef CONFIG_X86_32
1156 if (nmi_watchdog == NMI_LOCAL_APIC) {
1157 printk(KERN_INFO "activating minimal APIC for"
1158 "NMI watchdog use.\n");
1159 connect_bsp_APIC();
1160 setup_local_APIC();
1161 end_local_APIC_setup();
1162 }
1163#endif
1164 return -1;
1165 }
1166
1167 return 0;
1168}
1169
1170static void __init smp_cpu_index_default(void)
1171{
1172 int i;
1173 struct cpuinfo_x86 *c;
1174
1175 for_each_cpu_mask(i, cpu_possible_map) {
1176 c = &cpu_data(i);
1177 /* mark all to hotplug */
1178 c->cpu_index = NR_CPUS;
1179 }
1180}
1181
1182/*
1183 * Prepare for SMP bootup. The MP table or ACPI has been read
1184 * earlier. Just do some sanity checking here and enable APIC mode.
1185 */
1186void __init native_smp_prepare_cpus(unsigned int max_cpus)
1187{
1188 nmi_watchdog_default();
1189 smp_cpu_index_default();
1190 current_cpu_data = boot_cpu_data;
1191 cpu_callin_map = cpumask_of_cpu(0);
1192 mb();
1193 /*
1194 * Setup boot CPU information
1195 */
1196 smp_store_cpu_info(0); /* Final full version of the data */
1197 boot_cpu_logical_apicid = logical_smp_processor_id();
1198 current_thread_info()->cpu = 0; /* needed? */
1199 set_cpu_sibling_map(0);
1200
1201 if (smp_sanity_check(max_cpus) < 0) {
1202 printk(KERN_INFO "SMP disabled\n");
1203 disable_smp();
1204 return;
1205 }
1206
1207 if (GET_APIC_ID(apic_read(APIC_ID)) != boot_cpu_physical_apicid) {
1208 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
1209 GET_APIC_ID(apic_read(APIC_ID)), boot_cpu_physical_apicid);
1210 /* Or can we switch back to PIC here? */
1211 }
1212
1213#ifdef CONFIG_X86_32
1214 connect_bsp_APIC();
1215#endif
1216 /*
1217 * Switch from PIC to APIC mode.
1218 */
1219 setup_local_APIC();
1220
1221#ifdef CONFIG_X86_64
1222 /*
1223 * Enable IO APIC before setting up error vector
1224 */
1225 if (!skip_ioapic_setup && nr_ioapics)
1226 enable_IO_APIC();
1227#endif
1228 end_local_APIC_setup();
1229
1230 map_cpu_to_logical_apicid();
1231
1232 setup_portio_remap();
1233
1234 smpboot_setup_io_apic();
1235 /*
1236 * Set up local APIC timer on boot CPU.
1237 */
1238
1239 printk(KERN_INFO "CPU%d: ", 0);
1240 print_cpu_info(&cpu_data(0));
1241 setup_boot_clock();
1242}
1243/*
Glauber de Oliveira Costaa8db8452008-03-19 14:26:01 -03001244 * Early setup to make printk work.
1245 */
1246void __init native_smp_prepare_boot_cpu(void)
1247{
1248 int me = smp_processor_id();
1249#ifdef CONFIG_X86_32
1250 init_gdt(me);
1251 switch_to_new_gdt();
1252#endif
1253 /* already set me in cpu_online_map in boot_cpu_init() */
1254 cpu_set(me, cpu_callout_map);
1255 per_cpu(cpu_state, me) = CPU_ONLINE;
1256}
1257
Glauber de Oliveira Costa83f7eb92008-03-19 14:26:02 -03001258void __init native_smp_cpus_done(unsigned int max_cpus)
1259{
1260 /*
1261 * Cleanup possible dangling ends...
1262 */
1263 smpboot_restore_warm_reset_vector();
1264
1265 Dprintk("Boot done.\n");
1266
1267 impress_friends();
1268 smp_checks();
1269#ifdef CONFIG_X86_IO_APIC
1270 setup_ioapic_dest();
1271#endif
1272 check_nmi_watchdog();
1273#ifdef CONFIG_X86_32
1274 zap_low_mappings();
1275#endif
1276}
1277
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001278#ifdef CONFIG_HOTPLUG_CPU
Glauber de Oliveira Costa2cd9fb72008-03-19 14:26:12 -03001279
1280# ifdef CONFIG_X86_32
1281void cpu_exit_clear(void)
1282{
1283 int cpu = raw_smp_processor_id();
1284
1285 idle_task_exit();
1286
1287 cpu_uninit();
1288 irq_ctx_exit(cpu);
1289
1290 cpu_clear(cpu, cpu_callout_map);
1291 cpu_clear(cpu, cpu_callin_map);
1292
1293 unmap_cpu_to_logical_apicid(cpu);
1294}
1295# endif /* CONFIG_X86_32 */
1296
Glauber Costa768d9502008-03-03 14:13:02 -03001297void remove_siblinginfo(int cpu)
1298{
1299 int sibling;
1300 struct cpuinfo_x86 *c = &cpu_data(cpu);
1301
1302 for_each_cpu_mask(sibling, per_cpu(cpu_core_map, cpu)) {
1303 cpu_clear(cpu, per_cpu(cpu_core_map, sibling));
1304 /*/
1305 * last thread sibling in this cpu core going down
1306 */
1307 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1)
1308 cpu_data(sibling).booted_cores--;
1309 }
1310
1311 for_each_cpu_mask(sibling, per_cpu(cpu_sibling_map, cpu))
1312 cpu_clear(cpu, per_cpu(cpu_sibling_map, sibling));
1313 cpus_clear(per_cpu(cpu_sibling_map, cpu));
1314 cpus_clear(per_cpu(cpu_core_map, cpu));
1315 c->phys_proc_id = 0;
1316 c->cpu_core_id = 0;
1317 cpu_clear(cpu, cpu_sibling_setup_map);
1318}
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001319
1320int additional_cpus __initdata = -1;
1321
1322static __init int setup_additional_cpus(char *s)
1323{
1324 return s && get_option(&s, &additional_cpus) ? 0 : -EINVAL;
1325}
1326early_param("additional_cpus", setup_additional_cpus);
1327
1328/*
1329 * cpu_possible_map should be static, it cannot change as cpu's
1330 * are onlined, or offlined. The reason is per-cpu data-structures
1331 * are allocated by some modules at init time, and dont expect to
1332 * do this dynamically on cpu arrival/departure.
1333 * cpu_present_map on the other hand can change dynamically.
1334 * In case when cpu_hotplug is not compiled, then we resort to current
1335 * behaviour, which is cpu_possible == cpu_present.
1336 * - Ashok Raj
1337 *
1338 * Three ways to find out the number of additional hotplug CPUs:
1339 * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
1340 * - The user can overwrite it with additional_cpus=NUM
1341 * - Otherwise don't reserve additional CPUs.
1342 * We do this because additional CPUs waste a lot of memory.
1343 * -AK
1344 */
1345__init void prefill_possible_map(void)
1346{
1347 int i;
1348 int possible;
1349
1350 if (additional_cpus == -1) {
1351 if (disabled_cpus > 0)
1352 additional_cpus = disabled_cpus;
1353 else
1354 additional_cpus = 0;
1355 }
1356 possible = num_processors + additional_cpus;
1357 if (possible > NR_CPUS)
1358 possible = NR_CPUS;
1359
1360 printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
1361 possible, max_t(int, possible - num_processors, 0));
1362
1363 for (i = 0; i < possible; i++)
1364 cpu_set(i, cpu_possible_map);
1365}
Glauber Costa69c18c12008-03-03 14:13:07 -03001366
1367static void __ref remove_cpu_from_maps(int cpu)
1368{
1369 cpu_clear(cpu, cpu_online_map);
1370#ifdef CONFIG_X86_64
1371 cpu_clear(cpu, cpu_callout_map);
1372 cpu_clear(cpu, cpu_callin_map);
1373 /* was set by cpu_init() */
1374 clear_bit(cpu, (unsigned long *)&cpu_initialized);
1375 clear_node_cpumask(cpu);
1376#endif
1377}
1378
1379int __cpu_disable(void)
1380{
1381 int cpu = smp_processor_id();
1382
1383 /*
1384 * Perhaps use cpufreq to drop frequency, but that could go
1385 * into generic code.
1386 *
1387 * We won't take down the boot processor on i386 due to some
1388 * interrupts only being able to be serviced by the BSP.
1389 * Especially so if we're not using an IOAPIC -zwane
1390 */
1391 if (cpu == 0)
1392 return -EBUSY;
1393
1394 if (nmi_watchdog == NMI_LOCAL_APIC)
1395 stop_apic_nmi_watchdog(NULL);
1396 clear_local_APIC();
1397
1398 /*
1399 * HACK:
1400 * Allow any queued timer interrupts to get serviced
1401 * This is only a temporary solution until we cleanup
1402 * fixup_irqs as we do for IA64.
1403 */
1404 local_irq_enable();
1405 mdelay(1);
1406
1407 local_irq_disable();
1408 remove_siblinginfo(cpu);
1409
1410 /* It's now safe to remove this processor from the online map */
1411 remove_cpu_from_maps(cpu);
1412 fixup_irqs(cpu_online_map);
1413 return 0;
1414}
1415
1416void __cpu_die(unsigned int cpu)
1417{
1418 /* We don't do anything here: idle task is faking death itself. */
1419 unsigned int i;
1420
1421 for (i = 0; i < 10; i++) {
1422 /* They ack this in play_dead by setting CPU_DEAD */
1423 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1424 printk(KERN_INFO "CPU %d is now offline\n", cpu);
1425 if (1 == num_online_cpus())
1426 alternatives_smp_switch(0);
1427 return;
1428 }
1429 msleep(100);
1430 }
1431 printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1432}
1433#else /* ... !CONFIG_HOTPLUG_CPU */
1434int __cpu_disable(void)
1435{
1436 return -ENOSYS;
1437}
1438
1439void __cpu_die(unsigned int cpu)
1440{
1441 /* We said "no" in __cpu_disable */
1442 BUG();
1443}
Glauber Costa68a1c3f2008-03-03 14:12:42 -03001444#endif
1445
Glauber Costa89b08202008-03-03 14:13:08 -03001446/*
1447 * If the BIOS enumerates physical processors before logical,
1448 * maxcpus=N at enumeration-time can be used to disable HT.
1449 */
1450static int __init parse_maxcpus(char *arg)
1451{
1452 extern unsigned int maxcpus;
1453
1454 maxcpus = simple_strtoul(arg, NULL, 0);
1455 return 0;
1456}
1457early_param("maxcpus", parse_maxcpus);