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