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