2 * x86 SMP booting functions
4 * (c) 1995 Alan Cox, Building #3 <alan@redhat.com>
5 * (c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com>
7 * Much of the core SMP work is based on previous work by Thomas Radke, to
8 * whom a great many thanks are extended.
10 * Thanks to Intel for making available several different Pentium,
11 * Pentium Pro and Pentium-II/Xeon MP machines.
12 * Original development of Linux SMP code supported by Caldera.
14 * This code is released under the GNU General Public License version 2 or
18 * Felix Koop : NR_CPUS used properly
19 * Jose Renau : Handle single CPU case.
20 * Alan Cox : By repeated request 8) - Total BogoMIPS report.
21 * Greg Wright : Fix for kernel stacks panic.
22 * Erich Boleyn : MP v1.4 and additional changes.
23 * Matthias Sattler : Changes for 2.1 kernel map.
24 * Michel Lespinasse : Changes for 2.1 kernel map.
25 * Michael Chastain : Change trampoline.S to gnu as.
26 * Alan Cox : Dumb bug: 'B' step PPro's are fine
27 * Ingo Molnar : Added APIC timers, based on code
29 * Ingo Molnar : various cleanups and rewrites
30 * Tigran Aivazian : fixed "0.00 in /proc/uptime on SMP" bug.
31 * Maciej W. Rozycki : Bits for genuine 82489DX APICs
32 * Martin J. Bligh : Added support for multi-quad systems
33 * Dave Jones : Report invalid combinations of Athlon CPUs.
34 * Rusty Russell : Hacked into shape for new "hotplug" boot process. */
36 #include <linux/module.h>
37 #include <linux/init.h>
38 #include <linux/kernel.h>
41 #include <linux/sched.h>
42 #include <linux/kernel_stat.h>
43 #include <linux/bootmem.h>
44 #include <linux/notifier.h>
45 #include <linux/cpu.h>
46 #include <linux/percpu.h>
47 #include <linux/nmi.h>
49 #include <linux/delay.h>
50 #include <linux/mc146818rtc.h>
51 #include <asm/tlbflush.h>
53 #include <asm/arch_hooks.h>
56 #include <mach_apic.h>
57 #include <mach_wakecpu.h>
58 #include <smpboot_hooks.h>
62 static cpumask_t smp_commenced_mask;
64 /* which logical CPU number maps to which CPU (physical APIC ID) */
65 u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
66 { [0 ... NR_CPUS-1] = BAD_APICID };
67 void *x86_cpu_to_apicid_early_ptr;
68 DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID;
69 EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
71 u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
72 = { [0 ... NR_CPUS-1] = BAD_APICID };
73 void *x86_bios_cpu_apicid_early_ptr;
74 DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
75 EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
77 u8 apicid_2_node[MAX_APICID];
79 static void map_cpu_to_logical_apicid(void);
81 /* State of each CPU. */
82 DEFINE_PER_CPU(int, cpu_state) = { 0 };
84 static atomic_t init_deasserted;
86 static void __cpuinit smp_callin(void)
89 unsigned long timeout;
92 * If waken up by an INIT in an 82489DX configuration
93 * we may get here before an INIT-deassert IPI reaches
94 * our local APIC. We have to wait for the IPI or we'll
95 * lock up on an APIC access.
97 wait_for_init_deassert(&init_deasserted);
100 * (This works even if the APIC is not enabled.)
102 phys_id = GET_APIC_ID(apic_read(APIC_ID));
103 cpuid = smp_processor_id();
104 if (cpu_isset(cpuid, cpu_callin_map)) {
105 printk("huh, phys CPU#%d, CPU#%d already present??\n",
109 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
112 * STARTUP IPIs are fragile beasts as they might sometimes
113 * trigger some glue motherboard logic. Complete APIC bus
114 * silence for 1 second, this overestimates the time the
115 * boot CPU is spending to send the up to 2 STARTUP IPIs
116 * by a factor of two. This should be enough.
120 * Waiting 2s total for startup (udelay is not yet working)
122 timeout = jiffies + 2*HZ;
123 while (time_before(jiffies, timeout)) {
125 * Has the boot CPU finished it's STARTUP sequence?
127 if (cpu_isset(cpuid, cpu_callout_map))
132 if (!time_before(jiffies, timeout)) {
133 printk("BUG: CPU%d started up but did not get a callout!\n",
139 * the boot CPU has finished the init stage and is spinning
140 * on callin_map until we finish. We are free to set up this
141 * CPU, first the APIC. (this is probably redundant on most
145 Dprintk("CALLIN, before setup_local_APIC().\n");
146 smp_callin_clear_local_apic();
148 map_cpu_to_logical_apicid();
154 Dprintk("Stack at about %p\n",&cpuid);
157 * Save our processor parameters
159 smp_store_cpu_info(cpuid);
162 * Allow the master to continue.
164 cpu_set(cpuid, cpu_callin_map);
168 * Activate a secondary processor.
170 static void __cpuinit start_secondary(void *unused)
173 * Don't put *anything* before cpu_init(), SMP booting is too
174 * fragile that we want to limit the things done here to the
175 * most necessary things.
183 while (!cpu_isset(smp_processor_id(), smp_commenced_mask))
186 /* otherwise gcc will move up smp_processor_id before the cpu_init */
189 * Check TSC synchronization with the BP:
191 check_tsc_sync_target();
193 if (nmi_watchdog == NMI_IO_APIC) {
194 disable_8259A_irq(0);
195 enable_NMI_through_LVT0();
199 * low-memory mappings have been cleared, flush them from
200 * the local TLBs too.
204 /* This must be done before setting cpu_online_map */
205 set_cpu_sibling_map(raw_smp_processor_id());
209 * We need to hold call_lock, so there is no inconsistency
210 * between the time smp_call_function() determines number of
211 * IPI recipients, and the time when the determination is made
212 * for which cpus receive the IPI. Holding this
213 * lock helps us to not include this cpu in a currently in progress
214 * smp_call_function().
216 lock_ipi_call_lock();
217 cpu_set(smp_processor_id(), cpu_online_map);
218 unlock_ipi_call_lock();
219 per_cpu(cpu_state, smp_processor_id()) = CPU_ONLINE;
221 setup_secondary_clock();
228 * Everything has been set up for the secondary
229 * CPUs - they just need to reload everything
230 * from the task structure
231 * This function must not return.
233 void __devinit initialize_secondary(void)
236 * We don't actually need to load the full TSS,
237 * basically just the stack pointer and the ip.
244 :"m" (current->thread.sp),"m" (current->thread.ip));
247 /* Static state in head.S used to set up a CPU */
255 /* which logical CPUs are on which nodes */
256 cpumask_t node_to_cpumask_map[MAX_NUMNODES] __read_mostly =
257 { [0 ... MAX_NUMNODES-1] = CPU_MASK_NONE };
258 EXPORT_SYMBOL(node_to_cpumask_map);
259 /* which node each logical CPU is on */
260 int cpu_to_node_map[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = 0 };
261 EXPORT_SYMBOL(cpu_to_node_map);
263 /* set up a mapping between cpu and node. */
264 static inline void map_cpu_to_node(int cpu, int node)
266 printk("Mapping cpu %d to node %d\n", cpu, node);
267 cpu_set(cpu, node_to_cpumask_map[node]);
268 cpu_to_node_map[cpu] = node;
271 /* undo a mapping between cpu and node. */
272 static inline void unmap_cpu_to_node(int cpu)
276 printk("Unmapping cpu %d from all nodes\n", cpu);
277 for (node = 0; node < MAX_NUMNODES; node ++)
278 cpu_clear(cpu, node_to_cpumask_map[node]);
279 cpu_to_node_map[cpu] = 0;
281 #else /* !CONFIG_NUMA */
283 #define map_cpu_to_node(cpu, node) ({})
284 #define unmap_cpu_to_node(cpu) ({})
286 #endif /* CONFIG_NUMA */
288 u8 cpu_2_logical_apicid[NR_CPUS] __read_mostly = { [0 ... NR_CPUS-1] = BAD_APICID };
290 static void map_cpu_to_logical_apicid(void)
292 int cpu = smp_processor_id();
293 int apicid = logical_smp_processor_id();
294 int node = apicid_to_node(apicid);
296 if (!node_online(node))
297 node = first_online_node;
299 cpu_2_logical_apicid[cpu] = apicid;
300 map_cpu_to_node(cpu, node);
303 static void unmap_cpu_to_logical_apicid(int cpu)
305 cpu_2_logical_apicid[cpu] = BAD_APICID;
306 unmap_cpu_to_node(cpu);
309 static inline void __inquire_remote_apic(int apicid)
311 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
312 char *names[] = { "ID", "VERSION", "SPIV" };
316 printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
318 for (i = 0; i < ARRAY_SIZE(regs); i++) {
319 printk(KERN_INFO "... APIC #%d %s: ", apicid, names[i]);
324 status = safe_apic_wait_icr_idle();
327 "a previous APIC delivery may have failed\n");
329 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
330 apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
335 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
336 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
339 case APIC_ICR_RR_VALID:
340 status = apic_read(APIC_RRR);
341 printk(KERN_CONT "%08x\n", status);
344 printk(KERN_CONT "failed\n");
349 #ifdef WAKE_SECONDARY_VIA_NMI
351 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
352 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
353 * won't ... remember to clear down the APIC, etc later.
356 wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
358 unsigned long send_status, accept_status = 0;
362 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
364 /* Boot on the stack */
365 /* Kick the second */
366 apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
368 Dprintk("Waiting for send to finish...\n");
369 send_status = safe_apic_wait_icr_idle();
372 * Give the other CPU some time to accept the IPI.
376 * Due to the Pentium erratum 3AP.
378 maxlvt = lapic_get_maxlvt();
380 apic_read_around(APIC_SPIV);
381 apic_write(APIC_ESR, 0);
383 accept_status = (apic_read(APIC_ESR) & 0xEF);
384 Dprintk("NMI sent.\n");
387 printk("APIC never delivered???\n");
389 printk("APIC delivery error (%lx).\n", accept_status);
391 return (send_status | accept_status);
393 #endif /* WAKE_SECONDARY_VIA_NMI */
395 #ifdef WAKE_SECONDARY_VIA_INIT
397 wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
399 unsigned long send_status, accept_status = 0;
400 int maxlvt, num_starts, j;
403 * Be paranoid about clearing APIC errors.
405 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
406 apic_read_around(APIC_SPIV);
407 apic_write(APIC_ESR, 0);
411 Dprintk("Asserting INIT.\n");
414 * Turn INIT on target chip
416 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
421 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
424 Dprintk("Waiting for send to finish...\n");
425 send_status = safe_apic_wait_icr_idle();
429 Dprintk("Deasserting INIT.\n");
432 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
435 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
437 Dprintk("Waiting for send to finish...\n");
438 send_status = safe_apic_wait_icr_idle();
441 atomic_set(&init_deasserted, 1);
444 * Should we send STARTUP IPIs ?
446 * Determine this based on the APIC version.
447 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
449 if (APIC_INTEGRATED(apic_version[phys_apicid]))
455 * Paravirt / VMI wants a startup IPI hook here to set up the
456 * target processor state.
458 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
459 (unsigned long) stack_start.sp);
462 * Run STARTUP IPI loop.
464 Dprintk("#startup loops: %d.\n", num_starts);
466 maxlvt = lapic_get_maxlvt();
468 for (j = 1; j <= num_starts; j++) {
469 Dprintk("Sending STARTUP #%d.\n",j);
470 apic_read_around(APIC_SPIV);
471 apic_write(APIC_ESR, 0);
473 Dprintk("After apic_write.\n");
480 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
482 /* Boot on the stack */
483 /* Kick the second */
484 apic_write_around(APIC_ICR, APIC_DM_STARTUP
485 | (start_eip >> 12));
488 * Give the other CPU some time to accept the IPI.
492 Dprintk("Startup point 1.\n");
494 Dprintk("Waiting for send to finish...\n");
495 send_status = safe_apic_wait_icr_idle();
498 * Give the other CPU some time to accept the IPI.
502 * Due to the Pentium erratum 3AP.
505 apic_read_around(APIC_SPIV);
506 apic_write(APIC_ESR, 0);
508 accept_status = (apic_read(APIC_ESR) & 0xEF);
509 if (send_status || accept_status)
512 Dprintk("After Startup.\n");
515 printk("APIC never delivered???\n");
517 printk("APIC delivery error (%lx).\n", accept_status);
519 return (send_status | accept_status);
521 #endif /* WAKE_SECONDARY_VIA_INIT */
523 extern cpumask_t cpu_initialized;
525 #ifdef CONFIG_HOTPLUG_CPU
526 static struct task_struct * __cpuinitdata cpu_idle_tasks[NR_CPUS];
527 static inline struct task_struct * __cpuinit alloc_idle_task(int cpu)
529 struct task_struct *idle;
531 if ((idle = cpu_idle_tasks[cpu]) != NULL) {
532 /* initialize thread_struct. we really want to avoid destroy
535 idle->thread.sp = (unsigned long)task_pt_regs(idle);
536 init_idle(idle, cpu);
539 idle = fork_idle(cpu);
542 cpu_idle_tasks[cpu] = idle;
546 #define alloc_idle_task(cpu) fork_idle(cpu)
549 static int __cpuinit do_boot_cpu(int apicid, int cpu)
551 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
552 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
553 * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
556 struct task_struct *idle;
557 unsigned long boot_error;
559 unsigned long start_eip;
560 unsigned short nmi_high = 0, nmi_low = 0;
563 * Save current MTRR state in case it was changed since early boot
564 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
569 * We can't use kernel_thread since we must avoid to
570 * reschedule the child.
572 idle = alloc_idle_task(cpu);
574 panic("failed fork for CPU %d", cpu);
577 per_cpu(current_task, cpu) = idle;
578 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
580 idle->thread.ip = (unsigned long) start_secondary;
581 /* start_eip had better be page-aligned! */
582 start_eip = setup_trampoline();
584 alternatives_smp_switch(1);
586 /* So we see what's up */
587 printk("Booting processor %d/%d ip %lx\n", cpu, apicid, start_eip);
588 /* Stack for startup_32 can be just as for start_secondary onwards */
589 stack_start.sp = (void *) idle->thread.sp;
594 * This grunge runs the startup process for
595 * the targeted processor.
598 atomic_set(&init_deasserted, 0);
600 Dprintk("Setting warm reset code and vector.\n");
602 store_NMI_vector(&nmi_high, &nmi_low);
604 smpboot_setup_warm_reset_vector(start_eip);
607 * Starting actual IPI sequence...
609 boot_error = wakeup_secondary_cpu(apicid, start_eip);
613 * allow APs to start initializing.
615 Dprintk("Before Callout %d.\n", cpu);
616 cpu_set(cpu, cpu_callout_map);
617 Dprintk("After Callout %d.\n", cpu);
620 * Wait 5s total for a response
622 for (timeout = 0; timeout < 50000; timeout++) {
623 if (cpu_isset(cpu, cpu_callin_map))
624 break; /* It has booted */
628 if (cpu_isset(cpu, cpu_callin_map)) {
629 /* number CPUs logically, starting from 1 (BSP is 0) */
631 printk("CPU%d: ", cpu);
632 print_cpu_info(&cpu_data(cpu));
633 Dprintk("CPU has booted.\n");
636 if (*((volatile unsigned char *)trampoline_base)
638 /* trampoline started but...? */
639 printk("Stuck ??\n");
641 /* trampoline code not run */
642 printk("Not responding.\n");
643 inquire_remote_apic(apicid);
648 /* Try to put things back the way they were before ... */
649 unmap_cpu_to_logical_apicid(cpu);
650 cpu_clear(cpu, cpu_callout_map); /* was set here (do_boot_cpu()) */
651 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
652 cpu_clear(cpu, cpu_possible_map);
653 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
656 /* mark "stuck" area as not stuck */
657 *((volatile unsigned long *)trampoline_base) = 0;
662 #ifdef CONFIG_HOTPLUG_CPU
663 void cpu_exit_clear(void)
665 int cpu = raw_smp_processor_id();
672 cpu_clear(cpu, cpu_callout_map);
673 cpu_clear(cpu, cpu_callin_map);
675 cpu_clear(cpu, smp_commenced_mask);
676 unmap_cpu_to_logical_apicid(cpu);
679 struct warm_boot_cpu_info {
680 struct completion *complete;
681 struct work_struct task;
686 static void __cpuinit do_warm_boot_cpu(struct work_struct *work)
688 struct warm_boot_cpu_info *info =
689 container_of(work, struct warm_boot_cpu_info, task);
690 do_boot_cpu(info->apicid, info->cpu);
691 complete(info->complete);
694 static void __cpuinit __smp_prepare_cpu(int cpu)
696 DECLARE_COMPLETION_ONSTACK(done);
697 struct warm_boot_cpu_info info;
700 apicid = per_cpu(x86_cpu_to_apicid, cpu);
702 info.complete = &done;
703 info.apicid = apicid;
705 INIT_WORK(&info.task, do_warm_boot_cpu);
707 /* init low mem mapping */
708 clone_pgd_range(swapper_pg_dir, swapper_pg_dir + USER_PGD_PTRS,
709 min_t(unsigned long, KERNEL_PGD_PTRS, USER_PGD_PTRS));
711 schedule_work(&info.task);
712 wait_for_completion(&done);
718 static int boot_cpu_logical_apicid;
719 /* Where the IO area was mapped on multiquad, always 0 otherwise */
721 #ifdef CONFIG_X86_NUMAQ
722 EXPORT_SYMBOL(xquad_portio);
725 static void __init disable_smp(void)
727 cpu_possible_map = cpumask_of_cpu(0);
728 cpu_present_map = cpumask_of_cpu(0);
729 smpboot_clear_io_apic_irqs();
730 phys_cpu_present_map = physid_mask_of_physid(0);
731 map_cpu_to_logical_apicid();
732 cpu_set(0, per_cpu(cpu_sibling_map, 0));
733 cpu_set(0, per_cpu(cpu_core_map, 0));
736 static int __init smp_sanity_check(unsigned max_cpus)
739 * If we couldn't find an SMP configuration at boot time,
740 * get out of here now!
742 if (!smp_found_config && !acpi_lapic) {
743 printk(KERN_NOTICE "SMP motherboard not detected.\n");
745 if (APIC_init_uniprocessor())
746 printk(KERN_NOTICE "Local APIC not detected."
747 " Using dummy APIC emulation.\n");
752 * Should not be necessary because the MP table should list the boot
753 * CPU too, but we do it for the sake of robustness anyway.
754 * Makes no sense to do this check in clustered apic mode, so skip it
756 if (!check_phys_apicid_present(boot_cpu_physical_apicid)) {
757 printk("weird, boot CPU (#%d) not listed by the BIOS.\n",
758 boot_cpu_physical_apicid);
759 physid_set(hard_smp_processor_id(), phys_cpu_present_map);
763 * If we couldn't find a local APIC, then get out of here now!
765 if (APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid]) && !cpu_has_apic) {
766 printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
767 boot_cpu_physical_apicid);
768 printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
775 * If SMP should be disabled, then really disable it!
778 smp_found_config = 0;
779 printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n");
781 if (nmi_watchdog == NMI_LOCAL_APIC) {
782 printk(KERN_INFO "activating minimal APIC for NMI watchdog use.\n");
792 * Cycle through the processors sending APIC IPIs to boot each.
794 static void __init smp_boot_cpus(unsigned int max_cpus)
796 int apicid, cpu, bit, kicked;
799 * Setup boot CPU information
801 smp_store_cpu_info(0); /* Final full version of the data */
802 printk(KERN_INFO "CPU%d: ", 0);
803 print_cpu_info(&cpu_data(0));
805 boot_cpu_physical_apicid = GET_APIC_ID(apic_read(APIC_ID));
806 boot_cpu_logical_apicid = logical_smp_processor_id();
808 current_thread_info()->cpu = 0;
810 set_cpu_sibling_map(0);
812 if (smp_sanity_check(max_cpus) < 0) {
813 printk(KERN_INFO "SMP disabled\n");
820 map_cpu_to_logical_apicid();
823 setup_portio_remap();
826 * Scan the CPU present map and fire up the other CPUs via do_boot_cpu
828 * In clustered apic mode, phys_cpu_present_map is a constructed thus:
829 * bits 0-3 are quad0, 4-7 are quad1, etc. A perverse twist on the
832 Dprintk("CPU present map: %lx\n", physids_coerce(phys_cpu_present_map));
835 for (bit = 0; kicked < NR_CPUS && bit < MAX_APICS; bit++) {
836 apicid = cpu_present_to_apicid(bit);
838 * Don't even attempt to start the boot CPU!
840 if ((apicid == boot_cpu_apicid) || (apicid == BAD_APICID))
843 if (!check_apicid_present(bit))
845 if (max_cpus <= cpus_weight(cpu_present_map))
847 /* Utterly temporary */
848 for (cpu = 0; cpu < NR_CPUS; cpu++)
849 if (per_cpu(x86_cpu_to_apicid, cpu) == apicid)
851 if (do_boot_cpu(apicid, cpu))
852 printk("CPU #%d not responding - cannot use it.\n",
859 * construct cpu_sibling_map, so that we can tell sibling CPUs
862 for_each_possible_cpu(cpu) {
863 cpus_clear(per_cpu(cpu_sibling_map, cpu));
864 cpus_clear(per_cpu(cpu_core_map, cpu));
867 cpu_set(0, per_cpu(cpu_sibling_map, 0));
868 cpu_set(0, per_cpu(cpu_core_map, 0));
870 smpboot_setup_io_apic();
875 /* These are wrappers to interface to the new boot process. Someone
876 who understands all this stuff should rewrite it properly. --RR 15/Jul/02 */
877 void __init native_smp_prepare_cpus(unsigned int max_cpus)
879 smp_commenced_mask = cpumask_of_cpu(0);
880 cpu_callin_map = cpumask_of_cpu(0);
882 smp_boot_cpus(max_cpus);
885 void __init native_smp_prepare_boot_cpu(void)
887 unsigned int cpu = smp_processor_id();
892 cpu_set(cpu, cpu_online_map);
893 cpu_set(cpu, cpu_callout_map);
894 cpu_set(cpu, cpu_present_map);
895 cpu_set(cpu, cpu_possible_map);
896 __get_cpu_var(cpu_state) = CPU_ONLINE;
899 int __cpuinit native_cpu_up(unsigned int cpu)
901 int apicid = cpu_present_to_apicid(cpu);
904 WARN_ON(irqs_disabled());
906 Dprintk("++++++++++++++++++++=_---CPU UP %u\n", cpu);
908 if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
909 !physid_isset(apicid, phys_cpu_present_map)) {
910 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
914 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
915 #ifdef CONFIG_HOTPLUG_CPU
918 * We do warm boot only on cpus that had booted earlier
919 * Otherwise cold boot is all handled from smp_boot_cpus().
920 * cpu_callin_map is set during AP kickstart process. Its reset
921 * when a cpu is taken offline from cpu_exit_clear().
923 if (!cpu_isset(cpu, cpu_callin_map))
924 __smp_prepare_cpu(cpu);
927 /* In case one didn't come up */
928 if (!cpu_isset(cpu, cpu_callin_map)) {
929 printk(KERN_DEBUG "skipping cpu%d, didn't come online\n", cpu);
933 /* Unleash the CPU! */
934 cpu_set(cpu, smp_commenced_mask);
937 * Check TSC synchronization with the AP (keep irqs disabled
940 local_irq_save(flags);
941 check_tsc_sync_source(cpu);
942 local_irq_restore(flags);
944 while (!cpu_isset(cpu, cpu_online_map)) {
946 touch_nmi_watchdog();
952 extern void impress_friends(void);
953 extern void smp_checks(void);
955 void __init native_smp_cpus_done(unsigned int max_cpus)
958 * Cleanup possible dangling ends...
960 smpboot_restore_warm_reset_vector();
962 Dprintk("Boot done.\n");
966 #ifdef CONFIG_X86_IO_APIC