2007-08-28 00:53:31 +02:00
|
|
|
// The local APIC manages internal (non-I/O) interrupts.
|
|
|
|
// See Chapter 8 & Appendix C of Intel processor manual volume 3.
|
|
|
|
|
2006-07-12 19:19:24 +02:00
|
|
|
#include "types.h"
|
|
|
|
#include "traps.h"
|
2007-08-27 18:57:13 +02:00
|
|
|
|
|
|
|
// Local APIC registers, divided by 4 for use as uint[] indices.
|
|
|
|
#define ID (0x0020/4) // ID
|
|
|
|
#define VER (0x0030/4) // Version
|
|
|
|
#define TPR (0x0080/4) // Task Priority
|
|
|
|
#define EOI (0x00B0/4) // EOI
|
|
|
|
#define SVR (0x00F0/4) // Spurious Interrupt Vector
|
2007-08-28 00:53:31 +02:00
|
|
|
#define ENABLE 0x00000100 // Unit Enable
|
2007-08-27 18:57:13 +02:00
|
|
|
#define ESR (0x0280/4) // Error Status
|
|
|
|
#define ICRLO (0x0300/4) // Interrupt Command
|
2007-08-28 00:53:31 +02:00
|
|
|
#define INIT 0x00000500 // INIT/RESET
|
|
|
|
#define STARTUP 0x00000600 // Startup IPI
|
|
|
|
#define DELIVS 0x00001000 // Delivery status
|
|
|
|
#define ASSERT 0x00004000 // Assert interrupt (vs deassert)
|
|
|
|
#define LEVEL 0x00008000 // Level triggered
|
|
|
|
#define BCAST 0x00080000 // Send to all APICs, including self.
|
2007-08-27 18:57:13 +02:00
|
|
|
#define ICRHI (0x0310/4) // Interrupt Command [63:32]
|
|
|
|
#define TIMER (0x0320/4) // Local Vector Table 0 (TIMER)
|
2007-08-28 00:53:31 +02:00
|
|
|
#define X1 0x0000000B // divide counts by 1
|
|
|
|
#define PERIODIC 0x00020000 // Periodic
|
2007-08-27 18:57:13 +02:00
|
|
|
#define PCINT (0x0340/4) // Performance Counter LVT
|
|
|
|
#define LINT0 (0x0350/4) // Local Vector Table 1 (LINT0)
|
|
|
|
#define LINT1 (0x0360/4) // Local Vector Table 2 (LINT1)
|
|
|
|
#define ERROR (0x0370/4) // Local Vector Table 3 (ERROR)
|
2007-08-28 00:53:31 +02:00
|
|
|
#define MASKED 0x00010000 // Interrupt masked
|
2007-08-27 18:57:13 +02:00
|
|
|
#define TICR (0x0380/4) // Timer Initial Count
|
|
|
|
#define TCCR (0x0390/4) // Timer Current Count
|
|
|
|
#define TDCR (0x03E0/4) // Timer Divide Configuration
|
|
|
|
|
|
|
|
volatile uint *lapic; // Initialized in mp.c
|
2006-07-12 19:19:24 +02:00
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
//PAGEBREAK!
|
2006-07-12 19:19:24 +02:00
|
|
|
void
|
|
|
|
lapic_init(int c)
|
|
|
|
{
|
2007-08-27 18:57:13 +02:00
|
|
|
if(!lapic)
|
2006-09-07 03:37:58 +02:00
|
|
|
return;
|
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// Enable local APIC; set spurious interrupt vector.
|
2007-08-27 18:57:13 +02:00
|
|
|
lapic[SVR] = ENABLE | (IRQ_OFFSET+IRQ_SPURIOUS);
|
2006-07-12 19:19:24 +02:00
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// The timer repeatedly counts down at bus frequency
|
|
|
|
// from lapic[TICR] and then issues an interrupt.
|
|
|
|
// Lapic[TCCR] is the current counter value.
|
|
|
|
// If xv6 cared more about precise timekeeping, the
|
|
|
|
// values of TICR and TCCR would be calibrated using
|
|
|
|
// an external time source.
|
|
|
|
lapic[TDCR] = X1;
|
|
|
|
lapic[TICR] = 10000000;
|
|
|
|
lapic[TCCR] = 10000000;
|
|
|
|
lapic[TIMER] = PERIODIC | (IRQ_OFFSET + IRQ_TIMER);
|
2006-07-12 19:19:24 +02:00
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// Disable logical interrupt lines.
|
|
|
|
lapic[LINT0] = MASKED;
|
|
|
|
lapic[LINT1] = MASKED;
|
2006-07-12 19:19:24 +02:00
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// Disable performance counter overflow interrupts
|
|
|
|
// on machines that provide that interrupt entry.
|
|
|
|
if(((lapic[VER]>>16) & 0xFF) >= 4)
|
|
|
|
lapic[PCINT] = MASKED;
|
|
|
|
|
|
|
|
// Map error interrupt to IRQ_ERROR.
|
2007-08-27 18:57:13 +02:00
|
|
|
lapic[ERROR] = IRQ_OFFSET+IRQ_ERROR;
|
2007-08-28 00:53:31 +02:00
|
|
|
|
|
|
|
// Clear error status register (requires back-to-back writes).
|
2007-08-27 18:57:13 +02:00
|
|
|
lapic[ESR] = 0;
|
2007-08-28 00:53:31 +02:00
|
|
|
lapic[ESR] = 0;
|
|
|
|
|
|
|
|
// Ack any outstanding interrupts.
|
|
|
|
lapic[EOI] = 0;
|
2006-07-12 19:19:24 +02:00
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// Send an Init Level De-Assert to synchronise arbitration ID's.
|
2007-08-27 18:57:13 +02:00
|
|
|
lapic[ICRHI] = 0;
|
2007-08-28 00:53:31 +02:00
|
|
|
lapic[ICRLO] = BCAST | INIT | LEVEL;
|
|
|
|
while(lapic[ICRLO] & DELIVS)
|
2006-07-12 19:19:24 +02:00
|
|
|
;
|
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// Enable interrupts on the APIC (but not on the processor).
|
2007-08-27 18:57:13 +02:00
|
|
|
lapic[TPR] = 0;
|
2006-07-12 19:19:24 +02:00
|
|
|
}
|
|
|
|
|
2007-08-27 18:57:13 +02:00
|
|
|
int
|
|
|
|
cpu(void)
|
2006-07-12 19:19:24 +02:00
|
|
|
{
|
2007-08-27 18:57:13 +02:00
|
|
|
if(lapic)
|
|
|
|
return lapic[ID]>>24;
|
|
|
|
return 0;
|
2006-07-12 19:19:24 +02:00
|
|
|
}
|
|
|
|
|
2007-08-27 18:57:13 +02:00
|
|
|
// Acknowledge interrupt.
|
2006-08-04 20:12:31 +02:00
|
|
|
void
|
|
|
|
lapic_eoi(void)
|
|
|
|
{
|
2007-08-27 18:57:13 +02:00
|
|
|
if(lapic)
|
|
|
|
lapic[EOI] = 0;
|
2006-07-12 19:19:24 +02:00
|
|
|
}
|
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// Spin for a given number of microseconds.
|
|
|
|
// On real hardware would want to tune this dynamically.
|
|
|
|
static void
|
|
|
|
microdelay(int us)
|
|
|
|
{
|
|
|
|
volatile int j = 0;
|
|
|
|
|
|
|
|
while(us-- > 0)
|
|
|
|
for(j=0; j<10000; j++);
|
|
|
|
}
|
|
|
|
|
2007-08-27 18:57:13 +02:00
|
|
|
// Start additional processor running bootstrap code at addr.
|
2007-08-28 00:53:31 +02:00
|
|
|
// See Appendix B of MultiProcessor Specification.
|
2006-07-12 19:19:24 +02:00
|
|
|
void
|
2007-08-27 18:57:13 +02:00
|
|
|
lapic_startap(uchar apicid, uint addr)
|
2006-07-12 19:19:24 +02:00
|
|
|
{
|
2007-08-27 18:57:13 +02:00
|
|
|
int i;
|
2006-07-12 19:19:24 +02:00
|
|
|
volatile int j = 0;
|
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
// Send INIT interrupt to reset other CPU.
|
2007-08-27 18:57:13 +02:00
|
|
|
lapic[ICRHI] = apicid<<24;
|
2007-08-28 00:53:31 +02:00
|
|
|
lapic[ICRLO] = INIT | LEVEL;
|
|
|
|
microdelay(10);
|
|
|
|
|
|
|
|
// Send startup IPI (twice!) to enter bootstrap code.
|
2007-08-27 18:57:13 +02:00
|
|
|
for(i = 0; i < 2; i++){
|
|
|
|
lapic[ICRHI] = apicid<<24;
|
2007-08-28 00:53:31 +02:00
|
|
|
lapic[ICRLO] = STARTUP | (addr>>12);
|
2007-08-10 19:05:46 +02:00
|
|
|
for(j=0; j<10000; j++); // 200us
|
2006-07-12 19:19:24 +02:00
|
|
|
}
|
|
|
|
}
|