2 * Copyright (c) 1996, by Steve Passe
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. The name of the developer may NOT be used to endorse or promote products
11 * derived from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * $FreeBSD: src/sys/i386/i386/mp_machdep.c,v 1.115.2.15 2003/03/14 21:22:35 jhb Exp $
26 * $DragonFly: src/sys/platform/pc32/i386/mp_machdep.c,v 1.60 2008/06/07 12:03:52 mneumann Exp $
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/sysctl.h>
35 #include <sys/malloc.h>
36 #include <sys/memrange.h>
37 #include <sys/cons.h> /* cngetc() */
38 #include <sys/machintr.h>
41 #include <vm/vm_param.h>
43 #include <vm/vm_kern.h>
44 #include <vm/vm_extern.h>
46 #include <vm/vm_map.h>
52 #include <sys/mplock2.h>
54 #include <machine/smp.h>
55 #include <machine_base/apic/apicreg.h>
56 #include <machine/atomic.h>
57 #include <machine/cpufunc.h>
58 #include <machine/cputypes.h>
59 #include <machine_base/apic/ioapic_abi.h>
60 #include <machine_base/apic/mpapic.h>
61 #include <machine/psl.h>
62 #include <machine/segments.h>
63 #include <machine/tss.h>
64 #include <machine/specialreg.h>
65 #include <machine/globaldata.h>
66 #include <machine/pmap_inval.h>
68 #include <machine/md_var.h> /* setidt() */
69 #include <machine_base/icu/icu.h> /* IPIs */
70 #include <machine/intr_machdep.h> /* IPIs */
72 #define FIXUP_EXTRA_APIC_INTS 8 /* additional entries we may create */
74 #define WARMBOOT_TARGET 0
75 #define WARMBOOT_OFF (KERNBASE + 0x0467)
76 #define WARMBOOT_SEG (KERNBASE + 0x0469)
78 #define BIOS_BASE (0xf0000)
79 #define BIOS_BASE2 (0xe0000)
80 #define BIOS_SIZE (0x10000)
81 #define BIOS_COUNT (BIOS_SIZE/4)
83 #define CMOS_REG (0x70)
84 #define CMOS_DATA (0x71)
85 #define BIOS_RESET (0x0f)
86 #define BIOS_WARM (0x0a)
88 #define PROCENTRY_FLAG_EN 0x01
89 #define PROCENTRY_FLAG_BP 0x02
90 #define IOAPICENTRY_FLAG_EN 0x01
93 /* MP Floating Pointer Structure */
94 typedef struct MPFPS {
107 /* MP Configuration Table Header */
108 typedef struct MPCTH {
110 u_short base_table_length;
114 u_char product_id[12];
115 void *oem_table_pointer;
116 u_short oem_table_size;
119 u_short extended_table_length;
120 u_char extended_table_checksum;
125 typedef struct PROCENTRY {
130 u_long cpu_signature;
131 u_long feature_flags;
136 typedef struct BUSENTRY {
142 typedef struct IOAPICENTRY {
148 } *io_apic_entry_ptr;
150 typedef struct INTENTRY {
160 /* descriptions of MP basetable entries */
161 typedef struct BASETABLE_ENTRY {
170 vm_size_t mp_cth_mapsz;
173 #define MPTABLE_POS_USE_DEFAULT(mpt) \
174 ((mpt)->mp_fps->mpfb1 != 0 || (mpt)->mp_cth == NULL)
178 int mb_type; /* MPTABLE_BUS_ */
179 TAILQ_ENTRY(mptable_bus) mb_link;
182 #define MPTABLE_BUS_ISA 0
183 #define MPTABLE_BUS_PCI 1
185 struct mptable_bus_info {
186 TAILQ_HEAD(, mptable_bus) mbi_list;
189 struct mptable_pci_int {
196 TAILQ_ENTRY(mptable_pci_int) mpci_link;
199 struct mptable_ioapic {
205 TAILQ_ENTRY(mptable_ioapic) mio_link;
208 typedef int (*mptable_iter_func)(void *, const void *, int);
211 * this code MUST be enabled here and in mpboot.s.
212 * it follows the very early stages of AP boot by placing values in CMOS ram.
213 * it NORMALLY will never be needed and thus the primitive method for enabling.
216 #if defined(CHECK_POINTS)
217 #define CHECK_READ(A) (outb(CMOS_REG, (A)), inb(CMOS_DATA))
218 #define CHECK_WRITE(A,D) (outb(CMOS_REG, (A)), outb(CMOS_DATA, (D)))
220 #define CHECK_INIT(D); \
221 CHECK_WRITE(0x34, (D)); \
222 CHECK_WRITE(0x35, (D)); \
223 CHECK_WRITE(0x36, (D)); \
224 CHECK_WRITE(0x37, (D)); \
225 CHECK_WRITE(0x38, (D)); \
226 CHECK_WRITE(0x39, (D));
228 #define CHECK_PRINT(S); \
229 kprintf("%s: %d, %d, %d, %d, %d, %d\n", \
238 #else /* CHECK_POINTS */
240 #define CHECK_INIT(D)
241 #define CHECK_PRINT(S)
243 #endif /* CHECK_POINTS */
246 * Values to send to the POST hardware.
248 #define MP_BOOTADDRESS_POST 0x10
249 #define MP_PROBE_POST 0x11
250 #define MPTABLE_PASS1_POST 0x12
252 #define MP_START_POST 0x13
253 #define MP_ENABLE_POST 0x14
254 #define MPTABLE_PASS2_POST 0x15
256 #define START_ALL_APS_POST 0x16
257 #define INSTALL_AP_TRAMP_POST 0x17
258 #define START_AP_POST 0x18
260 #define MP_ANNOUNCE_POST 0x19
262 /** XXX FIXME: where does this really belong, isa.h/isa.c perhaps? */
263 int current_postcode;
265 /** XXX FIXME: what system files declare these??? */
266 extern struct region_descriptor r_gdt, r_idt;
268 int mp_naps; /* # of Applications processors */
271 u_int32_t cpu_apic_versions[MAXCPU];
273 extern int64_t tsc_offsets[];
275 extern u_long ebda_addr;
277 #ifdef SMP /* APIC-IO */
278 struct apic_intmapinfo int_to_apicintpin[APIC_INTMAPSIZE];
282 * APIC ID logical/physical mapping structures.
283 * We oversize these to simplify boot-time config.
285 int cpu_num_to_apic_id[NAPICID];
286 int apic_id_to_logical[NAPICID];
288 /* AP uses this during bootstrap. Do not staticize. */
292 /* Hotwire a 0->4MB V==P mapping */
293 extern pt_entry_t *KPTphys;
296 * SMP page table page. Setup by locore to point to a page table
297 * page from which we allocate per-cpu privatespace areas io_apics,
301 #define IO_MAPPING_START_INDEX \
302 (SMP_MAXCPU * sizeof(struct privatespace) / PAGE_SIZE)
304 extern pt_entry_t *SMPpt;
305 static int SMPpt_alloc_index = IO_MAPPING_START_INDEX;
307 struct pcb stoppcbs[MAXCPU];
309 static basetable_entry basetable_entry_types[] =
311 {0, 20, "Processor"},
319 * Local data and functions.
322 static u_int boot_address;
323 static u_int base_memory;
324 static int mp_finish;
325 static int mp_finish_lapic;
327 static void mp_enable(u_int boot_addr);
329 static int mptable_iterate_entries(const mpcth_t,
330 mptable_iter_func, void *);
331 static int mptable_search(void);
332 static int mptable_search_sig(u_int32_t target, int count);
333 static int mptable_hyperthread_fixup(cpumask_t, int);
334 static int mptable_map(struct mptable_pos *);
335 static void mptable_unmap(struct mptable_pos *);
336 static void mptable_bus_info_alloc(const mpcth_t,
337 struct mptable_bus_info *);
338 static void mptable_bus_info_free(struct mptable_bus_info *);
340 static int mptable_lapic_probe(struct lapic_enumerator *);
341 static void mptable_lapic_enumerate(struct lapic_enumerator *);
342 static void mptable_lapic_default(void);
344 static int mptable_ioapic_probe(struct ioapic_enumerator *);
345 static void mptable_ioapic_enumerate(struct ioapic_enumerator *);
347 static int start_all_aps(u_int boot_addr);
348 static void install_ap_tramp(u_int boot_addr);
349 static int start_ap(struct mdglobaldata *gd, u_int boot_addr, int smibest);
350 static int smitest(void);
352 static cpumask_t smp_startup_mask = 1; /* which cpus have been started */
353 static cpumask_t smp_lapic_mask = 1; /* which cpus have lapic been inited */
354 cpumask_t smp_active_mask = 1; /* which cpus are ready for IPIs etc? */
355 SYSCTL_INT(_machdep, OID_AUTO, smp_active, CTLFLAG_RD, &smp_active_mask, 0, "");
359 static vm_paddr_t mptable_fps_phyaddr;
360 static int mptable_use_default;
361 static TAILQ_HEAD(mptable_pci_int_list, mptable_pci_int) mptable_pci_int_list =
362 TAILQ_HEAD_INITIALIZER(mptable_pci_int_list);
363 static TAILQ_HEAD(mptable_ioapic_list, mptable_ioapic) mptable_ioapic_list =
364 TAILQ_HEAD_INITIALIZER(mptable_ioapic_list);
367 * Calculate usable address in base memory for AP trampoline code.
370 mp_bootaddress(u_int basemem)
372 POSTCODE(MP_BOOTADDRESS_POST);
374 base_memory = basemem;
376 boot_address = base_memory & ~0xfff; /* round down to 4k boundary */
377 if ((base_memory - boot_address) < bootMP_size)
378 boot_address -= 4096; /* not enough, lower by 4k */
387 struct mptable_pos mpt;
390 KKASSERT(mptable_fps_phyaddr == 0);
392 mptable_fps_phyaddr = mptable_search();
393 if (mptable_fps_phyaddr == 0)
396 error = mptable_map(&mpt);
398 mptable_fps_phyaddr = 0;
402 if (MPTABLE_POS_USE_DEFAULT(&mpt)) {
403 kprintf("MPTABLE: use default configuration\n");
404 mptable_use_default = 1;
406 if (mpt.mp_fps->mpfb2 & 0x80)
411 SYSINIT(mptable_probe, SI_BOOT2_PRESMP, SI_ORDER_FIRST, mptable_probe, 0);
414 * Look for an Intel MP spec table (ie, SMP capable hardware).
423 * Make sure our SMPpt[] page table is big enough to hold all the
426 KKASSERT(IO_MAPPING_START_INDEX < NPTEPG - 2);
428 POSTCODE(MP_PROBE_POST);
430 /* see if EBDA exists */
431 if (ebda_addr != 0) {
432 /* search first 1K of EBDA */
433 target = (u_int32_t)ebda_addr;
434 if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
437 /* last 1K of base memory, effective 'top of base' passed in */
438 target = (u_int32_t)(base_memory - 0x400);
439 if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
443 /* search the BIOS */
444 target = (u_int32_t)BIOS_BASE;
445 if ((x = mptable_search_sig(target, BIOS_COUNT)) > 0)
448 /* search the extended BIOS */
449 target = (u_int32_t)BIOS_BASE2;
450 if ((x = mptable_search_sig(target, BIOS_COUNT)) > 0)
458 mptable_iterate_entries(const mpcth_t cth, mptable_iter_func func, void *arg)
460 int count, total_size;
461 const void *position;
463 KKASSERT(cth->base_table_length >= sizeof(struct MPCTH));
464 total_size = cth->base_table_length - sizeof(struct MPCTH);
465 position = (const uint8_t *)cth + sizeof(struct MPCTH);
466 count = cth->entry_count;
471 KKASSERT(total_size >= 0);
472 if (total_size == 0) {
473 kprintf("invalid base MP table, "
474 "entry count and length mismatch\n");
478 type = *(const uint8_t *)position;
480 case 0: /* processor_entry */
481 case 1: /* bus_entry */
482 case 2: /* io_apic_entry */
483 case 3: /* int_entry */
484 case 4: /* int_entry */
487 kprintf("unknown base MP table entry type %d\n", type);
491 if (total_size < basetable_entry_types[type].length) {
492 kprintf("invalid base MP table length, "
493 "does not contain all entries\n");
496 total_size -= basetable_entry_types[type].length;
498 error = func(arg, position, type);
502 position = (const uint8_t *)position +
503 basetable_entry_types[type].length;
510 * Startup the SMP processors.
515 POSTCODE(MP_START_POST);
516 mp_enable(boot_address);
521 * Print various information about the SMP system hardware and setup.
528 POSTCODE(MP_ANNOUNCE_POST);
530 kprintf("DragonFly/MP: Multiprocessor motherboard\n");
531 kprintf(" cpu0 (BSP): apic id: %2d", CPU_TO_ID(0));
532 kprintf(", version: 0x%08x\n", cpu_apic_versions[0]);
533 for (x = 1; x <= mp_naps; ++x) {
534 kprintf(" cpu%d (AP): apic id: %2d", x, CPU_TO_ID(x));
535 kprintf(", version: 0x%08x\n", cpu_apic_versions[x]);
539 kprintf(" Warning: APIC I/O disabled\n");
543 * AP cpu's call this to sync up protected mode.
545 * WARNING! We must ensure that the cpu is sufficiently initialized to
546 * be able to use to the FP for our optimized bzero/bcopy code before
547 * we enter more mainstream C code.
549 * WARNING! %fs is not set up on entry. This routine sets up %fs.
555 int x, myid = bootAP;
557 struct mdglobaldata *md;
558 struct privatespace *ps;
560 ps = &CPU_prvspace[myid];
562 gdt_segs[GPRIV_SEL].ssd_base = (int)ps;
563 gdt_segs[GPROC0_SEL].ssd_base =
564 (int) &ps->mdglobaldata.gd_common_tss;
565 ps->mdglobaldata.mi.gd_prvspace = ps;
567 for (x = 0; x < NGDT; x++) {
568 ssdtosd(&gdt_segs[x], &gdt[myid * NGDT + x].sd);
571 r_gdt.rd_limit = NGDT * sizeof(gdt[0]) - 1;
572 r_gdt.rd_base = (int) &gdt[myid * NGDT];
573 lgdt(&r_gdt); /* does magic intra-segment return */
578 mdcpu->gd_currentldt = _default_ldt;
580 gsel_tss = GSEL(GPROC0_SEL, SEL_KPL);
581 gdt[myid * NGDT + GPROC0_SEL].sd.sd_type = SDT_SYS386TSS;
583 md = mdcpu; /* loaded through %fs:0 (mdglobaldata.mi.gd_prvspace)*/
585 md->gd_common_tss.tss_esp0 = 0; /* not used until after switch */
586 md->gd_common_tss.tss_ss0 = GSEL(GDATA_SEL, SEL_KPL);
587 md->gd_common_tss.tss_ioopt = (sizeof md->gd_common_tss) << 16;
588 md->gd_tss_gdt = &gdt[myid * NGDT + GPROC0_SEL].sd;
589 md->gd_common_tssd = *md->gd_tss_gdt;
593 * Set to a known state:
594 * Set by mpboot.s: CR0_PG, CR0_PE
595 * Set by cpu_setregs: CR0_NE, CR0_MP, CR0_TS, CR0_WP, CR0_AM
598 cr0 &= ~(CR0_CD | CR0_NW | CR0_EM);
600 pmap_set_opt(); /* PSE/4MB pages, etc */
602 /* set up CPU registers and state */
605 /* set up FPU state on the AP */
606 npxinit(__INITIAL_NPXCW__);
608 /* set up SSE registers */
612 /*******************************************************************
613 * local functions and data
617 * start the SMP system
620 mp_enable(u_int boot_addr)
622 POSTCODE(MP_ENABLE_POST);
626 /* Initialize BSP's local APIC */
629 /* start each Application Processor */
630 start_all_aps(boot_addr);
636 MachIntrABI.finalize();
641 * look for the MP spec signature
644 /* string defined by the Intel MP Spec as identifying the MP table */
645 #define MP_SIG 0x5f504d5f /* _MP_ */
646 #define NEXT(X) ((X) += 4)
648 mptable_search_sig(u_int32_t target, int count)
654 KKASSERT(target != 0);
656 map_size = count * sizeof(u_int32_t);
657 addr = pmap_mapdev((vm_paddr_t)target, map_size);
660 for (x = 0; x < count; NEXT(x)) {
661 if (addr[x] == MP_SIG) {
662 /* make array index a byte index */
663 ret = target + (x * sizeof(u_int32_t));
668 pmap_unmapdev((vm_offset_t)addr, map_size);
673 typedef struct BUSDATA {
675 enum busTypes bus_type;
678 typedef struct INTDATA {
688 typedef struct BUSTYPENAME {
693 static int processor_entry (const struct PROCENTRY *entry, int cpu);
696 * Check if we should perform a hyperthreading "fix-up" to
697 * enumerate any logical CPU's that aren't already listed
700 * XXX: We assume that all of the physical CPUs in the
701 * system have the same number of logical CPUs.
703 * XXX: We assume that APIC ID's are allocated such that
704 * the APIC ID's for a physical processor are aligned
705 * with the number of logical CPU's in the processor.
708 mptable_hyperthread_fixup(cpumask_t id_mask, int cpu_count)
710 int i, id, lcpus_max, logical_cpus;
712 if ((cpu_feature & CPUID_HTT) == 0)
715 lcpus_max = (cpu_procinfo & CPUID_HTT_CORES) >> 16;
719 if (cpu_vendor_id == CPU_VENDOR_INTEL) {
721 * INSTRUCTION SET REFERENCE, A-M (#253666)
722 * Page 3-181, Table 3-20
723 * "The nearest power-of-2 integer that is not smaller
724 * than EBX[23:16] is the number of unique initial APIC
725 * IDs reserved for addressing different logical
726 * processors in a physical package."
729 if ((1 << i) >= lcpus_max) {
736 KKASSERT(cpu_count != 0);
737 if (cpu_count == lcpus_max) {
738 /* We have nothing to fix */
740 } else if (cpu_count == 1) {
741 /* XXX this may be incorrect */
742 logical_cpus = lcpus_max;
747 * Calculate the distances between two nearest
748 * APIC IDs. If all such distances are same,
749 * then it is the number of missing cpus that
750 * we are going to fill later.
752 dist = cur = prev = -1;
753 for (id = 0; id < MAXCPU; ++id) {
754 if ((id_mask & CPUMASK(id)) == 0)
759 int new_dist = cur - prev;
765 * Make sure that all distances
766 * between two nearest APIC IDs
769 if (dist != new_dist)
777 /* Must be power of 2 */
778 if (dist & (dist - 1))
781 /* Can't exceed CPU package capacity */
782 if (dist > lcpus_max)
783 logical_cpus = lcpus_max;
789 * For each APIC ID of a CPU that is set in the mask,
790 * scan the other candidate APIC ID's for this
791 * physical processor. If any of those ID's are
792 * already in the table, then kill the fixup.
794 for (id = 0; id < MAXCPU; id++) {
795 if ((id_mask & CPUMASK(id)) == 0)
797 /* First, make sure we are on a logical_cpus boundary. */
798 if (id % logical_cpus != 0)
800 for (i = id + 1; i < id + logical_cpus; i++)
801 if ((id_mask & CPUMASK(i)) != 0)
808 mptable_map(struct mptable_pos *mpt)
812 vm_size_t cth_mapsz = 0;
814 KKASSERT(mptable_fps_phyaddr != 0);
816 bzero(mpt, sizeof(*mpt));
818 fps = pmap_mapdev(mptable_fps_phyaddr, sizeof(*fps));
821 * Map configuration table header to get
822 * the base table size
824 cth = pmap_mapdev(fps->pap, sizeof(*cth));
825 cth_mapsz = cth->base_table_length;
826 pmap_unmapdev((vm_offset_t)cth, sizeof(*cth));
828 if (cth_mapsz < sizeof(*cth)) {
829 kprintf("invalid base MP table length %d\n",
831 pmap_unmapdev((vm_offset_t)fps, sizeof(*fps));
838 cth = pmap_mapdev(fps->pap, cth_mapsz);
843 mpt->mp_cth_mapsz = cth_mapsz;
849 mptable_unmap(struct mptable_pos *mpt)
851 if (mpt->mp_cth != NULL) {
852 pmap_unmapdev((vm_offset_t)mpt->mp_cth, mpt->mp_cth_mapsz);
854 mpt->mp_cth_mapsz = 0;
856 if (mpt->mp_fps != NULL) {
857 pmap_unmapdev((vm_offset_t)mpt->mp_fps, sizeof(*mpt->mp_fps));
863 mp_set_cpuids(int cpu_id, int apic_id)
865 CPU_TO_ID(cpu_id) = apic_id;
866 ID_TO_CPU(apic_id) = cpu_id;
868 if (apic_id > lapic_id_max)
869 lapic_id_max = apic_id;
873 processor_entry(const struct PROCENTRY *entry, int cpu)
877 /* check for usability */
878 if (!(entry->cpu_flags & PROCENTRY_FLAG_EN))
881 /* check for BSP flag */
882 if (entry->cpu_flags & PROCENTRY_FLAG_BP) {
883 mp_set_cpuids(0, entry->apic_id);
884 return 0; /* its already been counted */
887 /* add another AP to list, if less than max number of CPUs */
888 else if (cpu < MAXCPU) {
889 mp_set_cpuids(cpu, entry->apic_id);
897 * Map a physical memory address representing I/O into KVA. The I/O
898 * block is assumed not to cross a page boundary.
901 ioapic_map(vm_paddr_t pa)
907 KKASSERT(pa < 0x100000000LL);
909 pgeflag = 0; /* not used for SMP yet */
912 * If the requested physical address has already been incidently
913 * mapped, just use the existing mapping. Otherwise create a new
916 for (i = IO_MAPPING_START_INDEX; i < SMPpt_alloc_index; ++i) {
917 if (((vm_offset_t)SMPpt[i] & PG_FRAME) ==
918 ((vm_offset_t)pa & PG_FRAME)) {
922 if (i == SMPpt_alloc_index) {
923 if (i == NPTEPG - 2) {
924 panic("permanent_io_mapping: We ran out of space"
927 SMPpt[i] = (pt_entry_t)(PG_V | PG_RW | PG_N | pgeflag |
928 ((vm_offset_t)pa & PG_FRAME));
931 vaddr = (vm_offset_t)CPU_prvspace + (i * PAGE_SIZE) +
932 ((vm_offset_t)pa & PAGE_MASK);
933 return ((void *)vaddr);
937 * start each AP in our list
940 start_all_aps(u_int boot_addr)
948 u_long mpbioswarmvec;
949 struct mdglobaldata *gd;
950 struct privatespace *ps;
954 POSTCODE(START_ALL_APS_POST);
956 /* install the AP 1st level boot code */
957 install_ap_tramp(boot_addr);
960 /* save the current value of the warm-start vector */
961 mpbioswarmvec = *((u_long *) WARMBOOT_OFF);
962 outb(CMOS_REG, BIOS_RESET);
963 mpbiosreason = inb(CMOS_DATA);
965 /* setup a vector to our boot code */
966 *((volatile u_short *) WARMBOOT_OFF) = WARMBOOT_TARGET;
967 *((volatile u_short *) WARMBOOT_SEG) = (boot_addr >> 4);
968 outb(CMOS_REG, BIOS_RESET);
969 outb(CMOS_DATA, BIOS_WARM); /* 'warm-start' */
972 * If we have a TSC we can figure out the SMI interrupt rate.
973 * The SMI does not necessarily use a constant rate. Spend
974 * up to 250ms trying to figure it out.
977 if (cpu_feature & CPUID_TSC) {
978 set_apic_timer(275000);
979 smilast = read_apic_timer();
980 for (x = 0; x < 20 && read_apic_timer(); ++x) {
981 smicount = smitest();
982 if (smibest == 0 || smilast - smicount < smibest)
983 smibest = smilast - smicount;
986 if (smibest > 250000)
989 smibest = smibest * (int64_t)1000000 /
990 get_apic_timer_frequency();
994 kprintf("SMI Frequency (worst case): %d Hz (%d us)\n",
995 1000000 / smibest, smibest);
998 /* set up temporary P==V mapping for AP boot */
999 /* XXX this is a hack, we should boot the AP on its own stack/PTD */
1000 kptbase = (uintptr_t)(void *)KPTphys;
1001 for (x = 0; x < NKPT; x++) {
1002 PTD[x] = (pd_entry_t)(PG_V | PG_RW |
1003 ((kptbase + x * PAGE_SIZE) & PG_FRAME));
1008 for (x = 1; x <= mp_naps; ++x) {
1010 /* This is a bit verbose, it will go away soon. */
1012 /* first page of AP's private space */
1013 pg = x * i386_btop(sizeof(struct privatespace));
1015 /* allocate new private data page(s) */
1016 gd = (struct mdglobaldata *)kmem_alloc(&kernel_map,
1017 MDGLOBALDATA_BASEALLOC_SIZE);
1018 /* wire it into the private page table page */
1019 for (i = 0; i < MDGLOBALDATA_BASEALLOC_SIZE; i += PAGE_SIZE) {
1020 SMPpt[pg + i / PAGE_SIZE] = (pt_entry_t)
1021 (PG_V | PG_RW | vtophys_pte((char *)gd + i));
1023 pg += MDGLOBALDATA_BASEALLOC_PAGES;
1025 SMPpt[pg + 0] = 0; /* *gd_CMAP1 */
1026 SMPpt[pg + 1] = 0; /* *gd_CMAP2 */
1027 SMPpt[pg + 2] = 0; /* *gd_CMAP3 */
1028 SMPpt[pg + 3] = 0; /* *gd_PMAP1 */
1030 /* allocate and set up an idle stack data page */
1031 stack = (char *)kmem_alloc(&kernel_map, UPAGES*PAGE_SIZE);
1032 for (i = 0; i < UPAGES; i++) {
1033 SMPpt[pg + 4 + i] = (pt_entry_t)
1034 (PG_V | PG_RW | vtophys_pte(PAGE_SIZE * i + stack));
1037 gd = &CPU_prvspace[x].mdglobaldata; /* official location */
1038 bzero(gd, sizeof(*gd));
1039 gd->mi.gd_prvspace = ps = &CPU_prvspace[x];
1041 /* prime data page for it to use */
1042 mi_gdinit(&gd->mi, x);
1044 gd->gd_CMAP1 = &SMPpt[pg + 0];
1045 gd->gd_CMAP2 = &SMPpt[pg + 1];
1046 gd->gd_CMAP3 = &SMPpt[pg + 2];
1047 gd->gd_PMAP1 = &SMPpt[pg + 3];
1048 gd->gd_CADDR1 = ps->CPAGE1;
1049 gd->gd_CADDR2 = ps->CPAGE2;
1050 gd->gd_CADDR3 = ps->CPAGE3;
1051 gd->gd_PADDR1 = (unsigned *)ps->PPAGE1;
1054 * Per-cpu pmap for get_ptbase().
1056 gd->gd_GDADDR1= (unsigned *)
1057 kmem_alloc_nofault(&kernel_map, SEG_SIZE, SEG_SIZE);
1058 gd->gd_GDMAP1 = &PTD[(vm_offset_t)gd->gd_GDADDR1 >> PDRSHIFT];
1060 gd->mi.gd_ipiq = (void *)kmem_alloc(&kernel_map, sizeof(lwkt_ipiq) * (mp_naps + 1));
1061 bzero(gd->mi.gd_ipiq, sizeof(lwkt_ipiq) * (mp_naps + 1));
1064 * Setup the AP boot stack
1066 bootSTK = &ps->idlestack[UPAGES*PAGE_SIZE/2];
1069 /* attempt to start the Application Processor */
1070 CHECK_INIT(99); /* setup checkpoints */
1071 if (!start_ap(gd, boot_addr, smibest)) {
1072 kprintf("AP #%d (PHY# %d) failed!\n", x, CPU_TO_ID(x));
1073 CHECK_PRINT("trace"); /* show checkpoints */
1074 /* better panic as the AP may be running loose */
1075 kprintf("panic y/n? [y] ");
1076 if (cngetc() != 'n')
1079 CHECK_PRINT("trace"); /* show checkpoints */
1081 /* record its version info */
1082 cpu_apic_versions[x] = cpu_apic_versions[0];
1085 /* set ncpus to 1 + highest logical cpu. Not all may have come up */
1088 /* ncpus2 -- ncpus rounded down to the nearest power of 2 */
1089 for (shift = 0; (1 << shift) <= ncpus; ++shift)
1092 ncpus2_shift = shift;
1093 ncpus2 = 1 << shift;
1094 ncpus2_mask = ncpus2 - 1;
1096 /* ncpus_fit -- ncpus rounded up to the nearest power of 2 */
1097 if ((1 << shift) < ncpus)
1099 ncpus_fit = 1 << shift;
1100 ncpus_fit_mask = ncpus_fit - 1;
1102 /* build our map of 'other' CPUs */
1103 mycpu->gd_other_cpus = smp_startup_mask & ~CPUMASK(mycpu->gd_cpuid);
1104 mycpu->gd_ipiq = (void *)kmem_alloc(&kernel_map, sizeof(lwkt_ipiq) * ncpus);
1105 bzero(mycpu->gd_ipiq, sizeof(lwkt_ipiq) * ncpus);
1107 /* fill in our (BSP) APIC version */
1108 cpu_apic_versions[0] = lapic.version;
1110 /* restore the warmstart vector */
1111 *(u_long *) WARMBOOT_OFF = mpbioswarmvec;
1112 outb(CMOS_REG, BIOS_RESET);
1113 outb(CMOS_DATA, mpbiosreason);
1116 * NOTE! The idlestack for the BSP was setup by locore. Finish
1117 * up, clean out the P==V mapping we did earlier.
1119 for (x = 0; x < NKPT; x++)
1124 * Wait all APs to finish initializing LAPIC
1126 mp_finish_lapic = 1;
1128 kprintf("SMP: Waiting APs LAPIC initialization\n");
1129 if (cpu_feature & CPUID_TSC)
1130 tsc0_offset = rdtsc();
1133 while (smp_lapic_mask != smp_startup_mask) {
1135 if (cpu_feature & CPUID_TSC)
1136 tsc0_offset = rdtsc();
1138 while (try_mplock() == 0)
1141 /* number of APs actually started */
1146 * load the 1st level AP boot code into base memory.
1149 /* targets for relocation */
1150 extern void bigJump(void);
1151 extern void bootCodeSeg(void);
1152 extern void bootDataSeg(void);
1153 extern void MPentry(void);
1154 extern u_int MP_GDT;
1155 extern u_int mp_gdtbase;
1158 install_ap_tramp(u_int boot_addr)
1161 int size = *(int *) ((u_long) & bootMP_size);
1162 u_char *src = (u_char *) ((u_long) bootMP);
1163 u_char *dst = (u_char *) boot_addr + KERNBASE;
1164 u_int boot_base = (u_int) bootMP;
1169 POSTCODE(INSTALL_AP_TRAMP_POST);
1171 for (x = 0; x < size; ++x)
1175 * modify addresses in code we just moved to basemem. unfortunately we
1176 * need fairly detailed info about mpboot.s for this to work. changes
1177 * to mpboot.s might require changes here.
1180 /* boot code is located in KERNEL space */
1181 dst = (u_char *) boot_addr + KERNBASE;
1183 /* modify the lgdt arg */
1184 dst32 = (u_int32_t *) (dst + ((u_int) & mp_gdtbase - boot_base));
1185 *dst32 = boot_addr + ((u_int) & MP_GDT - boot_base);
1187 /* modify the ljmp target for MPentry() */
1188 dst32 = (u_int32_t *) (dst + ((u_int) bigJump - boot_base) + 1);
1189 *dst32 = ((u_int) MPentry - KERNBASE);
1191 /* modify the target for boot code segment */
1192 dst16 = (u_int16_t *) (dst + ((u_int) bootCodeSeg - boot_base));
1193 dst8 = (u_int8_t *) (dst16 + 1);
1194 *dst16 = (u_int) boot_addr & 0xffff;
1195 *dst8 = ((u_int) boot_addr >> 16) & 0xff;
1197 /* modify the target for boot data segment */
1198 dst16 = (u_int16_t *) (dst + ((u_int) bootDataSeg - boot_base));
1199 dst8 = (u_int8_t *) (dst16 + 1);
1200 *dst16 = (u_int) boot_addr & 0xffff;
1201 *dst8 = ((u_int) boot_addr >> 16) & 0xff;
1206 * This function starts the AP (application processor) identified
1207 * by the APIC ID 'physicalCpu'. It does quite a "song and dance"
1208 * to accomplish this. This is necessary because of the nuances
1209 * of the different hardware we might encounter. It ain't pretty,
1210 * but it seems to work.
1212 * NOTE: eventually an AP gets to ap_init(), which is called just
1213 * before the AP goes into the LWKT scheduler's idle loop.
1216 start_ap(struct mdglobaldata *gd, u_int boot_addr, int smibest)
1220 u_long icr_lo, icr_hi;
1222 POSTCODE(START_AP_POST);
1224 /* get the PHYSICAL APIC ID# */
1225 physical_cpu = CPU_TO_ID(gd->mi.gd_cpuid);
1227 /* calculate the vector */
1228 vector = (boot_addr >> 12) & 0xff;
1230 /* We don't want anything interfering */
1233 /* Make sure the target cpu sees everything */
1237 * Try to detect when a SMI has occurred, wait up to 200ms.
1239 * If a SMI occurs during an AP reset but before we issue
1240 * the STARTUP command, the AP may brick. To work around
1241 * this problem we hold off doing the AP startup until
1242 * after we have detected the SMI. Hopefully another SMI
1243 * will not occur before we finish the AP startup.
1245 * Retries don't seem to help. SMIs have a window of opportunity
1246 * and if USB->legacy keyboard emulation is enabled in the BIOS
1247 * the interrupt rate can be quite high.
1249 * NOTE: Don't worry about the L1 cache load, it might bloat
1250 * ldelta a little but ndelta will be so huge when the SMI
1251 * occurs the detection logic will still work fine.
1254 set_apic_timer(200000);
1259 * first we do an INIT/RESET IPI this INIT IPI might be run, reseting
1260 * and running the target CPU. OR this INIT IPI might be latched (P5
1261 * bug), CPU waiting for STARTUP IPI. OR this INIT IPI might be
1264 * see apic/apicreg.h for icr bit definitions.
1266 * TIME CRITICAL CODE, DO NOT DO ANY KPRINTFS IN THE HOT PATH.
1270 * Setup the address for the target AP. We can setup
1271 * icr_hi once and then just trigger operations with
1274 icr_hi = lapic.icr_hi & ~APIC_ID_MASK;
1275 icr_hi |= (physical_cpu << 24);
1276 icr_lo = lapic.icr_lo & 0xfff00000;
1277 lapic.icr_hi = icr_hi;
1280 * Do an INIT IPI: assert RESET
1282 * Use edge triggered mode to assert INIT
1284 lapic.icr_lo = icr_lo | 0x0000c500;
1285 while (lapic.icr_lo & APIC_DELSTAT_MASK)
1289 * The spec calls for a 10ms delay but we may have to use a
1290 * MUCH lower delay to avoid bricking an AP due to a fast SMI
1291 * interrupt. We have other loops here too and dividing by 2
1292 * doesn't seem to be enough even after subtracting 350us,
1293 * so we divide by 4.
1295 * Our minimum delay is 150uS, maximum is 10ms. If no SMI
1296 * interrupt was detected we use the full 10ms.
1300 else if (smibest < 150 * 4 + 350)
1302 else if ((smibest - 350) / 4 < 10000)
1303 u_sleep((smibest - 350) / 4);
1308 * Do an INIT IPI: deassert RESET
1310 * Use level triggered mode to deassert. It is unclear
1311 * why we need to do this.
1313 lapic.icr_lo = icr_lo | 0x00008500;
1314 while (lapic.icr_lo & APIC_DELSTAT_MASK)
1316 u_sleep(150); /* wait 150us */
1319 * Next we do a STARTUP IPI: the previous INIT IPI might still be
1320 * latched, (P5 bug) this 1st STARTUP would then terminate
1321 * immediately, and the previously started INIT IPI would continue. OR
1322 * the previous INIT IPI has already run. and this STARTUP IPI will
1323 * run. OR the previous INIT IPI was ignored. and this STARTUP IPI
1326 lapic.icr_lo = icr_lo | 0x00000600 | vector;
1327 while (lapic.icr_lo & APIC_DELSTAT_MASK)
1329 u_sleep(200); /* wait ~200uS */
1332 * Finally we do a 2nd STARTUP IPI: this 2nd STARTUP IPI should run IF
1333 * the previous STARTUP IPI was cancelled by a latched INIT IPI. OR
1334 * this STARTUP IPI will be ignored, as only ONE STARTUP IPI is
1335 * recognized after hardware RESET or INIT IPI.
1337 lapic.icr_lo = icr_lo | 0x00000600 | vector;
1338 while (lapic.icr_lo & APIC_DELSTAT_MASK)
1341 /* Resume normal operation */
1344 /* wait for it to start, see ap_init() */
1345 set_apic_timer(5000000);/* == 5 seconds */
1346 while (read_apic_timer()) {
1347 if (smp_startup_mask & CPUMASK(gd->mi.gd_cpuid))
1348 return 1; /* return SUCCESS */
1351 return 0; /* return FAILURE */
1366 while (read_apic_timer()) {
1368 for (count = 0; count < 100; ++count)
1369 ntsc = rdtsc(); /* force loop to occur */
1371 ndelta = ntsc - ltsc;
1372 if (ldelta > ndelta)
1374 if (ndelta > ldelta * 2)
1377 ldelta = ntsc - ltsc;
1380 return(read_apic_timer());
1384 * Lazy flush the TLB on all other CPU's. DEPRECATED.
1386 * If for some reason we were unable to start all cpus we cannot safely
1387 * use broadcast IPIs.
1390 static cpumask_t smp_invltlb_req;
1391 #define SMP_INVLTLB_DEBUG
1397 struct mdglobaldata *md = mdcpu;
1398 #ifdef SMP_INVLTLB_DEBUG
1403 crit_enter_gd(&md->mi);
1404 md->gd_invltlb_ret = 0;
1405 ++md->mi.gd_cnt.v_smpinvltlb;
1406 atomic_set_cpumask(&smp_invltlb_req, md->mi.gd_cpumask);
1407 #ifdef SMP_INVLTLB_DEBUG
1410 if (smp_startup_mask == smp_active_mask) {
1411 all_but_self_ipi(XINVLTLB_OFFSET);
1413 selected_apic_ipi(smp_active_mask & ~md->mi.gd_cpumask,
1414 XINVLTLB_OFFSET, APIC_DELMODE_FIXED);
1417 #ifdef SMP_INVLTLB_DEBUG
1419 kprintf("smp_invltlb: ipi sent\n");
1421 while ((md->gd_invltlb_ret & smp_active_mask & ~md->mi.gd_cpumask) !=
1422 (smp_active_mask & ~md->mi.gd_cpumask)) {
1425 #ifdef SMP_INVLTLB_DEBUG
1427 if (++count == 400000000) {
1428 print_backtrace(-1);
1429 kprintf("smp_invltlb: endless loop %08lx %08lx, "
1430 "rflags %016lx retry",
1431 (long)md->gd_invltlb_ret,
1432 (long)smp_invltlb_req,
1433 (long)read_eflags());
1434 __asm __volatile ("sti");
1437 lwkt_process_ipiq();
1439 int bcpu = BSFCPUMASK(~md->gd_invltlb_ret &
1440 ~md->mi.gd_cpumask &
1443 kprintf("bcpu %d\n", bcpu);
1444 xgd = globaldata_find(bcpu);
1445 kprintf("thread %p %s\n", xgd->gd_curthread, xgd->gd_curthread->td_comm);
1454 atomic_clear_cpumask(&smp_invltlb_req, md->mi.gd_cpumask);
1455 crit_exit_gd(&md->mi);
1462 * Called from Xinvltlb assembly with interrupts disabled. We didn't
1463 * bother to bump the critical section count or nested interrupt count
1464 * so only do very low level operations here.
1467 smp_invltlb_intr(void)
1469 struct mdglobaldata *md = mdcpu;
1470 struct mdglobaldata *omd;
1474 mask = smp_invltlb_req;
1478 cpu = BSFCPUMASK(mask);
1479 mask &= ~CPUMASK(cpu);
1480 omd = (struct mdglobaldata *)globaldata_find(cpu);
1481 atomic_set_cpumask(&omd->gd_invltlb_ret, md->mi.gd_cpumask);
1488 * When called the executing CPU will send an IPI to all other CPUs
1489 * requesting that they halt execution.
1491 * Usually (but not necessarily) called with 'other_cpus' as its arg.
1493 * - Signals all CPUs in map to stop.
1494 * - Waits for each to stop.
1501 * XXX FIXME: this is not MP-safe, needs a lock to prevent multiple CPUs
1502 * from executing at same time.
1505 stop_cpus(cpumask_t map)
1507 map &= smp_active_mask;
1509 /* send the Xcpustop IPI to all CPUs in map */
1510 selected_apic_ipi(map, XCPUSTOP_OFFSET, APIC_DELMODE_FIXED);
1512 while ((stopped_cpus & map) != map)
1520 * Called by a CPU to restart stopped CPUs.
1522 * Usually (but not necessarily) called with 'stopped_cpus' as its arg.
1524 * - Signals all CPUs in map to restart.
1525 * - Waits for each to restart.
1533 restart_cpus(cpumask_t map)
1535 /* signal other cpus to restart */
1536 started_cpus = map & smp_active_mask;
1538 while ((stopped_cpus & map) != 0) /* wait for each to clear its bit */
1545 * This is called once the mpboot code has gotten us properly relocated
1546 * and the MMU turned on, etc. ap_init() is actually the idle thread,
1547 * and when it returns the scheduler will call the real cpu_idle() main
1548 * loop for the idlethread. Interrupts are disabled on entry and should
1549 * remain disabled at return.
1557 * Adjust smp_startup_mask to signal the BSP that we have started
1558 * up successfully. Note that we do not yet hold the BGL. The BSP
1559 * is waiting for our signal.
1561 * We can't set our bit in smp_active_mask yet because we are holding
1562 * interrupts physically disabled and remote cpus could deadlock
1563 * trying to send us an IPI.
1565 smp_startup_mask |= CPUMASK(mycpu->gd_cpuid);
1569 * Interlock for LAPIC initialization. Wait until mp_finish_lapic is
1570 * non-zero, then get the MP lock.
1572 * Note: We are in a critical section.
1574 * Note: we are the idle thread, we can only spin.
1576 * Note: The load fence is memory volatile and prevents the compiler
1577 * from improperly caching mp_finish_lapic, and the cpu from improperly
1580 while (mp_finish_lapic == 0)
1582 while (try_mplock() == 0)
1585 if (cpu_feature & CPUID_TSC) {
1587 * The BSP is constantly updating tsc0_offset, figure out
1588 * the relative difference to synchronize ktrdump.
1590 tsc_offsets[mycpu->gd_cpuid] = rdtsc() - tsc0_offset;
1593 /* BSP may have changed PTD while we're waiting for the lock */
1596 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
1600 /* Build our map of 'other' CPUs. */
1601 mycpu->gd_other_cpus = smp_startup_mask & ~CPUMASK(mycpu->gd_cpuid);
1603 /* A quick check from sanity claus */
1604 apic_id = (apic_id_to_logical[(lapic.id & 0xff000000) >> 24]);
1605 if (mycpu->gd_cpuid != apic_id) {
1606 kprintf("SMP: cpuid = %d\n", mycpu->gd_cpuid);
1607 kprintf("SMP: apic_id = %d\n", apic_id);
1608 kprintf("PTD[MPPTDI] = %p\n", (void *)PTD[MPPTDI]);
1609 panic("cpuid mismatch! boom!!");
1612 /* Initialize AP's local APIC for irq's */
1615 /* LAPIC initialization is done */
1616 smp_lapic_mask |= CPUMASK(mycpu->gd_cpuid);
1619 /* Let BSP move onto the next initialization stage */
1623 * Interlock for finalization. Wait until mp_finish is non-zero,
1624 * then get the MP lock.
1626 * Note: We are in a critical section.
1628 * Note: we are the idle thread, we can only spin.
1630 * Note: The load fence is memory volatile and prevents the compiler
1631 * from improperly caching mp_finish, and the cpu from improperly
1634 while (mp_finish == 0)
1636 while (try_mplock() == 0)
1639 /* BSP may have changed PTD while we're waiting for the lock */
1642 /* Set memory range attributes for this CPU to match the BSP */
1643 mem_range_AP_init();
1646 * Once we go active we must process any IPIQ messages that may
1647 * have been queued, because no actual IPI will occur until we
1648 * set our bit in the smp_active_mask. If we don't the IPI
1649 * message interlock could be left set which would also prevent
1652 * The idle loop doesn't expect the BGL to be held and while
1653 * lwkt_switch() normally cleans things up this is a special case
1654 * because we returning almost directly into the idle loop.
1656 * The idle thread is never placed on the runq, make sure
1657 * nothing we've done put it there.
1659 KKASSERT(get_mplock_count(curthread) == 1);
1660 smp_active_mask |= CPUMASK(mycpu->gd_cpuid);
1663 * Enable interrupts here. idle_restore will also do it, but
1664 * doing it here lets us clean up any strays that got posted to
1665 * the CPU during the AP boot while we are still in a critical
1668 __asm __volatile("sti; pause; pause"::);
1669 bzero(mdcpu->gd_ipending, sizeof(mdcpu->gd_ipending));
1671 initclocks_pcpu(); /* clock interrupts (via IPIs) */
1672 lwkt_process_ipiq();
1675 * Releasing the mp lock lets the BSP finish up the SMP init
1678 KKASSERT((curthread->td_flags & TDF_RUNQ) == 0);
1682 * Get SMP fully working before we start initializing devices.
1690 kprintf("Finish MP startup\n");
1692 while (smp_active_mask != smp_startup_mask)
1694 while (try_mplock() == 0)
1697 kprintf("Active CPU Mask: %08x\n", smp_active_mask);
1700 SYSINIT(finishsmp, SI_BOOT2_FINISH_SMP, SI_ORDER_FIRST, ap_finish, NULL)
1703 cpu_send_ipiq(int dcpu)
1705 if (CPUMASK(dcpu) & smp_active_mask)
1706 single_apic_ipi(dcpu, XIPIQ_OFFSET, APIC_DELMODE_FIXED);
1709 #if 0 /* single_apic_ipi_passive() not working yet */
1711 * Returns 0 on failure, 1 on success
1714 cpu_send_ipiq_passive(int dcpu)
1717 if (CPUMASK(dcpu) & smp_active_mask) {
1718 r = single_apic_ipi_passive(dcpu, XIPIQ_OFFSET,
1719 APIC_DELMODE_FIXED);
1726 mptable_bus_info_callback(void *xarg, const void *pos, int type)
1728 struct mptable_bus_info *bus_info = xarg;
1729 const struct BUSENTRY *ent;
1730 struct mptable_bus *bus;
1736 TAILQ_FOREACH(bus, &bus_info->mbi_list, mb_link) {
1737 if (bus->mb_id == ent->bus_id) {
1738 kprintf("mptable_bus_info_alloc: duplicated bus id "
1739 "(%d)\n", bus->mb_id);
1745 if (strncmp(ent->bus_type, "PCI", 3) == 0) {
1746 bus = kmalloc(sizeof(*bus), M_TEMP, M_WAITOK | M_ZERO);
1747 bus->mb_type = MPTABLE_BUS_PCI;
1748 } else if (strncmp(ent->bus_type, "ISA", 3) == 0) {
1749 bus = kmalloc(sizeof(*bus), M_TEMP, M_WAITOK | M_ZERO);
1750 bus->mb_type = MPTABLE_BUS_ISA;
1754 bus->mb_id = ent->bus_id;
1755 TAILQ_INSERT_TAIL(&bus_info->mbi_list, bus, mb_link);
1761 mptable_bus_info_alloc(const mpcth_t cth, struct mptable_bus_info *bus_info)
1765 bzero(bus_info, sizeof(*bus_info));
1766 TAILQ_INIT(&bus_info->mbi_list);
1768 error = mptable_iterate_entries(cth, mptable_bus_info_callback, bus_info);
1770 mptable_bus_info_free(bus_info);
1774 mptable_bus_info_free(struct mptable_bus_info *bus_info)
1776 struct mptable_bus *bus;
1778 while ((bus = TAILQ_FIRST(&bus_info->mbi_list)) != NULL) {
1779 TAILQ_REMOVE(&bus_info->mbi_list, bus, mb_link);
1784 struct mptable_lapic_cbarg1 {
1787 u_int ht_apicid_mask;
1791 mptable_lapic_pass1_callback(void *xarg, const void *pos, int type)
1793 const struct PROCENTRY *ent;
1794 struct mptable_lapic_cbarg1 *arg = xarg;
1800 if ((ent->cpu_flags & PROCENTRY_FLAG_EN) == 0)
1804 if (ent->apic_id < 32) {
1805 arg->ht_apicid_mask |= 1 << ent->apic_id;
1806 } else if (arg->ht_fixup) {
1807 kprintf("MPTABLE: lapic id > 32, disable HTT fixup\n");
1813 struct mptable_lapic_cbarg2 {
1820 mptable_lapic_pass2_callback(void *xarg, const void *pos, int type)
1822 const struct PROCENTRY *ent;
1823 struct mptable_lapic_cbarg2 *arg = xarg;
1829 if (ent->cpu_flags & PROCENTRY_FLAG_BP) {
1830 KKASSERT(!arg->found_bsp);
1834 if (processor_entry(ent, arg->cpu))
1837 if (arg->logical_cpus) {
1838 struct PROCENTRY proc;
1842 * Create fake mptable processor entries
1843 * and feed them to processor_entry() to
1844 * enumerate the logical CPUs.
1846 bzero(&proc, sizeof(proc));
1848 proc.cpu_flags = PROCENTRY_FLAG_EN;
1849 proc.apic_id = ent->apic_id;
1851 for (i = 1; i < arg->logical_cpus; i++) {
1853 processor_entry(&proc, arg->cpu);
1861 mptable_lapic_default(void)
1863 int ap_apicid, bsp_apicid;
1865 mp_naps = 1; /* exclude BSP */
1867 /* Map local apic before the id field is accessed */
1868 lapic_map(DEFAULT_APIC_BASE);
1870 bsp_apicid = APIC_ID(lapic.id);
1871 ap_apicid = (bsp_apicid == 0) ? 1 : 0;
1874 mp_set_cpuids(0, bsp_apicid);
1875 /* one and only AP */
1876 mp_set_cpuids(1, ap_apicid);
1882 * ID_TO_CPU(N), APIC ID to logical CPU table
1883 * CPU_TO_ID(N), logical CPU to APIC ID table
1886 mptable_lapic_enumerate(struct lapic_enumerator *e)
1888 struct mptable_pos mpt;
1889 struct mptable_lapic_cbarg1 arg1;
1890 struct mptable_lapic_cbarg2 arg2;
1892 int error, logical_cpus = 0;
1893 vm_offset_t lapic_addr;
1895 if (mptable_use_default) {
1896 mptable_lapic_default();
1900 error = mptable_map(&mpt);
1902 panic("mptable_lapic_enumerate mptable_map failed\n");
1903 KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
1907 /* Save local apic address */
1908 lapic_addr = (vm_offset_t)cth->apic_address;
1909 KKASSERT(lapic_addr != 0);
1912 * Find out how many CPUs do we have
1914 bzero(&arg1, sizeof(arg1));
1915 arg1.ht_fixup = 1; /* Apply ht fixup by default */
1917 error = mptable_iterate_entries(cth,
1918 mptable_lapic_pass1_callback, &arg1);
1920 panic("mptable_iterate_entries(lapic_pass1) failed\n");
1921 KKASSERT(arg1.cpu_count != 0);
1923 /* See if we need to fixup HT logical CPUs. */
1924 if (arg1.ht_fixup) {
1925 logical_cpus = mptable_hyperthread_fixup(arg1.ht_apicid_mask,
1927 if (logical_cpus != 0)
1928 arg1.cpu_count *= logical_cpus;
1930 mp_naps = arg1.cpu_count;
1932 /* Qualify the numbers again, after possible HT fixup */
1933 if (mp_naps > MAXCPU) {
1934 kprintf("Warning: only using %d of %d available CPUs!\n",
1939 --mp_naps; /* subtract the BSP */
1942 * Link logical CPU id to local apic id
1944 bzero(&arg2, sizeof(arg2));
1946 arg2.logical_cpus = logical_cpus;
1948 error = mptable_iterate_entries(cth,
1949 mptable_lapic_pass2_callback, &arg2);
1951 panic("mptable_iterate_entries(lapic_pass2) failed\n");
1952 KKASSERT(arg2.found_bsp);
1954 /* Map local apic */
1955 lapic_map(lapic_addr);
1957 mptable_unmap(&mpt);
1960 struct mptable_lapic_probe_cbarg {
1966 mptable_lapic_probe_callback(void *xarg, const void *pos, int type)
1968 const struct PROCENTRY *ent;
1969 struct mptable_lapic_probe_cbarg *arg = xarg;
1975 if ((ent->cpu_flags & PROCENTRY_FLAG_EN) == 0)
1979 if (ent->cpu_flags & PROCENTRY_FLAG_BP) {
1980 if (arg->found_bsp) {
1981 kprintf("more than one BSP in base MP table\n");
1990 mptable_lapic_probe(struct lapic_enumerator *e)
1992 struct mptable_pos mpt;
1993 struct mptable_lapic_probe_cbarg arg;
1997 if (mptable_fps_phyaddr == 0)
2000 if (mptable_use_default)
2003 error = mptable_map(&mpt);
2006 KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
2011 if (cth->apic_address == 0)
2014 bzero(&arg, sizeof(arg));
2015 error = mptable_iterate_entries(cth,
2016 mptable_lapic_probe_callback, &arg);
2018 if (arg.cpu_count == 0) {
2019 kprintf("MP table contains no processor entries\n");
2021 } else if (!arg.found_bsp) {
2022 kprintf("MP table does not contains BSP entry\n");
2027 mptable_unmap(&mpt);
2031 static struct lapic_enumerator mptable_lapic_enumerator = {
2032 .lapic_prio = LAPIC_ENUM_PRIO_MPTABLE,
2033 .lapic_probe = mptable_lapic_probe,
2034 .lapic_enumerate = mptable_lapic_enumerate
2038 mptable_lapic_enum_register(void)
2040 lapic_enumerator_register(&mptable_lapic_enumerator);
2042 SYSINIT(mptable_lapic, SI_BOOT2_PRESMP, SI_ORDER_ANY,
2043 mptable_lapic_enum_register, 0);
2046 mptable_ioapic_list_callback(void *xarg, const void *pos, int type)
2048 const struct IOAPICENTRY *ent;
2049 struct mptable_ioapic *nioapic, *ioapic;
2055 if ((ent->apic_flags & IOAPICENTRY_FLAG_EN) == 0)
2058 if (ent->apic_address == 0) {
2059 kprintf("mptable_ioapic_create_list: zero IOAPIC addr\n");
2063 TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
2064 if (ioapic->mio_apic_id == ent->apic_id) {
2065 kprintf("mptable_ioapic_create_list: duplicated "
2066 "apic id %d\n", ioapic->mio_apic_id);
2069 if (ioapic->mio_addr == (uint32_t)ent->apic_address) {
2070 kprintf("mptable_ioapic_create_list: overlapped "
2071 "IOAPIC addr 0x%08x", ioapic->mio_addr);
2076 nioapic = kmalloc(sizeof(*nioapic), M_DEVBUF, M_WAITOK | M_ZERO);
2077 nioapic->mio_apic_id = ent->apic_id;
2078 nioapic->mio_addr = (uint32_t)ent->apic_address;
2081 * Create IOAPIC list in ascending order of APIC ID
2083 TAILQ_FOREACH_REVERSE(ioapic, &mptable_ioapic_list,
2084 mptable_ioapic_list, mio_link) {
2085 if (nioapic->mio_apic_id > ioapic->mio_apic_id) {
2086 TAILQ_INSERT_AFTER(&mptable_ioapic_list,
2087 ioapic, nioapic, mio_link);
2092 TAILQ_INSERT_HEAD(&mptable_ioapic_list, nioapic, mio_link);
2098 mptable_ioapic_create_list(void)
2100 struct mptable_ioapic *ioapic;
2101 struct mptable_pos mpt;
2104 if (mptable_fps_phyaddr == 0)
2107 if (mptable_use_default) {
2108 ioapic = kmalloc(sizeof(*ioapic), M_DEVBUF, M_WAITOK | M_ZERO);
2109 ioapic->mio_idx = 0;
2110 ioapic->mio_apic_id = 0; /* NOTE: any value is ok here */
2111 ioapic->mio_addr = 0xfec00000; /* XXX magic number */
2113 TAILQ_INSERT_HEAD(&mptable_ioapic_list, ioapic, mio_link);
2117 error = mptable_map(&mpt);
2119 panic("mptable_ioapic_create_list: mptable_map failed\n");
2120 KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
2122 error = mptable_iterate_entries(mpt.mp_cth,
2123 mptable_ioapic_list_callback, NULL);
2125 while ((ioapic = TAILQ_FIRST(&mptable_ioapic_list)) != NULL) {
2126 TAILQ_REMOVE(&mptable_ioapic_list, ioapic, mio_link);
2127 kfree(ioapic, M_DEVBUF);
2133 * Assign index number for each IOAPIC
2136 TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
2137 ioapic->mio_idx = idx;
2141 mptable_unmap(&mpt);
2143 SYSINIT(mptable_ioapic_list, SI_BOOT2_PRESMP, SI_ORDER_SECOND,
2144 mptable_ioapic_create_list, 0);
2147 mptable_pci_int_callback(void *xarg, const void *pos, int type)
2149 const struct mptable_bus_info *bus_info = xarg;
2150 const struct mptable_ioapic *ioapic;
2151 const struct mptable_bus *bus;
2152 struct mptable_pci_int *pci_int;
2153 const struct INTENTRY *ent;
2154 int pci_pin, pci_dev;
2160 if (ent->int_type != 0)
2163 TAILQ_FOREACH(bus, &bus_info->mbi_list, mb_link) {
2164 if (bus->mb_type == MPTABLE_BUS_PCI &&
2165 bus->mb_id == ent->src_bus_id)
2171 TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
2172 if (ioapic->mio_apic_id == ent->dst_apic_id)
2175 if (ioapic == NULL) {
2176 kprintf("MPTABLE: warning PCI int dst apic id %d "
2177 "does not exist\n", ent->dst_apic_id);
2181 pci_pin = ent->src_bus_irq & 0x3;
2182 pci_dev = (ent->src_bus_irq >> 2) & 0x1f;
2184 TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link) {
2185 if (pci_int->mpci_bus == ent->src_bus_id &&
2186 pci_int->mpci_dev == pci_dev &&
2187 pci_int->mpci_pin == pci_pin) {
2188 if (pci_int->mpci_ioapic_idx == ioapic->mio_idx &&
2189 pci_int->mpci_ioapic_pin == ent->dst_apic_int) {
2190 kprintf("MPTABLE: warning duplicated "
2191 "PCI int entry for "
2192 "bus %d, dev %d, pin %d\n",
2198 kprintf("mptable_pci_int_register: "
2199 "conflict PCI int entry for "
2200 "bus %d, dev %d, pin %d, "
2201 "IOAPIC %d.%d -> %d.%d\n",
2205 pci_int->mpci_ioapic_idx,
2206 pci_int->mpci_ioapic_pin,
2214 pci_int = kmalloc(sizeof(*pci_int), M_DEVBUF, M_WAITOK | M_ZERO);
2216 pci_int->mpci_bus = ent->src_bus_id;
2217 pci_int->mpci_dev = pci_dev;
2218 pci_int->mpci_pin = pci_pin;
2219 pci_int->mpci_ioapic_idx = ioapic->mio_idx;
2220 pci_int->mpci_ioapic_pin = ent->dst_apic_int;
2222 TAILQ_INSERT_TAIL(&mptable_pci_int_list, pci_int, mpci_link);
2228 mptable_pci_int_register(void)
2230 struct mptable_bus_info bus_info;
2231 const struct mptable_bus *bus;
2232 struct mptable_pci_int *pci_int;
2233 struct mptable_pos mpt;
2234 int error, force_pci0, npcibus;
2237 if (mptable_fps_phyaddr == 0)
2240 if (mptable_use_default)
2243 if (TAILQ_EMPTY(&mptable_ioapic_list))
2246 error = mptable_map(&mpt);
2248 panic("mptable_pci_int_register: mptable_map failed\n");
2249 KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
2253 mptable_bus_info_alloc(cth, &bus_info);
2254 if (TAILQ_EMPTY(&bus_info.mbi_list))
2259 TAILQ_FOREACH(bus, &bus_info.mbi_list, mb_link) {
2260 if (bus->mb_type == MPTABLE_BUS_PCI)
2264 mptable_bus_info_free(&bus_info);
2266 } else if (npcibus == 1) {
2270 error = mptable_iterate_entries(cth,
2271 mptable_pci_int_callback, &bus_info);
2273 mptable_bus_info_free(&bus_info);
2276 while ((pci_int = TAILQ_FIRST(&mptable_pci_int_list)) != NULL) {
2277 TAILQ_REMOVE(&mptable_pci_int_list, pci_int, mpci_link);
2278 kfree(pci_int, M_DEVBUF);
2284 TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link)
2285 pci_int->mpci_bus = 0;
2288 mptable_unmap(&mpt);
2290 SYSINIT(mptable_pci, SI_BOOT2_PRESMP, SI_ORDER_ANY,
2291 mptable_pci_int_register, 0);
2293 struct mptable_ioapic_probe_cbarg {
2294 const struct mptable_bus_info *bus_info;
2298 mptable_ioapic_probe_callback(void *xarg, const void *pos, int type)
2300 struct mptable_ioapic_probe_cbarg *arg = xarg;
2301 const struct mptable_ioapic *ioapic;
2302 const struct mptable_bus *bus;
2303 const struct INTENTRY *ent;
2309 if (ent->int_type != 0)
2312 TAILQ_FOREACH(bus, &arg->bus_info->mbi_list, mb_link) {
2313 if (bus->mb_type == MPTABLE_BUS_ISA &&
2314 bus->mb_id == ent->src_bus_id)
2320 TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
2321 if (ioapic->mio_apic_id == ent->dst_apic_id)
2324 if (ioapic == NULL) {
2325 kprintf("MPTABLE: warning ISA int dst apic id %d "
2326 "does not exist\n", ent->dst_apic_id);
2330 /* XXX magic number */
2331 if (ent->src_bus_irq >= 16) {
2332 kprintf("mptable_ioapic_probe: invalid ISA irq (%d)\n",
2340 mptable_ioapic_probe(struct ioapic_enumerator *e)
2342 struct mptable_ioapic_probe_cbarg arg;
2343 struct mptable_bus_info bus_info;
2344 struct mptable_pos mpt;
2348 if (mptable_fps_phyaddr == 0)
2351 if (mptable_use_default)
2354 if (TAILQ_EMPTY(&mptable_ioapic_list))
2357 error = mptable_map(&mpt);
2359 panic("mptable_ioapic_probe: mptable_map failed\n");
2360 KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
2364 mptable_bus_info_alloc(cth, &bus_info);
2366 bzero(&arg, sizeof(arg));
2367 arg.bus_info = &bus_info;
2369 error = mptable_iterate_entries(cth,
2370 mptable_ioapic_probe_callback, &arg);
2372 mptable_bus_info_free(&bus_info);
2373 mptable_unmap(&mpt);
2378 struct mptable_ioapic_int_cbarg {
2379 const struct mptable_bus_info *bus_info;
2384 mptable_ioapic_int_callback(void *xarg, const void *pos, int type)
2386 struct mptable_ioapic_int_cbarg *arg = xarg;
2387 const struct mptable_ioapic *ioapic;
2388 const struct mptable_bus *bus;
2389 const struct INTENTRY *ent;
2398 if (ent->int_type != 0)
2401 TAILQ_FOREACH(bus, &arg->bus_info->mbi_list, mb_link) {
2402 if (bus->mb_type == MPTABLE_BUS_ISA &&
2403 bus->mb_id == ent->src_bus_id)
2409 TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
2410 if (ioapic->mio_apic_id == ent->dst_apic_id)
2413 if (ioapic == NULL) {
2414 kprintf("MPTABLE: warning ISA int dst apic id %d "
2415 "does not exist\n", ent->dst_apic_id);
2419 if (ent->dst_apic_int >= ioapic->mio_npin) {
2420 panic("mptable_ioapic_enumerate: invalid I/O APIC "
2421 "pin %d, should be < %d",
2422 ent->dst_apic_int, ioapic->mio_npin);
2424 gsi = ioapic->mio_gsi_base + ent->dst_apic_int;
2426 if (ent->src_bus_irq != gsi) {
2428 kprintf("MPTABLE: INTSRC irq %d -> GSI %d\n",
2429 ent->src_bus_irq, gsi);
2431 ioapic_intsrc(ent->src_bus_irq, gsi,
2432 INTR_TRIGGER_EDGE, INTR_POLARITY_HIGH);
2438 mptable_ioapic_enumerate(struct ioapic_enumerator *e)
2440 struct mptable_bus_info bus_info;
2441 struct mptable_ioapic *ioapic;
2442 struct mptable_pos mpt;
2446 KKASSERT(mptable_fps_phyaddr != 0);
2447 KKASSERT(!TAILQ_EMPTY(&mptable_ioapic_list));
2449 TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
2450 const struct mptable_ioapic *prev_ioapic;
2454 addr = ioapic_map(ioapic->mio_addr);
2456 ver = ioapic_read(addr, IOAPIC_VER);
2457 ioapic->mio_npin = ((ver & IOART_VER_MAXREDIR)
2458 >> MAXREDIRSHIFT) + 1;
2460 prev_ioapic = TAILQ_PREV(ioapic,
2461 mptable_ioapic_list, mio_link);
2462 if (prev_ioapic == NULL) {
2463 ioapic->mio_gsi_base = 0;
2465 ioapic->mio_gsi_base =
2466 prev_ioapic->mio_gsi_base +
2467 prev_ioapic->mio_npin;
2469 ioapic_add(addr, ioapic->mio_gsi_base,
2473 kprintf("MPTABLE: IOAPIC addr 0x%08x, "
2474 "apic id %d, idx %d, gsi base %d, npin %d\n",
2476 ioapic->mio_apic_id,
2478 ioapic->mio_gsi_base,
2483 if (mptable_use_default) {
2485 kprintf("MPTABLE: INTSRC irq 0 -> GSI 2 (default)\n");
2486 ioapic_intsrc(0, 2, INTR_TRIGGER_EDGE, INTR_POLARITY_HIGH);
2490 error = mptable_map(&mpt);
2492 panic("mptable_ioapic_probe: mptable_map failed\n");
2493 KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
2497 mptable_bus_info_alloc(cth, &bus_info);
2499 if (TAILQ_EMPTY(&bus_info.mbi_list)) {
2501 kprintf("MPTABLE: INTSRC irq 0 -> GSI 2 (no bus)\n");
2502 ioapic_intsrc(0, 2, INTR_TRIGGER_EDGE, INTR_POLARITY_HIGH);
2504 struct mptable_ioapic_int_cbarg arg;
2506 bzero(&arg, sizeof(arg));
2507 arg.bus_info = &bus_info;
2509 error = mptable_iterate_entries(cth,
2510 mptable_ioapic_int_callback, &arg);
2512 panic("mptable_ioapic_int failed\n");
2514 if (arg.ioapic_nint == 0) {
2516 kprintf("MPTABLE: INTSRC irq 0 -> GSI 2 "
2519 ioapic_intsrc(0, 2, INTR_TRIGGER_EDGE,
2520 INTR_POLARITY_HIGH);
2524 mptable_bus_info_free(&bus_info);
2526 mptable_unmap(&mpt);
2529 static struct ioapic_enumerator mptable_ioapic_enumerator = {
2530 .ioapic_prio = IOAPIC_ENUM_PRIO_MPTABLE,
2531 .ioapic_probe = mptable_ioapic_probe,
2532 .ioapic_enumerate = mptable_ioapic_enumerate
2536 mptable_ioapic_enum_register(void)
2538 ioapic_enumerator_register(&mptable_ioapic_enumerator);
2540 SYSINIT(mptable_ioapic, SI_BOOT2_PRESMP, SI_ORDER_ANY,
2541 mptable_ioapic_enum_register, 0);
2544 mptable_pci_int_dump(void)
2546 const struct mptable_pci_int *pci_int;
2548 TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link) {
2549 kprintf("MPTABLE: %d:%d INT%c -> IOAPIC %d.%d\n",
2552 pci_int->mpci_pin + 'A',
2553 pci_int->mpci_ioapic_idx,
2554 pci_int->mpci_ioapic_pin);
2559 mptable_pci_int_route(int bus, int dev, int pin, int intline)
2561 const struct mptable_pci_int *pci_int;
2565 --pin; /* zero based */
2567 TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link) {
2568 if (pci_int->mpci_bus == bus &&
2569 pci_int->mpci_dev == dev &&
2570 pci_int->mpci_pin == pin)
2573 if (pci_int != NULL) {
2576 gsi = ioapic_gsi(pci_int->mpci_ioapic_idx,
2577 pci_int->mpci_ioapic_pin);
2579 irq = ioapic_abi_find_gsi(gsi,
2580 INTR_TRIGGER_LEVEL, INTR_POLARITY_LOW);
2586 kprintf("MPTABLE: fixed interrupt routing "
2587 "for %d:%d INT%c\n", bus, dev, pin + 'A');
2590 irq = ioapic_abi_find_irq(intline,
2591 INTR_TRIGGER_LEVEL, INTR_POLARITY_LOW);
2594 if (irq >= 0 && bootverbose) {
2595 kprintf("MPTABLE: %d:%d INT%c routed to irq %d\n",
2596 bus, dev, pin + 'A', irq);