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