Merge branch 'x86/mpparse' into x86/devel
[sfrench/cifs-2.6.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 static void impress_friends(void)
558 {
559         int cpu;
560         unsigned long bogosum = 0;
561         /*
562          * Allow the user to impress friends.
563          */
564         Dprintk("Before bogomips.\n");
565         for_each_possible_cpu(cpu)
566                 if (cpu_isset(cpu, cpu_callout_map))
567                         bogosum += cpu_data(cpu).loops_per_jiffy;
568         printk(KERN_INFO
569                 "Total of %d processors activated (%lu.%02lu BogoMIPS).\n",
570                 num_online_cpus(),
571                 bogosum/(500000/HZ),
572                 (bogosum/(5000/HZ))%100);
573
574         Dprintk("Before bogocount - setting activated=1.\n");
575 }
576
577 static inline void __inquire_remote_apic(int apicid)
578 {
579         unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
580         char *names[] = { "ID", "VERSION", "SPIV" };
581         int timeout;
582         u32 status;
583
584         printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
585
586         for (i = 0; i < ARRAY_SIZE(regs); i++) {
587                 printk(KERN_INFO "... APIC #%d %s: ", apicid, names[i]);
588
589                 /*
590                  * Wait for idle.
591                  */
592                 status = safe_apic_wait_icr_idle();
593                 if (status)
594                         printk(KERN_CONT
595                                "a previous APIC delivery may have failed\n");
596
597                 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
598                 apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
599
600                 timeout = 0;
601                 do {
602                         udelay(100);
603                         status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
604                 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
605
606                 switch (status) {
607                 case APIC_ICR_RR_VALID:
608                         status = apic_read(APIC_RRR);
609                         printk(KERN_CONT "%08x\n", status);
610                         break;
611                 default:
612                         printk(KERN_CONT "failed\n");
613                 }
614         }
615 }
616
617 #ifdef WAKE_SECONDARY_VIA_NMI
618 /*
619  * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
620  * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
621  * won't ... remember to clear down the APIC, etc later.
622  */
623 static int __devinit
624 wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
625 {
626         unsigned long send_status, accept_status = 0;
627         int maxlvt;
628
629         /* Target chip */
630         apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
631
632         /* Boot on the stack */
633         /* Kick the second */
634         apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
635
636         Dprintk("Waiting for send to finish...\n");
637         send_status = safe_apic_wait_icr_idle();
638
639         /*
640          * Give the other CPU some time to accept the IPI.
641          */
642         udelay(200);
643         /*
644          * Due to the Pentium erratum 3AP.
645          */
646         maxlvt = lapic_get_maxlvt();
647         if (maxlvt > 3) {
648                 apic_read_around(APIC_SPIV);
649                 apic_write(APIC_ESR, 0);
650         }
651         accept_status = (apic_read(APIC_ESR) & 0xEF);
652         Dprintk("NMI sent.\n");
653
654         if (send_status)
655                 printk(KERN_ERR "APIC never delivered???\n");
656         if (accept_status)
657                 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
658
659         return (send_status | accept_status);
660 }
661 #endif  /* WAKE_SECONDARY_VIA_NMI */
662
663 #ifdef WAKE_SECONDARY_VIA_INIT
664 static int __devinit
665 wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
666 {
667         unsigned long send_status, accept_status = 0;
668         int maxlvt, num_starts, j;
669
670         if (get_uv_system_type() == UV_NON_UNIQUE_APIC) {
671                 send_status = uv_wakeup_secondary(phys_apicid, start_eip);
672                 atomic_set(&init_deasserted, 1);
673                 return send_status;
674         }
675
676         /*
677          * Be paranoid about clearing APIC errors.
678          */
679         if (APIC_INTEGRATED(apic_version[phys_apicid])) {
680                 apic_read_around(APIC_SPIV);
681                 apic_write(APIC_ESR, 0);
682                 apic_read(APIC_ESR);
683         }
684
685         Dprintk("Asserting INIT.\n");
686
687         /*
688          * Turn INIT on target chip
689          */
690         apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
691
692         /*
693          * Send IPI
694          */
695         apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
696                                 | APIC_DM_INIT);
697
698         Dprintk("Waiting for send to finish...\n");
699         send_status = safe_apic_wait_icr_idle();
700
701         mdelay(10);
702
703         Dprintk("Deasserting INIT.\n");
704
705         /* Target chip */
706         apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
707
708         /* Send IPI */
709         apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
710
711         Dprintk("Waiting for send to finish...\n");
712         send_status = safe_apic_wait_icr_idle();
713
714         mb();
715         atomic_set(&init_deasserted, 1);
716
717         /*
718          * Should we send STARTUP IPIs ?
719          *
720          * Determine this based on the APIC version.
721          * If we don't have an integrated APIC, don't send the STARTUP IPIs.
722          */
723         if (APIC_INTEGRATED(apic_version[phys_apicid]))
724                 num_starts = 2;
725         else
726                 num_starts = 0;
727
728         /*
729          * Paravirt / VMI wants a startup IPI hook here to set up the
730          * target processor state.
731          */
732         startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
733 #ifdef CONFIG_X86_64
734                          (unsigned long)init_rsp);
735 #else
736                          (unsigned long)stack_start.sp);
737 #endif
738
739         /*
740          * Run STARTUP IPI loop.
741          */
742         Dprintk("#startup loops: %d.\n", num_starts);
743
744         maxlvt = lapic_get_maxlvt();
745
746         for (j = 1; j <= num_starts; j++) {
747                 Dprintk("Sending STARTUP #%d.\n", j);
748                 apic_read_around(APIC_SPIV);
749                 apic_write(APIC_ESR, 0);
750                 apic_read(APIC_ESR);
751                 Dprintk("After apic_write.\n");
752
753                 /*
754                  * STARTUP IPI
755                  */
756
757                 /* Target chip */
758                 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
759
760                 /* Boot on the stack */
761                 /* Kick the second */
762                 apic_write_around(APIC_ICR, APIC_DM_STARTUP
763                                         | (start_eip >> 12));
764
765                 /*
766                  * Give the other CPU some time to accept the IPI.
767                  */
768                 udelay(300);
769
770                 Dprintk("Startup point 1.\n");
771
772                 Dprintk("Waiting for send to finish...\n");
773                 send_status = safe_apic_wait_icr_idle();
774
775                 /*
776                  * Give the other CPU some time to accept the IPI.
777                  */
778                 udelay(200);
779                 /*
780                  * Due to the Pentium erratum 3AP.
781                  */
782                 if (maxlvt > 3) {
783                         apic_read_around(APIC_SPIV);
784                         apic_write(APIC_ESR, 0);
785                 }
786                 accept_status = (apic_read(APIC_ESR) & 0xEF);
787                 if (send_status || accept_status)
788                         break;
789         }
790         Dprintk("After Startup.\n");
791
792         if (send_status)
793                 printk(KERN_ERR "APIC never delivered???\n");
794         if (accept_status)
795                 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
796
797         return (send_status | accept_status);
798 }
799 #endif  /* WAKE_SECONDARY_VIA_INIT */
800
801 struct create_idle {
802         struct work_struct work;
803         struct task_struct *idle;
804         struct completion done;
805         int cpu;
806 };
807
808 static void __cpuinit do_fork_idle(struct work_struct *work)
809 {
810         struct create_idle *c_idle =
811                 container_of(work, struct create_idle, work);
812
813         c_idle->idle = fork_idle(c_idle->cpu);
814         complete(&c_idle->done);
815 }
816
817 static int __cpuinit do_boot_cpu(int apicid, int cpu)
818 /*
819  * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
820  * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
821  * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
822  */
823 {
824         unsigned long boot_error = 0;
825         int timeout;
826         unsigned long start_ip;
827         unsigned short nmi_high = 0, nmi_low = 0;
828         struct create_idle c_idle = {
829                 .cpu = cpu,
830                 .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
831         };
832         INIT_WORK(&c_idle.work, do_fork_idle);
833 #ifdef CONFIG_X86_64
834         /* allocate memory for gdts of secondary cpus. Hotplug is considered */
835         if (!cpu_gdt_descr[cpu].address &&
836                 !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
837                 printk(KERN_ERR "Failed to allocate GDT for CPU %d\n", cpu);
838                 return -1;
839         }
840
841         /* Allocate node local memory for AP pdas */
842         if (cpu_pda(cpu) == &boot_cpu_pda[cpu]) {
843                 struct x8664_pda *newpda, *pda;
844                 int node = cpu_to_node(cpu);
845                 pda = cpu_pda(cpu);
846                 newpda = kmalloc_node(sizeof(struct x8664_pda), GFP_ATOMIC,
847                                       node);
848                 if (newpda) {
849                         memcpy(newpda, pda, sizeof(struct x8664_pda));
850                         cpu_pda(cpu) = newpda;
851                 } else
852                         printk(KERN_ERR
853                 "Could not allocate node local PDA for CPU %d on node %d\n",
854                                 cpu, node);
855         }
856 #endif
857
858         alternatives_smp_switch(1);
859
860         c_idle.idle = get_idle_for_cpu(cpu);
861
862         /*
863          * We can't use kernel_thread since we must avoid to
864          * reschedule the child.
865          */
866         if (c_idle.idle) {
867                 c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
868                         (THREAD_SIZE +  task_stack_page(c_idle.idle))) - 1);
869                 init_idle(c_idle.idle, cpu);
870                 goto do_rest;
871         }
872
873         if (!keventd_up() || current_is_keventd())
874                 c_idle.work.func(&c_idle.work);
875         else {
876                 schedule_work(&c_idle.work);
877                 wait_for_completion(&c_idle.done);
878         }
879
880         if (IS_ERR(c_idle.idle)) {
881                 printk("failed fork for CPU %d\n", cpu);
882                 return PTR_ERR(c_idle.idle);
883         }
884
885         set_idle_for_cpu(cpu, c_idle.idle);
886 do_rest:
887 #ifdef CONFIG_X86_32
888         per_cpu(current_task, cpu) = c_idle.idle;
889         init_gdt(cpu);
890         early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
891         c_idle.idle->thread.ip = (unsigned long) start_secondary;
892         /* Stack for startup_32 can be just as for start_secondary onwards */
893         stack_start.sp = (void *) c_idle.idle->thread.sp;
894         irq_ctx_init(cpu);
895 #else
896         cpu_pda(cpu)->pcurrent = c_idle.idle;
897         init_rsp = c_idle.idle->thread.sp;
898         load_sp0(&per_cpu(init_tss, cpu), &c_idle.idle->thread);
899         initial_code = (unsigned long)start_secondary;
900         clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
901 #endif
902
903         /* start_ip had better be page-aligned! */
904         start_ip = setup_trampoline();
905
906         /* So we see what's up   */
907         printk(KERN_INFO "Booting processor %d/%d ip %lx\n",
908                           cpu, apicid, start_ip);
909
910         /*
911          * This grunge runs the startup process for
912          * the targeted processor.
913          */
914
915         atomic_set(&init_deasserted, 0);
916
917         if (get_uv_system_type() != UV_NON_UNIQUE_APIC) {
918
919                 Dprintk("Setting warm reset code and vector.\n");
920
921                 store_NMI_vector(&nmi_high, &nmi_low);
922
923                 smpboot_setup_warm_reset_vector(start_ip);
924                 /*
925                  * Be paranoid about clearing APIC errors.
926                 */
927                 apic_write(APIC_ESR, 0);
928                 apic_read(APIC_ESR);
929         }
930
931         /*
932          * Starting actual IPI sequence...
933          */
934         boot_error = wakeup_secondary_cpu(apicid, start_ip);
935
936         if (!boot_error) {
937                 /*
938                  * allow APs to start initializing.
939                  */
940                 Dprintk("Before Callout %d.\n", cpu);
941                 cpu_set(cpu, cpu_callout_map);
942                 Dprintk("After Callout %d.\n", cpu);
943
944                 /*
945                  * Wait 5s total for a response
946                  */
947                 for (timeout = 0; timeout < 50000; timeout++) {
948                         if (cpu_isset(cpu, cpu_callin_map))
949                                 break;  /* It has booted */
950                         udelay(100);
951                 }
952
953                 if (cpu_isset(cpu, cpu_callin_map)) {
954                         /* number CPUs logically, starting from 1 (BSP is 0) */
955                         Dprintk("OK.\n");
956                         printk(KERN_INFO "CPU%d: ", cpu);
957                         print_cpu_info(&cpu_data(cpu));
958                         Dprintk("CPU has booted.\n");
959                 } else {
960                         boot_error = 1;
961                         if (*((volatile unsigned char *)trampoline_base)
962                                         == 0xA5)
963                                 /* trampoline started but...? */
964                                 printk(KERN_ERR "Stuck ??\n");
965                         else
966                                 /* trampoline code not run */
967                                 printk(KERN_ERR "Not responding.\n");
968                         if (get_uv_system_type() != UV_NON_UNIQUE_APIC)
969                                 inquire_remote_apic(apicid);
970                 }
971         }
972
973         if (boot_error) {
974                 /* Try to put things back the way they were before ... */
975                 unmap_cpu_to_logical_apicid(cpu);
976 #ifdef CONFIG_X86_64
977                 clear_node_cpumask(cpu); /* was set by numa_add_cpu */
978 #endif
979                 cpu_clear(cpu, cpu_callout_map); /* was set by do_boot_cpu() */
980                 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
981                 cpu_clear(cpu, cpu_present_map);
982                 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
983         }
984
985         /* mark "stuck" area as not stuck */
986         *((volatile unsigned long *)trampoline_base) = 0;
987
988         /*
989          * Cleanup possible dangling ends...
990          */
991         smpboot_restore_warm_reset_vector();
992
993         return boot_error;
994 }
995
996 int __cpuinit native_cpu_up(unsigned int cpu)
997 {
998         int apicid = cpu_present_to_apicid(cpu);
999         unsigned long flags;
1000         int err;
1001
1002         WARN_ON(irqs_disabled());
1003
1004         Dprintk("++++++++++++++++++++=_---CPU UP  %u\n", cpu);
1005
1006         if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
1007             !physid_isset(apicid, phys_cpu_present_map)) {
1008                 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
1009                 return -EINVAL;
1010         }
1011
1012         /*
1013          * Already booted CPU?
1014          */
1015         if (cpu_isset(cpu, cpu_callin_map)) {
1016                 Dprintk("do_boot_cpu %d Already started\n", cpu);
1017                 return -ENOSYS;
1018         }
1019
1020         /*
1021          * Save current MTRR state in case it was changed since early boot
1022          * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
1023          */
1024         mtrr_save_state();
1025
1026         per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
1027
1028 #ifdef CONFIG_X86_32
1029         /* init low mem mapping */
1030         clone_pgd_range(swapper_pg_dir, swapper_pg_dir + KERNEL_PGD_BOUNDARY,
1031                 min_t(unsigned long, KERNEL_PGD_PTRS, KERNEL_PGD_BOUNDARY));
1032         flush_tlb_all();
1033         low_mappings = 1;
1034
1035         err = do_boot_cpu(apicid, cpu);
1036
1037         zap_low_mappings();
1038         low_mappings = 0;
1039 #else
1040         err = do_boot_cpu(apicid, cpu);
1041 #endif
1042         if (err) {
1043                 Dprintk("do_boot_cpu failed %d\n", err);
1044                 return -EIO;
1045         }
1046
1047         /*
1048          * Check TSC synchronization with the AP (keep irqs disabled
1049          * while doing so):
1050          */
1051         local_irq_save(flags);
1052         check_tsc_sync_source(cpu);
1053         local_irq_restore(flags);
1054
1055         while (!cpu_online(cpu)) {
1056                 cpu_relax();
1057                 touch_nmi_watchdog();
1058         }
1059
1060         return 0;
1061 }
1062
1063 /*
1064  * Fall back to non SMP mode after errors.
1065  *
1066  * RED-PEN audit/test this more. I bet there is more state messed up here.
1067  */
1068 static __init void disable_smp(void)
1069 {
1070         cpu_present_map = cpumask_of_cpu(0);
1071         cpu_possible_map = cpumask_of_cpu(0);
1072 #ifdef CONFIG_X86_32
1073         smpboot_clear_io_apic_irqs();
1074 #endif
1075         if (smp_found_config)
1076                 phys_cpu_present_map =
1077                                 physid_mask_of_physid(boot_cpu_physical_apicid);
1078         else
1079                 phys_cpu_present_map = physid_mask_of_physid(0);
1080         map_cpu_to_logical_apicid();
1081         cpu_set(0, per_cpu(cpu_sibling_map, 0));
1082         cpu_set(0, per_cpu(cpu_core_map, 0));
1083 }
1084
1085 /*
1086  * Various sanity checks.
1087  */
1088 static int __init smp_sanity_check(unsigned max_cpus)
1089 {
1090         preempt_disable();
1091         if (!physid_isset(hard_smp_processor_id(), phys_cpu_present_map)) {
1092                 printk(KERN_WARNING "weird, boot CPU (#%d) not listed"
1093                                     "by the BIOS.\n", hard_smp_processor_id());
1094                 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1095         }
1096
1097         /*
1098          * If we couldn't find an SMP configuration at boot time,
1099          * get out of here now!
1100          */
1101         if (!smp_found_config && !acpi_lapic) {
1102                 preempt_enable();
1103                 printk(KERN_NOTICE "SMP motherboard not detected.\n");
1104                 disable_smp();
1105                 if (APIC_init_uniprocessor())
1106                         printk(KERN_NOTICE "Local APIC not detected."
1107                                            " Using dummy APIC emulation.\n");
1108                 return -1;
1109         }
1110
1111         /*
1112          * Should not be necessary because the MP table should list the boot
1113          * CPU too, but we do it for the sake of robustness anyway.
1114          */
1115         if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
1116                 printk(KERN_NOTICE
1117                         "weird, boot CPU (#%d) not listed by the BIOS.\n",
1118                         boot_cpu_physical_apicid);
1119                 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
1120         }
1121         preempt_enable();
1122
1123         /*
1124          * If we couldn't find a local APIC, then get out of here now!
1125          */
1126         if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) &&
1127             !cpu_has_apic) {
1128                 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
1129                         boot_cpu_physical_apicid);
1130                 printk(KERN_ERR "... forcing use of dummy APIC emulation."
1131                                 "(tell your hw vendor)\n");
1132                 smpboot_clear_io_apic();
1133                 return -1;
1134         }
1135
1136         verify_local_APIC();
1137
1138         /*
1139          * If SMP should be disabled, then really disable it!
1140          */
1141         if (!max_cpus) {
1142                 printk(KERN_INFO "SMP mode deactivated.\n");
1143                 smpboot_clear_io_apic();
1144
1145                 localise_nmi_watchdog();
1146
1147 #ifdef CONFIG_X86_32
1148                 connect_bsp_APIC();
1149 #endif
1150                 setup_local_APIC();
1151                 end_local_APIC_setup();
1152                 return -1;
1153         }
1154
1155         return 0;
1156 }
1157
1158 static void __init smp_cpu_index_default(void)
1159 {
1160         int i;
1161         struct cpuinfo_x86 *c;
1162
1163         for_each_possible_cpu(i) {
1164                 c = &cpu_data(i);
1165                 /* mark all to hotplug */
1166                 c->cpu_index = NR_CPUS;
1167         }
1168 }
1169
1170 /*
1171  * Prepare for SMP bootup.  The MP table or ACPI has been read
1172  * earlier.  Just do some sanity checking here and enable APIC mode.
1173  */
1174 void __init native_smp_prepare_cpus(unsigned int max_cpus)
1175 {
1176         preempt_disable();
1177         nmi_watchdog_default();
1178         smp_cpu_index_default();
1179         current_cpu_data = boot_cpu_data;
1180         cpu_callin_map = cpumask_of_cpu(0);
1181         mb();
1182         /*
1183          * Setup boot CPU information
1184          */
1185         smp_store_cpu_info(0); /* Final full version of the data */
1186         boot_cpu_logical_apicid = logical_smp_processor_id();
1187         current_thread_info()->cpu = 0;  /* needed? */
1188         set_cpu_sibling_map(0);
1189
1190         if (smp_sanity_check(max_cpus) < 0) {
1191                 printk(KERN_INFO "SMP disabled\n");
1192                 disable_smp();
1193                 goto out;
1194         }
1195
1196         preempt_disable();
1197         if (GET_APIC_ID(read_apic_id()) != boot_cpu_physical_apicid) {
1198                 panic("Boot APIC ID in local APIC unexpected (%d vs %d)",
1199                      GET_APIC_ID(read_apic_id()), boot_cpu_physical_apicid);
1200                 /* Or can we switch back to PIC here? */
1201         }
1202         preempt_enable();
1203
1204 #ifdef CONFIG_X86_32
1205         connect_bsp_APIC();
1206 #endif
1207         /*
1208          * Switch from PIC to APIC mode.
1209          */
1210         setup_local_APIC();
1211
1212 #ifdef CONFIG_X86_64
1213         /*
1214          * Enable IO APIC before setting up error vector
1215          */
1216         if (!skip_ioapic_setup && nr_ioapics)
1217                 enable_IO_APIC();
1218 #endif
1219         end_local_APIC_setup();
1220
1221         map_cpu_to_logical_apicid();
1222
1223         setup_portio_remap();
1224
1225         smpboot_setup_io_apic();
1226         /*
1227          * Set up local APIC timer on boot CPU.
1228          */
1229
1230         printk(KERN_INFO "CPU%d: ", 0);
1231         print_cpu_info(&cpu_data(0));
1232         setup_boot_clock();
1233 out:
1234         preempt_enable();
1235 }
1236 /*
1237  * Early setup to make printk work.
1238  */
1239 void __init native_smp_prepare_boot_cpu(void)
1240 {
1241         int me = smp_processor_id();
1242 #ifdef CONFIG_X86_32
1243         init_gdt(me);
1244         switch_to_new_gdt();
1245 #endif
1246         /* already set me in cpu_online_map in boot_cpu_init() */
1247         cpu_set(me, cpu_callout_map);
1248         per_cpu(cpu_state, me) = CPU_ONLINE;
1249 }
1250
1251 void __init native_smp_cpus_done(unsigned int max_cpus)
1252 {
1253         Dprintk("Boot done.\n");
1254
1255         impress_friends();
1256         smp_checks();
1257 #ifdef CONFIG_X86_IO_APIC
1258         setup_ioapic_dest();
1259 #endif
1260         check_nmi_watchdog();
1261 }
1262
1263 #ifdef CONFIG_HOTPLUG_CPU
1264
1265 #  ifdef CONFIG_X86_32
1266 void cpu_exit_clear(void)
1267 {
1268         int cpu = raw_smp_processor_id();
1269
1270         idle_task_exit();
1271
1272         cpu_uninit();
1273         irq_ctx_exit(cpu);
1274
1275         cpu_clear(cpu, cpu_callout_map);
1276         cpu_clear(cpu, cpu_callin_map);
1277
1278         unmap_cpu_to_logical_apicid(cpu);
1279 }
1280 #  endif /* CONFIG_X86_32 */
1281
1282 static void remove_siblinginfo(int cpu)
1283 {
1284         int sibling;
1285         struct cpuinfo_x86 *c = &cpu_data(cpu);
1286
1287         for_each_cpu_mask(sibling, per_cpu(cpu_core_map, cpu)) {
1288                 cpu_clear(cpu, per_cpu(cpu_core_map, sibling));
1289                 /*/
1290                  * last thread sibling in this cpu core going down
1291                  */
1292                 if (cpus_weight(per_cpu(cpu_sibling_map, cpu)) == 1)
1293                         cpu_data(sibling).booted_cores--;
1294         }
1295
1296         for_each_cpu_mask(sibling, per_cpu(cpu_sibling_map, cpu))
1297                 cpu_clear(cpu, per_cpu(cpu_sibling_map, sibling));
1298         cpus_clear(per_cpu(cpu_sibling_map, cpu));
1299         cpus_clear(per_cpu(cpu_core_map, cpu));
1300         c->phys_proc_id = 0;
1301         c->cpu_core_id = 0;
1302         cpu_clear(cpu, cpu_sibling_setup_map);
1303 }
1304
1305 static int additional_cpus __initdata = -1;
1306
1307 static __init int setup_additional_cpus(char *s)
1308 {
1309         return s && get_option(&s, &additional_cpus) ? 0 : -EINVAL;
1310 }
1311 early_param("additional_cpus", setup_additional_cpus);
1312
1313 /*
1314  * cpu_possible_map should be static, it cannot change as cpu's
1315  * are onlined, or offlined. The reason is per-cpu data-structures
1316  * are allocated by some modules at init time, and dont expect to
1317  * do this dynamically on cpu arrival/departure.
1318  * cpu_present_map on the other hand can change dynamically.
1319  * In case when cpu_hotplug is not compiled, then we resort to current
1320  * behaviour, which is cpu_possible == cpu_present.
1321  * - Ashok Raj
1322  *
1323  * Three ways to find out the number of additional hotplug CPUs:
1324  * - If the BIOS specified disabled CPUs in ACPI/mptables use that.
1325  * - The user can overwrite it with additional_cpus=NUM
1326  * - Otherwise don't reserve additional CPUs.
1327  * We do this because additional CPUs waste a lot of memory.
1328  * -AK
1329  */
1330 __init void prefill_possible_map(void)
1331 {
1332         int i;
1333         int possible;
1334
1335         if (additional_cpus == -1) {
1336                 if (disabled_cpus > 0)
1337                         additional_cpus = disabled_cpus;
1338                 else
1339                         additional_cpus = 0;
1340         }
1341         possible = num_processors + additional_cpus;
1342         if (possible > NR_CPUS)
1343                 possible = NR_CPUS;
1344
1345         printk(KERN_INFO "SMP: Allowing %d CPUs, %d hotplug CPUs\n",
1346                 possible, max_t(int, possible - num_processors, 0));
1347
1348         for (i = 0; i < possible; i++)
1349                 cpu_set(i, cpu_possible_map);
1350 }
1351
1352 static void __ref remove_cpu_from_maps(int cpu)
1353 {
1354         cpu_clear(cpu, cpu_online_map);
1355 #ifdef CONFIG_X86_64
1356         cpu_clear(cpu, cpu_callout_map);
1357         cpu_clear(cpu, cpu_callin_map);
1358         /* was set by cpu_init() */
1359         clear_bit(cpu, (unsigned long *)&cpu_initialized);
1360         clear_node_cpumask(cpu);
1361 #endif
1362 }
1363
1364 int __cpu_disable(void)
1365 {
1366         int cpu = smp_processor_id();
1367
1368         /*
1369          * Perhaps use cpufreq to drop frequency, but that could go
1370          * into generic code.
1371          *
1372          * We won't take down the boot processor on i386 due to some
1373          * interrupts only being able to be serviced by the BSP.
1374          * Especially so if we're not using an IOAPIC   -zwane
1375          */
1376         if (cpu == 0)
1377                 return -EBUSY;
1378
1379         if (nmi_watchdog == NMI_LOCAL_APIC)
1380                 stop_apic_nmi_watchdog(NULL);
1381         clear_local_APIC();
1382
1383         /*
1384          * HACK:
1385          * Allow any queued timer interrupts to get serviced
1386          * This is only a temporary solution until we cleanup
1387          * fixup_irqs as we do for IA64.
1388          */
1389         local_irq_enable();
1390         mdelay(1);
1391
1392         local_irq_disable();
1393         remove_siblinginfo(cpu);
1394
1395         /* It's now safe to remove this processor from the online map */
1396         remove_cpu_from_maps(cpu);
1397         fixup_irqs(cpu_online_map);
1398         return 0;
1399 }
1400
1401 void __cpu_die(unsigned int cpu)
1402 {
1403         /* We don't do anything here: idle task is faking death itself. */
1404         unsigned int i;
1405
1406         for (i = 0; i < 10; i++) {
1407                 /* They ack this in play_dead by setting CPU_DEAD */
1408                 if (per_cpu(cpu_state, cpu) == CPU_DEAD) {
1409                         printk(KERN_INFO "CPU %d is now offline\n", cpu);
1410                         if (1 == num_online_cpus())
1411                                 alternatives_smp_switch(0);
1412                         return;
1413                 }
1414                 msleep(100);
1415         }
1416         printk(KERN_ERR "CPU %u didn't die...\n", cpu);
1417 }
1418 #else /* ... !CONFIG_HOTPLUG_CPU */
1419 int __cpu_disable(void)
1420 {
1421         return -ENOSYS;
1422 }
1423
1424 void __cpu_die(unsigned int cpu)
1425 {
1426         /* We said "no" in __cpu_disable */
1427         BUG();
1428 }
1429 #endif
1430
1431 /*
1432  * If the BIOS enumerates physical processors before logical,
1433  * maxcpus=N at enumeration-time can be used to disable HT.
1434  */
1435 static int __init parse_maxcpus(char *arg)
1436 {
1437         extern unsigned int maxcpus;
1438
1439         maxcpus = simple_strtoul(arg, NULL, 0);
1440         return 0;
1441 }
1442 early_param("maxcpus", parse_maxcpus);