we do not want to shift by the block size, which is much larger than
[dragonfly.git] / sys / platform / pc32 / apic / mpapic.c
blob31c6bf0d4ca30d864c1e70732c8c8e33837f3da0
1 /*
2 * Copyright (c) 1996, by Steve Passe
3 * All rights reserved.
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.
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.
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.21 2007/04/30 16:45:55 dillon Exp $
29 #include <sys/param.h>
30 #include <sys/systm.h>
31 #include <machine/globaldata.h>
32 #include <machine/smp.h>
33 #include <machine_base/apic/mpapic.h>
34 #include <machine/segments.h>
35 #include <sys/thread2.h>
37 #include <machine_base/isa/intr_machdep.h> /* Xspuriousint() */
39 /* EISA Edge/Level trigger control registers */
40 #define ELCR0 0x4d0 /* eisa irq 0-7 */
41 #define ELCR1 0x4d1 /* eisa irq 8-15 */
44 * pointers to pmapped apic hardware.
47 volatile ioapic_t **ioapic;
50 * Enable APIC, configure interrupts.
52 void
53 apic_initialize(void)
55 u_int temp;
58 * setup LVT1 as ExtINT on the BSP. This is theoretically an
59 * aggregate interrupt input from the 8259. The INTA cycle
60 * will be routed to the external controller (the 8259) which
61 * is expected to supply the vector.
63 * Must be setup edge triggered, active high.
65 * Disable LVT1 on the APs. It doesn't matter what delivery
66 * mode we use because we leave it masked.
68 temp = lapic.lvt_lint0;
69 temp &= ~(APIC_LVT_MASKED | APIC_LVT_TRIG_MASK |
70 APIC_LVT_POLARITY_MASK | APIC_LVT_DM_MASK);
71 if (mycpu->gd_cpuid == 0)
72 temp |= APIC_LVT_DM_EXTINT;
73 else
74 temp |= APIC_LVT_DM_FIXED | APIC_LVT_MASKED;
75 lapic.lvt_lint0 = temp;
78 * setup LVT2 as NMI, masked till later. Edge trigger, active high.
80 temp = lapic.lvt_lint1;
81 temp &= ~(APIC_LVT_MASKED | APIC_LVT_TRIG_MASK |
82 APIC_LVT_POLARITY_MASK | APIC_LVT_DM_MASK);
83 temp |= APIC_LVT_MASKED | APIC_LVT_DM_NMI;
84 lapic.lvt_lint1 = temp;
87 * Mask the apic error interrupt, apic performance counter
88 * interrupt, and the apic timer interrupt.
90 lapic.lvt_error = lapic.lvt_error | APIC_LVT_MASKED;
91 lapic.lvt_pcint = lapic.lvt_pcint | APIC_LVT_MASKED;
92 lapic.lvt_timer = lapic.lvt_timer | APIC_LVT_MASKED;
95 * Set the Task Priority Register as needed. At the moment allow
96 * interrupts on all cpus (the APs will remain CLId until they are
97 * ready to deal). We could disable all but IPIs by setting
98 * temp |= TPR_IPI_ONLY for cpu != 0.
100 temp = lapic.tpr;
101 temp &= ~APIC_TPR_PRIO; /* clear priority field */
102 #ifndef APIC_IO
104 * If we are NOT running the IO APICs, the LAPIC will only be used
105 * for IPIs. Set the TPR to prevent any unintentional interrupts.
107 temp |= TPR_IPI_ONLY;
108 #endif
110 lapic.tpr = temp;
113 * enable the local APIC
115 temp = lapic.svr;
116 temp |= APIC_SVR_ENABLE; /* enable the APIC */
117 temp &= ~APIC_SVR_FOCUS_DISABLE; /* enable lopri focus processor */
120 * Set the spurious interrupt vector. The low 4 bits of the vector
121 * must be 1111.
123 if ((XSPURIOUSINT_OFFSET & 0x0F) != 0x0F)
124 panic("bad XSPURIOUSINT_OFFSET: 0x%08x", XSPURIOUSINT_OFFSET);
125 temp &= ~APIC_SVR_VECTOR;
126 temp |= XSPURIOUSINT_OFFSET;
128 lapic.svr = temp;
131 * Pump out a few EOIs to clean out interrupts that got through
132 * before we were able to set the TPR.
134 lapic.eoi = 0;
135 lapic.eoi = 0;
136 lapic.eoi = 0;
138 if (bootverbose)
139 apic_dump("apic_initialize()");
144 * dump contents of local APIC registers
146 void
147 apic_dump(char* str)
149 kprintf("SMP: CPU%d %s:\n", mycpu->gd_cpuid, str);
150 kprintf(" lint0: 0x%08x lint1: 0x%08x TPR: 0x%08x SVR: 0x%08x\n",
151 lapic.lvt_lint0, lapic.lvt_lint1, lapic.tpr, lapic.svr);
155 #if defined(APIC_IO)
158 * IO APIC code,
161 #define IOAPIC_ISA_INTS 16
162 #define REDIRCNT_IOAPIC(A) \
163 ((int)((io_apic_versions[(A)] & IOART_VER_MAXREDIR) >> MAXREDIRSHIFT) + 1)
165 static int trigger (int apic, int pin, u_int32_t * flags);
166 static void polarity (int apic, int pin, u_int32_t * flags, int level);
168 #define DEFAULT_FLAGS \
169 ((u_int32_t) \
170 (IOART_INTMSET | \
171 IOART_DESTPHY | \
172 IOART_DELLOPRI))
174 #define DEFAULT_ISA_FLAGS \
175 ((u_int32_t) \
176 (IOART_INTMSET | \
177 IOART_TRGREDG | \
178 IOART_INTAHI | \
179 IOART_DESTPHY | \
180 IOART_DELLOPRI))
182 void
183 io_apic_set_id(int apic, int id)
185 u_int32_t ux;
187 ux = io_apic_read(apic, IOAPIC_ID); /* get current contents */
188 if (((ux & APIC_ID_MASK) >> 24) != id) {
189 kprintf("Changing APIC ID for IO APIC #%d"
190 " from %d to %d on chip\n",
191 apic, ((ux & APIC_ID_MASK) >> 24), id);
192 ux &= ~APIC_ID_MASK; /* clear the ID field */
193 ux |= (id << 24);
194 io_apic_write(apic, IOAPIC_ID, ux); /* write new value */
195 ux = io_apic_read(apic, IOAPIC_ID); /* re-read && test */
196 if (((ux & APIC_ID_MASK) >> 24) != id)
197 panic("can't control IO APIC #%d ID, reg: 0x%08x",
198 apic, ux);
204 io_apic_get_id(int apic)
206 return (io_apic_read(apic, IOAPIC_ID) & APIC_ID_MASK) >> 24;
212 * Setup the IO APIC.
215 extern int apic_pin_trigger; /* 'opaque' */
217 void
218 io_apic_setup_intpin(int apic, int pin)
220 int bus, bustype, irq;
221 u_char select; /* the select register is 8 bits */
222 u_int32_t flags; /* the window register is 32 bits */
223 u_int32_t target; /* the window register is 32 bits */
224 u_int32_t vector; /* the window register is 32 bits */
225 int level;
227 select = pin * 2 + IOAPIC_REDTBL0; /* register */
230 * Always clear an IO APIC pin before [re]programming it. This is
231 * particularly important if the pin is set up for a level interrupt
232 * as the IOART_REM_IRR bit might be set. When we reprogram the
233 * vector any EOI from pending ints on this pin could be lost and
234 * IRR might never get reset.
236 * To fix this problem, clear the vector and make sure it is
237 * programmed as an edge interrupt. This should theoretically
238 * clear IRR so we can later, safely program it as a level
239 * interrupt.
241 imen_lock();
243 flags = io_apic_read(apic, select) & IOART_RESV;
244 flags |= IOART_INTMSET | IOART_TRGREDG | IOART_INTAHI;
245 flags |= IOART_DESTPHY | IOART_DELFIXED;
247 target = io_apic_read(apic, select + 1) & IOART_HI_DEST_RESV;
248 target |= 0; /* fixed mode cpu mask of 0 - don't deliver anywhere */
250 vector = 0;
252 io_apic_write(apic, select, flags | vector);
253 io_apic_write(apic, select + 1, target);
255 imen_unlock();
258 * We only deal with vectored interrupts here. ? documentation is
259 * lacking, I'm guessing an interrupt type of 0 is the 'INT' type,
260 * vs ExTINT, etc.
262 * This test also catches unconfigured pins.
264 if (apic_int_type(apic, pin) != 0)
265 return;
268 * Leave the pin unprogrammed if it does not correspond to
269 * an IRQ.
271 irq = apic_irq(apic, pin);
272 if (irq < 0)
273 return;
275 /* determine the bus type for this pin */
276 bus = apic_src_bus_id(apic, pin);
277 if (bus < 0)
278 return;
279 bustype = apic_bus_type(bus);
281 if ((bustype == ISA) &&
282 (pin < IOAPIC_ISA_INTS) &&
283 (irq == pin) &&
284 (apic_polarity(apic, pin) == 0x1) &&
285 (apic_trigger(apic, pin) == 0x3)) {
287 * A broken BIOS might describe some ISA
288 * interrupts as active-high level-triggered.
289 * Use default ISA flags for those interrupts.
291 flags = DEFAULT_ISA_FLAGS;
292 } else {
294 * Program polarity and trigger mode according to
295 * interrupt entry.
297 flags = DEFAULT_FLAGS;
298 level = trigger(apic, pin, &flags);
299 if (level == 1)
300 apic_pin_trigger |= (1 << irq);
301 polarity(apic, pin, &flags, level);
304 if (bootverbose) {
305 kprintf("IOAPIC #%d intpin %d -> irq %d\n",
306 apic, pin, irq);
310 * Program the appropriate registers. This routing may be
311 * overridden when an interrupt handler for a device is
312 * actually added (see register_int(), which calls through
313 * the MACHINTR ABI to set up an interrupt handler/vector).
315 * The order in which we must program the two registers for
316 * safety is unclear! XXX
318 imen_lock();
320 vector = IDT_OFFSET + irq; /* IDT vec */
321 target = io_apic_read(apic, select + 1) & IOART_HI_DEST_RESV;
322 target |= IOART_HI_DEST_BROADCAST;
323 flags |= io_apic_read(apic, select) & IOART_RESV;
324 io_apic_write(apic, select, flags | vector);
325 io_apic_write(apic, select + 1, target);
327 imen_unlock();
331 io_apic_setup(int apic)
333 int maxpin;
334 int pin;
336 if (apic == 0)
337 apic_pin_trigger = 0; /* default to edge-triggered */
339 maxpin = REDIRCNT_IOAPIC(apic); /* pins in APIC */
340 kprintf("Programming %d pins in IOAPIC #%d\n", maxpin, apic);
342 for (pin = 0; pin < maxpin; ++pin) {
343 io_apic_setup_intpin(apic, pin);
345 while (pin < 32) {
346 if (apic_int_type(apic, pin) >= 0) {
347 kprintf("Warning: IOAPIC #%d pin %d does not exist,"
348 " cannot program!\n", apic, pin);
350 ++pin;
353 /* return GOOD status */
354 return 0;
356 #undef DEFAULT_ISA_FLAGS
357 #undef DEFAULT_FLAGS
360 #define DEFAULT_EXTINT_FLAGS \
361 ((u_int32_t) \
362 (IOART_INTMSET | \
363 IOART_TRGREDG | \
364 IOART_INTAHI | \
365 IOART_DESTPHY | \
366 IOART_DELLOPRI))
369 * Setup the source of External INTerrupts.
372 ext_int_setup(int apic, int intr)
374 u_char select; /* the select register is 8 bits */
375 u_int32_t flags; /* the window register is 32 bits */
376 u_int32_t target; /* the window register is 32 bits */
377 u_int32_t vector; /* the window register is 32 bits */
379 if (apic_int_type(apic, intr) != 3)
380 return -1;
382 target = IOART_HI_DEST_BROADCAST;
383 select = IOAPIC_REDTBL0 + (2 * intr);
384 vector = IDT_OFFSET + intr;
385 flags = DEFAULT_EXTINT_FLAGS;
387 io_apic_write(apic, select, flags | vector);
388 io_apic_write(apic, select + 1, target);
390 return 0;
392 #undef DEFAULT_EXTINT_FLAGS
396 * Set the trigger level for an IO APIC pin.
398 static int
399 trigger(int apic, int pin, u_int32_t * flags)
401 int id;
402 int eirq;
403 int level;
404 static int intcontrol = -1;
406 switch (apic_trigger(apic, pin)) {
408 case 0x00:
409 break;
411 case 0x01:
412 *flags &= ~IOART_TRGRLVL; /* *flags |= IOART_TRGREDG */
413 return 0;
415 case 0x03:
416 *flags |= IOART_TRGRLVL;
417 return 1;
419 case -1:
420 default:
421 goto bad;
424 if ((id = apic_src_bus_id(apic, pin)) == -1)
425 goto bad;
427 switch (apic_bus_type(id)) {
428 case ISA:
429 *flags &= ~IOART_TRGRLVL; /* *flags |= IOART_TRGREDG; */
430 return 0;
432 case EISA:
433 eirq = apic_src_bus_irq(apic, pin);
435 if (eirq < 0 || eirq > 15) {
436 kprintf("EISA IRQ %d?!?!\n", eirq);
437 goto bad;
440 if (intcontrol == -1) {
441 intcontrol = inb(ELCR1) << 8;
442 intcontrol |= inb(ELCR0);
443 kprintf("EISA INTCONTROL = %08x\n", intcontrol);
446 /* Use ELCR settings to determine level or edge mode */
447 level = (intcontrol >> eirq) & 1;
450 * Note that on older Neptune chipset based systems, any
451 * pci interrupts often show up here and in the ELCR as well
452 * as level sensitive interrupts attributed to the EISA bus.
455 if (level)
456 *flags |= IOART_TRGRLVL;
457 else
458 *flags &= ~IOART_TRGRLVL;
460 return level;
462 case PCI:
463 *flags |= IOART_TRGRLVL;
464 return 1;
466 case -1:
467 default:
468 goto bad;
471 bad:
472 panic("bad APIC IO INT flags");
477 * Set the polarity value for an IO APIC pin.
479 static void
480 polarity(int apic, int pin, u_int32_t * flags, int level)
482 int id;
484 switch (apic_polarity(apic, pin)) {
486 case 0x00:
487 break;
489 case 0x01:
490 *flags &= ~IOART_INTALO; /* *flags |= IOART_INTAHI */
491 return;
493 case 0x03:
494 *flags |= IOART_INTALO;
495 return;
497 case -1:
498 default:
499 goto bad;
502 if ((id = apic_src_bus_id(apic, pin)) == -1)
503 goto bad;
505 switch (apic_bus_type(id)) {
506 case ISA:
507 *flags &= ~IOART_INTALO; /* *flags |= IOART_INTAHI */
508 return;
510 case EISA:
511 /* polarity converter always gives active high */
512 *flags &= ~IOART_INTALO;
513 return;
515 case PCI:
516 *flags |= IOART_INTALO;
517 return;
519 case -1:
520 default:
521 goto bad;
524 bad:
525 panic("bad APIC IO INT flags");
530 * Print contents of apic_imen.
532 extern u_int apic_imen; /* keep apic_imen 'opaque' */
533 void
534 imen_dump(void)
536 int x;
538 kprintf("SMP: enabled INTs: ");
539 for (x = 0; x < 24; ++x)
540 if ((apic_imen & (1 << x)) == 0)
541 kprintf("%d, ", x);
542 kprintf("apic_imen: 0x%08x\n", apic_imen);
547 * Inter Processor Interrupt functions.
550 #endif /* APIC_IO */
553 * Send APIC IPI 'vector' to 'destType' via 'deliveryMode'.
555 * destType is 1 of: APIC_DEST_SELF, APIC_DEST_ALLISELF, APIC_DEST_ALLESELF
556 * vector is any valid SYSTEM INT vector
557 * delivery_mode is 1 of: APIC_DELMODE_FIXED, APIC_DELMODE_LOWPRIO
559 * A backlog of requests can create a deadlock between cpus. To avoid this
560 * we have to be able to accept IPIs at the same time we are trying to send
561 * them. The critical section prevents us from attempting to send additional
562 * IPIs reentrantly, but also prevents IPIQ processing so we have to call
563 * lwkt_process_ipiq() manually. It's rather messy and expensive for this
564 * to occur but fortunately it does not happen too often.
567 apic_ipi(int dest_type, int vector, int delivery_mode)
569 u_long icr_lo;
571 crit_enter();
572 if ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
573 unsigned int eflags = read_eflags();
574 cpu_enable_intr();
575 while ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
576 lwkt_process_ipiq();
578 write_eflags(eflags);
581 icr_lo = (lapic.icr_lo & APIC_ICRLO_RESV_MASK) | dest_type |
582 delivery_mode | vector;
583 lapic.icr_lo = icr_lo;
584 crit_exit();
585 return 0;
588 void
589 single_apic_ipi(int cpu, int vector, int delivery_mode)
591 u_long icr_lo;
592 u_long icr_hi;
594 crit_enter();
595 if ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
596 unsigned int eflags = read_eflags();
597 cpu_enable_intr();
598 while ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
599 lwkt_process_ipiq();
601 write_eflags(eflags);
603 icr_hi = lapic.icr_hi & ~APIC_ID_MASK;
604 icr_hi |= (CPU_TO_ID(cpu) << 24);
605 lapic.icr_hi = icr_hi;
607 /* build IRC_LOW */
608 icr_lo = (lapic.icr_lo & APIC_ICRLO_RESV_MASK)
609 | APIC_DEST_DESTFLD | delivery_mode | vector;
611 /* write APIC ICR */
612 lapic.icr_lo = icr_lo;
613 crit_exit();
616 #if 0
619 * Returns 0 if the apic is busy, 1 if we were able to queue the request.
621 * NOT WORKING YET! The code as-is may end up not queueing an IPI at all
622 * to the target, and the scheduler does not 'poll' for IPI messages.
625 single_apic_ipi_passive(int cpu, int vector, int delivery_mode)
627 u_long icr_lo;
628 u_long icr_hi;
630 crit_enter();
631 if ((lapic.icr_lo & APIC_DELSTAT_MASK) != 0) {
632 crit_exit();
633 return(0);
635 icr_hi = lapic.icr_hi & ~APIC_ID_MASK;
636 icr_hi |= (CPU_TO_ID(cpu) << 24);
637 lapic.icr_hi = icr_hi;
639 /* build IRC_LOW */
640 icr_lo = (lapic.icr_lo & APIC_RESV2_MASK)
641 | APIC_DEST_DESTFLD | delivery_mode | vector;
643 /* write APIC ICR */
644 lapic.icr_lo = icr_lo;
645 crit_exit();
646 return(1);
649 #endif
652 * Send APIC IPI 'vector' to 'target's via 'delivery_mode'.
654 * target is a bitmask of destination cpus. Vector is any
655 * valid system INT vector. Delivery mode may be either
656 * APIC_DELMODE_FIXED or APIC_DELMODE_LOWPRIO.
658 void
659 selected_apic_ipi(u_int target, int vector, int delivery_mode)
661 crit_enter();
662 while (target) {
663 int n = bsfl(target);
664 target &= ~(1 << n);
665 single_apic_ipi(n, vector, delivery_mode);
667 crit_exit();
671 * Timer code, in development...
672 * - suggested by rgrimes@gndrsh.aac.dev.com
675 /** XXX FIXME: temp hack till we can determin bus clock */
676 #ifndef BUS_CLOCK
677 #define BUS_CLOCK 66000000
678 #define bus_clock() 66000000
679 #endif
681 #if defined(READY)
682 int acquire_apic_timer (void);
683 int release_apic_timer (void);
686 * Acquire the APIC timer for exclusive use.
689 acquire_apic_timer(void)
691 #if 1
692 return 0;
693 #else
694 /** XXX FIXME: make this really do something */
695 panic("APIC timer in use when attempting to aquire");
696 #endif
701 * Return the APIC timer.
704 release_apic_timer(void)
706 #if 1
707 return 0;
708 #else
709 /** XXX FIXME: make this really do something */
710 panic("APIC timer was already released");
711 #endif
713 #endif /* READY */
717 * Load a 'downcount time' in uSeconds.
719 void
720 set_apic_timer(int value)
722 u_long lvtt;
723 long ticks_per_microsec;
726 * Calculate divisor and count from value:
728 * timeBase == CPU bus clock divisor == [1,2,4,8,16,32,64,128]
729 * value == time in uS
731 lapic.dcr_timer = APIC_TDCR_1;
732 ticks_per_microsec = bus_clock() / 1000000;
734 /* configure timer as one-shot */
735 lvtt = lapic.lvt_timer;
736 lvtt &= ~(APIC_LVTT_VECTOR | APIC_LVTT_DS);
737 lvtt &= ~(APIC_LVTT_PERIODIC);
738 lvtt |= APIC_LVTT_MASKED; /* no INT, one-shot */
739 lapic.lvt_timer = lvtt;
741 /* */
742 lapic.icr_timer = value * ticks_per_microsec;
747 * Read remaining time in timer.
750 read_apic_timer(void)
752 #if 0
753 /** XXX FIXME: we need to return the actual remaining time,
754 * for now we just return the remaining count.
756 #else
757 return lapic.ccr_timer;
758 #endif
763 * Spin-style delay, set delay time in uS, spin till it drains.
765 void
766 u_sleep(int count)
768 set_apic_timer(count);
769 while (read_apic_timer())
770 /* spin */ ;