MP table: Do preliminary checks before claiming that the MP table is valid
[dragonfly.git] / sys / platform / pc64 / x86_64 / mp_machdep.c
1 /*
2  * Copyright (c) 1996, by Steve Passe
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
12  *
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
23  * SUCH DAMAGE.
24  *
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 $
27  */
28
29 #include "opt_cpu.h"
30
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>
39
40 #include <sys/mplock2.h>
41
42 #include <vm/vm.h>
43 #include <vm/vm_param.h>
44 #include <vm/pmap.h>
45 #include <vm/vm_kern.h>
46 #include <vm/vm_extern.h>
47 #include <sys/lock.h>
48 #include <vm/vm_map.h>
49 #include <sys/user.h>
50 #ifdef GPROF 
51 #include <sys/gmon.h>
52 #endif
53
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_base/apic/mpapic.h>
59 #include <machine/psl.h>
60 #include <machine/segments.h>
61 #include <machine/tss.h>
62 #include <machine/specialreg.h>
63 #include <machine/globaldata.h>
64
65 #include <machine/md_var.h>             /* setidt() */
66 #include <machine_base/icu/icu.h>               /* IPIs */
67 #include <machine_base/isa/intr_machdep.h>      /* IPIs */
68
69 #define FIXUP_EXTRA_APIC_INTS   8       /* additional entries we may create */
70
71 #define WARMBOOT_TARGET         0
72 #define WARMBOOT_OFF            (KERNBASE + 0x0467)
73 #define WARMBOOT_SEG            (KERNBASE + 0x0469)
74
75 #define BIOS_BASE               (0xf0000)
76 #define BIOS_SIZE               (0x10000)
77 #define BIOS_COUNT              (BIOS_SIZE/4)
78
79 #define CMOS_REG                (0x70)
80 #define CMOS_DATA               (0x71)
81 #define BIOS_RESET              (0x0f)
82 #define BIOS_WARM               (0x0a)
83
84 #define PROCENTRY_FLAG_EN       0x01
85 #define PROCENTRY_FLAG_BP       0x02
86 #define IOAPICENTRY_FLAG_EN     0x01
87
88
89 /* MP Floating Pointer Structure */
90 typedef struct MPFPS {
91         char    signature[4];
92         u_int32_t pap;
93         u_char  length;
94         u_char  spec_rev;
95         u_char  checksum;
96         u_char  mpfb1;
97         u_char  mpfb2;
98         u_char  mpfb3;
99         u_char  mpfb4;
100         u_char  mpfb5;
101 }      *mpfps_t;
102
103 /* MP Configuration Table Header */
104 typedef struct MPCTH {
105         char    signature[4];
106         u_short base_table_length;
107         u_char  spec_rev;
108         u_char  checksum;
109         u_char  oem_id[8];
110         u_char  product_id[12];
111         u_int32_t oem_table_pointer;
112         u_short oem_table_size;
113         u_short entry_count;
114         u_int32_t apic_address;
115         u_short extended_table_length;
116         u_char  extended_table_checksum;
117         u_char  reserved;
118 }      *mpcth_t;
119
120
121 typedef struct PROCENTRY {
122         u_char  type;
123         u_char  apic_id;
124         u_char  apic_version;
125         u_char  cpu_flags;
126         u_int32_t cpu_signature;
127         u_int32_t feature_flags;
128         u_int32_t reserved1;
129         u_int32_t reserved2;
130 }      *proc_entry_ptr;
131
132 typedef struct BUSENTRY {
133         u_char  type;
134         u_char  bus_id;
135         char    bus_type[6];
136 }      *bus_entry_ptr;
137
138 typedef struct IOAPICENTRY {
139         u_char  type;
140         u_char  apic_id;
141         u_char  apic_version;
142         u_char  apic_flags;
143         u_int32_t apic_address;
144 }      *io_apic_entry_ptr;
145
146 typedef struct INTENTRY {
147         u_char  type;
148         u_char  int_type;
149         u_short int_flags;
150         u_char  src_bus_id;
151         u_char  src_bus_irq;
152         u_char  dst_apic_id;
153         u_char  dst_apic_int;
154 }      *int_entry_ptr;
155
156 /* descriptions of MP basetable entries */
157 typedef struct BASETABLE_ENTRY {
158         u_char  type;
159         u_char  length;
160         char    name[16];
161 }       basetable_entry;
162
163 struct mptable_pos {
164         mpfps_t         mp_fps;
165         mpcth_t         mp_cth;
166         vm_size_t       mp_cth_mapsz;   
167 };
168
169 typedef int     (*mptable_iter_func)(void *, const void *, int);
170
171 /*
172  * this code MUST be enabled here and in mpboot.s.
173  * it follows the very early stages of AP boot by placing values in CMOS ram.
174  * it NORMALLY will never be needed and thus the primitive method for enabling.
175  *
176  */
177 #if defined(CHECK_POINTS)
178 #define CHECK_READ(A)    (outb(CMOS_REG, (A)), inb(CMOS_DATA))
179 #define CHECK_WRITE(A,D) (outb(CMOS_REG, (A)), outb(CMOS_DATA, (D)))
180
181 #define CHECK_INIT(D);                          \
182         CHECK_WRITE(0x34, (D));                 \
183         CHECK_WRITE(0x35, (D));                 \
184         CHECK_WRITE(0x36, (D));                 \
185         CHECK_WRITE(0x37, (D));                 \
186         CHECK_WRITE(0x38, (D));                 \
187         CHECK_WRITE(0x39, (D));
188
189 #define CHECK_PRINT(S);                         \
190         kprintf("%s: %d, %d, %d, %d, %d, %d\n", \
191            (S),                                 \
192            CHECK_READ(0x34),                    \
193            CHECK_READ(0x35),                    \
194            CHECK_READ(0x36),                    \
195            CHECK_READ(0x37),                    \
196            CHECK_READ(0x38),                    \
197            CHECK_READ(0x39));
198
199 #else                           /* CHECK_POINTS */
200
201 #define CHECK_INIT(D)
202 #define CHECK_PRINT(S)
203
204 #endif                          /* CHECK_POINTS */
205
206 /*
207  * Values to send to the POST hardware.
208  */
209 #define MP_BOOTADDRESS_POST     0x10
210 #define MP_PROBE_POST           0x11
211 #define MPTABLE_PASS1_POST      0x12
212
213 #define MP_START_POST           0x13
214 #define MP_ENABLE_POST          0x14
215 #define MPTABLE_PASS2_POST      0x15
216
217 #define START_ALL_APS_POST      0x16
218 #define INSTALL_AP_TRAMP_POST   0x17
219 #define START_AP_POST           0x18
220
221 #define MP_ANNOUNCE_POST        0x19
222
223 static int need_hyperthreading_fixup;
224 static u_int logical_cpus;
225 u_int   logical_cpus_mask;
226
227 static int madt_probe_test;
228 TUNABLE_INT("hw.madt_probe_test", &madt_probe_test);
229
230 /** XXX FIXME: where does this really belong, isa.h/isa.c perhaps? */
231 int     current_postcode;
232
233 /** XXX FIXME: what system files declare these??? */
234 extern struct region_descriptor r_gdt, r_idt;
235
236 int     mp_naps;                /* # of Applications processors */
237 #ifdef APIC_IO
238 static int      mp_nbusses;     /* # of busses */
239 int     mp_napics;              /* # of IO APICs */
240 #endif
241 vm_offset_t cpu_apic_address;
242 #ifdef APIC_IO
243 vm_offset_t io_apic_address[NAPICID];   /* NAPICID is more than enough */
244 u_int32_t *io_apic_versions;
245 #endif
246 extern  int nkpt;
247
248 u_int32_t cpu_apic_versions[MAXCPU];
249 int64_t tsc0_offset;
250 extern int64_t tsc_offsets[];
251
252 extern u_long ebda_addr;
253
254 #ifdef APIC_IO
255 struct apic_intmapinfo  int_to_apicintpin[APIC_INTMAPSIZE];
256 #endif
257
258 /*
259  * APIC ID logical/physical mapping structures.
260  * We oversize these to simplify boot-time config.
261  */
262 int     cpu_num_to_apic_id[NAPICID];
263 #ifdef APIC_IO
264 int     io_num_to_apic_id[NAPICID];
265 #endif
266 int     apic_id_to_logical[NAPICID];
267
268 /* AP uses this during bootstrap.  Do not staticize.  */
269 char *bootSTK;
270 static int bootAP;
271
272 /*
273  * SMP page table page.  Setup by locore to point to a page table
274  * page from which we allocate per-cpu privatespace areas io_apics,
275  * and so forth.
276  */
277
278 #define IO_MAPPING_START_INDEX  \
279                 (SMP_MAXCPU * sizeof(struct privatespace) / PAGE_SIZE)
280
281 extern pt_entry_t *SMPpt;
282
283 struct pcb stoppcbs[MAXCPU];
284
285 extern inthand_t IDTVEC(fast_syscall), IDTVEC(fast_syscall32);
286
287 static basetable_entry basetable_entry_types[] =
288 {
289         {0, 20, "Processor"},
290         {1, 8, "Bus"},
291         {2, 8, "I/O APIC"},
292         {3, 8, "I/O INT"},
293         {4, 8, "Local INT"}
294 };
295
296 /*
297  * Local data and functions.
298  */
299
300 static u_int    boot_address;
301 static u_int    base_memory;
302 static int      mp_finish;
303
304 static void     mp_enable(u_int boot_addr);
305
306 static int      mptable_iterate_entries(const mpcth_t,
307                     mptable_iter_func, void *);
308 static int      mptable_probe(void);
309 static int      mptable_check(vm_paddr_t);
310 static long     mptable_search_sig(u_int32_t target, int count);
311 static void     mptable_hyperthread_fixup(u_int id_mask);
312 static void     mptable_pass1(struct mptable_pos *);
313 static int      mptable_pass2(struct mptable_pos *);
314 static void     mptable_default(int type);
315 static void     mptable_fix(void);
316 static int      mptable_map(struct mptable_pos *, vm_paddr_t);
317 static void     mptable_unmap(struct mptable_pos *);
318
319 #ifdef APIC_IO
320 static void     setup_apic_irq_mapping(void);
321 static int      apic_int_is_bus_type(int intr, int bus_type);
322 #endif
323 static int      start_all_aps(u_int boot_addr);
324 #if 0
325 static void     install_ap_tramp(u_int boot_addr);
326 #endif
327 static int      start_ap(struct mdglobaldata *gd, u_int boot_addr, int smibest);
328 static int      smitest(void);
329
330 static cpumask_t smp_startup_mask = 1;  /* which cpus have been started */
331 cpumask_t smp_active_mask = 1;  /* which cpus are ready for IPIs etc? */
332 SYSCTL_INT(_machdep, OID_AUTO, smp_active, CTLFLAG_RD, &smp_active_mask, 0, "");
333 static u_int    bootMP_size;
334
335 /*
336  * Calculate usable address in base memory for AP trampoline code.
337  */
338 u_int
339 mp_bootaddress(u_int basemem)
340 {
341         POSTCODE(MP_BOOTADDRESS_POST);
342
343         base_memory = basemem;
344
345         bootMP_size = mptramp_end - mptramp_start;
346         boot_address = trunc_page(basemem * 1024); /* round down to 4k boundary */
347         if (((basemem * 1024) - boot_address) < bootMP_size)
348                 boot_address -= PAGE_SIZE;      /* not enough, lower by 4k */
349         /* 3 levels of page table pages */
350         mptramp_pagetables = boot_address - (PAGE_SIZE * 3);
351
352         return mptramp_pagetables;
353 }
354
355
356 /*
357  * Look for an Intel MP spec table (ie, SMP capable hardware).
358  */
359 static int
360 mptable_probe(void)
361 {
362         long    x;
363         u_int32_t target;
364  
365         /*
366          * Make sure our SMPpt[] page table is big enough to hold all the
367          * mappings we need.
368          */
369         KKASSERT(IO_MAPPING_START_INDEX < NPTEPG - 2);
370
371         POSTCODE(MP_PROBE_POST);
372
373         /* see if EBDA exists */
374         if (ebda_addr != 0) {
375                 /* search first 1K of EBDA */
376                 target = (u_int32_t)ebda_addr;
377                 if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
378                         return x;
379         } else {
380                 /* last 1K of base memory, effective 'top of base' passed in */
381                 target = (u_int32_t)(base_memory - 0x400);
382                 if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
383                         return x;
384         }
385
386         /* search the BIOS */
387         target = (u_int32_t)BIOS_BASE;
388         if ((x = mptable_search_sig(target, BIOS_COUNT)) > 0)
389                 return x;
390
391         /* nothing found */
392         return 0;
393 }
394
395 struct mptable_check_cbarg {
396         int     cpu_count;
397         int     found_bsp;
398 };
399
400 static int
401 mptable_check_callback(void *xarg, const void *pos, int type)
402 {
403         const struct PROCENTRY *ent;
404         struct mptable_check_cbarg *arg = xarg;
405
406         if (type != 0)
407                 return 0;
408         ent = pos;
409
410         if ((ent->cpu_flags & PROCENTRY_FLAG_EN) == 0)
411                 return 0;
412         arg->cpu_count++;
413
414         if (ent->cpu_flags & PROCENTRY_FLAG_BP) {
415                 if (arg->found_bsp) {
416                         kprintf("more than one BSP in base MP table\n");
417                         return EINVAL;
418                 }
419                 arg->found_bsp = 1;
420         }
421         return 0;
422 }
423
424 static int
425 mptable_check(vm_paddr_t mpfps_paddr)
426 {
427         struct mptable_pos mpt;
428         struct mptable_check_cbarg arg;
429         mpcth_t cth;
430         int error;
431
432         if (mpfps_paddr == 0)
433                 return EOPNOTSUPP;
434
435         error = mptable_map(&mpt, mpfps_paddr);
436         if (error)
437                 return error;
438
439         if (mpt.mp_fps->mpfb1 != 0)
440                 goto done;
441
442         error = EINVAL;
443
444         cth = mpt.mp_cth;
445         if (cth == NULL)
446                 goto done;
447         if (cth->apic_address == 0)
448                 goto done;
449
450         bzero(&arg, sizeof(arg));
451         error = mptable_iterate_entries(cth, mptable_check_callback, &arg);
452         if (!error) {
453                 if (arg.cpu_count == 0) {
454                         kprintf("MP table contains no processor entries\n");
455                         error = EINVAL;
456                 } else if (!arg.found_bsp) {
457                         kprintf("MP table does not contains BSP entry\n");
458                         error = EINVAL;
459                 }
460         }
461 done:
462         mptable_unmap(&mpt);
463         return error;
464 }
465
466 static int
467 mptable_iterate_entries(const mpcth_t cth, mptable_iter_func func, void *arg)
468 {
469         int count, total_size;
470         const void *position;
471
472         KKASSERT(cth->base_table_length >= sizeof(struct MPCTH));
473         total_size = cth->base_table_length - sizeof(struct MPCTH);
474         position = (const uint8_t *)cth + sizeof(struct MPCTH);
475         count = cth->entry_count;
476
477         while (count--) {
478                 int type, error;
479
480                 KKASSERT(total_size >= 0);
481                 if (total_size == 0) {
482                         kprintf("invalid base MP table, "
483                                 "entry count and length mismatch\n");
484                         return EINVAL;
485                 }
486
487                 type = *(const uint8_t *)position;
488                 switch (type) {
489                 case 0: /* processor_entry */
490                 case 1: /* bus_entry */
491                 case 2: /* io_apic_entry */
492                 case 3: /* int_entry */
493                 case 4: /* int_entry */
494                         break;
495                 default:
496                         kprintf("unknown base MP table entry type %d\n", type);
497                         return EINVAL;
498                 }
499
500                 if (total_size < basetable_entry_types[type].length) {
501                         kprintf("invalid base MP table length, "
502                                 "does not contain all entries\n");
503                         return EINVAL;
504                 }
505                 total_size -= basetable_entry_types[type].length;
506
507                 error = func(arg, position, type);
508                 if (error)
509                         return error;
510
511                 position = (const uint8_t *)position +
512                     basetable_entry_types[type].length;
513         }
514         return 0;
515 }
516
517
518 /*
519  * Startup the SMP processors.
520  */
521 void
522 mp_start(void)
523 {
524         POSTCODE(MP_START_POST);
525         mp_enable(boot_address);
526 }
527
528
529 /*
530  * Print various information about the SMP system hardware and setup.
531  */
532 void
533 mp_announce(void)
534 {
535         int     x;
536
537         POSTCODE(MP_ANNOUNCE_POST);
538
539         kprintf("DragonFly/MP: Multiprocessor motherboard\n");
540         kprintf(" cpu0 (BSP): apic id: %2d", CPU_TO_ID(0));
541         kprintf(", version: 0x%08x", cpu_apic_versions[0]);
542         kprintf(", at 0x%08jx\n", (intmax_t)cpu_apic_address);
543         for (x = 1; x <= mp_naps; ++x) {
544                 kprintf(" cpu%d (AP):  apic id: %2d", x, CPU_TO_ID(x));
545                 kprintf(", version: 0x%08x", cpu_apic_versions[x]);
546                 kprintf(", at 0x%08jx\n", (intmax_t)cpu_apic_address);
547         }
548
549 #if defined(APIC_IO)
550         for (x = 0; x < mp_napics; ++x) {
551                 kprintf(" io%d (APIC): apic id: %2d", x, IO_TO_ID(x));
552                 kprintf(", version: 0x%08x", io_apic_versions[x]);
553                 kprintf(", at 0x%08lx\n", io_apic_address[x]);
554         }
555 #else
556         kprintf(" Warning: APIC I/O disabled\n");
557 #endif  /* APIC_IO */
558 }
559
560 /*
561  * AP cpu's call this to sync up protected mode.
562  *
563  * WARNING! %gs is not set up on entry.  This routine sets up %gs.
564  */
565 void
566 init_secondary(void)
567 {
568         int     gsel_tss;
569         int     x, myid = bootAP;
570         u_int64_t msr, cr0;
571         struct mdglobaldata *md;
572         struct privatespace *ps;
573
574         ps = &CPU_prvspace[myid];
575
576         gdt_segs[GPROC0_SEL].ssd_base =
577                 (long) &ps->mdglobaldata.gd_common_tss;
578         ps->mdglobaldata.mi.gd_prvspace = ps;
579
580         /* We fill the 32-bit segment descriptors */
581         for (x = 0; x < NGDT; x++) {
582                 if (x != GPROC0_SEL && x != (GPROC0_SEL + 1))
583                         ssdtosd(&gdt_segs[x], &gdt[myid * NGDT + x]);
584         }
585         /* And now a 64-bit one */
586         ssdtosyssd(&gdt_segs[GPROC0_SEL],
587             (struct system_segment_descriptor *)&gdt[myid * NGDT + GPROC0_SEL]);
588
589         r_gdt.rd_limit = NGDT * sizeof(gdt[0]) - 1;
590         r_gdt.rd_base = (long) &gdt[myid * NGDT];
591         lgdt(&r_gdt);                   /* does magic intra-segment return */
592
593         /* lgdt() destroys the GSBASE value, so we load GSBASE after lgdt() */
594         wrmsr(MSR_FSBASE, 0);           /* User value */
595         wrmsr(MSR_GSBASE, (u_int64_t)ps);
596         wrmsr(MSR_KGSBASE, 0);          /* XXX User value while we're in the kernel */
597
598         lidt(&r_idt);
599
600 #if 0
601         lldt(_default_ldt);
602         mdcpu->gd_currentldt = _default_ldt;
603 #endif
604
605         gsel_tss = GSEL(GPROC0_SEL, SEL_KPL);
606         gdt[myid * NGDT + GPROC0_SEL].sd_type = SDT_SYSTSS;
607
608         md = mdcpu;     /* loaded through %gs:0 (mdglobaldata.mi.gd_prvspace)*/
609
610         md->gd_common_tss.tss_rsp0 = 0; /* not used until after switch */
611 #if 0 /* JG XXX */
612         md->gd_common_tss.tss_ioopt = (sizeof md->gd_common_tss) << 16;
613 #endif
614         md->gd_tss_gdt = &gdt[myid * NGDT + GPROC0_SEL];
615         md->gd_common_tssd = *md->gd_tss_gdt;
616 #if 0 /* JG XXX */
617         md->gd_common_tss.tss_ist1 = (long)&doublefault_stack[PAGE_SIZE];
618 #endif
619         ltr(gsel_tss);
620
621         /*
622          * Set to a known state:
623          * Set by mpboot.s: CR0_PG, CR0_PE
624          * Set by cpu_setregs: CR0_NE, CR0_MP, CR0_TS, CR0_WP, CR0_AM
625          */
626         cr0 = rcr0();
627         cr0 &= ~(CR0_CD | CR0_NW | CR0_EM);
628         load_cr0(cr0);
629
630         /* Set up the fast syscall stuff */
631         msr = rdmsr(MSR_EFER) | EFER_SCE;
632         wrmsr(MSR_EFER, msr);
633         wrmsr(MSR_LSTAR, (u_int64_t)IDTVEC(fast_syscall));
634         wrmsr(MSR_CSTAR, (u_int64_t)IDTVEC(fast_syscall32));
635         msr = ((u_int64_t)GSEL(GCODE_SEL, SEL_KPL) << 32) |
636               ((u_int64_t)GSEL(GUCODE32_SEL, SEL_UPL) << 48);
637         wrmsr(MSR_STAR, msr);
638         wrmsr(MSR_SF_MASK, PSL_NT|PSL_T|PSL_I|PSL_C|PSL_D);
639
640         pmap_set_opt();         /* PSE/4MB pages, etc */
641 #if JGXXX
642         /* Initialize the PAT MSR. */
643         pmap_init_pat();
644 #endif
645
646         /* set up CPU registers and state */
647         cpu_setregs();
648
649         /* set up SSE/NX registers */
650         initializecpu();
651
652         /* set up FPU state on the AP */
653         npxinit(__INITIAL_NPXCW__);
654
655         /* disable the APIC, just to be SURE */
656         lapic->svr &= ~APIC_SVR_ENABLE;
657
658         /* data returned to BSP */
659         cpu_apic_versions[0] = lapic->version;
660 }
661
662 /*******************************************************************
663  * local functions and data
664  */
665
666 /*
667  * start the SMP system
668  */
669 static void
670 mp_enable(u_int boot_addr)
671 {
672         int     x;
673 #if defined(APIC_IO)
674         int     apic;
675         u_int   ux;
676 #endif  /* APIC_IO */
677         vm_paddr_t mpfps_paddr;
678
679         POSTCODE(MP_ENABLE_POST);
680
681         if (madt_probe_test) {
682                 mpfps_paddr = 0;
683         } else {
684                 mpfps_paddr = mptable_probe();
685                 if (mptable_check(mpfps_paddr))
686                         mpfps_paddr = 0;
687         }
688
689         if (mpfps_paddr) {
690                 struct mptable_pos mpt;
691
692                 mptable_map(&mpt, mpfps_paddr);
693
694                 /*
695                  * We can safely map physical memory into SMPpt after
696                  * mptable_pass1() completes.
697                  */
698                 mptable_pass1(&mpt);
699
700                 if (cpu_apic_address == 0)
701                         panic("mp_enable: no local apic!\n");
702
703                 /* examine the MP table for needed info */
704                 x = mptable_pass2(&mpt);
705
706                 mptable_unmap(&mpt);
707
708                 /*
709                  * can't process default configs till the
710                  * CPU APIC is pmapped
711                  */
712                 if (x)
713                         mptable_default(x);
714
715                 /* post scan cleanup */
716                 mptable_fix();
717
718                 /*
719                  * lapic not mapped yet (pmap_init is called too late)
720                  */
721                 lapic = pmap_mapdev_uncacheable(cpu_apic_address,
722                                                 sizeof(struct LAPIC));
723         } else {
724                 vm_paddr_t madt_paddr;
725                 int bsp_apic_id;
726
727                 madt_paddr = madt_probe();
728                 if (madt_paddr == 0)
729                         panic("mp_enable: madt_probe failed\n");
730
731                 cpu_apic_address = madt_pass1(madt_paddr);
732                 if (cpu_apic_address == 0)
733                         panic("mp_enable: no local apic (madt)!\n");
734
735                 /*
736                  * lapic not mapped yet (pmap_init is called too late)
737                  *
738                  * XXX: where is the best place to set lapic?
739                  */
740                 lapic = pmap_mapdev_uncacheable(cpu_apic_address,
741                                                 sizeof(struct LAPIC));
742
743                 bsp_apic_id = (lapic->id & 0xff000000) >> 24;
744                 if (madt_pass2(madt_paddr, bsp_apic_id))
745                         panic("mp_enable: madt_pass2 failed\n");
746         }
747
748 #if defined(APIC_IO)
749
750         setup_apic_irq_mapping();
751
752         /* fill the LOGICAL io_apic_versions table */
753         for (apic = 0; apic < mp_napics; ++apic) {
754                 ux = io_apic_read(apic, IOAPIC_VER);
755                 io_apic_versions[apic] = ux;
756                 io_apic_set_id(apic, IO_TO_ID(apic));
757         }
758
759         /* program each IO APIC in the system */
760         for (apic = 0; apic < mp_napics; ++apic)
761                 if (io_apic_setup(apic) < 0)
762                         panic("IO APIC setup failure");
763
764 #endif  /* APIC_IO */
765
766         /*
767          * These are required for SMP operation
768          */
769
770         /* install a 'Spurious INTerrupt' vector */
771         setidt(XSPURIOUSINT_OFFSET, Xspuriousint,
772                SDT_SYSIGT, SEL_KPL, 0);
773
774         /* install an inter-CPU IPI for TLB invalidation */
775         setidt(XINVLTLB_OFFSET, Xinvltlb,
776                SDT_SYSIGT, SEL_KPL, 0);
777
778         /* install an inter-CPU IPI for IPIQ messaging */
779         setidt(XIPIQ_OFFSET, Xipiq,
780                SDT_SYSIGT, SEL_KPL, 0);
781
782         /* install a timer vector */
783         setidt(XTIMER_OFFSET, Xtimer,
784                SDT_SYSIGT, SEL_KPL, 0);
785         
786         /* install an inter-CPU IPI for CPU stop/restart */
787         setidt(XCPUSTOP_OFFSET, Xcpustop,
788                SDT_SYSIGT, SEL_KPL, 0);
789
790         /* start each Application Processor */
791         start_all_aps(boot_addr);
792 }
793
794
795 /*
796  * look for the MP spec signature
797  */
798
799 /* string defined by the Intel MP Spec as identifying the MP table */
800 #define MP_SIG          0x5f504d5f      /* _MP_ */
801 #define NEXT(X)         ((X) += 4)
802 static long
803 mptable_search_sig(u_int32_t target, int count)
804 {
805         vm_size_t map_size;
806         u_int32_t *addr;
807         int x, ret;
808
809         KKASSERT(target != 0);
810
811         map_size = count * sizeof(u_int32_t);
812         addr = pmap_mapdev((vm_paddr_t)target, map_size);
813
814         ret = 0;
815         for (x = 0; x < count; NEXT(x)) {
816                 if (addr[x] == MP_SIG) {
817                         /* make array index a byte index */
818                         ret = target + (x * sizeof(u_int32_t));
819                         break;
820                 }
821         }
822
823         pmap_unmapdev((vm_offset_t)addr, map_size);
824         return ret;
825 }
826
827
828 typedef struct BUSDATA {
829         u_char  bus_id;
830         enum busTypes bus_type;
831 }       bus_datum;
832
833 typedef struct INTDATA {
834         u_char  int_type;
835         u_short int_flags;
836         u_char  src_bus_id;
837         u_char  src_bus_irq;
838         u_char  dst_apic_id;
839         u_char  dst_apic_int;
840         u_char  int_vector;
841 }       io_int, local_int;
842
843 typedef struct BUSTYPENAME {
844         u_char  type;
845         char    name[7];
846 }       bus_type_name;
847
848 static bus_type_name bus_type_table[] =
849 {
850         {CBUS, "CBUS"},
851         {CBUSII, "CBUSII"},
852         {EISA, "EISA"},
853         {MCA, "MCA"},
854         {UNKNOWN_BUSTYPE, "---"},
855         {ISA, "ISA"},
856         {MCA, "MCA"},
857         {UNKNOWN_BUSTYPE, "---"},
858         {UNKNOWN_BUSTYPE, "---"},
859         {UNKNOWN_BUSTYPE, "---"},
860         {UNKNOWN_BUSTYPE, "---"},
861         {UNKNOWN_BUSTYPE, "---"},
862         {PCI, "PCI"},
863         {UNKNOWN_BUSTYPE, "---"},
864         {UNKNOWN_BUSTYPE, "---"},
865         {UNKNOWN_BUSTYPE, "---"},
866         {UNKNOWN_BUSTYPE, "---"},
867         {XPRESS, "XPRESS"},
868         {UNKNOWN_BUSTYPE, "---"}
869 };
870 /* from MP spec v1.4, table 5-1 */
871 static int default_data[7][5] =
872 {
873 /*   nbus, id0, type0, id1, type1 */
874         {1, 0, ISA, 255, 255},
875         {1, 0, EISA, 255, 255},
876         {1, 0, EISA, 255, 255},
877         {1, 0, MCA, 255, 255},
878         {2, 0, ISA, 1, PCI},
879         {2, 0, EISA, 1, PCI},
880         {2, 0, MCA, 1, PCI}
881 };
882
883
884 #ifdef APIC_IO
885
886 /* the bus data */
887 static bus_datum *bus_data;
888
889 /* the IO INT data, one entry per possible APIC INTerrupt */
890 static io_int  *io_apic_ints;
891 static int nintrs;
892
893 #endif
894
895 static int processor_entry      (proc_entry_ptr entry, int cpu);
896 #ifdef APIC_IO
897 static int bus_entry            (bus_entry_ptr entry, int bus);
898 static int io_apic_entry        (io_apic_entry_ptr entry, int apic);
899 static int int_entry            (int_entry_ptr entry, int intr);
900 #endif
901 static int lookup_bus_type      (char *name);
902
903
904 /*
905  * 1st pass on motherboard's Intel MP specification table.
906  *
907  * determines:
908  *      cpu_apic_address (common to all CPUs)
909  *      io_apic_address[N]
910  *      mp_naps
911  *      mp_nbusses
912  *      mp_napics
913  *      nintrs
914  *      need_hyperthreading_fixup
915  *      logical_cpus
916  */
917 static void
918 mptable_pass1(struct mptable_pos *mpt)
919 {
920 #ifdef APIC_IO
921         int     x;
922 #endif
923         mpfps_t fps;
924         mpcth_t cth;
925         int     totalSize;
926         void*   position;
927         int     count;
928         int     type;
929         u_int   id_mask;
930
931         POSTCODE(MPTABLE_PASS1_POST);
932
933         fps = mpt->mp_fps;
934         KKASSERT(fps != NULL);
935
936 #ifdef APIC_IO
937         /* clear various tables */
938         for (x = 0; x < NAPICID; ++x) {
939                 io_apic_address[x] = ~0;        /* IO APIC address table */
940         }
941 #endif
942
943         /* init everything to empty */
944         mp_naps = 0;
945 #ifdef APIC_IO
946         mp_nbusses = 0;
947         mp_napics = 0;
948         nintrs = 0;
949 #endif
950         id_mask = 0;
951
952         /* check for use of 'default' configuration */
953         if (fps->mpfb1 != 0) {
954                 /* use default addresses */
955                 cpu_apic_address = DEFAULT_APIC_BASE;
956 #ifdef APIC_IO
957                 io_apic_address[0] = DEFAULT_IO_APIC_BASE;
958 #endif
959
960                 /* fill in with defaults */
961                 mp_naps = 2;            /* includes BSP */
962 #if defined(APIC_IO)
963                 mp_nbusses = default_data[fps->mpfb1 - 1][0];
964                 mp_napics = 1;
965                 nintrs = 16;
966 #endif  /* APIC_IO */
967         }
968         else {
969                 cth = mpt->mp_cth;
970                 if (cth == NULL)
971                         panic("MP Configuration Table Header MISSING!");
972
973                 cpu_apic_address = (vm_offset_t) cth->apic_address;
974
975                 /* walk the table, recording info of interest */
976                 totalSize = cth->base_table_length - sizeof(struct MPCTH);
977                 position = (u_char *) cth + sizeof(struct MPCTH);
978                 count = cth->entry_count;
979
980                 while (count--) {
981                         switch (type = *(u_char *) position) {
982                         case 0: /* processor_entry */
983                                 if (((proc_entry_ptr)position)->cpu_flags
984                                     & PROCENTRY_FLAG_EN) {
985                                         ++mp_naps;
986                                         id_mask |= 1 <<
987                                             ((proc_entry_ptr)position)->apic_id;
988                                 }
989                                 break;
990                         case 1: /* bus_entry */
991 #ifdef APIC_IO
992                                 ++mp_nbusses;
993 #endif
994                                 break;
995                         case 2: /* io_apic_entry */
996 #ifdef APIC_IO
997                                 if (((io_apic_entry_ptr)position)->apic_flags
998                                         & IOAPICENTRY_FLAG_EN)
999                                         io_apic_address[mp_napics++] =
1000                                             (vm_offset_t)((io_apic_entry_ptr)
1001                                                 position)->apic_address;
1002 #endif
1003                                 break;
1004                         case 3: /* int_entry */
1005 #ifdef APIC_IO
1006                                 ++nintrs;
1007 #endif
1008                                 break;
1009                         case 4: /* int_entry */
1010                                 break;
1011                         default:
1012                                 panic("mpfps Base Table HOSED!");
1013                                 /* NOTREACHED */
1014                         }
1015
1016                         totalSize -= basetable_entry_types[type].length;
1017                         position = (uint8_t *)position +
1018                             basetable_entry_types[type].length;
1019                 }
1020         }
1021
1022         /* qualify the numbers */
1023         if (mp_naps > MAXCPU) {
1024                 kprintf("Warning: only using %d of %d available CPUs!\n",
1025                         MAXCPU, mp_naps);
1026                 mp_naps = MAXCPU;
1027         }
1028
1029         /* See if we need to fixup HT logical CPUs. */
1030         mptable_hyperthread_fixup(id_mask);
1031
1032         --mp_naps;      /* subtract the BSP */
1033 }
1034
1035
1036 /*
1037  * 2nd pass on motherboard's Intel MP specification table.
1038  *
1039  * sets:
1040  *      logical_cpus_mask
1041  *      ID_TO_IO(N), phy APIC ID to log CPU/IO table
1042  *      CPU_TO_ID(N), logical CPU to APIC ID table
1043  *      IO_TO_ID(N), logical IO to APIC ID table
1044  *      bus_data[N]
1045  *      io_apic_ints[N]
1046  */
1047 static int
1048 mptable_pass2(struct mptable_pos *mpt)
1049 {
1050         struct PROCENTRY proc;
1051         int     x;
1052         mpfps_t fps;
1053         mpcth_t cth;
1054         int     totalSize;
1055         void*   position;
1056         int     count;
1057         int     type;
1058         int     apic, bus, cpu, intr;
1059         int     i;
1060
1061         POSTCODE(MPTABLE_PASS2_POST);
1062
1063         fps = mpt->mp_fps;
1064         KKASSERT(fps != NULL);
1065
1066         /* Initialize fake proc entry for use with HT fixup. */
1067         bzero(&proc, sizeof(proc));
1068         proc.type = 0;
1069         proc.cpu_flags = PROCENTRY_FLAG_EN;
1070
1071 #ifdef APIC_IO
1072         MALLOC(io_apic_versions, u_int32_t *, sizeof(u_int32_t) * mp_napics,
1073             M_DEVBUF, M_WAITOK);
1074         MALLOC(ioapic, volatile ioapic_t **, sizeof(ioapic_t *) * mp_napics,
1075             M_DEVBUF, M_WAITOK | M_ZERO);
1076         MALLOC(io_apic_ints, io_int *, sizeof(io_int) * (nintrs + FIXUP_EXTRA_APIC_INTS),
1077             M_DEVBUF, M_WAITOK);
1078         MALLOC(bus_data, bus_datum *, sizeof(bus_datum) * mp_nbusses,
1079             M_DEVBUF, M_WAITOK);
1080 #endif
1081
1082 #ifdef APIC_IO
1083         for (i = 0; i < mp_napics; i++) {
1084                 ioapic[i] = permanent_io_mapping(io_apic_address[i]);
1085         }
1086 #endif
1087
1088         /* clear various tables */
1089         for (x = 0; x < NAPICID; ++x) {
1090                 CPU_TO_ID(x) = -1;      /* logical CPU to APIC ID table */
1091 #ifdef APIC_IO
1092                 ID_TO_IO(x) = -1;       /* phy APIC ID to log CPU/IO table */
1093                 IO_TO_ID(x) = -1;       /* logical IO to APIC ID table */
1094 #endif
1095         }
1096
1097 #ifdef APIC_IO
1098         /* clear bus data table */
1099         for (x = 0; x < mp_nbusses; ++x)
1100                 bus_data[x].bus_id = 0xff;
1101
1102         /* clear IO APIC INT table */
1103         for (x = 0; x < (nintrs + 1); ++x) {
1104                 io_apic_ints[x].int_type = 0xff;
1105                 io_apic_ints[x].int_vector = 0xff;
1106         }
1107 #endif
1108
1109         /* record whether PIC or virtual-wire mode */
1110         machintr_setvar_simple(MACHINTR_VAR_IMCR_PRESENT, fps->mpfb2 & 0x80);
1111
1112         /* check for use of 'default' configuration */
1113         if (fps->mpfb1 != 0)
1114                 return fps->mpfb1;      /* return default configuration type */
1115
1116         cth = mpt->mp_cth;
1117         if (cth == NULL)
1118                 panic("MP Configuration Table Header MISSING!");
1119
1120         /* walk the table, recording info of interest */
1121         totalSize = cth->base_table_length - sizeof(struct MPCTH);
1122         position = (u_char *) cth + sizeof(struct MPCTH);
1123         count = cth->entry_count;
1124         apic = bus = intr = 0;
1125         cpu = 1;                                /* pre-count the BSP */
1126
1127         while (count--) {
1128                 switch (type = *(u_char *) position) {
1129                 case 0:
1130                         if (processor_entry(position, cpu))
1131                                 ++cpu;
1132
1133                         if (need_hyperthreading_fixup) {
1134                                 /*
1135                                  * Create fake mptable processor entries
1136                                  * and feed them to processor_entry() to
1137                                  * enumerate the logical CPUs.
1138                                  */
1139                                 proc.apic_id = ((proc_entry_ptr)position)->apic_id;
1140                                 for (i = 1; i < logical_cpus; i++) {
1141                                         proc.apic_id++;
1142                                         processor_entry(&proc, cpu);
1143                                         logical_cpus_mask |= (1 << cpu);
1144                                         cpu++;
1145                                 }
1146                         }
1147                         break;
1148                 case 1:
1149 #ifdef APIC_IO
1150                         if (bus_entry(position, bus))
1151                                 ++bus;
1152 #endif
1153                         break;
1154                 case 2:
1155 #ifdef APIC_IO
1156                         if (io_apic_entry(position, apic))
1157                                 ++apic;
1158 #endif
1159                         break;
1160                 case 3:
1161 #ifdef APIC_IO
1162                         if (int_entry(position, intr))
1163                                 ++intr;
1164 #endif
1165                         break;
1166                 case 4:
1167                         /* int_entry(position); */
1168                         break;
1169                 default:
1170                         panic("mpfps Base Table HOSED!");
1171                         /* NOTREACHED */
1172                 }
1173
1174                 totalSize -= basetable_entry_types[type].length;
1175                 position = (uint8_t *)position + basetable_entry_types[type].length;
1176         }
1177
1178         if (CPU_TO_ID(0) < 0)
1179                 panic("NO BSP found!");
1180
1181         /* report fact that its NOT a default configuration */
1182         return 0;
1183 }
1184
1185
1186 /*
1187  * Check if we should perform a hyperthreading "fix-up" to
1188  * enumerate any logical CPU's that aren't already listed
1189  * in the table.
1190  *
1191  * XXX: We assume that all of the physical CPUs in the
1192  * system have the same number of logical CPUs.
1193  *
1194  * XXX: We assume that APIC ID's are allocated such that
1195  * the APIC ID's for a physical processor are aligned
1196  * with the number of logical CPU's in the processor.
1197  */
1198 static void
1199 mptable_hyperthread_fixup(u_int id_mask)
1200 {
1201         int i, id, lcpus_max;
1202
1203         if ((cpu_feature & CPUID_HTT) == 0)
1204                 return;
1205
1206         lcpus_max = (cpu_procinfo & CPUID_HTT_CORES) >> 16;
1207         if (lcpus_max <= 1)
1208                 return;
1209
1210         if (strcmp(cpu_vendor, "GenuineIntel") == 0) {
1211                 /*
1212                  * INSTRUCTION SET REFERENCE, A-M (#253666)
1213                  * Page 3-181, Table 3-20
1214                  * "The nearest power-of-2 integer that is not smaller
1215                  *  than EBX[23:16] is the number of unique initial APIC
1216                  *  IDs reserved for addressing different logical
1217                  *  processors in a physical package."
1218                  */
1219                 for (i = 0; ; ++i) {
1220                         if ((1 << i) >= lcpus_max) {
1221                                 lcpus_max = 1 << i;
1222                                 break;
1223                         }
1224                 }
1225         }
1226
1227         if (mp_naps == lcpus_max) {
1228                 /* We have nothing to fix */
1229                 return;
1230         } else if (mp_naps == 1) {
1231                 /* XXX this may be incorrect */
1232                 logical_cpus = lcpus_max;
1233         } else {
1234                 int cur, prev, dist;
1235
1236                 /*
1237                  * Calculate the distances between two nearest
1238                  * APIC IDs.  If all such distances are same,
1239                  * then it is the number of missing cpus that
1240                  * we are going to fill later.
1241                  */
1242                 dist = cur = prev = -1;
1243                 for (id = 0; id < MAXCPU; ++id) {
1244                         if ((id_mask & 1 << id) == 0)
1245                                 continue;
1246
1247                         cur = id;
1248                         if (prev >= 0) {
1249                                 int new_dist = cur - prev;
1250
1251                                 if (dist < 0)
1252                                         dist = new_dist;
1253
1254                                 /*
1255                                  * Make sure that all distances
1256                                  * between two nearest APIC IDs
1257                                  * are same.
1258                                  */
1259                                 if (dist != new_dist)
1260                                         return;
1261                         }
1262                         prev = cur;
1263                 }
1264                 if (dist == 1)
1265                         return;
1266
1267                 /* Must be power of 2 */
1268                 if (dist & (dist - 1))
1269                         return;
1270
1271                 /* Can't exceed CPU package capacity */
1272                 if (dist > lcpus_max)
1273                         logical_cpus = lcpus_max;
1274                 else
1275                         logical_cpus = dist;
1276         }
1277
1278         /*
1279          * For each APIC ID of a CPU that is set in the mask,
1280          * scan the other candidate APIC ID's for this
1281          * physical processor.  If any of those ID's are
1282          * already in the table, then kill the fixup.
1283          */
1284         for (id = 0; id < MAXCPU; id++) {
1285                 if ((id_mask & 1 << id) == 0)
1286                         continue;
1287                 /* First, make sure we are on a logical_cpus boundary. */
1288                 if (id % logical_cpus != 0)
1289                         return;
1290                 for (i = id + 1; i < id + logical_cpus; i++)
1291                         if ((id_mask & 1 << i) != 0)
1292                                 return;
1293         }
1294
1295         /*
1296          * Ok, the ID's checked out, so enable the fixup.  We have to fixup
1297          * mp_naps right now.
1298          */
1299         need_hyperthreading_fixup = 1;
1300         mp_naps *= logical_cpus;
1301 }
1302
1303 static int
1304 mptable_map(struct mptable_pos *mpt, vm_paddr_t mpfps_paddr)
1305 {
1306         mpfps_t fps = NULL;
1307         mpcth_t cth = NULL;
1308         vm_size_t cth_mapsz = 0;
1309
1310         bzero(mpt, sizeof(*mpt));
1311
1312         fps = pmap_mapdev(mpfps_paddr, sizeof(*fps));
1313         if (fps->pap != 0) {
1314                 /*
1315                  * Map configuration table header to get
1316                  * the base table size
1317                  */
1318                 cth = pmap_mapdev(fps->pap, sizeof(*cth));
1319                 cth_mapsz = cth->base_table_length;
1320                 pmap_unmapdev((vm_offset_t)cth, sizeof(*cth));
1321
1322                 if (cth_mapsz < sizeof(*cth)) {
1323                         kprintf("invalid base MP table length %d\n",
1324                                 (int)cth_mapsz);
1325                         pmap_unmapdev((vm_offset_t)fps, sizeof(*fps));
1326                         return EINVAL;
1327                 }
1328
1329                 /*
1330                  * Map the base table
1331                  */
1332                 cth = pmap_mapdev(fps->pap, cth_mapsz);
1333         }
1334
1335         mpt->mp_fps = fps;
1336         mpt->mp_cth = cth;
1337         mpt->mp_cth_mapsz = cth_mapsz;
1338
1339         return 0;
1340 }
1341
1342 static void
1343 mptable_unmap(struct mptable_pos *mpt)
1344 {
1345         if (mpt->mp_cth != NULL) {
1346                 pmap_unmapdev((vm_offset_t)mpt->mp_cth, mpt->mp_cth_mapsz);
1347                 mpt->mp_cth = NULL;
1348                 mpt->mp_cth_mapsz = 0;
1349         }
1350         if (mpt->mp_fps != NULL) {
1351                 pmap_unmapdev((vm_offset_t)mpt->mp_fps, sizeof(*mpt->mp_fps));
1352                 mpt->mp_fps = NULL;
1353         }
1354 }
1355
1356 #ifdef APIC_IO
1357
1358 void
1359 assign_apic_irq(int apic, int intpin, int irq)
1360 {
1361         int x;
1362         
1363         if (int_to_apicintpin[irq].ioapic != -1)
1364                 panic("assign_apic_irq: inconsistent table");
1365         
1366         int_to_apicintpin[irq].ioapic = apic;
1367         int_to_apicintpin[irq].int_pin = intpin;
1368         int_to_apicintpin[irq].apic_address = ioapic[apic];
1369         int_to_apicintpin[irq].redirindex = IOAPIC_REDTBL + 2 * intpin;
1370         
1371         for (x = 0; x < nintrs; x++) {
1372                 if ((io_apic_ints[x].int_type == 0 || 
1373                      io_apic_ints[x].int_type == 3) &&
1374                     io_apic_ints[x].int_vector == 0xff &&
1375                     io_apic_ints[x].dst_apic_id == IO_TO_ID(apic) &&
1376                     io_apic_ints[x].dst_apic_int == intpin)
1377                         io_apic_ints[x].int_vector = irq;
1378         }
1379 }
1380
1381 void
1382 revoke_apic_irq(int irq)
1383 {
1384         int x;
1385         int oldapic;
1386         int oldintpin;
1387         
1388         if (int_to_apicintpin[irq].ioapic == -1)
1389                 panic("revoke_apic_irq: inconsistent table");
1390         
1391         oldapic = int_to_apicintpin[irq].ioapic;
1392         oldintpin = int_to_apicintpin[irq].int_pin;
1393
1394         int_to_apicintpin[irq].ioapic = -1;
1395         int_to_apicintpin[irq].int_pin = 0;
1396         int_to_apicintpin[irq].apic_address = NULL;
1397         int_to_apicintpin[irq].redirindex = 0;
1398         
1399         for (x = 0; x < nintrs; x++) {
1400                 if ((io_apic_ints[x].int_type == 0 || 
1401                      io_apic_ints[x].int_type == 3) &&
1402                     io_apic_ints[x].int_vector != 0xff &&
1403                     io_apic_ints[x].dst_apic_id == IO_TO_ID(oldapic) &&
1404                     io_apic_ints[x].dst_apic_int == oldintpin)
1405                         io_apic_ints[x].int_vector = 0xff;
1406         }
1407 }
1408
1409 /*
1410  * Allocate an IRQ 
1411  */
1412 static void
1413 allocate_apic_irq(int intr)
1414 {
1415         int apic;
1416         int intpin;
1417         int irq;
1418         
1419         if (io_apic_ints[intr].int_vector != 0xff)
1420                 return;         /* Interrupt handler already assigned */
1421         
1422         if (io_apic_ints[intr].int_type != 0 &&
1423             (io_apic_ints[intr].int_type != 3 ||
1424              (io_apic_ints[intr].dst_apic_id == IO_TO_ID(0) &&
1425               io_apic_ints[intr].dst_apic_int == 0)))
1426                 return;         /* Not INT or ExtInt on != (0, 0) */
1427         
1428         irq = 0;
1429         while (irq < APIC_INTMAPSIZE &&
1430                int_to_apicintpin[irq].ioapic != -1)
1431                 irq++;
1432         
1433         if (irq >= APIC_INTMAPSIZE)
1434                 return;         /* No free interrupt handlers */
1435         
1436         apic = ID_TO_IO(io_apic_ints[intr].dst_apic_id);
1437         intpin = io_apic_ints[intr].dst_apic_int;
1438         
1439         assign_apic_irq(apic, intpin, irq);
1440 }
1441
1442
1443 static void
1444 swap_apic_id(int apic, int oldid, int newid)
1445 {
1446         int x;
1447         int oapic;
1448         
1449
1450         if (oldid == newid)
1451                 return;                 /* Nothing to do */
1452         
1453         kprintf("Changing APIC ID for IO APIC #%d from %d to %d in MP table\n",
1454                apic, oldid, newid);
1455         
1456         /* Swap physical APIC IDs in interrupt entries */
1457         for (x = 0; x < nintrs; x++) {
1458                 if (io_apic_ints[x].dst_apic_id == oldid)
1459                         io_apic_ints[x].dst_apic_id = newid;
1460                 else if (io_apic_ints[x].dst_apic_id == newid)
1461                         io_apic_ints[x].dst_apic_id = oldid;
1462         }
1463         
1464         /* Swap physical APIC IDs in IO_TO_ID mappings */
1465         for (oapic = 0; oapic < mp_napics; oapic++)
1466                 if (IO_TO_ID(oapic) == newid)
1467                         break;
1468         
1469         if (oapic < mp_napics) {
1470                 kprintf("Changing APIC ID for IO APIC #%d from "
1471                        "%d to %d in MP table\n",
1472                        oapic, newid, oldid);
1473                 IO_TO_ID(oapic) = oldid;
1474         }
1475         IO_TO_ID(apic) = newid;
1476 }
1477
1478
1479 static void
1480 fix_id_to_io_mapping(void)
1481 {
1482         int x;
1483
1484         for (x = 0; x < NAPICID; x++)
1485                 ID_TO_IO(x) = -1;
1486         
1487         for (x = 0; x <= mp_naps; x++)
1488                 if (CPU_TO_ID(x) < NAPICID)
1489                         ID_TO_IO(CPU_TO_ID(x)) = x;
1490         
1491         for (x = 0; x < mp_napics; x++)
1492                 if (IO_TO_ID(x) < NAPICID)
1493                         ID_TO_IO(IO_TO_ID(x)) = x;
1494 }
1495
1496
1497 static int
1498 first_free_apic_id(void)
1499 {
1500         int freeid, x;
1501         
1502         for (freeid = 0; freeid < NAPICID; freeid++) {
1503                 for (x = 0; x <= mp_naps; x++)
1504                         if (CPU_TO_ID(x) == freeid)
1505                                 break;
1506                 if (x <= mp_naps)
1507                         continue;
1508                 for (x = 0; x < mp_napics; x++)
1509                         if (IO_TO_ID(x) == freeid)
1510                                 break;
1511                 if (x < mp_napics)
1512                         continue;
1513                 return freeid;
1514         }
1515         return freeid;
1516 }
1517
1518
1519 static int
1520 io_apic_id_acceptable(int apic, int id)
1521 {
1522         int cpu;                /* Logical CPU number */
1523         int oapic;              /* Logical IO APIC number for other IO APIC */
1524
1525         if (id >= NAPICID)
1526                 return 0;       /* Out of range */
1527         
1528         for (cpu = 0; cpu <= mp_naps; cpu++)
1529                 if (CPU_TO_ID(cpu) == id)
1530                         return 0;       /* Conflict with CPU */
1531         
1532         for (oapic = 0; oapic < mp_napics && oapic < apic; oapic++)
1533                 if (IO_TO_ID(oapic) == id)
1534                         return 0;       /* Conflict with other APIC */
1535         
1536         return 1;               /* ID is acceptable for IO APIC */
1537 }
1538
1539 static
1540 io_int *
1541 io_apic_find_int_entry(int apic, int pin)
1542 {
1543         int     x;
1544
1545         /* search each of the possible INTerrupt sources */
1546         for (x = 0; x < nintrs; ++x) {
1547                 if ((apic == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
1548                     (pin == io_apic_ints[x].dst_apic_int))
1549                         return (&io_apic_ints[x]);
1550         }
1551         return NULL;
1552 }
1553
1554 #endif
1555
1556 /*
1557  * parse an Intel MP specification table
1558  */
1559 static void
1560 mptable_fix(void)
1561 {
1562 #ifdef APIC_IO
1563         int     x;
1564         int     id;
1565         int     apic;           /* IO APIC unit number */
1566         int     freeid;         /* Free physical APIC ID */
1567         int     physid;         /* Current physical IO APIC ID */
1568         io_int *io14;
1569         int     bus_0 = 0;      /* Stop GCC warning */
1570         int     bus_pci = 0;    /* Stop GCC warning */
1571         int     num_pci_bus;
1572
1573         /*
1574          * Fix mis-numbering of the PCI bus and its INT entries if the BIOS
1575          * did it wrong.  The MP spec says that when more than 1 PCI bus
1576          * exists the BIOS must begin with bus entries for the PCI bus and use
1577          * actual PCI bus numbering.  This implies that when only 1 PCI bus
1578          * exists the BIOS can choose to ignore this ordering, and indeed many
1579          * MP motherboards do ignore it.  This causes a problem when the PCI
1580          * sub-system makes requests of the MP sub-system based on PCI bus
1581          * numbers.     So here we look for the situation and renumber the
1582          * busses and associated INTs in an effort to "make it right".
1583          */
1584
1585         /* find bus 0, PCI bus, count the number of PCI busses */
1586         for (num_pci_bus = 0, x = 0; x < mp_nbusses; ++x) {
1587                 if (bus_data[x].bus_id == 0) {
1588                         bus_0 = x;
1589                 }
1590                 if (bus_data[x].bus_type == PCI) {
1591                         ++num_pci_bus;
1592                         bus_pci = x;
1593                 }
1594         }
1595         /*
1596          * bus_0 == slot of bus with ID of 0
1597          * bus_pci == slot of last PCI bus encountered
1598          */
1599
1600         /* check the 1 PCI bus case for sanity */
1601         /* if it is number 0 all is well */
1602         if (num_pci_bus == 1 &&
1603             bus_data[bus_pci].bus_id != 0) {
1604                 
1605                 /* mis-numbered, swap with whichever bus uses slot 0 */
1606
1607                 /* swap the bus entry types */
1608                 bus_data[bus_pci].bus_type = bus_data[bus_0].bus_type;
1609                 bus_data[bus_0].bus_type = PCI;
1610
1611                 /* swap each relavant INTerrupt entry */
1612                 id = bus_data[bus_pci].bus_id;
1613                 for (x = 0; x < nintrs; ++x) {
1614                         if (io_apic_ints[x].src_bus_id == id) {
1615                                 io_apic_ints[x].src_bus_id = 0;
1616                         }
1617                         else if (io_apic_ints[x].src_bus_id == 0) {
1618                                 io_apic_ints[x].src_bus_id = id;
1619                         }
1620                 }
1621         }
1622
1623         /* Assign IO APIC IDs.
1624          * 
1625          * First try the existing ID. If a conflict is detected, try
1626          * the ID in the MP table.  If a conflict is still detected, find
1627          * a free id.
1628          *
1629          * We cannot use the ID_TO_IO table before all conflicts has been
1630          * resolved and the table has been corrected.
1631          */
1632         for (apic = 0; apic < mp_napics; ++apic) { /* For all IO APICs */
1633                 
1634                 /* First try to use the value set by the BIOS */
1635                 physid = io_apic_get_id(apic);
1636                 if (io_apic_id_acceptable(apic, physid)) {
1637                         if (IO_TO_ID(apic) != physid)
1638                                 swap_apic_id(apic, IO_TO_ID(apic), physid);
1639                         continue;
1640                 }
1641
1642                 /* Then check if the value in the MP table is acceptable */
1643                 if (io_apic_id_acceptable(apic, IO_TO_ID(apic)))
1644                         continue;
1645
1646                 /* Last resort, find a free APIC ID and use it */
1647                 freeid = first_free_apic_id();
1648                 if (freeid >= NAPICID)
1649                         panic("No free physical APIC IDs found");
1650                 
1651                 if (io_apic_id_acceptable(apic, freeid)) {
1652                         swap_apic_id(apic, IO_TO_ID(apic), freeid);
1653                         continue;
1654                 }
1655                 panic("Free physical APIC ID not usable");
1656         }
1657         fix_id_to_io_mapping();
1658
1659         /* detect and fix broken Compaq MP table */
1660         if (apic_int_type(0, 0) == -1) {
1661                 kprintf("APIC_IO: MP table broken: 8259->APIC entry missing!\n");
1662                 io_apic_ints[nintrs].int_type = 3;      /* ExtInt */
1663                 io_apic_ints[nintrs].int_vector = 0xff; /* Unassigned */
1664                 /* XXX fixme, set src bus id etc, but it doesn't seem to hurt */
1665                 io_apic_ints[nintrs].dst_apic_id = IO_TO_ID(0);
1666                 io_apic_ints[nintrs].dst_apic_int = 0;  /* Pin 0 */
1667                 nintrs++;
1668         } else if (apic_int_type(0, 0) == 0) {
1669                 kprintf("APIC_IO: MP table broken: ExtINT entry corrupt!\n");
1670                 for (x = 0; x < nintrs; ++x)
1671                         if ((0 == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
1672                             (0 == io_apic_ints[x].dst_apic_int)) {
1673                                 io_apic_ints[x].int_type = 3;
1674                                 io_apic_ints[x].int_vector = 0xff;
1675                                 break;
1676                         }
1677         }
1678
1679         /*
1680          * Fix missing IRQ 15 when IRQ 14 is an ISA interrupt.  IDE
1681          * controllers universally come in pairs.  If IRQ 14 is specified
1682          * as an ISA interrupt, then IRQ 15 had better be too.
1683          *
1684          * [ Shuttle XPC / AMD Athlon X2 ]
1685          *      The MPTable is missing an entry for IRQ 15.  Note that the
1686          *      ACPI table has an entry for both 14 and 15.
1687          */
1688         if (apic_int_type(0, 14) == 0 && apic_int_type(0, 15) == -1) {
1689                 kprintf("APIC_IO: MP table broken: IRQ 15 not ISA when IRQ 14 is!\n");
1690                 io14 = io_apic_find_int_entry(0, 14);
1691                 io_apic_ints[nintrs] = *io14;
1692                 io_apic_ints[nintrs].src_bus_irq = 15;
1693                 io_apic_ints[nintrs].dst_apic_int = 15;
1694                 nintrs++;
1695         }
1696 #endif
1697 }
1698
1699 #ifdef APIC_IO
1700
1701 /* Assign low level interrupt handlers */
1702 static void
1703 setup_apic_irq_mapping(void)
1704 {
1705         int     x;
1706         int     int_vector;
1707
1708         /* Clear array */
1709         for (x = 0; x < APIC_INTMAPSIZE; x++) {
1710                 int_to_apicintpin[x].ioapic = -1;
1711                 int_to_apicintpin[x].int_pin = 0;
1712                 int_to_apicintpin[x].apic_address = NULL;
1713                 int_to_apicintpin[x].redirindex = 0;
1714         }
1715
1716         /* First assign ISA/EISA interrupts */
1717         for (x = 0; x < nintrs; x++) {
1718                 int_vector = io_apic_ints[x].src_bus_irq;
1719                 if (int_vector < APIC_INTMAPSIZE &&
1720                     io_apic_ints[x].int_vector == 0xff && 
1721                     int_to_apicintpin[int_vector].ioapic == -1 &&
1722                     (apic_int_is_bus_type(x, ISA) ||
1723                      apic_int_is_bus_type(x, EISA)) &&
1724                     io_apic_ints[x].int_type == 0) {
1725                         assign_apic_irq(ID_TO_IO(io_apic_ints[x].dst_apic_id), 
1726                                         io_apic_ints[x].dst_apic_int,
1727                                         int_vector);
1728                 }
1729         }
1730
1731         /* Assign ExtInt entry if no ISA/EISA interrupt 0 entry */
1732         for (x = 0; x < nintrs; x++) {
1733                 if (io_apic_ints[x].dst_apic_int == 0 &&
1734                     io_apic_ints[x].dst_apic_id == IO_TO_ID(0) &&
1735                     io_apic_ints[x].int_vector == 0xff && 
1736                     int_to_apicintpin[0].ioapic == -1 &&
1737                     io_apic_ints[x].int_type == 3) {
1738                         assign_apic_irq(0, 0, 0);
1739                         break;
1740                 }
1741         }
1742
1743         /* Assign PCI interrupts */
1744         for (x = 0; x < nintrs; ++x) {
1745                 if (io_apic_ints[x].int_type == 0 &&
1746                     io_apic_ints[x].int_vector == 0xff && 
1747                     apic_int_is_bus_type(x, PCI))
1748                         allocate_apic_irq(x);
1749         }
1750 }
1751
1752 #endif
1753
1754 void
1755 mp_set_cpuids(int cpu_id, int apic_id)
1756 {
1757         CPU_TO_ID(cpu_id) = apic_id;
1758         ID_TO_CPU(apic_id) = cpu_id;
1759 }
1760
1761 static int
1762 processor_entry(proc_entry_ptr entry, int cpu)
1763 {
1764         KKASSERT(cpu > 0);
1765
1766         /* check for usability */
1767         if (!(entry->cpu_flags & PROCENTRY_FLAG_EN))
1768                 return 0;
1769
1770         if(entry->apic_id >= NAPICID)
1771                 panic("CPU APIC ID out of range (0..%d)", NAPICID - 1);
1772         /* check for BSP flag */
1773         if (entry->cpu_flags & PROCENTRY_FLAG_BP) {
1774                 mp_set_cpuids(0, entry->apic_id);
1775                 return 0;       /* its already been counted */
1776         }
1777
1778         /* add another AP to list, if less than max number of CPUs */
1779         else if (cpu < MAXCPU) {
1780                 mp_set_cpuids(cpu, entry->apic_id);
1781                 return 1;
1782         }
1783
1784         return 0;
1785 }
1786
1787 #ifdef APIC_IO
1788
1789 static int
1790 bus_entry(bus_entry_ptr entry, int bus)
1791 {
1792         int     x;
1793         char    c, name[8];
1794
1795         /* encode the name into an index */
1796         for (x = 0; x < 6; ++x) {
1797                 if ((c = entry->bus_type[x]) == ' ')
1798                         break;
1799                 name[x] = c;
1800         }
1801         name[x] = '\0';
1802
1803         if ((x = lookup_bus_type(name)) == UNKNOWN_BUSTYPE)
1804                 panic("unknown bus type: '%s'", name);
1805
1806         bus_data[bus].bus_id = entry->bus_id;
1807         bus_data[bus].bus_type = x;
1808
1809         return 1;
1810 }
1811
1812 static int
1813 io_apic_entry(io_apic_entry_ptr entry, int apic)
1814 {
1815         if (!(entry->apic_flags & IOAPICENTRY_FLAG_EN))
1816                 return 0;
1817
1818         IO_TO_ID(apic) = entry->apic_id;
1819         if (entry->apic_id < NAPICID)
1820                 ID_TO_IO(entry->apic_id) = apic;
1821
1822         return 1;
1823 }
1824
1825 #endif
1826
1827 static int
1828 lookup_bus_type(char *name)
1829 {
1830         int     x;
1831
1832         for (x = 0; x < MAX_BUSTYPE; ++x)
1833                 if (strcmp(bus_type_table[x].name, name) == 0)
1834                         return bus_type_table[x].type;
1835
1836         return UNKNOWN_BUSTYPE;
1837 }
1838
1839 #ifdef APIC_IO
1840
1841 static int
1842 int_entry(int_entry_ptr entry, int intr)
1843 {
1844         int apic;
1845
1846         io_apic_ints[intr].int_type = entry->int_type;
1847         io_apic_ints[intr].int_flags = entry->int_flags;
1848         io_apic_ints[intr].src_bus_id = entry->src_bus_id;
1849         io_apic_ints[intr].src_bus_irq = entry->src_bus_irq;
1850         if (entry->dst_apic_id == 255) {
1851                 /* This signal goes to all IO APICS.  Select an IO APIC
1852                    with sufficient number of interrupt pins */
1853                 for (apic = 0; apic < mp_napics; apic++)
1854                         if (((io_apic_read(apic, IOAPIC_VER) & 
1855                               IOART_VER_MAXREDIR) >> MAXREDIRSHIFT) >= 
1856                             entry->dst_apic_int)
1857                                 break;
1858                 if (apic < mp_napics)
1859                         io_apic_ints[intr].dst_apic_id = IO_TO_ID(apic);
1860                 else
1861                         io_apic_ints[intr].dst_apic_id = entry->dst_apic_id;
1862         } else
1863                 io_apic_ints[intr].dst_apic_id = entry->dst_apic_id;
1864         io_apic_ints[intr].dst_apic_int = entry->dst_apic_int;
1865
1866         return 1;
1867 }
1868
1869 static int
1870 apic_int_is_bus_type(int intr, int bus_type)
1871 {
1872         int     bus;
1873
1874         for (bus = 0; bus < mp_nbusses; ++bus)
1875                 if ((bus_data[bus].bus_id == io_apic_ints[intr].src_bus_id)
1876                     && ((int) bus_data[bus].bus_type == bus_type))
1877                         return 1;
1878
1879         return 0;
1880 }
1881
1882 /*
1883  * Given a traditional ISA INT mask, return an APIC mask.
1884  */
1885 u_int
1886 isa_apic_mask(u_int isa_mask)
1887 {
1888         int isa_irq;
1889         int apic_pin;
1890
1891 #if defined(SKIP_IRQ15_REDIRECT)
1892         if (isa_mask == (1 << 15)) {
1893                 kprintf("skipping ISA IRQ15 redirect\n");
1894                 return isa_mask;
1895         }
1896 #endif  /* SKIP_IRQ15_REDIRECT */
1897
1898         isa_irq = ffs(isa_mask);                /* find its bit position */
1899         if (isa_irq == 0)                       /* doesn't exist */
1900                 return 0;
1901         --isa_irq;                              /* make it zero based */
1902
1903         apic_pin = isa_apic_irq(isa_irq);       /* look for APIC connection */
1904         if (apic_pin == -1)
1905                 return 0;
1906
1907         return (1 << apic_pin);                 /* convert pin# to a mask */
1908 }
1909
1910 /*
1911  * Determine which APIC pin an ISA/EISA INT is attached to.
1912  */
1913 #define INTTYPE(I)      (io_apic_ints[(I)].int_type)
1914 #define INTPIN(I)       (io_apic_ints[(I)].dst_apic_int)
1915 #define INTIRQ(I)       (io_apic_ints[(I)].int_vector)
1916 #define INTAPIC(I)      (ID_TO_IO(io_apic_ints[(I)].dst_apic_id))
1917
1918 #define SRCBUSIRQ(I)    (io_apic_ints[(I)].src_bus_irq)
1919 int
1920 isa_apic_irq(int isa_irq)
1921 {
1922         int     intr;
1923
1924         for (intr = 0; intr < nintrs; ++intr) {         /* check each record */
1925                 if (INTTYPE(intr) == 0) {               /* standard INT */
1926                         if (SRCBUSIRQ(intr) == isa_irq) {
1927                                 if (apic_int_is_bus_type(intr, ISA) ||
1928                                     apic_int_is_bus_type(intr, EISA)) {
1929                                         if (INTIRQ(intr) == 0xff)
1930                                                 return -1; /* unassigned */
1931                                         return INTIRQ(intr);    /* found */
1932                                 }
1933                         }
1934                 }
1935         }
1936         return -1;                                      /* NOT found */
1937 }
1938
1939
1940 /*
1941  * Determine which APIC pin a PCI INT is attached to.
1942  */
1943 #define SRCBUSID(I)     (io_apic_ints[(I)].src_bus_id)
1944 #define SRCBUSDEVICE(I) ((io_apic_ints[(I)].src_bus_irq >> 2) & 0x1f)
1945 #define SRCBUSLINE(I)   (io_apic_ints[(I)].src_bus_irq & 0x03)
1946 int
1947 pci_apic_irq(int pciBus, int pciDevice, int pciInt)
1948 {
1949         int     intr;
1950
1951         --pciInt;                                       /* zero based */
1952
1953         for (intr = 0; intr < nintrs; ++intr) {         /* check each record */
1954                 if ((INTTYPE(intr) == 0)                /* standard INT */
1955                     && (SRCBUSID(intr) == pciBus)
1956                     && (SRCBUSDEVICE(intr) == pciDevice)
1957                     && (SRCBUSLINE(intr) == pciInt)) {  /* a candidate IRQ */
1958                         if (apic_int_is_bus_type(intr, PCI)) {
1959                                 if (INTIRQ(intr) == 0xff) {
1960                                         kprintf("IOAPIC: pci_apic_irq() "
1961                                                 "failed\n");
1962                                         return -1;      /* unassigned */
1963                                 }
1964                                 return INTIRQ(intr);    /* exact match */
1965                         }
1966                 }
1967         }
1968
1969         return -1;                                      /* NOT found */
1970 }
1971
1972 int
1973 next_apic_irq(int irq) 
1974 {
1975         int intr, ointr;
1976         int bus, bustype;
1977
1978         bus = 0;
1979         bustype = 0;
1980         for (intr = 0; intr < nintrs; intr++) {
1981                 if (INTIRQ(intr) != irq || INTTYPE(intr) != 0)
1982                         continue;
1983                 bus = SRCBUSID(intr);
1984                 bustype = apic_bus_type(bus);
1985                 if (bustype != ISA &&
1986                     bustype != EISA &&
1987                     bustype != PCI)
1988                         continue;
1989                 break;
1990         }
1991         if (intr >= nintrs) {
1992                 return -1;
1993         }
1994         for (ointr = intr + 1; ointr < nintrs; ointr++) {
1995                 if (INTTYPE(ointr) != 0)
1996                         continue;
1997                 if (bus != SRCBUSID(ointr))
1998                         continue;
1999                 if (bustype == PCI) {
2000                         if (SRCBUSDEVICE(intr) != SRCBUSDEVICE(ointr))
2001                                 continue;
2002                         if (SRCBUSLINE(intr) != SRCBUSLINE(ointr))
2003                                 continue;
2004                 }
2005                 if (bustype == ISA || bustype == EISA) {
2006                         if (SRCBUSIRQ(intr) != SRCBUSIRQ(ointr))
2007                                 continue;
2008                 }
2009                 if (INTPIN(intr) == INTPIN(ointr))
2010                         continue;
2011                 break;
2012         }
2013         if (ointr >= nintrs) {
2014                 return -1;
2015         }
2016         return INTIRQ(ointr);
2017 }
2018 #undef SRCBUSLINE
2019 #undef SRCBUSDEVICE
2020 #undef SRCBUSID
2021 #undef SRCBUSIRQ
2022
2023 #undef INTPIN
2024 #undef INTIRQ
2025 #undef INTAPIC
2026 #undef INTTYPE
2027
2028 #endif
2029
2030 /*
2031  * Reprogram the MB chipset to NOT redirect an ISA INTerrupt.
2032  *
2033  * XXX FIXME:
2034  *  Exactly what this means is unclear at this point.  It is a solution
2035  *  for motherboards that redirect the MBIRQ0 pin.  Generically a motherboard
2036  *  could route any of the ISA INTs to upper (>15) IRQ values.  But most would
2037  *  NOT be redirected via MBIRQ0, thus "undirect()ing" them would NOT be an
2038  *  option.
2039  */
2040 int
2041 undirect_isa_irq(int rirq)
2042 {
2043 #if defined(READY)
2044         if (bootverbose)
2045             kprintf("Freeing redirected ISA irq %d.\n", rirq);
2046         /** FIXME: tickle the MB redirector chip */
2047         return /* XXX */;
2048 #else
2049         if (bootverbose)
2050             kprintf("Freeing (NOT implemented) redirected ISA irq %d.\n", rirq);
2051         return 0;
2052 #endif  /* READY */
2053 }
2054
2055
2056 /*
2057  * Reprogram the MB chipset to NOT redirect a PCI INTerrupt
2058  */
2059 int
2060 undirect_pci_irq(int rirq)
2061 {
2062 #if defined(READY)
2063         if (bootverbose)
2064                 kprintf("Freeing redirected PCI irq %d.\n", rirq);
2065
2066         /** FIXME: tickle the MB redirector chip */
2067         return /* XXX */;
2068 #else
2069         if (bootverbose)
2070                 kprintf("Freeing (NOT implemented) redirected PCI irq %d.\n",
2071                        rirq);
2072         return 0;
2073 #endif  /* READY */
2074 }
2075
2076
2077 #ifdef APIC_IO
2078
2079 /*
2080  * given a bus ID, return:
2081  *  the bus type if found
2082  *  -1 if NOT found
2083  */
2084 int
2085 apic_bus_type(int id)
2086 {
2087         int     x;
2088
2089         for (x = 0; x < mp_nbusses; ++x)
2090                 if (bus_data[x].bus_id == id)
2091                         return bus_data[x].bus_type;
2092
2093         return -1;
2094 }
2095
2096 /*
2097  * given a LOGICAL APIC# and pin#, return:
2098  *  the associated src bus ID if found
2099  *  -1 if NOT found
2100  */
2101 int
2102 apic_src_bus_id(int apic, int pin)
2103 {
2104         int     x;
2105
2106         /* search each of the possible INTerrupt sources */
2107         for (x = 0; x < nintrs; ++x)
2108                 if ((apic == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
2109                     (pin == io_apic_ints[x].dst_apic_int))
2110                         return (io_apic_ints[x].src_bus_id);
2111
2112         return -1;              /* NOT found */
2113 }
2114
2115 /*
2116  * given a LOGICAL APIC# and pin#, return:
2117  *  the associated src bus IRQ if found
2118  *  -1 if NOT found
2119  */
2120 int
2121 apic_src_bus_irq(int apic, int pin)
2122 {
2123         int     x;
2124
2125         for (x = 0; x < nintrs; x++)
2126                 if ((apic == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
2127                     (pin == io_apic_ints[x].dst_apic_int))
2128                         return (io_apic_ints[x].src_bus_irq);
2129
2130         return -1;              /* NOT found */
2131 }
2132
2133
2134 /*
2135  * given a LOGICAL APIC# and pin#, return:
2136  *  the associated INTerrupt type if found
2137  *  -1 if NOT found
2138  */
2139 int
2140 apic_int_type(int apic, int pin)
2141 {
2142         int     x;
2143
2144         /* search each of the possible INTerrupt sources */
2145         for (x = 0; x < nintrs; ++x) {
2146                 if ((apic == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
2147                     (pin == io_apic_ints[x].dst_apic_int))
2148                         return (io_apic_ints[x].int_type);
2149         }
2150         return -1;              /* NOT found */
2151 }
2152
2153 /*
2154  * Return the IRQ associated with an APIC pin
2155  */
2156 int 
2157 apic_irq(int apic, int pin)
2158 {
2159         int x;
2160         int res;
2161
2162         for (x = 0; x < nintrs; ++x) {
2163                 if ((apic == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
2164                     (pin == io_apic_ints[x].dst_apic_int)) {
2165                         res = io_apic_ints[x].int_vector;
2166                         if (res == 0xff)
2167                                 return -1;
2168                         if (apic != int_to_apicintpin[res].ioapic)
2169                                 panic("apic_irq: inconsistent table %d/%d", apic, int_to_apicintpin[res].ioapic);
2170                         if (pin != int_to_apicintpin[res].int_pin)
2171                                 panic("apic_irq inconsistent table (2)");
2172                         return res;
2173                 }
2174         }
2175         return -1;
2176 }
2177
2178
2179 /*
2180  * given a LOGICAL APIC# and pin#, return:
2181  *  the associated trigger mode if found
2182  *  -1 if NOT found
2183  */
2184 int
2185 apic_trigger(int apic, int pin)
2186 {
2187         int     x;
2188
2189         /* search each of the possible INTerrupt sources */
2190         for (x = 0; x < nintrs; ++x)
2191                 if ((apic == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
2192                     (pin == io_apic_ints[x].dst_apic_int))
2193                         return ((io_apic_ints[x].int_flags >> 2) & 0x03);
2194
2195         return -1;              /* NOT found */
2196 }
2197
2198
2199 /*
2200  * given a LOGICAL APIC# and pin#, return:
2201  *  the associated 'active' level if found
2202  *  -1 if NOT found
2203  */
2204 int
2205 apic_polarity(int apic, int pin)
2206 {
2207         int     x;
2208
2209         /* search each of the possible INTerrupt sources */
2210         for (x = 0; x < nintrs; ++x)
2211                 if ((apic == ID_TO_IO(io_apic_ints[x].dst_apic_id)) &&
2212                     (pin == io_apic_ints[x].dst_apic_int))
2213                         return (io_apic_ints[x].int_flags & 0x03);
2214
2215         return -1;              /* NOT found */
2216 }
2217
2218 #endif
2219
2220 /*
2221  * set data according to MP defaults
2222  * FIXME: probably not complete yet...
2223  */
2224 static void
2225 mptable_default(int type)
2226 {
2227         int     ap_cpu_id, boot_cpu_id;
2228 #if defined(APIC_IO)
2229         int     io_apic_id;
2230         int     pin;
2231 #endif  /* APIC_IO */
2232
2233 #if 0
2234         kprintf("  MP default config type: %d\n", type);
2235         switch (type) {
2236         case 1:
2237                 kprintf("   bus: ISA, APIC: 82489DX\n");
2238                 break;
2239         case 2:
2240                 kprintf("   bus: EISA, APIC: 82489DX\n");
2241                 break;
2242         case 3:
2243                 kprintf("   bus: EISA, APIC: 82489DX\n");
2244                 break;
2245         case 4:
2246                 kprintf("   bus: MCA, APIC: 82489DX\n");
2247                 break;
2248         case 5:
2249                 kprintf("   bus: ISA+PCI, APIC: Integrated\n");
2250                 break;
2251         case 6:
2252                 kprintf("   bus: EISA+PCI, APIC: Integrated\n");
2253                 break;
2254         case 7:
2255                 kprintf("   bus: MCA+PCI, APIC: Integrated\n");
2256                 break;
2257         default:
2258                 kprintf("   future type\n");
2259                 break;
2260                 /* NOTREACHED */
2261         }
2262 #endif  /* 0 */
2263
2264         boot_cpu_id = (lapic->id & APIC_ID_MASK) >> 24;
2265         ap_cpu_id = (boot_cpu_id == 0) ? 1 : 0;
2266
2267         /* BSP */
2268         CPU_TO_ID(0) = boot_cpu_id;
2269         ID_TO_CPU(boot_cpu_id) = 0;
2270
2271         /* one and only AP */
2272         CPU_TO_ID(1) = ap_cpu_id;
2273         ID_TO_CPU(ap_cpu_id) = 1;
2274
2275 #if defined(APIC_IO)
2276         /* one and only IO APIC */
2277         io_apic_id = (io_apic_read(0, IOAPIC_ID) & APIC_ID_MASK) >> 24;
2278
2279         /*
2280          * sanity check, refer to MP spec section 3.6.6, last paragraph
2281          * necessary as some hardware isn't properly setting up the IO APIC
2282          */
2283 #if defined(REALLY_ANAL_IOAPICID_VALUE)
2284         if (io_apic_id != 2) {
2285 #else
2286         if ((io_apic_id == 0) || (io_apic_id == 1) || (io_apic_id == 15)) {
2287 #endif  /* REALLY_ANAL_IOAPICID_VALUE */
2288                 io_apic_set_id(0, 2);
2289                 io_apic_id = 2;
2290         }
2291         IO_TO_ID(0) = io_apic_id;
2292         ID_TO_IO(io_apic_id) = 0;
2293 #endif  /* APIC_IO */
2294
2295         /* fill out bus entries */
2296         switch (type) {
2297         case 1:
2298         case 2:
2299         case 3:
2300         case 4:
2301         case 5:
2302         case 6:
2303         case 7:
2304 #ifdef APIC_IO
2305                 bus_data[0].bus_id = default_data[type - 1][1];
2306                 bus_data[0].bus_type = default_data[type - 1][2];
2307                 bus_data[1].bus_id = default_data[type - 1][3];
2308                 bus_data[1].bus_type = default_data[type - 1][4];
2309 #endif
2310                 break;
2311
2312         /* case 4: case 7:                 MCA NOT supported */
2313         default:                /* illegal/reserved */
2314                 panic("BAD default MP config: %d", type);
2315                 /* NOTREACHED */
2316         }
2317
2318 #if defined(APIC_IO)
2319         /* general cases from MP v1.4, table 5-2 */
2320         for (pin = 0; pin < 16; ++pin) {
2321                 io_apic_ints[pin].int_type = 0;
2322                 io_apic_ints[pin].int_flags = 0x05;     /* edge/active-hi */
2323                 io_apic_ints[pin].src_bus_id = 0;
2324                 io_apic_ints[pin].src_bus_irq = pin;    /* IRQ2 caught below */
2325                 io_apic_ints[pin].dst_apic_id = io_apic_id;
2326                 io_apic_ints[pin].dst_apic_int = pin;   /* 1-to-1 */
2327         }
2328
2329         /* special cases from MP v1.4, table 5-2 */
2330         if (type == 2) {
2331                 io_apic_ints[2].int_type = 0xff;        /* N/C */
2332                 io_apic_ints[13].int_type = 0xff;       /* N/C */
2333 #if !defined(APIC_MIXED_MODE)
2334                 /** FIXME: ??? */
2335                 panic("sorry, can't support type 2 default yet");
2336 #endif  /* APIC_MIXED_MODE */
2337         }
2338         else
2339                 io_apic_ints[2].src_bus_irq = 0;        /* ISA IRQ0 is on APIC INT 2 */
2340
2341         if (type == 7)
2342                 io_apic_ints[0].int_type = 0xff;        /* N/C */
2343         else
2344                 io_apic_ints[0].int_type = 3;   /* vectored 8259 */
2345 #endif  /* APIC_IO */
2346 }
2347
2348 /*
2349  * Map a physical memory address representing I/O into KVA.  The I/O
2350  * block is assumed not to cross a page boundary.
2351  */
2352 void *
2353 permanent_io_mapping(vm_paddr_t pa)
2354 {
2355         KKASSERT(pa < 0x100000000LL);
2356
2357         return pmap_mapdev_uncacheable(pa, PAGE_SIZE);
2358 }
2359
2360 /*
2361  * start each AP in our list
2362  */
2363 static int
2364 start_all_aps(u_int boot_addr)
2365 {
2366         vm_offset_t va = boot_address + KERNBASE;
2367         u_int64_t *pt4, *pt3, *pt2;
2368         int     x, i, pg;
2369         int     shift;
2370         int     smicount;
2371         int     smibest;
2372         int     smilast;
2373         u_char  mpbiosreason;
2374         u_long  mpbioswarmvec;
2375         struct mdglobaldata *gd;
2376         struct privatespace *ps;
2377
2378         POSTCODE(START_ALL_APS_POST);
2379
2380         /* Initialize BSP's local APIC */
2381         apic_initialize(TRUE);
2382
2383         /* install the AP 1st level boot code */
2384         pmap_kenter(va, boot_address);
2385         cpu_invlpg((void *)va);         /* JG XXX */
2386         bcopy(mptramp_start, (void *)va, bootMP_size);
2387
2388         /* Locate the page tables, they'll be below the trampoline */
2389         pt4 = (u_int64_t *)(uintptr_t)(mptramp_pagetables + KERNBASE);
2390         pt3 = pt4 + (PAGE_SIZE) / sizeof(u_int64_t);
2391         pt2 = pt3 + (PAGE_SIZE) / sizeof(u_int64_t);
2392
2393         /* Create the initial 1GB replicated page tables */
2394         for (i = 0; i < 512; i++) {
2395                 /* Each slot of the level 4 pages points to the same level 3 page */
2396                 pt4[i] = (u_int64_t)(uintptr_t)(mptramp_pagetables + PAGE_SIZE);
2397                 pt4[i] |= PG_V | PG_RW | PG_U;
2398
2399                 /* Each slot of the level 3 pages points to the same level 2 page */
2400                 pt3[i] = (u_int64_t)(uintptr_t)(mptramp_pagetables + (2 * PAGE_SIZE));
2401                 pt3[i] |= PG_V | PG_RW | PG_U;
2402
2403                 /* The level 2 page slots are mapped with 2MB pages for 1GB. */
2404                 pt2[i] = i * (2 * 1024 * 1024);
2405                 pt2[i] |= PG_V | PG_RW | PG_PS | PG_U;
2406         }
2407
2408         /* save the current value of the warm-start vector */
2409         mpbioswarmvec = *((u_int32_t *) WARMBOOT_OFF);
2410         outb(CMOS_REG, BIOS_RESET);
2411         mpbiosreason = inb(CMOS_DATA);
2412
2413         /* setup a vector to our boot code */
2414         *((volatile u_short *) WARMBOOT_OFF) = WARMBOOT_TARGET;
2415         *((volatile u_short *) WARMBOOT_SEG) = (boot_address >> 4);
2416         outb(CMOS_REG, BIOS_RESET);
2417         outb(CMOS_DATA, BIOS_WARM);     /* 'warm-start' */
2418
2419         /*
2420          * If we have a TSC we can figure out the SMI interrupt rate.
2421          * The SMI does not necessarily use a constant rate.  Spend
2422          * up to 250ms trying to figure it out.
2423          */
2424         smibest = 0;
2425         if (cpu_feature & CPUID_TSC) {
2426                 set_apic_timer(275000);
2427                 smilast = read_apic_timer();
2428                 for (x = 0; x < 20 && read_apic_timer(); ++x) {
2429                         smicount = smitest();
2430                         if (smibest == 0 || smilast - smicount < smibest)
2431                                 smibest = smilast - smicount;
2432                         smilast = smicount;
2433                 }
2434                 if (smibest > 250000)
2435                         smibest = 0;
2436                 if (smibest) {
2437                         smibest = smibest * (int64_t)1000000 /
2438                                   get_apic_timer_frequency();
2439                 }
2440         }
2441         if (smibest)
2442                 kprintf("SMI Frequency (worst case): %d Hz (%d us)\n",
2443                         1000000 / smibest, smibest);
2444
2445         /* start each AP */
2446         for (x = 1; x <= mp_naps; ++x) {
2447
2448                 /* This is a bit verbose, it will go away soon.  */
2449
2450                 /* first page of AP's private space */
2451                 pg = x * x86_64_btop(sizeof(struct privatespace));
2452
2453                 /* allocate new private data page(s) */
2454                 gd = (struct mdglobaldata *)kmem_alloc(&kernel_map, 
2455                                 MDGLOBALDATA_BASEALLOC_SIZE);
2456
2457                 gd = &CPU_prvspace[x].mdglobaldata;     /* official location */
2458                 bzero(gd, sizeof(*gd));
2459                 gd->mi.gd_prvspace = ps = &CPU_prvspace[x];
2460
2461                 /* prime data page for it to use */
2462                 mi_gdinit(&gd->mi, x);
2463                 cpu_gdinit(gd, x);
2464                 gd->gd_CMAP1 = &SMPpt[pg + 0];
2465                 gd->gd_CMAP2 = &SMPpt[pg + 1];
2466                 gd->gd_CMAP3 = &SMPpt[pg + 2];
2467                 gd->gd_PMAP1 = &SMPpt[pg + 3];
2468                 gd->gd_CADDR1 = ps->CPAGE1;
2469                 gd->gd_CADDR2 = ps->CPAGE2;
2470                 gd->gd_CADDR3 = ps->CPAGE3;
2471                 gd->gd_PADDR1 = (pt_entry_t *)ps->PPAGE1;
2472                 gd->mi.gd_ipiq = (void *)kmem_alloc(&kernel_map, sizeof(lwkt_ipiq) * (mp_naps + 1));
2473                 bzero(gd->mi.gd_ipiq, sizeof(lwkt_ipiq) * (mp_naps + 1));
2474
2475                 /* setup a vector to our boot code */
2476                 *((volatile u_short *) WARMBOOT_OFF) = WARMBOOT_TARGET;
2477                 *((volatile u_short *) WARMBOOT_SEG) = (boot_addr >> 4);
2478                 outb(CMOS_REG, BIOS_RESET);
2479                 outb(CMOS_DATA, BIOS_WARM);     /* 'warm-start' */
2480
2481                 /*
2482                  * Setup the AP boot stack
2483                  */
2484                 bootSTK = &ps->idlestack[UPAGES*PAGE_SIZE/2];
2485                 bootAP = x;
2486
2487                 /* attempt to start the Application Processor */
2488                 CHECK_INIT(99); /* setup checkpoints */
2489                 if (!start_ap(gd, boot_addr, smibest)) {
2490                         kprintf("AP #%d (PHY# %d) failed!\n", x, CPU_TO_ID(x));
2491                         CHECK_PRINT("trace");   /* show checkpoints */
2492                         /* better panic as the AP may be running loose */
2493                         kprintf("panic y/n? [y] ");
2494                         if (cngetc() != 'n')
2495                                 panic("bye-bye");
2496                 }
2497                 CHECK_PRINT("trace");           /* show checkpoints */
2498
2499                 /* record its version info */
2500                 cpu_apic_versions[x] = cpu_apic_versions[0];
2501         }
2502
2503         /* set ncpus to 1 + highest logical cpu.  Not all may have come up */
2504         ncpus = x;
2505
2506         /* ncpus2 -- ncpus rounded down to the nearest power of 2 */
2507         for (shift = 0; (1 << shift) <= ncpus; ++shift)
2508                 ;
2509         --shift;
2510         ncpus2_shift = shift;
2511         ncpus2 = 1 << shift;
2512         ncpus2_mask = ncpus2 - 1;
2513
2514         /* ncpus_fit -- ncpus rounded up to the nearest power of 2 */
2515         if ((1 << shift) < ncpus)
2516                 ++shift;
2517         ncpus_fit = 1 << shift;
2518         ncpus_fit_mask = ncpus_fit - 1;
2519
2520         /* build our map of 'other' CPUs */
2521         mycpu->gd_other_cpus = smp_startup_mask & ~(1 << mycpu->gd_cpuid);
2522         mycpu->gd_ipiq = (void *)kmem_alloc(&kernel_map, sizeof(lwkt_ipiq) * ncpus);
2523         bzero(mycpu->gd_ipiq, sizeof(lwkt_ipiq) * ncpus);
2524
2525         /* fill in our (BSP) APIC version */
2526         cpu_apic_versions[0] = lapic->version;
2527
2528         /* restore the warmstart vector */
2529         *(u_long *) WARMBOOT_OFF = mpbioswarmvec;
2530         outb(CMOS_REG, BIOS_RESET);
2531         outb(CMOS_DATA, mpbiosreason);
2532
2533         /*
2534          * NOTE!  The idlestack for the BSP was setup by locore.  Finish
2535          * up, clean out the P==V mapping we did earlier.
2536          */
2537         pmap_set_opt();
2538
2539         /* number of APs actually started */
2540         return ncpus - 1;
2541 }
2542
2543
2544 /*
2545  * load the 1st level AP boot code into base memory.
2546  */
2547
2548 /* targets for relocation */
2549 extern void bigJump(void);
2550 extern void bootCodeSeg(void);
2551 extern void bootDataSeg(void);
2552 extern void MPentry(void);
2553 extern u_int MP_GDT;
2554 extern u_int mp_gdtbase;
2555
2556 #if 0
2557
2558 static void
2559 install_ap_tramp(u_int boot_addr)
2560 {
2561         int     x;
2562         int     size = *(int *) ((u_long) & bootMP_size);
2563         u_char *src = (u_char *) ((u_long) bootMP);
2564         u_char *dst = (u_char *) boot_addr + KERNBASE;
2565         u_int   boot_base = (u_int) bootMP;
2566         u_int8_t *dst8;
2567         u_int16_t *dst16;
2568         u_int32_t *dst32;
2569
2570         POSTCODE(INSTALL_AP_TRAMP_POST);
2571
2572         for (x = 0; x < size; ++x)
2573                 *dst++ = *src++;
2574
2575         /*
2576          * modify addresses in code we just moved to basemem. unfortunately we
2577          * need fairly detailed info about mpboot.s for this to work.  changes
2578          * to mpboot.s might require changes here.
2579          */
2580
2581         /* boot code is located in KERNEL space */
2582         dst = (u_char *) boot_addr + KERNBASE;
2583
2584         /* modify the lgdt arg */
2585         dst32 = (u_int32_t *) (dst + ((u_int) & mp_gdtbase - boot_base));
2586         *dst32 = boot_addr + ((u_int) & MP_GDT - boot_base);
2587
2588         /* modify the ljmp target for MPentry() */
2589         dst32 = (u_int32_t *) (dst + ((u_int) bigJump - boot_base) + 1);
2590         *dst32 = ((u_int) MPentry - KERNBASE);
2591
2592         /* modify the target for boot code segment */
2593         dst16 = (u_int16_t *) (dst + ((u_int) bootCodeSeg - boot_base));
2594         dst8 = (u_int8_t *) (dst16 + 1);
2595         *dst16 = (u_int) boot_addr & 0xffff;
2596         *dst8 = ((u_int) boot_addr >> 16) & 0xff;
2597
2598         /* modify the target for boot data segment */
2599         dst16 = (u_int16_t *) (dst + ((u_int) bootDataSeg - boot_base));
2600         dst8 = (u_int8_t *) (dst16 + 1);
2601         *dst16 = (u_int) boot_addr & 0xffff;
2602         *dst8 = ((u_int) boot_addr >> 16) & 0xff;
2603 }
2604
2605 #endif
2606
2607 /*
2608  * This function starts the AP (application processor) identified
2609  * by the APIC ID 'physicalCpu'.  It does quite a "song and dance"
2610  * to accomplish this.  This is necessary because of the nuances
2611  * of the different hardware we might encounter.  It ain't pretty,
2612  * but it seems to work.
2613  *
2614  * NOTE: eventually an AP gets to ap_init(), which is called just 
2615  * before the AP goes into the LWKT scheduler's idle loop.
2616  */
2617 static int
2618 start_ap(struct mdglobaldata *gd, u_int boot_addr, int smibest)
2619 {
2620         int     physical_cpu;
2621         int     vector;
2622         u_long  icr_lo, icr_hi;
2623
2624         POSTCODE(START_AP_POST);
2625
2626         /* get the PHYSICAL APIC ID# */
2627         physical_cpu = CPU_TO_ID(gd->mi.gd_cpuid);
2628
2629         /* calculate the vector */
2630         vector = (boot_addr >> 12) & 0xff;
2631
2632         /* We don't want anything interfering */
2633         cpu_disable_intr();
2634
2635         /* Make sure the target cpu sees everything */
2636         wbinvd();
2637
2638         /*
2639          * Try to detect when a SMI has occurred, wait up to 200ms.
2640          *
2641          * If a SMI occurs during an AP reset but before we issue
2642          * the STARTUP command, the AP may brick.  To work around
2643          * this problem we hold off doing the AP startup until
2644          * after we have detected the SMI.  Hopefully another SMI
2645          * will not occur before we finish the AP startup.
2646          *
2647          * Retries don't seem to help.  SMIs have a window of opportunity
2648          * and if USB->legacy keyboard emulation is enabled in the BIOS
2649          * the interrupt rate can be quite high.
2650          *
2651          * NOTE: Don't worry about the L1 cache load, it might bloat
2652          *       ldelta a little but ndelta will be so huge when the SMI
2653          *       occurs the detection logic will still work fine.
2654          */
2655         if (smibest) {
2656                 set_apic_timer(200000);
2657                 smitest();
2658         }
2659
2660         /*
2661          * first we do an INIT/RESET IPI this INIT IPI might be run, reseting
2662          * and running the target CPU. OR this INIT IPI might be latched (P5
2663          * bug), CPU waiting for STARTUP IPI. OR this INIT IPI might be
2664          * ignored.
2665          *
2666          * see apic/apicreg.h for icr bit definitions.
2667          *
2668          * TIME CRITICAL CODE, DO NOT DO ANY KPRINTFS IN THE HOT PATH.
2669          */
2670
2671         /*
2672          * Setup the address for the target AP.  We can setup
2673          * icr_hi once and then just trigger operations with
2674          * icr_lo.
2675          */
2676         icr_hi = lapic->icr_hi & ~APIC_ID_MASK;
2677         icr_hi |= (physical_cpu << 24);
2678         icr_lo = lapic->icr_lo & 0xfff00000;
2679         lapic->icr_hi = icr_hi;
2680
2681         /*
2682          * Do an INIT IPI: assert RESET
2683          *
2684          * Use edge triggered mode to assert INIT
2685          */
2686         lapic->icr_lo = icr_lo | 0x00004500;
2687         while (lapic->icr_lo & APIC_DELSTAT_MASK)
2688                  /* spin */ ;
2689
2690         /*
2691          * The spec calls for a 10ms delay but we may have to use a
2692          * MUCH lower delay to avoid bricking an AP due to a fast SMI
2693          * interrupt.  We have other loops here too and dividing by 2
2694          * doesn't seem to be enough even after subtracting 350us,
2695          * so we divide by 4.
2696          *
2697          * Our minimum delay is 150uS, maximum is 10ms.  If no SMI
2698          * interrupt was detected we use the full 10ms.
2699          */
2700         if (smibest == 0)
2701                 u_sleep(10000);
2702         else if (smibest < 150 * 4 + 350)
2703                 u_sleep(150);
2704         else if ((smibest - 350) / 4 < 10000)
2705                 u_sleep((smibest - 350) / 4);
2706         else
2707                 u_sleep(10000);
2708
2709         /*
2710          * Do an INIT IPI: deassert RESET
2711          *
2712          * Use level triggered mode to deassert.  It is unclear
2713          * why we need to do this.
2714          */
2715         lapic->icr_lo = icr_lo | 0x00008500;
2716         while (lapic->icr_lo & APIC_DELSTAT_MASK)
2717                  /* spin */ ;
2718         u_sleep(150);                           /* wait 150us */
2719
2720         /*
2721          * Next we do a STARTUP IPI: the previous INIT IPI might still be
2722          * latched, (P5 bug) this 1st STARTUP would then terminate
2723          * immediately, and the previously started INIT IPI would continue. OR
2724          * the previous INIT IPI has already run. and this STARTUP IPI will
2725          * run. OR the previous INIT IPI was ignored. and this STARTUP IPI
2726          * will run.
2727          */
2728         lapic->icr_lo = icr_lo | 0x00000600 | vector;
2729         while (lapic->icr_lo & APIC_DELSTAT_MASK)
2730                  /* spin */ ;
2731         u_sleep(200);           /* wait ~200uS */
2732
2733         /*
2734          * Finally we do a 2nd STARTUP IPI: this 2nd STARTUP IPI should run IF
2735          * the previous STARTUP IPI was cancelled by a latched INIT IPI. OR
2736          * this STARTUP IPI will be ignored, as only ONE STARTUP IPI is
2737          * recognized after hardware RESET or INIT IPI.
2738          */
2739         lapic->icr_lo = icr_lo | 0x00000600 | vector;
2740         while (lapic->icr_lo & APIC_DELSTAT_MASK)
2741                  /* spin */ ;
2742
2743         /* Resume normal operation */
2744         cpu_enable_intr();
2745
2746         /* wait for it to start, see ap_init() */
2747         set_apic_timer(5000000);/* == 5 seconds */
2748         while (read_apic_timer()) {
2749                 if (smp_startup_mask & (1 << gd->mi.gd_cpuid))
2750                         return 1;       /* return SUCCESS */
2751         }
2752
2753         return 0;               /* return FAILURE */
2754 }
2755
2756 static
2757 int
2758 smitest(void)
2759 {
2760         int64_t ltsc;
2761         int64_t ntsc;
2762         int64_t ldelta;
2763         int64_t ndelta;
2764         int count;
2765
2766         ldelta = 0;
2767         ndelta = 0;
2768         while (read_apic_timer()) {
2769                 ltsc = rdtsc();
2770                 for (count = 0; count < 100; ++count)
2771                         ntsc = rdtsc(); /* force loop to occur */
2772                 if (ldelta) {
2773                         ndelta = ntsc - ltsc;
2774                         if (ldelta > ndelta)
2775                                 ldelta = ndelta;
2776                         if (ndelta > ldelta * 2)
2777                                 break;
2778                 } else {
2779                         ldelta = ntsc - ltsc;
2780                 }
2781         }
2782         return(read_apic_timer());
2783 }
2784
2785 /*
2786  * Lazy flush the TLB on all other CPU's.  DEPRECATED.
2787  *
2788  * If for some reason we were unable to start all cpus we cannot safely
2789  * use broadcast IPIs.
2790  */
2791 void
2792 smp_invltlb(void)
2793 {
2794 #ifdef SMP
2795         if (smp_startup_mask == smp_active_mask) {
2796                 all_but_self_ipi(XINVLTLB_OFFSET);
2797         } else {
2798                 selected_apic_ipi(smp_active_mask, XINVLTLB_OFFSET,
2799                         APIC_DELMODE_FIXED);
2800         }
2801 #endif
2802 }
2803
2804 /*
2805  * When called the executing CPU will send an IPI to all other CPUs
2806  *  requesting that they halt execution.
2807  *
2808  * Usually (but not necessarily) called with 'other_cpus' as its arg.
2809  *
2810  *  - Signals all CPUs in map to stop.
2811  *  - Waits for each to stop.
2812  *
2813  * Returns:
2814  *  -1: error
2815  *   0: NA
2816  *   1: ok
2817  *
2818  * XXX FIXME: this is not MP-safe, needs a lock to prevent multiple CPUs
2819  *            from executing at same time.
2820  */
2821 int
2822 stop_cpus(u_int map)
2823 {
2824         map &= smp_active_mask;
2825
2826         /* send the Xcpustop IPI to all CPUs in map */
2827         selected_apic_ipi(map, XCPUSTOP_OFFSET, APIC_DELMODE_FIXED);
2828         
2829         while ((stopped_cpus & map) != map)
2830                 /* spin */ ;
2831
2832         return 1;
2833 }
2834
2835
2836 /*
2837  * Called by a CPU to restart stopped CPUs. 
2838  *
2839  * Usually (but not necessarily) called with 'stopped_cpus' as its arg.
2840  *
2841  *  - Signals all CPUs in map to restart.
2842  *  - Waits for each to restart.
2843  *
2844  * Returns:
2845  *  -1: error
2846  *   0: NA
2847  *   1: ok
2848  */
2849 int
2850 restart_cpus(u_int map)
2851 {
2852         /* signal other cpus to restart */
2853         started_cpus = map & smp_active_mask;
2854
2855         while ((stopped_cpus & map) != 0) /* wait for each to clear its bit */
2856                 /* spin */ ;
2857
2858         return 1;
2859 }
2860
2861 /*
2862  * This is called once the mpboot code has gotten us properly relocated
2863  * and the MMU turned on, etc.   ap_init() is actually the idle thread,
2864  * and when it returns the scheduler will call the real cpu_idle() main
2865  * loop for the idlethread.  Interrupts are disabled on entry and should
2866  * remain disabled at return.
2867  */
2868 void
2869 ap_init(void)
2870 {
2871         u_int   apic_id;
2872
2873         /*
2874          * Adjust smp_startup_mask to signal the BSP that we have started
2875          * up successfully.  Note that we do not yet hold the BGL.  The BSP
2876          * is waiting for our signal.
2877          *
2878          * We can't set our bit in smp_active_mask yet because we are holding
2879          * interrupts physically disabled and remote cpus could deadlock
2880          * trying to send us an IPI.
2881          */
2882         smp_startup_mask |= 1 << mycpu->gd_cpuid;
2883         cpu_mfence();
2884
2885         /*
2886          * Interlock for finalization.  Wait until mp_finish is non-zero,
2887          * then get the MP lock.
2888          *
2889          * Note: We are in a critical section.
2890          *
2891          * Note: We have to synchronize td_mpcount to our desired MP state
2892          * before calling cpu_try_mplock().
2893          *
2894          * Note: we are the idle thread, we can only spin.
2895          *
2896          * Note: The load fence is memory volatile and prevents the compiler
2897          * from improperly caching mp_finish, and the cpu from improperly
2898          * caching it.
2899          */
2900         while (mp_finish == 0)
2901             cpu_lfence();
2902         ++curthread->td_mpcount;
2903         while (cpu_try_mplock() == 0)
2904             ;
2905
2906         if (cpu_feature & CPUID_TSC) {
2907             /*
2908              * The BSP is constantly updating tsc0_offset, figure out the
2909              * relative difference to synchronize ktrdump.
2910              */
2911             tsc_offsets[mycpu->gd_cpuid] = rdtsc() - tsc0_offset;
2912         }
2913
2914         /* BSP may have changed PTD while we're waiting for the lock */
2915         cpu_invltlb();
2916
2917 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
2918         lidt(&r_idt);
2919 #endif
2920
2921         /* Build our map of 'other' CPUs. */
2922         mycpu->gd_other_cpus = smp_startup_mask & ~(1 << mycpu->gd_cpuid);
2923
2924         kprintf("SMP: AP CPU #%d Launched!\n", mycpu->gd_cpuid);
2925
2926         /* A quick check from sanity claus */
2927         apic_id = (apic_id_to_logical[(lapic->id & 0x0f000000) >> 24]);
2928         if (mycpu->gd_cpuid != apic_id) {
2929                 kprintf("SMP: cpuid = %d\n", mycpu->gd_cpuid);
2930                 kprintf("SMP: apic_id = %d\n", apic_id);
2931 #if JGXXX
2932                 kprintf("PTD[MPPTDI] = %p\n", (void *)PTD[MPPTDI]);
2933 #endif
2934                 panic("cpuid mismatch! boom!!");
2935         }
2936
2937         /* Initialize AP's local APIC for irq's */
2938         apic_initialize(FALSE);
2939
2940         /* Set memory range attributes for this CPU to match the BSP */
2941         mem_range_AP_init();
2942
2943         /*
2944          * Once we go active we must process any IPIQ messages that may
2945          * have been queued, because no actual IPI will occur until we
2946          * set our bit in the smp_active_mask.  If we don't the IPI
2947          * message interlock could be left set which would also prevent
2948          * further IPIs.
2949          *
2950          * The idle loop doesn't expect the BGL to be held and while
2951          * lwkt_switch() normally cleans things up this is a special case
2952          * because we returning almost directly into the idle loop.
2953          *
2954          * The idle thread is never placed on the runq, make sure
2955          * nothing we've done put it there.
2956          */
2957         KKASSERT(curthread->td_mpcount == 1);
2958         smp_active_mask |= 1 << mycpu->gd_cpuid;
2959
2960         /*
2961          * Enable interrupts here.  idle_restore will also do it, but
2962          * doing it here lets us clean up any strays that got posted to
2963          * the CPU during the AP boot while we are still in a critical
2964          * section.
2965          */
2966         __asm __volatile("sti; pause; pause"::);
2967         mdcpu->gd_fpending = 0;
2968
2969         initclocks_pcpu();      /* clock interrupts (via IPIs) */
2970         lwkt_process_ipiq();
2971
2972         /*
2973          * Releasing the mp lock lets the BSP finish up the SMP init
2974          */
2975         rel_mplock();
2976         KKASSERT((curthread->td_flags & TDF_RUNQ) == 0);
2977 }
2978
2979 /*
2980  * Get SMP fully working before we start initializing devices.
2981  */
2982 static
2983 void
2984 ap_finish(void)
2985 {
2986         mp_finish = 1;
2987         if (bootverbose)
2988                 kprintf("Finish MP startup\n");
2989         if (cpu_feature & CPUID_TSC)
2990                 tsc0_offset = rdtsc();
2991         tsc_offsets[0] = 0;
2992         rel_mplock();
2993         while (smp_active_mask != smp_startup_mask) {
2994                 cpu_lfence();
2995                 if (cpu_feature & CPUID_TSC)
2996                         tsc0_offset = rdtsc();
2997         }
2998         while (try_mplock() == 0)
2999                 ;
3000         if (bootverbose)
3001                 kprintf("Active CPU Mask: %08x\n", smp_active_mask);
3002 }
3003
3004 SYSINIT(finishsmp, SI_BOOT2_FINISH_SMP, SI_ORDER_FIRST, ap_finish, NULL)
3005
3006 void
3007 cpu_send_ipiq(int dcpu)
3008 {
3009         if ((1 << dcpu) & smp_active_mask)
3010                 single_apic_ipi(dcpu, XIPIQ_OFFSET, APIC_DELMODE_FIXED);
3011 }
3012
3013 #if 0   /* single_apic_ipi_passive() not working yet */
3014 /*
3015  * Returns 0 on failure, 1 on success
3016  */
3017 int
3018 cpu_send_ipiq_passive(int dcpu)
3019 {
3020         int r = 0;
3021         if ((1 << dcpu) & smp_active_mask) {
3022                 r = single_apic_ipi_passive(dcpu, XIPIQ_OFFSET,
3023                                         APIC_DELMODE_FIXED);
3024         }
3025         return(r);
3026 }
3027 #endif
3028