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