aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot.c
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-03-19 13:25:59 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:03 -0400
commitcb3c8b9003f15efa4a750a32d2d602d40cc45d5a (patch)
tree204a84d85c000f8453557d001557aaf4c0855434 /arch/x86/kernel/smpboot.c
parentc70dcb74309cedfa64f0060f4a84792e873ceb53 (diff)
x86: integrate do_boot_cpu
This is a very large patch, because it depends on a lot of auxiliary static functions. But they all have been modified to the point that they're sufficiently close now. So they're just merged in smpboot.c Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r--arch/x86/kernel/smpboot.c588
1 files changed, 588 insertions, 0 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 5bff87e99898..69c17965f48d 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -4,14 +4,42 @@
4#include <linux/sched.h> 4#include <linux/sched.h>
5#include <linux/percpu.h> 5#include <linux/percpu.h>
6#include <linux/bootmem.h> 6#include <linux/bootmem.h>
7#include <linux/err.h>
8#include <linux/nmi.h>
7 9
10#include <asm/desc.h>
8#include <asm/nmi.h> 11#include <asm/nmi.h>
9#include <asm/irq.h> 12#include <asm/irq.h>
10#include <asm/smp.h> 13#include <asm/smp.h>
11#include <asm/cpu.h> 14#include <asm/cpu.h>
12#include <asm/numa.h> 15#include <asm/numa.h>
16#include <asm/pgtable.h>
17#include <asm/tlbflush.h>
18#include <asm/mtrr.h>
19#include <asm/nmi.h>
20#include <linux/mc146818rtc.h>
13 21
14#include <mach_apic.h> 22#include <mach_apic.h>
23#include <mach_wakecpu.h>
24#include <smpboot_hooks.h>
25
26/* Store all idle threads, this can be reused instead of creating
27* a new thread. Also avoids complicated thread destroy functionality
28* for idle threads.
29*/
30#ifdef CONFIG_HOTPLUG_CPU
31/*
32 * Needed only for CONFIG_HOTPLUG_CPU because __cpuinitdata is
33 * removed after init for !CONFIG_HOTPLUG_CPU.
34 */
35static DEFINE_PER_CPU(struct task_struct *, idle_thread_array);
36#define get_idle_for_cpu(x) (per_cpu(idle_thread_array, x))
37#define set_idle_for_cpu(x, p) (per_cpu(idle_thread_array, x) = (p))
38#else
39struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;
40#define get_idle_for_cpu(x) (idle_thread_array[(x)])
41#define set_idle_for_cpu(x, p) (idle_thread_array[(x)] = (p))
42#endif
15 43
16/* Number of siblings per CPU package */ 44/* Number of siblings per CPU package */
17int smp_num_siblings = 1; 45int smp_num_siblings = 1;
@@ -41,6 +69,8 @@ EXPORT_PER_CPU_SYMBOL(cpu_core_map);
41DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info); 69DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuinfo_x86, cpu_info);
42EXPORT_PER_CPU_SYMBOL(cpu_info); 70EXPORT_PER_CPU_SYMBOL(cpu_info);
43 71
72static atomic_t init_deasserted;
73
44/* ready for x86_64, no harm for x86, since it will overwrite after alloc */ 74/* ready for x86_64, no harm for x86, since it will overwrite after alloc */
45unsigned char *trampoline_base = __va(SMP_TRAMPOLINE_BASE); 75unsigned char *trampoline_base = __va(SMP_TRAMPOLINE_BASE);
46 76
@@ -110,6 +140,96 @@ void unmap_cpu_to_logical_apicid(int cpu)
110#define map_cpu_to_logical_apicid() do {} while (0) 140#define map_cpu_to_logical_apicid() do {} while (0)
111#endif 141#endif
112 142
143/*
144 * Report back to the Boot Processor.
145 * Running on AP.
146 */
147void __cpuinit smp_callin(void)
148{
149 int cpuid, phys_id;
150 unsigned long timeout;
151
152 /*
153 * If waken up by an INIT in an 82489DX configuration
154 * we may get here before an INIT-deassert IPI reaches
155 * our local APIC. We have to wait for the IPI or we'll
156 * lock up on an APIC access.
157 */
158 wait_for_init_deassert(&init_deasserted);
159
160 /*
161 * (This works even if the APIC is not enabled.)
162 */
163 phys_id = GET_APIC_ID(apic_read(APIC_ID));
164 cpuid = smp_processor_id();
165 if (cpu_isset(cpuid, cpu_callin_map)) {
166 panic("%s: phys CPU#%d, CPU#%d already present??\n", __func__,
167 phys_id, cpuid);
168 }
169 Dprintk("CPU#%d (phys ID: %d) waiting for CALLOUT\n", cpuid, phys_id);
170
171 /*
172 * STARTUP IPIs are fragile beasts as they might sometimes
173 * trigger some glue motherboard logic. Complete APIC bus
174 * silence for 1 second, this overestimates the time the
175 * boot CPU is spending to send the up to 2 STARTUP IPIs
176 * by a factor of two. This should be enough.
177 */
178
179 /*
180 * Waiting 2s total for startup (udelay is not yet working)
181 */
182 timeout = jiffies + 2*HZ;
183 while (time_before(jiffies, timeout)) {
184 /*
185 * Has the boot CPU finished it's STARTUP sequence?
186 */
187 if (cpu_isset(cpuid, cpu_callout_map))
188 break;
189 cpu_relax();
190 }
191
192 if (!time_before(jiffies, timeout)) {
193 panic("%s: CPU%d started up but did not get a callout!\n",
194 __func__, cpuid);
195 }
196
197 /*
198 * the boot CPU has finished the init stage and is spinning
199 * on callin_map until we finish. We are free to set up this
200 * CPU, first the APIC. (this is probably redundant on most
201 * boards)
202 */
203
204 Dprintk("CALLIN, before setup_local_APIC().\n");
205 smp_callin_clear_local_apic();
206 setup_local_APIC();
207 end_local_APIC_setup();
208 map_cpu_to_logical_apicid();
209
210 /*
211 * Get our bogomips.
212 *
213 * Need to enable IRQs because it can take longer and then
214 * the NMI watchdog might kill us.
215 */
216 local_irq_enable();
217 calibrate_delay();
218 local_irq_disable();
219 Dprintk("Stack at about %p\n", &cpuid);
220
221 /*
222 * Save our processor parameters
223 */
224 smp_store_cpu_info(cpuid);
225
226 /*
227 * Allow the master to continue.
228 */
229 cpu_set(cpuid, cpu_callin_map);
230}
231
232
113static void __cpuinit smp_apply_quirks(struct cpuinfo_x86 *c) 233static void __cpuinit smp_apply_quirks(struct cpuinfo_x86 *c)
114{ 234{
115#ifdef CONFIG_X86_32 235#ifdef CONFIG_X86_32
@@ -327,6 +447,474 @@ void impress_friends(void)
327 Dprintk("Before bogocount - setting activated=1.\n"); 447 Dprintk("Before bogocount - setting activated=1.\n");
328} 448}
329 449
450static inline void __inquire_remote_apic(int apicid)
451{
452 unsigned i, regs[] = { APIC_ID >> 4, APIC_LVR >> 4, APIC_SPIV >> 4 };
453 char *names[] = { "ID", "VERSION", "SPIV" };
454 int timeout;
455 u32 status;
456
457 printk(KERN_INFO "Inquiring remote APIC #%d...\n", apicid);
458
459 for (i = 0; i < ARRAY_SIZE(regs); i++) {
460 printk(KERN_INFO "... APIC #%d %s: ", apicid, names[i]);
461
462 /*
463 * Wait for idle.
464 */
465 status = safe_apic_wait_icr_idle();
466 if (status)
467 printk(KERN_CONT
468 "a previous APIC delivery may have failed\n");
469
470 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(apicid));
471 apic_write_around(APIC_ICR, APIC_DM_REMRD | regs[i]);
472
473 timeout = 0;
474 do {
475 udelay(100);
476 status = apic_read(APIC_ICR) & APIC_ICR_RR_MASK;
477 } while (status == APIC_ICR_RR_INPROG && timeout++ < 1000);
478
479 switch (status) {
480 case APIC_ICR_RR_VALID:
481 status = apic_read(APIC_RRR);
482 printk(KERN_CONT "%08x\n", status);
483 break;
484 default:
485 printk(KERN_CONT "failed\n");
486 }
487 }
488}
489
490#ifdef WAKE_SECONDARY_VIA_NMI
491/*
492 * Poke the other CPU in the eye via NMI to wake it up. Remember that the normal
493 * INIT, INIT, STARTUP sequence will reset the chip hard for us, and this
494 * won't ... remember to clear down the APIC, etc later.
495 */
496static int __devinit
497wakeup_secondary_cpu(int logical_apicid, unsigned long start_eip)
498{
499 unsigned long send_status, accept_status = 0;
500 int maxlvt;
501
502 /* Target chip */
503 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(logical_apicid));
504
505 /* Boot on the stack */
506 /* Kick the second */
507 apic_write_around(APIC_ICR, APIC_DM_NMI | APIC_DEST_LOGICAL);
508
509 Dprintk("Waiting for send to finish...\n");
510 send_status = safe_apic_wait_icr_idle();
511
512 /*
513 * Give the other CPU some time to accept the IPI.
514 */
515 udelay(200);
516 /*
517 * Due to the Pentium erratum 3AP.
518 */
519 maxlvt = lapic_get_maxlvt();
520 if (maxlvt > 3) {
521 apic_read_around(APIC_SPIV);
522 apic_write(APIC_ESR, 0);
523 }
524 accept_status = (apic_read(APIC_ESR) & 0xEF);
525 Dprintk("NMI sent.\n");
526
527 if (send_status)
528 printk(KERN_ERR "APIC never delivered???\n");
529 if (accept_status)
530 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
531
532 return (send_status | accept_status);
533}
534#endif /* WAKE_SECONDARY_VIA_NMI */
535
536extern void start_secondary(void *unused);
537#ifdef WAKE_SECONDARY_VIA_INIT
538static int __devinit
539wakeup_secondary_cpu(int phys_apicid, unsigned long start_eip)
540{
541 unsigned long send_status, accept_status = 0;
542 int maxlvt, num_starts, j;
543
544 /*
545 * Be paranoid about clearing APIC errors.
546 */
547 if (APIC_INTEGRATED(apic_version[phys_apicid])) {
548 apic_read_around(APIC_SPIV);
549 apic_write(APIC_ESR, 0);
550 apic_read(APIC_ESR);
551 }
552
553 Dprintk("Asserting INIT.\n");
554
555 /*
556 * Turn INIT on target chip
557 */
558 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
559
560 /*
561 * Send IPI
562 */
563 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_INT_ASSERT
564 | APIC_DM_INIT);
565
566 Dprintk("Waiting for send to finish...\n");
567 send_status = safe_apic_wait_icr_idle();
568
569 mdelay(10);
570
571 Dprintk("Deasserting INIT.\n");
572
573 /* Target chip */
574 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
575
576 /* Send IPI */
577 apic_write_around(APIC_ICR, APIC_INT_LEVELTRIG | APIC_DM_INIT);
578
579 Dprintk("Waiting for send to finish...\n");
580 send_status = safe_apic_wait_icr_idle();
581
582 mb();
583 atomic_set(&init_deasserted, 1);
584
585 /*
586 * Should we send STARTUP IPIs ?
587 *
588 * Determine this based on the APIC version.
589 * If we don't have an integrated APIC, don't send the STARTUP IPIs.
590 */
591 if (APIC_INTEGRATED(apic_version[phys_apicid]))
592 num_starts = 2;
593 else
594 num_starts = 0;
595
596 /*
597 * Paravirt / VMI wants a startup IPI hook here to set up the
598 * target processor state.
599 */
600 startup_ipi_hook(phys_apicid, (unsigned long) start_secondary,
601#ifdef CONFIG_X86_64
602 (unsigned long)init_rsp);
603#else
604 (unsigned long)stack_start.sp);
605#endif
606
607 /*
608 * Run STARTUP IPI loop.
609 */
610 Dprintk("#startup loops: %d.\n", num_starts);
611
612 maxlvt = lapic_get_maxlvt();
613
614 for (j = 1; j <= num_starts; j++) {
615 Dprintk("Sending STARTUP #%d.\n", j);
616 apic_read_around(APIC_SPIV);
617 apic_write(APIC_ESR, 0);
618 apic_read(APIC_ESR);
619 Dprintk("After apic_write.\n");
620
621 /*
622 * STARTUP IPI
623 */
624
625 /* Target chip */
626 apic_write_around(APIC_ICR2, SET_APIC_DEST_FIELD(phys_apicid));
627
628 /* Boot on the stack */
629 /* Kick the second */
630 apic_write_around(APIC_ICR, APIC_DM_STARTUP
631 | (start_eip >> 12));
632
633 /*
634 * Give the other CPU some time to accept the IPI.
635 */
636 udelay(300);
637
638 Dprintk("Startup point 1.\n");
639
640 Dprintk("Waiting for send to finish...\n");
641 send_status = safe_apic_wait_icr_idle();
642
643 /*
644 * Give the other CPU some time to accept the IPI.
645 */
646 udelay(200);
647 /*
648 * Due to the Pentium erratum 3AP.
649 */
650 if (maxlvt > 3) {
651 apic_read_around(APIC_SPIV);
652 apic_write(APIC_ESR, 0);
653 }
654 accept_status = (apic_read(APIC_ESR) & 0xEF);
655 if (send_status || accept_status)
656 break;
657 }
658 Dprintk("After Startup.\n");
659
660 if (send_status)
661 printk(KERN_ERR "APIC never delivered???\n");
662 if (accept_status)
663 printk(KERN_ERR "APIC delivery error (%lx).\n", accept_status);
664
665 return (send_status | accept_status);
666}
667#endif /* WAKE_SECONDARY_VIA_INIT */
668
669struct create_idle {
670 struct work_struct work;
671 struct task_struct *idle;
672 struct completion done;
673 int cpu;
674};
675
676static void __cpuinit do_fork_idle(struct work_struct *work)
677{
678 struct create_idle *c_idle =
679 container_of(work, struct create_idle, work);
680
681 c_idle->idle = fork_idle(c_idle->cpu);
682 complete(&c_idle->done);
683}
684
685static int __cpuinit do_boot_cpu(int apicid, int cpu)
686/*
687 * NOTE - on most systems this is a PHYSICAL apic ID, but on multiquad
688 * (ie clustered apic addressing mode), this is a LOGICAL apic ID.
689 * Returns zero if CPU booted OK, else error code from wakeup_secondary_cpu.
690 */
691{
692 unsigned long boot_error = 0;
693 int timeout;
694 unsigned long start_ip;
695 unsigned short nmi_high = 0, nmi_low = 0;
696 struct create_idle c_idle = {
697 .cpu = cpu,
698 .done = COMPLETION_INITIALIZER_ONSTACK(c_idle.done),
699 };
700 INIT_WORK(&c_idle.work, do_fork_idle);
701#ifdef CONFIG_X86_64
702 /* allocate memory for gdts of secondary cpus. Hotplug is considered */
703 if (!cpu_gdt_descr[cpu].address &&
704 !(cpu_gdt_descr[cpu].address = get_zeroed_page(GFP_KERNEL))) {
705 printk(KERN_ERR "Failed to allocate GDT for CPU %d\n", cpu);
706 return -1;
707 }
708
709 /* Allocate node local memory for AP pdas */
710 if (cpu_pda(cpu) == &boot_cpu_pda[cpu]) {
711 struct x8664_pda *newpda, *pda;
712 int node = cpu_to_node(cpu);
713 pda = cpu_pda(cpu);
714 newpda = kmalloc_node(sizeof(struct x8664_pda), GFP_ATOMIC,
715 node);
716 if (newpda) {
717 memcpy(newpda, pda, sizeof(struct x8664_pda));
718 cpu_pda(cpu) = newpda;
719 } else
720 printk(KERN_ERR
721 "Could not allocate node local PDA for CPU %d on node %d\n",
722 cpu, node);
723 }
724#endif
725
726 alternatives_smp_switch(1);
727
728 c_idle.idle = get_idle_for_cpu(cpu);
729
730 /*
731 * We can't use kernel_thread since we must avoid to
732 * reschedule the child.
733 */
734 if (c_idle.idle) {
735 c_idle.idle->thread.sp = (unsigned long) (((struct pt_regs *)
736 (THREAD_SIZE + task_stack_page(c_idle.idle))) - 1);
737 init_idle(c_idle.idle, cpu);
738 goto do_rest;
739 }
740
741 if (!keventd_up() || current_is_keventd())
742 c_idle.work.func(&c_idle.work);
743 else {
744 schedule_work(&c_idle.work);
745 wait_for_completion(&c_idle.done);
746 }
747
748 if (IS_ERR(c_idle.idle)) {
749 printk("failed fork for CPU %d\n", cpu);
750 return PTR_ERR(c_idle.idle);
751 }
752
753 set_idle_for_cpu(cpu, c_idle.idle);
754do_rest:
755#ifdef CONFIG_X86_32
756 per_cpu(current_task, cpu) = c_idle.idle;
757 init_gdt(cpu);
758 early_gdt_descr.address = (unsigned long)get_cpu_gdt_table(cpu);
759 c_idle.idle->thread.ip = (unsigned long) start_secondary;
760 /* Stack for startup_32 can be just as for start_secondary onwards */
761 stack_start.sp = (void *) c_idle.idle->thread.sp;
762 irq_ctx_init(cpu);
763#else
764 cpu_pda(cpu)->pcurrent = c_idle.idle;
765 init_rsp = c_idle.idle->thread.sp;
766 load_sp0(&per_cpu(init_tss, cpu), &c_idle.idle->thread);
767 initial_code = (unsigned long)start_secondary;
768 clear_tsk_thread_flag(c_idle.idle, TIF_FORK);
769#endif
770
771 /* start_ip had better be page-aligned! */
772 start_ip = setup_trampoline();
773
774 /* So we see what's up */
775 printk(KERN_INFO "Booting processor %d/%d ip %lx\n",
776 cpu, apicid, start_ip);
777
778 /*
779 * This grunge runs the startup process for
780 * the targeted processor.
781 */
782
783 atomic_set(&init_deasserted, 0);
784
785 Dprintk("Setting warm reset code and vector.\n");
786
787 store_NMI_vector(&nmi_high, &nmi_low);
788
789 smpboot_setup_warm_reset_vector(start_ip);
790 /*
791 * Be paranoid about clearing APIC errors.
792 */
793 apic_write(APIC_ESR, 0);
794 apic_read(APIC_ESR);
795
796
797 /*
798 * Starting actual IPI sequence...
799 */
800 boot_error = wakeup_secondary_cpu(apicid, start_ip);
801
802 if (!boot_error) {
803 /*
804 * allow APs to start initializing.
805 */
806 Dprintk("Before Callout %d.\n", cpu);
807 cpu_set(cpu, cpu_callout_map);
808 Dprintk("After Callout %d.\n", cpu);
809
810 /*
811 * Wait 5s total for a response
812 */
813 for (timeout = 0; timeout < 50000; timeout++) {
814 if (cpu_isset(cpu, cpu_callin_map))
815 break; /* It has booted */
816 udelay(100);
817 }
818
819 if (cpu_isset(cpu, cpu_callin_map)) {
820 /* number CPUs logically, starting from 1 (BSP is 0) */
821 Dprintk("OK.\n");
822 printk(KERN_INFO "CPU%d: ", cpu);
823 print_cpu_info(&cpu_data(cpu));
824 Dprintk("CPU has booted.\n");
825 } else {
826 boot_error = 1;
827 if (*((volatile unsigned char *)trampoline_base)
828 == 0xA5)
829 /* trampoline started but...? */
830 printk(KERN_ERR "Stuck ??\n");
831 else
832 /* trampoline code not run */
833 printk(KERN_ERR "Not responding.\n");
834 inquire_remote_apic(apicid);
835 }
836 }
837
838 if (boot_error) {
839 /* Try to put things back the way they were before ... */
840 unmap_cpu_to_logical_apicid(cpu);
841#ifdef CONFIG_X86_64
842 clear_node_cpumask(cpu); /* was set by numa_add_cpu */
843#endif
844 cpu_clear(cpu, cpu_callout_map); /* was set by do_boot_cpu() */
845 cpu_clear(cpu, cpu_initialized); /* was set by cpu_init() */
846 cpu_clear(cpu, cpu_possible_map);
847 cpu_clear(cpu, cpu_present_map);
848 per_cpu(x86_cpu_to_apicid, cpu) = BAD_APICID;
849 }
850
851 /* mark "stuck" area as not stuck */
852 *((volatile unsigned long *)trampoline_base) = 0;
853
854 return boot_error;
855}
856
857int __cpuinit native_cpu_up(unsigned int cpu)
858{
859 int apicid = cpu_present_to_apicid(cpu);
860 unsigned long flags;
861 int err;
862
863 WARN_ON(irqs_disabled());
864
865 Dprintk("++++++++++++++++++++=_---CPU UP %u\n", cpu);
866
867 if (apicid == BAD_APICID || apicid == boot_cpu_physical_apicid ||
868 !physid_isset(apicid, phys_cpu_present_map)) {
869 printk(KERN_ERR "%s: bad cpu %d\n", __func__, cpu);
870 return -EINVAL;
871 }
872
873 /*
874 * Already booted CPU?
875 */
876 if (cpu_isset(cpu, cpu_callin_map)) {
877 Dprintk("do_boot_cpu %d Already started\n", cpu);
878 return -ENOSYS;
879 }
880
881 /*
882 * Save current MTRR state in case it was changed since early boot
883 * (e.g. by the ACPI SMI) to initialize new CPUs with MTRRs in sync:
884 */
885 mtrr_save_state();
886
887 per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
888
889#ifdef CONFIG_X86_32
890 /* init low mem mapping */
891 clone_pgd_range(swapper_pg_dir, swapper_pg_dir + USER_PGD_PTRS,
892 min_t(unsigned long, KERNEL_PGD_PTRS, USER_PGD_PTRS));
893 flush_tlb_all();
894#endif
895
896 err = do_boot_cpu(apicid, cpu);
897 if (err < 0) {
898 Dprintk("do_boot_cpu failed %d\n", err);
899 return err;
900 }
901
902 /*
903 * Check TSC synchronization with the AP (keep irqs disabled
904 * while doing so):
905 */
906 local_irq_save(flags);
907 check_tsc_sync_source(cpu);
908 local_irq_restore(flags);
909
910 while (!cpu_isset(cpu, cpu_online_map)) {
911 cpu_relax();
912 touch_nmi_watchdog();
913 }
914
915 return 0;
916}
917
330#ifdef CONFIG_HOTPLUG_CPU 918#ifdef CONFIG_HOTPLUG_CPU
331void remove_siblinginfo(int cpu) 919void remove_siblinginfo(int cpu)
332{ 920{