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