Add interrupt cputimer interface.
[dragonfly.git] / sys / platform / pc32 / apic / mpapic.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/mpapic.c,v 1.37.2.7 2003/01/25 02:31:47 peter Exp $
26  * $DragonFly: src/sys/platform/pc32/apic/mpapic.c,v 1.22 2008/04/20 13:44:26 swildner Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <sys/kernel.h>
32 #include <machine/globaldata.h>
33 #include <machine/smp.h>
34 #include <machine/md_var.h>
35 #include <machine_base/apic/mpapic.h>
36 #include <machine/segments.h>
37 #include <sys/thread2.h>
38
39 #include <machine_base/isa/intr_machdep.h>      /* Xspuriousint() */
40
41 /* EISA Edge/Level trigger control registers */
42 #define ELCR0   0x4d0                   /* eisa irq 0-7 */
43 #define ELCR1   0x4d1                   /* eisa irq 8-15 */
44
45 static void     lapic_timer_calibrate(void);
46 static void     lapic_timer_set_divisor(int);
47 static void     lapic_timer_fixup_handler(void *);
48 static void     lapic_timer_restart_handler(void *);
49
50 void            lapic_timer_process(void);
51 void            lapic_timer_process_frame(struct intrframe *);
52
53 static int      lapic_timer_enable = 1;
54 TUNABLE_INT("hw.lapic_timer_enable", &lapic_timer_enable);
55
56 static void     lapic_timer_intr_reload(struct cputimer_intr *, sysclock_t);
57 static void     lapic_timer_intr_enable(struct cputimer_intr *);
58 static void     lapic_timer_intr_restart(struct cputimer_intr *);
59 static void     lapic_timer_intr_pmfixup(struct cputimer_intr *);
60
61 static struct cputimer_intr lapic_cputimer_intr = {
62         .freq = 0,
63         .reload = lapic_timer_intr_reload,
64         .enable = lapic_timer_intr_enable,
65         .config = cputimer_intr_default_config,
66         .restart = lapic_timer_intr_restart,
67         .pmfixup = lapic_timer_intr_pmfixup,
68         .initclock = cputimer_intr_default_initclock,
69         .next = SLIST_ENTRY_INITIALIZER,
70         .name = "lapic",
71         .type = CPUTIMER_INTR_LAPIC,
72         .prio = CPUTIMER_INTR_PRIO_LAPIC,
73         .caps = CPUTIMER_INTR_CAP_NONE
74 };
75
76 /*
77  * pointers to pmapped apic hardware.
78  */
79
80 volatile ioapic_t       **ioapic;
81
82 static int              lapic_timer_divisor_idx = -1;
83 static const uint32_t   lapic_timer_divisors[] = {
84         APIC_TDCR_2,    APIC_TDCR_4,    APIC_TDCR_8,    APIC_TDCR_16,
85         APIC_TDCR_32,   APIC_TDCR_64,   APIC_TDCR_128,  APIC_TDCR_1
86 };
87 #define APIC_TIMER_NDIVISORS \
88         (int)(sizeof(lapic_timer_divisors) / sizeof(lapic_timer_divisors[0]))
89
90
91 /*
92  * Enable APIC, configure interrupts.
93  */
94 void
95 apic_initialize(boolean_t bsp)
96 {
97         uint32_t timer;
98         u_int   temp;
99
100         /*
101          * setup LVT1 as ExtINT on the BSP.  This is theoretically an
102          * aggregate interrupt input from the 8259.  The INTA cycle
103          * will be routed to the external controller (the 8259) which
104          * is expected to supply the vector.
105          *
106          * Must be setup edge triggered, active high.
107          *
108          * Disable LVT1 on the APs.  It doesn't matter what delivery
109          * mode we use because we leave it masked.
110          */
111         temp = lapic.lvt_lint0;
112         temp &= ~(APIC_LVT_MASKED | APIC_LVT_TRIG_MASK | 
113                   APIC_LVT_POLARITY_MASK | APIC_LVT_DM_MASK);
114         if (mycpu->gd_cpuid == 0)
115                 temp |= APIC_LVT_DM_EXTINT;
116         else
117                 temp |= APIC_LVT_DM_FIXED | APIC_LVT_MASKED;
118         lapic.lvt_lint0 = temp;
119
120         /*
121          * setup LVT2 as NMI, masked till later.  Edge trigger, active high.
122          */
123         temp = lapic.lvt_lint1;
124         temp &= ~(APIC_LVT_MASKED | APIC_LVT_TRIG_MASK | 
125                   APIC_LVT_POLARITY_MASK | APIC_LVT_DM_MASK);
126         temp |= APIC_LVT_MASKED | APIC_LVT_DM_NMI;
127         lapic.lvt_lint1 = temp;
128
129         /*
130          * Mask the apic error interrupt, apic performance counter
131          * interrupt.
132          */
133         lapic.lvt_error = lapic.lvt_error | APIC_LVT_MASKED;
134         lapic.lvt_pcint = lapic.lvt_pcint | APIC_LVT_MASKED;
135
136         /* Set apic timer vector and mask the apic timer interrupt. */
137         timer = lapic.lvt_timer;
138         timer &= ~APIC_LVTT_VECTOR;
139         timer |= XTIMER_OFFSET;
140         timer |= APIC_LVTT_MASKED;
141         lapic.lvt_timer = timer;
142
143         /*
144          * Set the Task Priority Register as needed.   At the moment allow
145          * interrupts on all cpus (the APs will remain CLId until they are
146          * ready to deal).  We could disable all but IPIs by setting
147          * temp |= TPR_IPI_ONLY for cpu != 0.
148          */
149         temp = lapic.tpr;
150         temp &= ~APIC_TPR_PRIO;         /* clear priority field */
151 #ifndef APIC_IO
152         /*
153          * If we are NOT running the IO APICs, the LAPIC will only be used
154          * for IPIs.  Set the TPR to prevent any unintentional interrupts.
155          */
156         temp |= TPR_IPI_ONLY;
157 #endif
158
159         lapic.tpr = temp;
160
161         /* 
162          * enable the local APIC 
163          */
164         temp = lapic.svr;
165         temp |= APIC_SVR_ENABLE;        /* enable the APIC */
166         temp &= ~APIC_SVR_FOCUS_DISABLE; /* enable lopri focus processor */
167
168         /*
169          * Set the spurious interrupt vector.  The low 4 bits of the vector
170          * must be 1111.
171          */
172         if ((XSPURIOUSINT_OFFSET & 0x0F) != 0x0F)
173                 panic("bad XSPURIOUSINT_OFFSET: 0x%08x", XSPURIOUSINT_OFFSET);
174         temp &= ~APIC_SVR_VECTOR;
175         temp |= XSPURIOUSINT_OFFSET;
176
177         lapic.svr = temp;
178
179         /*
180          * Pump out a few EOIs to clean out interrupts that got through
181          * before we were able to set the TPR.
182          */
183         lapic.eoi = 0;
184         lapic.eoi = 0;
185         lapic.eoi = 0;
186
187         if (bsp) {
188                 lapic_timer_calibrate();
189                 if (lapic_timer_enable) {
190                         cputimer_intr_register(&lapic_cputimer_intr);
191                         cputimer_intr_select(&lapic_cputimer_intr, 0);
192                 }
193         } else {
194                 lapic_timer_set_divisor(lapic_timer_divisor_idx);
195         }
196
197         if (bootverbose)
198                 apic_dump("apic_initialize()");
199 }
200
201
202 static void
203 lapic_timer_set_divisor(int divisor_idx)
204 {
205         KKASSERT(divisor_idx >= 0 && divisor_idx < APIC_TIMER_NDIVISORS);
206         lapic.dcr_timer = lapic_timer_divisors[divisor_idx];
207 }
208
209 static void
210 lapic_timer_oneshot(u_int count)
211 {
212         uint32_t value;
213
214         value = lapic.lvt_timer;
215         value &= ~APIC_LVTT_PERIODIC;
216         lapic.lvt_timer = value;
217         lapic.icr_timer = count;
218 }
219
220 static void
221 lapic_timer_oneshot_quick(u_int count)
222 {
223         lapic.icr_timer = count;
224 }
225
226 static void
227 lapic_timer_calibrate(void)
228 {
229         sysclock_t value;
230
231         /* Try to calibrate the local APIC timer. */
232         for (lapic_timer_divisor_idx = 0;
233              lapic_timer_divisor_idx < APIC_TIMER_NDIVISORS;
234              lapic_timer_divisor_idx++) {
235                 lapic_timer_set_divisor(lapic_timer_divisor_idx);
236                 lapic_timer_oneshot(APIC_TIMER_MAX_COUNT);
237                 DELAY(2000000);
238                 value = APIC_TIMER_MAX_COUNT - lapic.ccr_timer;
239                 if (value != APIC_TIMER_MAX_COUNT)
240                         break;
241         }
242         if (lapic_timer_divisor_idx >= APIC_TIMER_NDIVISORS)
243                 panic("lapic: no proper timer divisor?!\n");
244         lapic_cputimer_intr.freq = value / 2;
245
246         kprintf("lapic: divisor index %d, frequency %u Hz\n",
247                 lapic_timer_divisor_idx, lapic_cputimer_intr.freq);
248 }
249
250 static void
251 lapic_timer_process_oncpu(struct globaldata *gd, struct intrframe *frame)
252 {
253         sysclock_t count;
254
255         gd->gd_timer_running = 0;
256
257         count = sys_cputimer->count();
258         if (TAILQ_FIRST(&gd->gd_systimerq) != NULL)
259                 systimer_intr(&count, 0, frame);
260 }
261
262 void
263 lapic_timer_process(void)
264 {
265         lapic_timer_process_oncpu(mycpu, NULL);
266 }
267
268 void
269 lapic_timer_process_frame(struct intrframe *frame)
270 {
271         lapic_timer_process_oncpu(mycpu, frame);
272 }
273
274 static void
275 lapic_timer_intr_reload(struct cputimer_intr *cti, sysclock_t reload)
276 {
277         struct globaldata *gd = mycpu;
278
279         reload = (int64_t)reload * cti->freq / sys_cputimer->freq;
280         if (reload < 2)
281                 reload = 2;
282
283         if (gd->gd_timer_running) {
284                 if (reload < lapic.ccr_timer)
285                         lapic_timer_oneshot_quick(reload);
286         } else {
287                 gd->gd_timer_running = 1;
288                 lapic_timer_oneshot_quick(reload);
289         }
290 }
291
292 static void
293 lapic_timer_intr_enable(struct cputimer_intr *cti __unused)
294 {
295         uint32_t timer;
296
297         timer = lapic.lvt_timer;
298         timer &= ~(APIC_LVTT_MASKED | APIC_LVTT_PERIODIC);
299         lapic.lvt_timer = timer;
300
301         lapic_timer_fixup_handler(NULL);
302 }
303
304 static void
305 lapic_timer_fixup_handler(void *arg)
306 {
307         int *started = arg;
308
309         if (started != NULL)
310                 *started = 0;
311
312         if (strcmp(cpu_vendor, "AuthenticAMD") == 0) {
313                 /*
314                  * Detect the presence of C1E capability mostly on latest
315                  * dual-cores (or future) k8 family.  This feature renders
316                  * the local APIC timer dead, so we disable it by reading
317                  * the Interrupt Pending Message register and clearing both
318                  * C1eOnCmpHalt (bit 28) and SmiOnCmpHalt (bit 27).
319                  * 
320                  * Reference:
321                  *   "BIOS and Kernel Developer's Guide for AMD NPT
322                  *    Family 0Fh Processors"
323                  *   #32559 revision 3.00
324                  */
325                 if ((cpu_id & 0x00000f00) == 0x00000f00 &&
326                     (cpu_id & 0x0fff0000) >= 0x00040000) {
327                         uint64_t msr;
328
329                         msr = rdmsr(0xc0010055);
330                         if (msr & 0x18000000) {
331                                 struct globaldata *gd = mycpu;
332
333                                 kprintf("cpu%d: AMD C1E detected\n",
334                                         gd->gd_cpuid);
335                                 wrmsr(0xc0010055, msr & ~0x18000000ULL);
336
337                                 /*
338                                  * We are kinda stalled;
339                                  * kick start again.
340                                  */
341                                 gd->gd_timer_running = 1;
342                                 lapic_timer_oneshot_quick(2);
343
344                                 if (started != NULL)
345                                         *started = 1;
346                         }
347                 }
348         }
349 }
350
351 static void
352 lapic_timer_restart_handler(void *dummy __unused)
353 {
354         int started;
355
356         lapic_timer_fixup_handler(&started);
357         if (!started) {
358                 struct globaldata *gd = mycpu;
359
360                 gd->gd_timer_running = 1;
361                 lapic_timer_oneshot_quick(2);
362         }
363 }
364
365 /*
366  * This function is called only by ACPI-CA code currently:
367  * - AMD C1E fixup.  AMD C1E only seems to happen after ACPI
368  *   module controls PM.  So once ACPI-CA is attached, we try
369  *   to apply the fixup to prevent LAPIC timer from hanging.
370  */
371 static void
372 lapic_timer_intr_pmfixup(struct cputimer_intr *cti __unused)
373 {
374         lwkt_send_ipiq_mask(smp_active_mask,
375                             lapic_timer_fixup_handler, NULL);
376 }
377
378 static void
379 lapic_timer_intr_restart(struct cputimer_intr *cti __unused)
380 {
381         lwkt_send_ipiq_mask(smp_active_mask, lapic_timer_restart_handler, NULL);
382 }
383
384
385 /*
386  * dump contents of local APIC registers
387  */
388 void
389 apic_dump(char* str)
390 {
391         kprintf("SMP: CPU%d %s:\n", mycpu->gd_cpuid, str);
392         kprintf("     lint0: 0x%08x lint1: 0x%08x TPR: 0x%08x SVR: 0x%08x\n",
393                 lapic.lvt_lint0, lapic.lvt_lint1, lapic.tpr, lapic.svr);
394 }
395
396
397 #if defined(APIC_IO)
398
399 /*
400  * IO APIC code,
401  */
402
403 #define IOAPIC_ISA_INTS         16
404 #define REDIRCNT_IOAPIC(A) \
405             ((int)((io_apic_versions[(A)] & IOART_VER_MAXREDIR) >> MAXREDIRSHIFT) + 1)
406
407 static int trigger (int apic, int pin, u_int32_t * flags);
408 static void polarity (int apic, int pin, u_int32_t * flags, int level);
409
410 #define DEFAULT_FLAGS           \
411         ((u_int32_t)            \
412          (IOART_INTMSET |       \
413           IOART_DESTPHY |       \
414           IOART_DELLOPRI))
415
416 #define DEFAULT_ISA_FLAGS       \
417         ((u_int32_t)            \
418          (IOART_INTMSET |       \
419           IOART_TRGREDG |       \
420           IOART_INTAHI |        \
421           IOART_DESTPHY |       \
422           IOART_DELLOPRI))
423
424 void
425 io_apic_set_id(int apic, int id)
426 {
427         u_int32_t ux;
428         
429         ux = io_apic_read(apic, IOAPIC_ID);     /* get current contents */
430         if (((ux & APIC_ID_MASK) >> 24) != id) {
431                 kprintf("Changing APIC ID for IO APIC #%d"
432                        " from %d to %d on chip\n",
433                        apic, ((ux & APIC_ID_MASK) >> 24), id);
434                 ux &= ~APIC_ID_MASK;    /* clear the ID field */
435                 ux |= (id << 24);
436                 io_apic_write(apic, IOAPIC_ID, ux);     /* write new value */
437                 ux = io_apic_read(apic, IOAPIC_ID);     /* re-read && test */
438                 if (((ux & APIC_ID_MASK) >> 24) != id)
439                         panic("can't control IO APIC #%d ID, reg: 0x%08x",
440                               apic, ux);
441         }
442 }
443
444
445 int
446 io_apic_get_id(int apic)
447 {
448   return (io_apic_read(apic, IOAPIC_ID) & APIC_ID_MASK) >> 24;
449 }
450   
451
452
453 /*
454  * Setup the IO APIC.
455  */
456
457 extern int      apic_pin_trigger;       /* 'opaque' */
458
459 void
460 io_apic_setup_intpin(int apic, int pin)
461 {
462         int bus, bustype, irq;
463         u_char          select;         /* the select register is 8 bits */
464         u_int32_t       flags;          /* the window register is 32 bits */
465         u_int32_t       target;         /* the window register is 32 bits */
466         u_int32_t       vector;         /* the window register is 32 bits */
467         int             level;
468
469         select = pin * 2 + IOAPIC_REDTBL0;      /* register */
470
471         /*
472          * Always clear an IO APIC pin before [re]programming it.  This is
473          * particularly important if the pin is set up for a level interrupt
474          * as the IOART_REM_IRR bit might be set.   When we reprogram the
475          * vector any EOI from pending ints on this pin could be lost and
476          * IRR might never get reset.
477          *
478          * To fix this problem, clear the vector and make sure it is 
479          * programmed as an edge interrupt.  This should theoretically
480          * clear IRR so we can later, safely program it as a level 
481          * interrupt.
482          */
483         imen_lock();
484
485         flags = io_apic_read(apic, select) & IOART_RESV;
486         flags |= IOART_INTMSET | IOART_TRGREDG | IOART_INTAHI;
487         flags |= IOART_DESTPHY | IOART_DELFIXED;
488
489         target = io_apic_read(apic, select + 1) & IOART_HI_DEST_RESV;
490         target |= 0;    /* fixed mode cpu mask of 0 - don't deliver anywhere */
491
492         vector = 0;
493
494         io_apic_write(apic, select, flags | vector);
495         io_apic_write(apic, select + 1, target);
496
497         imen_unlock();
498
499         /*
500          * We only deal with vectored interrupts here.  ? documentation is
501          * lacking, I'm guessing an interrupt type of 0 is the 'INT' type,
502          * vs ExTINT, etc.
503          *
504          * This test also catches unconfigured pins.
505          */
506         if (apic_int_type(apic, pin) != 0)
507                 return;
508
509         /*
510          * Leave the pin unprogrammed if it does not correspond to
511          * an IRQ.
512          */
513         irq = apic_irq(apic, pin);
514         if (irq < 0)
515                 return;
516         
517         /* determine the bus type for this pin */
518         bus = apic_src_bus_id(apic, pin);
519         if (bus < 0)
520                 return;
521         bustype = apic_bus_type(bus);
522         
523         if ((bustype == ISA) &&
524             (pin < IOAPIC_ISA_INTS) && 
525             (irq == pin) &&
526             (apic_polarity(apic, pin) == 0x1) &&
527             (apic_trigger(apic, pin) == 0x3)) {
528                 /* 
529                  * A broken BIOS might describe some ISA 
530                  * interrupts as active-high level-triggered.
531                  * Use default ISA flags for those interrupts.
532                  */
533                 flags = DEFAULT_ISA_FLAGS;
534         } else {
535                 /* 
536                  * Program polarity and trigger mode according to 
537                  * interrupt entry.
538                  */
539                 flags = DEFAULT_FLAGS;
540                 level = trigger(apic, pin, &flags);
541                 if (level == 1)
542                         apic_pin_trigger |= (1 << irq);
543                 polarity(apic, pin, &flags, level);
544         }
545         
546         if (bootverbose) {
547                 kprintf("IOAPIC #%d intpin %d -> irq %d\n",
548                        apic, pin, irq);
549         }
550
551         /*
552          * Program the appropriate registers.  This routing may be 
553          * overridden when an interrupt handler for a device is
554          * actually added (see register_int(), which calls through
555          * the MACHINTR ABI to set up an interrupt handler/vector).
556          *
557          * The order in which we must program the two registers for
558          * safety is unclear! XXX
559          */
560         imen_lock();
561
562         vector = IDT_OFFSET + irq;                      /* IDT vec */
563         target = io_apic_read(apic, select + 1) & IOART_HI_DEST_RESV;
564         target |= IOART_HI_DEST_BROADCAST;
565         flags |= io_apic_read(apic, select) & IOART_RESV;
566         io_apic_write(apic, select, flags | vector);
567         io_apic_write(apic, select + 1, target);
568
569         imen_unlock();
570 }
571
572 int
573 io_apic_setup(int apic)
574 {
575         int             maxpin;
576         int             pin;
577
578         if (apic == 0)
579                 apic_pin_trigger = 0;   /* default to edge-triggered */
580
581         maxpin = REDIRCNT_IOAPIC(apic);         /* pins in APIC */
582         kprintf("Programming %d pins in IOAPIC #%d\n", maxpin, apic);
583         
584         for (pin = 0; pin < maxpin; ++pin) {
585                 io_apic_setup_intpin(apic, pin);
586         }
587         while (pin < 32) {
588                 if (apic_int_type(apic, pin) >= 0) {
589                         kprintf("Warning: IOAPIC #%d pin %d does not exist,"
590                                 " cannot program!\n", apic, pin);
591                 }
592                 ++pin;
593         }
594
595         /* return GOOD status */
596         return 0;
597 }
598 #undef DEFAULT_ISA_FLAGS
599 #undef DEFAULT_FLAGS
600
601
602 #define DEFAULT_EXTINT_FLAGS    \
603         ((u_int32_t)            \
604          (IOART_INTMSET |       \
605           IOART_TRGREDG |       \
606           IOART_INTAHI |        \
607           IOART_DESTPHY |       \
608           IOART_DELLOPRI))
609
610 /*
611  * Setup the source of External INTerrupts.
612  */
613 int
614 ext_int_setup(int apic, int intr)
615 {
616         u_char  select;         /* the select register is 8 bits */
617         u_int32_t flags;        /* the window register is 32 bits */
618         u_int32_t target;       /* the window register is 32 bits */
619         u_int32_t vector;       /* the window register is 32 bits */
620
621         if (apic_int_type(apic, intr) != 3)
622                 return -1;
623
624         target = IOART_HI_DEST_BROADCAST;
625         select = IOAPIC_REDTBL0 + (2 * intr);
626         vector = IDT_OFFSET + intr;
627         flags = DEFAULT_EXTINT_FLAGS;
628
629         io_apic_write(apic, select, flags | vector);
630         io_apic_write(apic, select + 1, target);
631
632         return 0;
633 }
634 #undef DEFAULT_EXTINT_FLAGS
635
636
637 /*
638  * Set the trigger level for an IO APIC pin.
639  */
640 static int
641 trigger(int apic, int pin, u_int32_t * flags)
642 {
643         int     id;
644         int     eirq;
645         int     level;
646         static int intcontrol = -1;
647
648         switch (apic_trigger(apic, pin)) {
649
650         case 0x00:
651                 break;
652
653         case 0x01:
654                 *flags &= ~IOART_TRGRLVL;       /* *flags |= IOART_TRGREDG */
655                 return 0;
656
657         case 0x03:
658                 *flags |= IOART_TRGRLVL;
659                 return 1;
660
661         case -1:
662         default:
663                 goto bad;
664         }
665
666         if ((id = apic_src_bus_id(apic, pin)) == -1)
667                 goto bad;
668
669         switch (apic_bus_type(id)) {
670         case ISA:
671                 *flags &= ~IOART_TRGRLVL;       /* *flags |= IOART_TRGREDG; */
672                 return 0;
673
674         case EISA:
675                 eirq = apic_src_bus_irq(apic, pin);
676
677                 if (eirq < 0 || eirq > 15) {
678                         kprintf("EISA IRQ %d?!?!\n", eirq);
679                         goto bad;
680                 }
681
682                 if (intcontrol == -1) {
683                         intcontrol = inb(ELCR1) << 8;
684                         intcontrol |= inb(ELCR0);
685                         kprintf("EISA INTCONTROL = %08x\n", intcontrol);
686                 }
687
688                 /* Use ELCR settings to determine level or edge mode */
689                 level = (intcontrol >> eirq) & 1;
690
691                 /*
692                  * Note that on older Neptune chipset based systems, any
693                  * pci interrupts often show up here and in the ELCR as well
694                  * as level sensitive interrupts attributed to the EISA bus.
695                  */
696
697                 if (level)
698                         *flags |= IOART_TRGRLVL;
699                 else
700                         *flags &= ~IOART_TRGRLVL;
701
702                 return level;
703
704         case PCI:
705                 *flags |= IOART_TRGRLVL;
706                 return 1;
707
708         case -1:
709         default:
710                 goto bad;
711         }
712
713 bad:
714         panic("bad APIC IO INT flags");
715 }
716
717
718 /*
719  * Set the polarity value for an IO APIC pin.
720  */
721 static void
722 polarity(int apic, int pin, u_int32_t * flags, int level)
723 {
724         int     id;
725
726         switch (apic_polarity(apic, pin)) {
727
728         case 0x00:
729                 break;
730
731         case 0x01:
732                 *flags &= ~IOART_INTALO;        /* *flags |= IOART_INTAHI */
733                 return;
734
735         case 0x03:
736                 *flags |= IOART_INTALO;
737                 return;
738
739         case -1:
740         default:
741                 goto bad;
742         }
743
744         if ((id = apic_src_bus_id(apic, pin)) == -1)
745                 goto bad;
746
747         switch (apic_bus_type(id)) {
748         case ISA:
749                 *flags &= ~IOART_INTALO;        /* *flags |= IOART_INTAHI */
750                 return;
751
752         case EISA:
753                 /* polarity converter always gives active high */
754                 *flags &= ~IOART_INTALO;
755                 return;
756
757         case PCI:
758                 *flags |= IOART_INTALO;
759                 return;
760
761         case -1:
762         default:
763                 goto bad;
764         }
765
766 bad:
767         panic("bad APIC IO INT flags");
768 }
769
770
771 /*
772  * Print contents of apic_imen.
773  */
774 extern  u_int apic_imen;                /* keep apic_imen 'opaque' */
775 void
776 imen_dump(void)
777 {
778         int x;
779
780         kprintf("SMP: enabled INTs: ");
781         for (x = 0; x < 24; ++x)
782                 if ((apic_imen & (1 << x)) == 0)
783                         kprintf("%d, ", x);
784         kprintf("apic_imen: 0x%08x\n", apic_imen);
785 }
786
787
788 /*
789  * Inter Processor Interrupt functions.
790  */
791
792 #endif  /* APIC_IO */
793
794 /*
795  * Send APIC IPI 'vector' to 'destType' via 'deliveryMode'.
796  *
797  *  destType is 1 of: APIC_DEST_SELF, APIC_DEST_ALLISELF, APIC_DEST_ALLESELF
798  *  vector is any valid SYSTEM INT vector
799  *  delivery_mode is 1 of: APIC_DELMODE_FIXED, APIC_DELMODE_LOWPRIO
800  *
801  * A backlog of requests can create a deadlock between cpus.  To avoid this
802  * we have to be able to accept IPIs at the same time we are trying to send
803  * them.  The critical section prevents us from attempting to send additional
804  * IPIs reentrantly, but also prevents IPIQ processing so we have to call
805  * lwkt_process_ipiq() manually.  It's rather messy and expensive for this
806  * to occur but fortunately it does not happen too often.
807  */
808 int
809 apic_ipi(int dest_type, int vector, int delivery_mode)
810 {
811         u_long  icr_lo;
812
813         crit_enter();
814         if ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
815             unsigned int eflags = read_eflags();
816             cpu_enable_intr();
817             while ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
818                 lwkt_process_ipiq();
819             }
820             write_eflags(eflags);
821         }
822
823         icr_lo = (lapic.icr_lo & APIC_ICRLO_RESV_MASK) | dest_type | 
824                 delivery_mode | vector;
825         lapic.icr_lo = icr_lo;
826         crit_exit();
827         return 0;
828 }
829
830 void
831 single_apic_ipi(int cpu, int vector, int delivery_mode)
832 {
833         u_long  icr_lo;
834         u_long  icr_hi;
835
836         crit_enter();
837         if ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
838             unsigned int eflags = read_eflags();
839             cpu_enable_intr();
840             while ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
841                 lwkt_process_ipiq();
842             }
843             write_eflags(eflags);
844         }
845         icr_hi = lapic.icr_hi & ~APIC_ID_MASK;
846         icr_hi |= (CPU_TO_ID(cpu) << 24);
847         lapic.icr_hi = icr_hi;
848
849         /* build ICR_LOW */
850         icr_lo = (lapic.icr_lo & APIC_ICRLO_RESV_MASK)
851             | APIC_DEST_DESTFLD | delivery_mode | vector;
852
853         /* write APIC ICR */
854         lapic.icr_lo = icr_lo;
855         crit_exit();
856 }
857
858 #if 0   
859
860 /*
861  * Returns 0 if the apic is busy, 1 if we were able to queue the request.
862  *
863  * NOT WORKING YET!  The code as-is may end up not queueing an IPI at all
864  * to the target, and the scheduler does not 'poll' for IPI messages.
865  */
866 int
867 single_apic_ipi_passive(int cpu, int vector, int delivery_mode)
868 {
869         u_long  icr_lo;
870         u_long  icr_hi;
871
872         crit_enter();
873         if ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
874             crit_exit();
875             return(0);
876         }
877         icr_hi = lapic.icr_hi & ~APIC_ID_MASK;
878         icr_hi |= (CPU_TO_ID(cpu) << 24);
879         lapic.icr_hi = icr_hi;
880
881         /* build IRC_LOW */
882         icr_lo = (lapic.icr_lo & APIC_RESV2_MASK)
883             | APIC_DEST_DESTFLD | delivery_mode | vector;
884
885         /* write APIC ICR */
886         lapic.icr_lo = icr_lo;
887         crit_exit();
888         return(1);
889 }
890
891 #endif
892
893 /*
894  * Send APIC IPI 'vector' to 'target's via 'delivery_mode'.
895  *
896  * target is a bitmask of destination cpus.  Vector is any
897  * valid system INT vector.  Delivery mode may be either
898  * APIC_DELMODE_FIXED or APIC_DELMODE_LOWPRIO.
899  */
900 void
901 selected_apic_ipi(u_int target, int vector, int delivery_mode)
902 {
903         crit_enter();
904         while (target) {
905                 int n = bsfl(target);
906                 target &= ~(1 << n);
907                 single_apic_ipi(n, vector, delivery_mode);
908         }
909         crit_exit();
910 }
911
912 /*
913  * Timer code, in development...
914  *  - suggested by rgrimes@gndrsh.aac.dev.com
915  */
916
917 /*
918  * Load a 'downcount time' in uSeconds.
919  */
920 void
921 set_apic_timer(int us)
922 {
923         u_int count;
924
925         /*
926          * When we reach here, lapic timer's frequency
927          * must have been calculated as well as the
928          * divisor (lapic.dcr_timer is setup during the
929          * divisor calculation).
930          */
931         KKASSERT(lapic_cputimer_intr.freq != 0 &&
932                  lapic_timer_divisor_idx >= 0);
933
934         count = ((us * (int64_t)lapic_cputimer_intr.freq) + 999999) / 1000000;
935         lapic_timer_oneshot(count);
936 }
937
938
939 /*
940  * Read remaining time in timer.
941  */
942 int
943 read_apic_timer(void)
944 {
945 #if 0
946         /** XXX FIXME: we need to return the actual remaining time,
947          *         for now we just return the remaining count.
948          */
949 #else
950         return lapic.ccr_timer;
951 #endif
952 }
953
954
955 /*
956  * Spin-style delay, set delay time in uS, spin till it drains.
957  */
958 void
959 u_sleep(int count)
960 {
961         set_apic_timer(count);
962         while (read_apic_timer())
963                  /* spin */ ;
964 }