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