92eb052709a6d695941fdd42656cc447bd7966b7
[dragonfly.git] / sys / platform / pc64 / x86_64 / mptable.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  */
27
28 #include "opt_cpu.h"
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/kernel.h>
33 #include <sys/sysctl.h>
34 #include <sys/malloc.h>
35 #include <sys/memrange.h>
36 #include <sys/cons.h>   /* cngetc() */
37 #include <sys/machintr.h>
38
39 #include <sys/mplock2.h>
40
41 #include <vm/vm.h>
42 #include <vm/vm_param.h>
43 #include <vm/pmap.h>
44 #include <vm/vm_kern.h>
45 #include <vm/vm_extern.h>
46 #include <sys/lock.h>
47 #include <vm/vm_map.h>
48 #include <sys/user.h>
49 #ifdef GPROF 
50 #include <sys/gmon.h>
51 #endif
52
53 #include <machine/smp.h>
54 #include <machine_base/isa/isa_intr.h>
55 #include <machine_base/apic/apicreg.h>
56 #include <machine_base/apic/apicvar.h>
57 #include <machine/atomic.h>
58 #include <machine/cpufunc.h>
59 #include <machine/cputypes.h>
60 #include <machine_base/apic/lapic.h>
61 #include <machine_base/apic/ioapic.h>
62 #include <machine/psl.h>
63 #include <machine/segments.h>
64 #include <machine/tss.h>
65 #include <machine/specialreg.h>
66 #include <machine/globaldata.h>
67 #include <machine/pmap_inval.h>
68 #include <machine/mptable.h>
69
70 #include <machine/md_var.h>             /* setidt() */
71 #include <machine_base/icu/icu.h>       /* IPIs */
72 #include <machine_base/apic/ioapic_abi.h>
73 #include <machine/intr_machdep.h>       /* IPIs */
74
75 extern u_int    base_memory;
76 extern u_long   ebda_addr;
77 extern int      imcr_present;
78 extern int      naps;
79
80 #define BIOS_BASE               (0xf0000)
81 #define BIOS_BASE2              (0xe0000)
82 #define BIOS_SIZE               (0x10000)
83 #define BIOS_COUNT              (BIOS_SIZE/4)
84
85 #define PROCENTRY_FLAG_EN       0x01
86 #define PROCENTRY_FLAG_BP       0x02
87 #define IOAPICENTRY_FLAG_EN     0x01
88
89
90 /* MP Floating Pointer Structure */
91 typedef struct MPFPS {
92         char    signature[4];
93         u_int32_t pap;
94         u_char  length;
95         u_char  spec_rev;
96         u_char  checksum;
97         u_char  mpfb1;
98         u_char  mpfb2;
99         u_char  mpfb3;
100         u_char  mpfb4;
101         u_char  mpfb5;
102 }      *mpfps_t;
103
104 /* MP Configuration Table Header */
105 typedef struct MPCTH {
106         char    signature[4];
107         u_short base_table_length;
108         u_char  spec_rev;
109         u_char  checksum;
110         u_char  oem_id[8];
111         u_char  product_id[12];
112         u_int32_t oem_table_pointer;
113         u_short oem_table_size;
114         u_short entry_count;
115         u_int32_t apic_address;
116         u_short extended_table_length;
117         u_char  extended_table_checksum;
118         u_char  reserved;
119 }      *mpcth_t;
120
121
122 typedef struct PROCENTRY {
123         u_char  type;
124         u_char  apic_id;
125         u_char  apic_version;
126         u_char  cpu_flags;
127         u_int32_t cpu_signature;
128         u_int32_t feature_flags;
129         u_int32_t reserved1;
130         u_int32_t reserved2;
131 }      *proc_entry_ptr;
132
133 typedef struct BUSENTRY {
134         u_char  type;
135         u_char  bus_id;
136         char    bus_type[6];
137 }      *bus_entry_ptr;
138
139 typedef struct IOAPICENTRY {
140         u_char  type;
141         u_char  apic_id;
142         u_char  apic_version;
143         u_char  apic_flags;
144         u_int32_t apic_address;
145 }      *io_apic_entry_ptr;
146
147 typedef struct INTENTRY {
148         u_char  type;
149         u_char  int_type;
150         u_short int_flags;
151         u_char  src_bus_id;
152         u_char  src_bus_irq;
153         u_char  dst_apic_id;
154         u_char  dst_apic_int;
155 }      *int_entry_ptr;
156
157 /* descriptions of MP basetable entries */
158 typedef struct BASETABLE_ENTRY {
159         u_char  type;
160         u_char  length;
161         char    name[16];
162 }       basetable_entry;
163
164 struct mptable_pos {
165         mpfps_t         mp_fps;
166         mpcth_t         mp_cth;
167         vm_size_t       mp_cth_mapsz;   
168 };
169
170 #define MPTABLE_POS_USE_DEFAULT(mpt) \
171         ((mpt)->mp_fps->mpfb1 != 0 || (mpt)->mp_cth == NULL)
172
173 struct mptable_bus {
174         int             mb_id;
175         int             mb_type;        /* MPTABLE_BUS_ */
176         TAILQ_ENTRY(mptable_bus) mb_link;
177 };
178
179 #define MPTABLE_BUS_ISA         0
180 #define MPTABLE_BUS_PCI         1
181
182 struct mptable_bus_info {
183         TAILQ_HEAD(, mptable_bus) mbi_list;
184 };
185
186 struct mptable_pci_int {
187         int             mpci_bus;
188         int             mpci_dev;
189         int             mpci_pin;
190
191         int             mpci_ioapic_idx;
192         int             mpci_ioapic_pin;
193         TAILQ_ENTRY(mptable_pci_int) mpci_link;
194 };
195
196 struct mptable_ioapic {
197         int             mio_idx;
198         int             mio_apic_id;
199         uint32_t        mio_addr;
200         int             mio_gsi_base;
201         int             mio_npin;
202         TAILQ_ENTRY(mptable_ioapic) mio_link;
203 };
204
205 typedef int     (*mptable_iter_func)(void *, const void *, int);
206
207 static int      mptable_iterate_entries(const mpcth_t,
208                     mptable_iter_func, void *);
209 static int      mptable_search(void);
210 static long     mptable_search_sig(u_int32_t target, int count);
211 static int      mptable_hyperthread_fixup(cpumask_t, int);
212 static int      mptable_map(struct mptable_pos *);
213 static void     mptable_unmap(struct mptable_pos *);
214 static void     mptable_bus_info_alloc(const mpcth_t,
215                     struct mptable_bus_info *);
216 static void     mptable_bus_info_free(struct mptable_bus_info *);
217
218 static int      mptable_lapic_probe(struct lapic_enumerator *);
219 static int      mptable_lapic_enumerate(struct lapic_enumerator *);
220 static void     mptable_lapic_default(void);
221
222 static int      mptable_ioapic_probe(struct ioapic_enumerator *);
223 static void     mptable_ioapic_enumerate(struct ioapic_enumerator *);
224
225 static basetable_entry basetable_entry_types[] =
226 {
227         {0, 20, "Processor"},
228         {1, 8, "Bus"},
229         {2, 8, "I/O APIC"},
230         {3, 8, "I/O INT"},
231         {4, 8, "Local INT"}
232 };
233
234 static vm_paddr_t       mptable_fps_phyaddr;
235 static int              mptable_use_default;
236 static TAILQ_HEAD(mptable_pci_int_list, mptable_pci_int) mptable_pci_int_list =
237         TAILQ_HEAD_INITIALIZER(mptable_pci_int_list);
238 static TAILQ_HEAD(mptable_ioapic_list, mptable_ioapic) mptable_ioapic_list =
239         TAILQ_HEAD_INITIALIZER(mptable_ioapic_list);
240
241 static void
242 mptable_probe(void)
243 {
244         struct mptable_pos mpt;
245         int error;
246
247         KKASSERT(mptable_fps_phyaddr == 0);
248
249         mptable_fps_phyaddr = mptable_search();
250         if (mptable_fps_phyaddr == 0)
251                 return;
252
253         error = mptable_map(&mpt);
254         if (error) {
255                 mptable_fps_phyaddr = 0;
256                 return;
257         }
258
259         if (MPTABLE_POS_USE_DEFAULT(&mpt)) {
260                 kprintf("MPTABLE: use default configuration\n");
261                 mptable_use_default = 1;
262         }
263         if (mpt.mp_fps->mpfb2 & 0x80)
264                 imcr_present = 1;
265
266         mptable_unmap(&mpt);
267 }
268 SYSINIT(mptable_probe, SI_BOOT2_PRESMP, SI_ORDER_FIRST, mptable_probe, 0);
269
270 /*
271  * Look for an Intel MP spec table (ie, SMP capable hardware).
272  */
273 static int
274 mptable_search(void)
275 {
276         long    x;
277         u_int32_t target;
278  
279         /* see if EBDA exists */
280         if (ebda_addr != 0) {
281                 /* search first 1K of EBDA */
282                 target = (u_int32_t)ebda_addr;
283                 if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
284                         return x;
285         } else {
286                 /* last 1K of base memory, effective 'top of base' passed in */
287                 target = (u_int32_t)(base_memory - 0x400);
288                 if ((x = mptable_search_sig(target, 1024 / 4)) > 0)
289                         return x;
290         }
291
292         /* search the BIOS */
293         target = (u_int32_t)BIOS_BASE;
294         if ((x = mptable_search_sig(target, BIOS_COUNT)) > 0)
295                 return x;
296
297         /* search the extended BIOS */
298         target = (u_int32_t)BIOS_BASE2;
299         if ((x = mptable_search_sig(target, BIOS_COUNT)) > 0)
300                 return x;
301
302         /* nothing found */
303         return 0;
304 }
305
306 static int
307 mptable_iterate_entries(const mpcth_t cth, mptable_iter_func func, void *arg)
308 {
309         int count, total_size;
310         const void *position;
311
312         KKASSERT(cth->base_table_length >= sizeof(struct MPCTH));
313         total_size = cth->base_table_length - sizeof(struct MPCTH);
314         position = (const uint8_t *)cth + sizeof(struct MPCTH);
315         count = cth->entry_count;
316
317         while (count--) {
318                 int type, error;
319
320                 KKASSERT(total_size >= 0);
321                 if (total_size == 0) {
322                         kprintf("invalid base MP table, "
323                                 "entry count and length mismatch\n");
324                         return EINVAL;
325                 }
326
327                 type = *(const uint8_t *)position;
328                 switch (type) {
329                 case 0: /* processor_entry */
330                 case 1: /* bus_entry */
331                 case 2: /* io_apic_entry */
332                 case 3: /* int_entry */
333                 case 4: /* int_entry */
334                         break;
335                 default:
336                         kprintf("unknown base MP table entry type %d\n", type);
337                         return EINVAL;
338                 }
339
340                 if (total_size < basetable_entry_types[type].length) {
341                         kprintf("invalid base MP table length, "
342                                 "does not contain all entries\n");
343                         return EINVAL;
344                 }
345                 total_size -= basetable_entry_types[type].length;
346
347                 error = func(arg, position, type);
348                 if (error)
349                         return error;
350
351                 position = (const uint8_t *)position +
352                     basetable_entry_types[type].length;
353         }
354         return 0;
355 }
356
357 /*
358  * look for the MP spec signature
359  */
360
361 /* string defined by the Intel MP Spec as identifying the MP table */
362 #define MP_SIG          0x5f504d5f      /* _MP_ */
363 #define NEXT(X)         ((X) += 4)
364 static long
365 mptable_search_sig(u_int32_t target, int count)
366 {
367         vm_size_t map_size;
368         u_int32_t *addr;
369         int x, ret;
370
371         KKASSERT(target != 0);
372
373         map_size = count * sizeof(u_int32_t);
374         addr = pmap_mapdev((vm_paddr_t)target, map_size);
375
376         ret = 0;
377         for (x = 0; x < count; NEXT(x)) {
378                 if (addr[x] == MP_SIG) {
379                         /* make array index a byte index */
380                         ret = target + (x * sizeof(u_int32_t));
381                         break;
382                 }
383         }
384
385         pmap_unmapdev((vm_offset_t)addr, map_size);
386         return ret;
387 }
388
389 static int processor_entry      (const struct PROCENTRY *entry, int cpu);
390
391 /*
392  * Check if we should perform a hyperthreading "fix-up" to
393  * enumerate any logical CPU's that aren't already listed
394  * in the table.
395  *
396  * XXX: We assume that all of the physical CPUs in the
397  * system have the same number of logical CPUs.
398  *
399  * XXX: We assume that APIC ID's are allocated such that
400  * the APIC ID's for a physical processor are aligned
401  * with the number of logical CPU's in the processor.
402  */
403 static int
404 mptable_hyperthread_fixup(cpumask_t id_mask, int cpu_count)
405 {
406         int i, id, lcpus_max, logical_cpus;
407
408         if ((cpu_feature & CPUID_HTT) == 0)
409                 return 0;
410
411         lcpus_max = (cpu_procinfo & CPUID_HTT_CORES) >> 16;
412         if (lcpus_max <= 1)
413                 return 0;
414
415         if (cpu_vendor_id == CPU_VENDOR_INTEL) {
416                 /*
417                  * INSTRUCTION SET REFERENCE, A-M (#253666)
418                  * Page 3-181, Table 3-20
419                  * "The nearest power-of-2 integer that is not smaller
420                  *  than EBX[23:16] is the number of unique initial APIC
421                  *  IDs reserved for addressing different logical
422                  *  processors in a physical package."
423                  */
424                 for (i = 0; ; ++i) {
425                         if ((1 << i) >= lcpus_max) {
426                                 lcpus_max = 1 << i;
427                                 break;
428                         }
429                 }
430         }
431
432         KKASSERT(cpu_count != 0);
433         if (cpu_count == lcpus_max) {
434                 /* We have nothing to fix */
435                 return 0;
436         } else if (cpu_count == 1) {
437                 /* XXX this may be incorrect */
438                 logical_cpus = lcpus_max;
439         } else {
440                 int cur, prev, dist;
441
442                 /*
443                  * Calculate the distances between two nearest
444                  * APIC IDs.  If all such distances are same,
445                  * then it is the number of missing cpus that
446                  * we are going to fill later.
447                  */
448                 dist = cur = prev = -1;
449                 for (id = 0; id < MAXCPU; ++id) {
450                         if ((id_mask & CPUMASK(id)) == 0)
451                                 continue;
452
453                         cur = id;
454                         if (prev >= 0) {
455                                 int new_dist = cur - prev;
456
457                                 if (dist < 0)
458                                         dist = new_dist;
459
460                                 /*
461                                  * Make sure that all distances
462                                  * between two nearest APIC IDs
463                                  * are same.
464                                  */
465                                 if (dist != new_dist)
466                                         return 0;
467                         }
468                         prev = cur;
469                 }
470                 if (dist == 1)
471                         return 0;
472
473                 /* Must be power of 2 */
474                 if (dist & (dist - 1))
475                         return 0;
476
477                 /* Can't exceed CPU package capacity */
478                 if (dist > lcpus_max)
479                         logical_cpus = lcpus_max;
480                 else
481                         logical_cpus = dist;
482         }
483
484         /*
485          * For each APIC ID of a CPU that is set in the mask,
486          * scan the other candidate APIC ID's for this
487          * physical processor.  If any of those ID's are
488          * already in the table, then kill the fixup.
489          */
490         for (id = 0; id < MAXCPU; id++) {
491                 if ((id_mask & CPUMASK(id)) == 0)
492                         continue;
493                 /* First, make sure we are on a logical_cpus boundary. */
494                 if (id % logical_cpus != 0)
495                         return 0;
496                 for (i = id + 1; i < id + logical_cpus; i++)
497                         if ((id_mask & CPUMASK(i)) != 0)
498                                 return 0;
499         }
500         return logical_cpus;
501 }
502
503 static int
504 mptable_map(struct mptable_pos *mpt)
505 {
506         mpfps_t fps = NULL;
507         mpcth_t cth = NULL;
508         vm_size_t cth_mapsz = 0;
509
510         KKASSERT(mptable_fps_phyaddr != 0);
511
512         bzero(mpt, sizeof(*mpt));
513
514         fps = pmap_mapdev(mptable_fps_phyaddr, sizeof(*fps));
515         if (fps->pap != 0) {
516                 /*
517                  * Map configuration table header to get
518                  * the base table size
519                  */
520                 cth = pmap_mapdev(fps->pap, sizeof(*cth));
521                 cth_mapsz = cth->base_table_length;
522                 pmap_unmapdev((vm_offset_t)cth, sizeof(*cth));
523
524                 if (cth_mapsz < sizeof(*cth)) {
525                         kprintf("invalid base MP table length %d\n",
526                                 (int)cth_mapsz);
527                         pmap_unmapdev((vm_offset_t)fps, sizeof(*fps));
528                         return EINVAL;
529                 }
530
531                 /*
532                  * Map the base table
533                  */
534                 cth = pmap_mapdev(fps->pap, cth_mapsz);
535         }
536
537         mpt->mp_fps = fps;
538         mpt->mp_cth = cth;
539         mpt->mp_cth_mapsz = cth_mapsz;
540
541         return 0;
542 }
543
544 static void
545 mptable_unmap(struct mptable_pos *mpt)
546 {
547         if (mpt->mp_cth != NULL) {
548                 pmap_unmapdev((vm_offset_t)mpt->mp_cth, mpt->mp_cth_mapsz);
549                 mpt->mp_cth = NULL;
550                 mpt->mp_cth_mapsz = 0;
551         }
552         if (mpt->mp_fps != NULL) {
553                 pmap_unmapdev((vm_offset_t)mpt->mp_fps, sizeof(*mpt->mp_fps));
554                 mpt->mp_fps = NULL;
555         }
556 }
557
558 static int
559 processor_entry(const struct PROCENTRY *entry, int cpu)
560 {
561         KKASSERT(cpu > 0);
562
563         /* check for usability */
564         if (!(entry->cpu_flags & PROCENTRY_FLAG_EN))
565                 return 0;
566
567         /* check for BSP flag */
568         if (entry->cpu_flags & PROCENTRY_FLAG_BP) {
569                 lapic_set_cpuid(0, entry->apic_id);
570                 return 0;       /* its already been counted */
571         }
572
573         /* add another AP to list, if less than max number of CPUs */
574         else if (cpu < MAXCPU) {
575                 lapic_set_cpuid(cpu, entry->apic_id);
576                 return 1;
577         }
578
579         return 0;
580 }
581
582 static int
583 mptable_bus_info_callback(void *xarg, const void *pos, int type)
584 {
585         struct mptable_bus_info *bus_info = xarg;
586         const struct BUSENTRY *ent;
587         struct mptable_bus *bus;
588
589         if (type != 1)
590                 return 0;
591
592         ent = pos;
593         TAILQ_FOREACH(bus, &bus_info->mbi_list, mb_link) {
594                 if (bus->mb_id == ent->bus_id) {
595                         kprintf("mptable_bus_info_alloc: duplicated bus id "
596                                 "(%d)\n", bus->mb_id);
597                         return EINVAL;
598                 }
599         }
600
601         bus = NULL;
602         if (strncmp(ent->bus_type, "PCI", 3) == 0) {
603                 bus = kmalloc(sizeof(*bus), M_TEMP, M_WAITOK | M_ZERO);
604                 bus->mb_type = MPTABLE_BUS_PCI;
605         } else if (strncmp(ent->bus_type, "ISA", 3) == 0) {
606                 bus = kmalloc(sizeof(*bus), M_TEMP, M_WAITOK | M_ZERO);
607                 bus->mb_type = MPTABLE_BUS_ISA;
608         }
609
610         if (bus != NULL) {
611                 bus->mb_id = ent->bus_id;
612                 TAILQ_INSERT_TAIL(&bus_info->mbi_list, bus, mb_link);
613         }
614         return 0;
615 }
616
617 static void
618 mptable_bus_info_alloc(const mpcth_t cth, struct mptable_bus_info *bus_info)
619 {
620         int error;
621
622         bzero(bus_info, sizeof(*bus_info));
623         TAILQ_INIT(&bus_info->mbi_list);
624
625         error = mptable_iterate_entries(cth, mptable_bus_info_callback, bus_info);
626         if (error)
627                 mptable_bus_info_free(bus_info);
628 }
629
630 static void
631 mptable_bus_info_free(struct mptable_bus_info *bus_info)
632 {
633         struct mptable_bus *bus;
634
635         while ((bus = TAILQ_FIRST(&bus_info->mbi_list)) != NULL) {
636                 TAILQ_REMOVE(&bus_info->mbi_list, bus, mb_link);
637                 kfree(bus, M_TEMP);
638         }
639 }
640
641 struct mptable_lapic_cbarg1 {
642         int     cpu_count;
643         int     ht_fixup;
644         u_int   ht_apicid_mask;
645 };
646
647 static int
648 mptable_lapic_pass1_callback(void *xarg, const void *pos, int type)
649 {
650         const struct PROCENTRY *ent;
651         struct mptable_lapic_cbarg1 *arg = xarg;
652
653         if (type != 0)
654                 return 0;
655         ent = pos;
656
657         if ((ent->cpu_flags & PROCENTRY_FLAG_EN) == 0)
658                 return 0;
659
660         arg->cpu_count++;
661         if (ent->apic_id < 64) {
662                 arg->ht_apicid_mask |= 1UL << ent->apic_id;
663         } else if (arg->ht_fixup) {
664                 kprintf("MPTABLE: lapic id > 64, disable HTT fixup\n");
665                 arg->ht_fixup = 0;
666         }
667         return 0;
668 }
669
670 struct mptable_lapic_cbarg2 {
671         int     cpu;
672         int     logical_cpus;
673         int     found_bsp;
674 };
675
676 static int
677 mptable_lapic_pass2_callback(void *xarg, const void *pos, int type)
678 {
679         const struct PROCENTRY *ent;
680         struct mptable_lapic_cbarg2 *arg = xarg;
681
682         if (type != 0)
683                 return 0;
684         ent = pos;
685
686         if (ent->cpu_flags & PROCENTRY_FLAG_BP) {
687                 KKASSERT(!arg->found_bsp);
688                 arg->found_bsp = 1;
689         }
690
691         if (processor_entry(ent, arg->cpu))
692                 arg->cpu++;
693
694         if (arg->logical_cpus) {
695                 struct PROCENTRY proc;
696                 int i;
697
698                 /*
699                  * Create fake mptable processor entries
700                  * and feed them to processor_entry() to
701                  * enumerate the logical CPUs.
702                  */
703                 bzero(&proc, sizeof(proc));
704                 proc.type = 0;
705                 proc.cpu_flags = PROCENTRY_FLAG_EN;
706                 proc.apic_id = ent->apic_id;
707
708                 for (i = 1; i < arg->logical_cpus; i++) {
709                         proc.apic_id++;
710                         processor_entry(&proc, arg->cpu);
711                         arg->cpu++;
712                 }
713         }
714         return 0;
715 }
716
717 static void
718 mptable_lapic_default(void)
719 {
720         int ap_apicid, bsp_apicid;
721
722         naps = 1; /* exclude BSP */
723
724         /* Map local apic before the id field is accessed */
725         lapic_map(DEFAULT_APIC_BASE);
726
727         bsp_apicid = APIC_ID(lapic->id);
728         ap_apicid = (bsp_apicid == 0) ? 1 : 0;
729
730         /* BSP */
731         lapic_set_cpuid(0, bsp_apicid);
732         /* one and only AP */
733         lapic_set_cpuid(1, ap_apicid);
734 }
735
736 /*
737  * Configure:
738  *     naps
739  *     APIC ID <-> CPU ID mappings
740  */
741 static int
742 mptable_lapic_enumerate(struct lapic_enumerator *e)
743 {
744         struct mptable_pos mpt;
745         struct mptable_lapic_cbarg1 arg1;
746         struct mptable_lapic_cbarg2 arg2;
747         mpcth_t cth;
748         int error, logical_cpus = 0;
749         vm_paddr_t lapic_addr;
750
751         if (mptable_use_default) {
752                 mptable_lapic_default();
753                 return 0;
754         }
755  
756         error = mptable_map(&mpt);
757         if (error)
758                 panic("mptable_lapic_enumerate mptable_map failed");
759         KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
760
761         cth = mpt.mp_cth;
762  
763         /* Save local apic address */
764         lapic_addr = cth->apic_address;
765         KKASSERT(lapic_addr != 0);
766  
767         /*
768          * Find out how many CPUs do we have
769          */
770         bzero(&arg1, sizeof(arg1));
771         arg1.ht_fixup = 1; /* Apply ht fixup by default */
772
773         error = mptable_iterate_entries(cth,
774                     mptable_lapic_pass1_callback, &arg1);
775         if (error)
776                 panic("mptable_iterate_entries(lapic_pass1) failed");
777         KKASSERT(arg1.cpu_count != 0);
778  
779         /* See if we need to fixup HT logical CPUs. */
780         if (arg1.ht_fixup) {
781                 logical_cpus = mptable_hyperthread_fixup(arg1.ht_apicid_mask,
782                                                          arg1.cpu_count);
783                 if (logical_cpus != 0)
784                         arg1.cpu_count *= logical_cpus;
785         }
786         naps = arg1.cpu_count - 1;      /* subtract the BSP */
787  
788         /*
789          * Link logical CPU id to local apic id
790          */
791         bzero(&arg2, sizeof(arg2));
792         arg2.cpu = 1;
793         arg2.logical_cpus = logical_cpus;
794
795         error = mptable_iterate_entries(cth,
796                     mptable_lapic_pass2_callback, &arg2);
797         if (error)
798                 panic("mptable_iterate_entries(lapic_pass2) failed");
799         KKASSERT(arg2.found_bsp);
800
801         /* Map local apic */
802         lapic_map(lapic_addr);
803
804         mptable_unmap(&mpt);
805
806         return 0;
807 }
808
809 struct mptable_lapic_probe_cbarg {
810         int     cpu_count;
811         int     found_bsp;
812 };
813
814 static int
815 mptable_lapic_probe_callback(void *xarg, const void *pos, int type)
816 {
817         const struct PROCENTRY *ent;
818         struct mptable_lapic_probe_cbarg *arg = xarg;
819
820         if (type != 0)
821                 return 0;
822         ent = pos;
823
824         if ((ent->cpu_flags & PROCENTRY_FLAG_EN) == 0)
825                 return 0;
826         arg->cpu_count++;
827
828         if (ent->apic_id == APICID_MAX) {
829                 kprintf("MPTABLE: invalid LAPIC apic id %d\n",
830                     ent->apic_id);
831                 return EINVAL;
832         }
833
834         if (ent->cpu_flags & PROCENTRY_FLAG_BP) {
835                 if (arg->found_bsp) {
836                         kprintf("more than one BSP in base MP table\n");
837                         return EINVAL;
838                 }
839                 arg->found_bsp = 1;
840         }
841         return 0;
842 }
843
844 static int
845 mptable_lapic_probe(struct lapic_enumerator *e)
846 {
847         struct mptable_pos mpt;
848         struct mptable_lapic_probe_cbarg arg;
849         mpcth_t cth;
850         int error;
851
852         if (mptable_fps_phyaddr == 0)
853                 return ENXIO;
854
855         if (mptable_use_default)
856                 return 0;
857
858         error = mptable_map(&mpt);
859         if (error)
860                 return error;
861         KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
862
863         error = EINVAL;
864         cth = mpt.mp_cth;
865
866         if (cth->apic_address == 0)
867                 goto done;
868
869         bzero(&arg, sizeof(arg));
870         error = mptable_iterate_entries(cth,
871                     mptable_lapic_probe_callback, &arg);
872         if (!error) {
873                 if (arg.cpu_count == 0) {
874                         kprintf("MP table contains no processor entries\n");
875                         error = EINVAL;
876                 } else if (!arg.found_bsp) {
877                         kprintf("MP table does not contains BSP entry\n");
878                         error = EINVAL;
879                 }
880         }
881 done:
882         mptable_unmap(&mpt);
883         return error;
884 }
885
886 static struct lapic_enumerator  mptable_lapic_enumerator = {
887         .lapic_prio = LAPIC_ENUM_PRIO_MPTABLE,
888         .lapic_probe = mptable_lapic_probe,
889         .lapic_enumerate = mptable_lapic_enumerate
890 };
891
892 static void
893 mptable_lapic_enum_register(void)
894 {
895         lapic_enumerator_register(&mptable_lapic_enumerator);
896 }
897 SYSINIT(mptable_lapic, SI_BOOT2_PRESMP, SI_ORDER_ANY,
898         mptable_lapic_enum_register, 0);
899
900 static int
901 mptable_ioapic_list_callback(void *xarg, const void *pos, int type)
902 {
903         const struct IOAPICENTRY *ent;
904         struct mptable_ioapic *nioapic, *ioapic;
905
906         if (type != 2)
907                 return 0;
908         ent = pos;
909
910         if ((ent->apic_flags & IOAPICENTRY_FLAG_EN) == 0)
911                 return 0;
912
913         if (ent->apic_address == 0) {
914                 kprintf("mptable_ioapic_create_list: zero IOAPIC addr\n");
915                 return EINVAL;
916         }
917         if (ent->apic_id == APICID_MAX) {
918                 kprintf("mptable_ioapic_create_list: "
919                     "invalid IOAPIC apic id %d\n", ent->apic_id);
920                 return EINVAL;
921         }
922
923         TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
924                 if (ioapic->mio_apic_id == ent->apic_id) {
925                         kprintf("mptable_ioapic_create_list: duplicated "
926                                 "apic id %d\n", ioapic->mio_apic_id);
927                         return EINVAL;
928                 }
929                 if (ioapic->mio_addr == ent->apic_address) {
930                         kprintf("mptable_ioapic_create_list: overlapped "
931                                 "IOAPIC addr 0x%08x", ioapic->mio_addr);
932                         return EINVAL;
933                 }
934         }
935
936         nioapic = kmalloc(sizeof(*nioapic), M_DEVBUF, M_WAITOK | M_ZERO);
937         nioapic->mio_apic_id = ent->apic_id;
938         nioapic->mio_addr = ent->apic_address;
939
940         /*
941          * Create IOAPIC list in ascending order of APIC ID
942          */
943         TAILQ_FOREACH_REVERSE(ioapic, &mptable_ioapic_list,
944             mptable_ioapic_list, mio_link) {
945                 if (nioapic->mio_apic_id > ioapic->mio_apic_id) {
946                         TAILQ_INSERT_AFTER(&mptable_ioapic_list,
947                             ioapic, nioapic, mio_link);
948                         break;
949                 }
950         }
951         if (ioapic == NULL)
952                 TAILQ_INSERT_HEAD(&mptable_ioapic_list, nioapic, mio_link);
953
954         return 0;
955 }
956
957 static void
958 mptable_ioapic_create_list(void)
959 {
960         struct mptable_ioapic *ioapic;
961         struct mptable_pos mpt;
962         int idx, error;
963
964         if (mptable_fps_phyaddr == 0)
965                 return;
966
967         if (mptable_use_default) {
968                 ioapic = kmalloc(sizeof(*ioapic), M_DEVBUF, M_WAITOK | M_ZERO);
969                 ioapic->mio_idx = 0;
970                 ioapic->mio_apic_id = 0;        /* NOTE: any value is ok here */
971                 ioapic->mio_addr = 0xfec00000;  /* XXX magic number */
972
973                 TAILQ_INSERT_HEAD(&mptable_ioapic_list, ioapic, mio_link);
974                 return;
975         }
976
977         error = mptable_map(&mpt);
978         if (error)
979                 panic("mptable_ioapic_create_list: mptable_map failed");
980         KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
981
982         error = mptable_iterate_entries(mpt.mp_cth,
983                     mptable_ioapic_list_callback, NULL);
984         if (error) {
985                 while ((ioapic = TAILQ_FIRST(&mptable_ioapic_list)) != NULL) {
986                         TAILQ_REMOVE(&mptable_ioapic_list, ioapic, mio_link);
987                         kfree(ioapic, M_DEVBUF);
988                 }
989                 goto done;
990         }
991
992         /*
993          * Assign index number for each IOAPIC
994          */
995         idx = 0;
996         TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
997                 ioapic->mio_idx = idx;
998                 ++idx;
999         }
1000 done:
1001         mptable_unmap(&mpt);
1002 }
1003 SYSINIT(mptable_ioapic_list, SI_BOOT2_PRESMP, SI_ORDER_SECOND,
1004         mptable_ioapic_create_list, 0);
1005
1006 static int
1007 mptable_pci_int_callback(void *xarg, const void *pos, int type)
1008 {
1009         const struct mptable_bus_info *bus_info = xarg;
1010         const struct mptable_ioapic *ioapic;
1011         const struct mptable_bus *bus;
1012         struct mptable_pci_int *pci_int;
1013         const struct INTENTRY *ent;
1014         int pci_pin, pci_dev;
1015
1016         if (type != 3)
1017                 return 0;
1018         ent = pos;
1019
1020         if (ent->int_type != 0)
1021                 return 0;
1022
1023         TAILQ_FOREACH(bus, &bus_info->mbi_list, mb_link) {
1024                 if (bus->mb_type == MPTABLE_BUS_PCI &&
1025                     bus->mb_id == ent->src_bus_id)
1026                         break;
1027         }
1028         if (bus == NULL)
1029                 return 0;
1030
1031         TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
1032                 if (ioapic->mio_apic_id == ent->dst_apic_id)
1033                         break;
1034         }
1035         if (ioapic == NULL) {
1036                 kprintf("MPTABLE: warning PCI int dst apic id %d "
1037                         "does not exist\n", ent->dst_apic_id);
1038                 return 0;
1039         }
1040
1041         pci_pin = ent->src_bus_irq & 0x3;
1042         pci_dev = (ent->src_bus_irq >> 2) & 0x1f;
1043
1044         TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link) {
1045                 if (pci_int->mpci_bus == ent->src_bus_id &&
1046                     pci_int->mpci_dev == pci_dev &&
1047                     pci_int->mpci_pin == pci_pin) {
1048                         if (pci_int->mpci_ioapic_idx == ioapic->mio_idx &&
1049                             pci_int->mpci_ioapic_pin == ent->dst_apic_int) {
1050                                 kprintf("MPTABLE: warning duplicated "
1051                                         "PCI int entry for "
1052                                         "bus %d, dev %d, pin %d\n",
1053                                         pci_int->mpci_bus,
1054                                         pci_int->mpci_dev,
1055                                         pci_int->mpci_pin);
1056                                 return 0;
1057                         } else {
1058                                 kprintf("mptable_pci_int_register: "
1059                                         "conflict PCI int entry for "
1060                                         "bus %d, dev %d, pin %d, "
1061                                         "IOAPIC %d.%d -> %d.%d\n",
1062                                         pci_int->mpci_bus,
1063                                         pci_int->mpci_dev,
1064                                         pci_int->mpci_pin,
1065                                         pci_int->mpci_ioapic_idx,
1066                                         pci_int->mpci_ioapic_pin,
1067                                         ioapic->mio_idx,
1068                                         ent->dst_apic_int);
1069                                 return EINVAL;
1070                         }
1071                 }
1072         }
1073
1074         pci_int = kmalloc(sizeof(*pci_int), M_DEVBUF, M_WAITOK | M_ZERO);
1075
1076         pci_int->mpci_bus = ent->src_bus_id;
1077         pci_int->mpci_dev = pci_dev;
1078         pci_int->mpci_pin = pci_pin;
1079         pci_int->mpci_ioapic_idx = ioapic->mio_idx;
1080         pci_int->mpci_ioapic_pin = ent->dst_apic_int;
1081
1082         TAILQ_INSERT_TAIL(&mptable_pci_int_list, pci_int, mpci_link);
1083
1084         return 0;
1085 }
1086
1087 static void
1088 mptable_pci_int_register(void)
1089 {
1090         struct mptable_bus_info bus_info;
1091         const struct mptable_bus *bus;
1092         struct mptable_pci_int *pci_int;
1093         struct mptable_pos mpt;
1094         int error, force_pci0, npcibus;
1095         mpcth_t cth;
1096
1097         if (mptable_fps_phyaddr == 0)
1098                 return;
1099
1100         if (mptable_use_default)
1101                 return;
1102
1103         if (TAILQ_EMPTY(&mptable_ioapic_list))
1104                 return;
1105
1106         error = mptable_map(&mpt);
1107         if (error)
1108                 panic("mptable_pci_int_register: mptable_map failed");
1109         KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
1110
1111         cth = mpt.mp_cth;
1112
1113         mptable_bus_info_alloc(cth, &bus_info);
1114         if (TAILQ_EMPTY(&bus_info.mbi_list))
1115                 goto done;
1116
1117         force_pci0 = 0;
1118         npcibus = 0;
1119         TAILQ_FOREACH(bus, &bus_info.mbi_list, mb_link) {
1120                 if (bus->mb_type == MPTABLE_BUS_PCI)
1121                         ++npcibus;
1122         }
1123         if (npcibus == 0) {
1124                 mptable_bus_info_free(&bus_info);
1125                 goto done;
1126         } else if (npcibus == 1) {
1127                 force_pci0 = 1;
1128         }
1129
1130         error = mptable_iterate_entries(cth,
1131                     mptable_pci_int_callback, &bus_info);
1132
1133         mptable_bus_info_free(&bus_info);
1134
1135         if (error) {
1136                 while ((pci_int = TAILQ_FIRST(&mptable_pci_int_list)) != NULL) {
1137                         TAILQ_REMOVE(&mptable_pci_int_list, pci_int, mpci_link);
1138                         kfree(pci_int, M_DEVBUF);
1139                 }
1140                 goto done;
1141         }
1142
1143         if (force_pci0) {
1144                 TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link)
1145                         pci_int->mpci_bus = 0;
1146         }
1147 done:
1148         mptable_unmap(&mpt);
1149 }
1150 SYSINIT(mptable_pci, SI_BOOT2_PRESMP, SI_ORDER_ANY,
1151         mptable_pci_int_register, 0);
1152
1153 struct mptable_ioapic_probe_cbarg {
1154         const struct mptable_bus_info *bus_info;
1155 };
1156
1157 static int
1158 mptable_ioapic_probe_callback(void *xarg, const void *pos, int type)
1159 {
1160         struct mptable_ioapic_probe_cbarg *arg = xarg;
1161         const struct mptable_ioapic *ioapic;
1162         const struct mptable_bus *bus;
1163         const struct INTENTRY *ent;
1164
1165         if (type != 3)
1166                 return 0;
1167         ent = pos;
1168
1169         if (ent->int_type != 0)
1170                 return 0;
1171
1172         TAILQ_FOREACH(bus, &arg->bus_info->mbi_list, mb_link) {
1173                 if (bus->mb_type == MPTABLE_BUS_ISA &&
1174                     bus->mb_id == ent->src_bus_id)
1175                         break;
1176         }
1177         if (bus == NULL)
1178                 return 0;
1179
1180         TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
1181                 if (ioapic->mio_apic_id == ent->dst_apic_id)
1182                         break;
1183         }
1184         if (ioapic == NULL) {
1185                 kprintf("MPTABLE: warning ISA int dst apic id %d "
1186                         "does not exist\n", ent->dst_apic_id);
1187                 return 0;
1188         }
1189
1190         /* XXX magic number */
1191         if (ent->src_bus_irq >= ISA_IRQ_CNT) {
1192                 kprintf("mptable_ioapic_probe: invalid ISA irq (%d)\n",
1193                         ent->src_bus_irq);
1194                 return EINVAL;
1195         }
1196         return 0;
1197 }
1198
1199 static int
1200 mptable_ioapic_probe(struct ioapic_enumerator *e)
1201 {
1202         struct mptable_ioapic_probe_cbarg arg;
1203         struct mptable_bus_info bus_info;
1204         struct mptable_pos mpt;
1205         mpcth_t cth;
1206         int error;
1207
1208         if (mptable_fps_phyaddr == 0)
1209                 return ENXIO;
1210
1211         if (mptable_use_default)
1212                 return 0;
1213
1214         if (TAILQ_EMPTY(&mptable_ioapic_list))
1215                 return ENXIO;
1216
1217         error = mptable_map(&mpt);
1218         if (error)
1219                 panic("mptable_ioapic_probe: mptable_map failed");
1220         KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
1221
1222         cth = mpt.mp_cth;
1223
1224         mptable_bus_info_alloc(cth, &bus_info);
1225
1226         bzero(&arg, sizeof(arg));
1227         arg.bus_info = &bus_info;
1228
1229         error = mptable_iterate_entries(cth,
1230                     mptable_ioapic_probe_callback, &arg);
1231
1232         mptable_bus_info_free(&bus_info);
1233         mptable_unmap(&mpt);
1234
1235         return error;
1236 }
1237
1238 struct mptable_ioapic_int_cbarg {
1239         const struct mptable_bus_info *bus_info;
1240         int     ioapic_nint;
1241 };
1242
1243 static int
1244 mptable_ioapic_int_callback(void *xarg, const void *pos, int type)
1245 {
1246         struct mptable_ioapic_int_cbarg *arg = xarg;
1247         const struct mptable_ioapic *ioapic;
1248         const struct mptable_bus *bus;
1249         const struct INTENTRY *ent;
1250         int gsi;
1251
1252         if (type != 3)
1253                 return 0;
1254
1255         arg->ioapic_nint++;
1256
1257         ent = pos;
1258         if (ent->int_type != 0)
1259                 return 0;
1260
1261         TAILQ_FOREACH(bus, &arg->bus_info->mbi_list, mb_link) {
1262                 if (bus->mb_type == MPTABLE_BUS_ISA &&
1263                     bus->mb_id == ent->src_bus_id)
1264                         break;
1265         }
1266         if (bus == NULL)
1267                 return 0;
1268
1269         TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
1270                 if (ioapic->mio_apic_id == ent->dst_apic_id)
1271                         break;
1272         }
1273         if (ioapic == NULL) {
1274                 kprintf("MPTABLE: warning ISA int dst apic id %d "
1275                         "does not exist\n", ent->dst_apic_id);
1276                 return 0;
1277         }
1278
1279         if (ent->dst_apic_int >= ioapic->mio_npin) {
1280                 panic("mptable_ioapic_enumerate: invalid I/O APIC "
1281                       "pin %d, should be < %d",
1282                       ent->dst_apic_int, ioapic->mio_npin);
1283         }
1284         gsi = ioapic->mio_gsi_base + ent->dst_apic_int;
1285
1286         if (ent->src_bus_irq != gsi) {
1287                 if (bootverbose) {
1288                         kprintf("MPTABLE: INTSRC irq %d -> GSI %d\n",
1289                                 ent->src_bus_irq, gsi);
1290                 }
1291                 ioapic_intsrc(ent->src_bus_irq, gsi,
1292                     INTR_TRIGGER_EDGE, INTR_POLARITY_HIGH);
1293         }
1294         return 0;
1295 }
1296
1297 static void
1298 mptable_ioapic_enumerate(struct ioapic_enumerator *e)
1299 {
1300         struct mptable_bus_info bus_info;
1301         struct mptable_ioapic *ioapic;
1302         struct mptable_pos mpt;
1303         mpcth_t cth;
1304         int error;
1305
1306         KKASSERT(mptable_fps_phyaddr != 0);
1307         KKASSERT(!TAILQ_EMPTY(&mptable_ioapic_list));
1308
1309         TAILQ_FOREACH(ioapic, &mptable_ioapic_list, mio_link) {
1310                 const struct mptable_ioapic *prev_ioapic;
1311                 uint32_t ver;
1312                 void *addr;
1313
1314                 addr = ioapic_map(ioapic->mio_addr);
1315
1316                 ver = ioapic_read(addr, IOAPIC_VER);
1317                 ioapic->mio_npin = ((ver & IOART_VER_MAXREDIR)
1318                                     >> MAXREDIRSHIFT) + 1;
1319
1320                 prev_ioapic = TAILQ_PREV(ioapic,
1321                                 mptable_ioapic_list, mio_link);
1322                 if (prev_ioapic == NULL) {
1323                         ioapic->mio_gsi_base = 0;
1324                 } else {
1325                         ioapic->mio_gsi_base =
1326                                 prev_ioapic->mio_gsi_base +
1327                                 prev_ioapic->mio_npin;
1328                 }
1329                 ioapic_add(addr, ioapic->mio_gsi_base, ioapic->mio_npin);
1330
1331                 if (bootverbose) {
1332                         kprintf("MPTABLE: IOAPIC addr 0x%08x, "
1333                                 "apic id %d, idx %d, gsi base %d, npin %d\n",
1334                                 ioapic->mio_addr,
1335                                 ioapic->mio_apic_id,
1336                                 ioapic->mio_idx,
1337                                 ioapic->mio_gsi_base,
1338                                 ioapic->mio_npin);
1339                 }
1340         }
1341
1342         if (mptable_use_default) {
1343                 if (bootverbose)
1344                         kprintf("MPTABLE: INTSRC irq 0 -> GSI 2 (default)\n");
1345                 ioapic_intsrc(0, 2, INTR_TRIGGER_EDGE, INTR_POLARITY_HIGH);
1346                 return;
1347         }
1348
1349         error = mptable_map(&mpt);
1350         if (error)
1351                 panic("mptable_ioapic_probe: mptable_map failed");
1352         KKASSERT(!MPTABLE_POS_USE_DEFAULT(&mpt));
1353
1354         cth = mpt.mp_cth;
1355
1356         mptable_bus_info_alloc(cth, &bus_info);
1357
1358         if (TAILQ_EMPTY(&bus_info.mbi_list)) {
1359                 if (bootverbose)
1360                         kprintf("MPTABLE: INTSRC irq 0 -> GSI 2 (no bus)\n");
1361                 ioapic_intsrc(0, 2, INTR_TRIGGER_EDGE, INTR_POLARITY_HIGH);
1362         } else {
1363                 struct mptable_ioapic_int_cbarg arg;
1364
1365                 bzero(&arg, sizeof(arg));
1366                 arg.bus_info = &bus_info;
1367
1368                 error = mptable_iterate_entries(cth,
1369                             mptable_ioapic_int_callback, &arg);
1370                 if (error)
1371                         panic("mptable_ioapic_int failed");
1372
1373                 if (arg.ioapic_nint == 0) {
1374                         if (bootverbose) {
1375                                 kprintf("MPTABLE: INTSRC irq 0 -> GSI 2 "
1376                                         "(no int)\n");
1377                         }
1378                         ioapic_intsrc(0, 2, INTR_TRIGGER_EDGE,
1379                             INTR_POLARITY_HIGH);
1380                 }
1381         }
1382
1383         mptable_bus_info_free(&bus_info);
1384
1385         mptable_unmap(&mpt);
1386 }
1387
1388 static struct ioapic_enumerator mptable_ioapic_enumerator = {
1389         .ioapic_prio = IOAPIC_ENUM_PRIO_MPTABLE,
1390         .ioapic_probe = mptable_ioapic_probe,
1391         .ioapic_enumerate = mptable_ioapic_enumerate
1392 };
1393
1394 static void
1395 mptable_ioapic_enum_register(void)
1396 {
1397         ioapic_enumerator_register(&mptable_ioapic_enumerator);
1398 }
1399 SYSINIT(mptable_ioapic, SI_BOOT2_PRESMP, SI_ORDER_ANY,
1400         mptable_ioapic_enum_register, 0);
1401
1402 void
1403 mptable_pci_int_dump(void)
1404 {
1405         const struct mptable_pci_int *pci_int;
1406
1407         if (!bootverbose)
1408                 return;
1409
1410         TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link) {
1411                 kprintf("MPTABLE: %d:%d INT%c -> IOAPIC %d.%d\n",
1412                         pci_int->mpci_bus,
1413                         pci_int->mpci_dev,
1414                         pci_int->mpci_pin + 'A',
1415                         pci_int->mpci_ioapic_idx,
1416                         pci_int->mpci_ioapic_pin);
1417         }
1418 }
1419
1420 int
1421 mptable_pci_int_route(int bus, int dev, int pin, int intline)
1422 {
1423         const struct mptable_pci_int *pci_int;
1424         int irq = -1;
1425
1426         KKASSERT(pin >= 1);
1427         --pin;  /* zero based */
1428
1429         TAILQ_FOREACH(pci_int, &mptable_pci_int_list, mpci_link) {
1430                 if (pci_int->mpci_bus == bus &&
1431                     pci_int->mpci_dev == dev &&
1432                     pci_int->mpci_pin == pin)
1433                         break;
1434         }
1435         if (pci_int != NULL) {
1436                 int gsi;
1437
1438                 gsi = ioapic_gsi(pci_int->mpci_ioapic_idx,
1439                         pci_int->mpci_ioapic_pin);
1440                 if (gsi >= 0) {
1441                         irq = ioapic_find_legacy_by_gsi(gsi,
1442                                 INTR_TRIGGER_LEVEL, INTR_POLARITY_LOW);
1443                 }
1444         }
1445
1446         if (irq < 0) {
1447                 if (bootverbose) {
1448                         kprintf("MPTABLE: fixed interrupt routing "
1449                                 "for %d:%d INT%c\n", bus, dev, pin + 'A');
1450                 }
1451
1452                 irq = ioapic_find_legacy_by_irq(intline,
1453                         INTR_TRIGGER_LEVEL, INTR_POLARITY_LOW);
1454         }
1455
1456         if (irq >= 0 && bootverbose) {
1457                 kprintf("MPTABLE: %d:%d INT%c routed to irq %d\n",
1458                         bus, dev, pin + 'A', irq);
1459         }
1460         return irq;
1461 }