2 * Copyright (c) 1996, by Steve Passe
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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
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.
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
;
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.
101 temp
&= ~APIC_TPR_PRIO
; /* clear priority field */
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
;
113 * enable the local APIC
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
123 if ((XSPURIOUSINT_OFFSET
& 0x0F) != 0x0F)
124 panic("bad XSPURIOUSINT_OFFSET: 0x%08x", XSPURIOUSINT_OFFSET
);
125 temp
&= ~APIC_SVR_VECTOR
;
126 temp
|= XSPURIOUSINT_OFFSET
;
131 * Pump out a few EOIs to clean out interrupts that got through
132 * before we were able to set the TPR.
139 apic_dump("apic_initialize()");
144 * dump contents of local APIC registers
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
);
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 \
174 #define DEFAULT_ISA_FLAGS \
183 io_apic_set_id(int apic
, int id
)
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 */
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",
204 io_apic_get_id(int apic
)
206 return (io_apic_read(apic
, IOAPIC_ID
) & APIC_ID_MASK
) >> 24;
215 extern int apic_pin_trigger
; /* 'opaque' */
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 */
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
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 */
252 io_apic_write(apic
, select
, flags
| vector
);
253 io_apic_write(apic
, select
+ 1, target
);
258 * We only deal with vectored interrupts here. ? documentation is
259 * lacking, I'm guessing an interrupt type of 0 is the 'INT' type,
262 * This test also catches unconfigured pins.
264 if (apic_int_type(apic
, pin
) != 0)
268 * Leave the pin unprogrammed if it does not correspond to
271 irq
= apic_irq(apic
, pin
);
275 /* determine the bus type for this pin */
276 bus
= apic_src_bus_id(apic
, pin
);
279 bustype
= apic_bus_type(bus
);
281 if ((bustype
== ISA
) &&
282 (pin
< IOAPIC_ISA_INTS
) &&
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
;
294 * Program polarity and trigger mode according to
297 flags
= DEFAULT_FLAGS
;
298 level
= trigger(apic
, pin
, &flags
);
300 apic_pin_trigger
|= (1 << irq
);
301 polarity(apic
, pin
, &flags
, level
);
305 kprintf("IOAPIC #%d intpin %d -> irq %d\n",
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
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
);
331 io_apic_setup(int apic
)
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
);
346 if (apic_int_type(apic
, pin
) >= 0) {
347 kprintf("Warning: IOAPIC #%d pin %d does not exist,"
348 " cannot program!\n", apic
, pin
);
353 /* return GOOD status */
356 #undef DEFAULT_ISA_FLAGS
360 #define DEFAULT_EXTINT_FLAGS \
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)
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
);
392 #undef DEFAULT_EXTINT_FLAGS
396 * Set the trigger level for an IO APIC pin.
399 trigger(int apic
, int pin
, u_int32_t
* flags
)
404 static int intcontrol
= -1;
406 switch (apic_trigger(apic
, pin
)) {
412 *flags
&= ~IOART_TRGRLVL
; /* *flags |= IOART_TRGREDG */
416 *flags
|= IOART_TRGRLVL
;
424 if ((id
= apic_src_bus_id(apic
, pin
)) == -1)
427 switch (apic_bus_type(id
)) {
429 *flags
&= ~IOART_TRGRLVL
; /* *flags |= IOART_TRGREDG; */
433 eirq
= apic_src_bus_irq(apic
, pin
);
435 if (eirq
< 0 || eirq
> 15) {
436 kprintf("EISA IRQ %d?!?!\n", eirq
);
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.
456 *flags
|= IOART_TRGRLVL
;
458 *flags
&= ~IOART_TRGRLVL
;
463 *flags
|= IOART_TRGRLVL
;
472 panic("bad APIC IO INT flags");
477 * Set the polarity value for an IO APIC pin.
480 polarity(int apic
, int pin
, u_int32_t
* flags
, int level
)
484 switch (apic_polarity(apic
, pin
)) {
490 *flags
&= ~IOART_INTALO
; /* *flags |= IOART_INTAHI */
494 *flags
|= IOART_INTALO
;
502 if ((id
= apic_src_bus_id(apic
, pin
)) == -1)
505 switch (apic_bus_type(id
)) {
507 *flags
&= ~IOART_INTALO
; /* *flags |= IOART_INTAHI */
511 /* polarity converter always gives active high */
512 *flags
&= ~IOART_INTALO
;
516 *flags
|= IOART_INTALO
;
525 panic("bad APIC IO INT flags");
530 * Print contents of apic_imen.
532 extern u_int apic_imen
; /* keep apic_imen 'opaque' */
538 kprintf("SMP: enabled INTs: ");
539 for (x
= 0; x
< 24; ++x
)
540 if ((apic_imen
& (1 << x
)) == 0)
542 kprintf("apic_imen: 0x%08x\n", apic_imen
);
547 * Inter Processor Interrupt functions.
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
)
572 if ((lapic
.icr_lo
& APIC_DELSTAT_MASK
) != 0) {
573 unsigned int eflags
= read_eflags();
575 while ((lapic
.icr_lo
& APIC_DELSTAT_MASK
) != 0) {
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
;
589 single_apic_ipi(int cpu
, int vector
, int delivery_mode
)
595 if ((lapic
.icr_lo
& APIC_DELSTAT_MASK
) != 0) {
596 unsigned int eflags
= read_eflags();
598 while ((lapic
.icr_lo
& APIC_DELSTAT_MASK
) != 0) {
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
;
608 icr_lo
= (lapic
.icr_lo
& APIC_ICRLO_RESV_MASK
)
609 | APIC_DEST_DESTFLD
| delivery_mode
| vector
;
612 lapic
.icr_lo
= icr_lo
;
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
)
631 if ((lapic
.icr_lo
& APIC_DELSTAT_MASK
) != 0) {
635 icr_hi
= lapic
.icr_hi
& ~APIC_ID_MASK
;
636 icr_hi
|= (CPU_TO_ID(cpu
) << 24);
637 lapic
.icr_hi
= icr_hi
;
640 icr_lo
= (lapic
.icr_lo
& APIC_RESV2_MASK
)
641 | APIC_DEST_DESTFLD
| delivery_mode
| vector
;
644 lapic
.icr_lo
= icr_lo
;
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.
659 selected_apic_ipi(u_int target
, int vector
, int delivery_mode
)
663 int n
= bsfl(target
);
665 single_apic_ipi(n
, vector
, delivery_mode
);
671 * Timer code, in development...
672 * - suggested by rgrimes@gndrsh.aac.dev.com
675 /** XXX FIXME: temp hack till we can determin bus clock */
677 #define BUS_CLOCK 66000000
678 #define bus_clock() 66000000
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)
694 /** XXX FIXME: make this really do something */
695 panic("APIC timer in use when attempting to aquire");
701 * Return the APIC timer.
704 release_apic_timer(void)
709 /** XXX FIXME: make this really do something */
710 panic("APIC timer was already released");
717 * Load a 'downcount time' in uSeconds.
720 set_apic_timer(int value
)
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
;
742 lapic
.icr_timer
= value
* ticks_per_microsec
;
747 * Read remaining time in timer.
750 read_apic_timer(void)
753 /** XXX FIXME: we need to return the actual remaining time,
754 * for now we just return the remaining count.
757 return lapic
.ccr_timer
;
763 * Spin-style delay, set delay time in uS, spin till it drains.
768 set_apic_timer(count
);
769 while (read_apic_timer())