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