Skip to content
Snippets Groups Projects
lapic.c 5.08 KiB
Newer Older
rsc's avatar
rsc committed
// The local APIC manages internal (non-I/O) interrupts.
// See Chapter 8 & Appendix C of Intel processor manual volume 3.

kaashoek's avatar
kaashoek committed
#include "types.h"
rsc's avatar
 
rsc committed
#include "defs.h"
Frans Kaashoek's avatar
Frans Kaashoek committed
#include "memlayout.h"
kaashoek's avatar
kaashoek committed
#include "traps.h"
rsc's avatar
 
rsc committed
#include "mmu.h"
#include "x86.h"
rsc's avatar
 
rsc committed

// 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
rsc's avatar
rsc committed
  #define ENABLE     0x00000100   // Unit Enable
rsc's avatar
 
rsc committed
#define ESR     (0x0280/4)   // Error Status
#define ICRLO   (0x0300/4)   // Interrupt Command
rsc's avatar
rsc committed
  #define INIT       0x00000500   // INIT/RESET
  #define STARTUP    0x00000600   // Startup IPI
  #define DELIVS     0x00001000   // Delivery status
  #define ASSERT     0x00004000   // Assert interrupt (vs deassert)
  #define DEASSERT   0x00000000
rsc's avatar
rsc committed
  #define LEVEL      0x00008000   // Level triggered
  #define BCAST      0x00080000   // Send to all APICs, including self.
  #define BUSY       0x00001000
  #define FIXED      0x00000000
rsc's avatar
 
rsc committed
#define ICRHI   (0x0310/4)   // Interrupt Command [63:32]
#define TIMER   (0x0320/4)   // Local Vector Table 0 (TIMER)
rsc's avatar
rsc committed
  #define X1         0x0000000B   // divide counts by 1
  #define PERIODIC   0x00020000   // Periodic
rsc's avatar
 
rsc committed
#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)
rsc's avatar
rsc committed
  #define MASKED     0x00010000   // Interrupt masked
rsc's avatar
 
rsc committed
#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
kaashoek's avatar
kaashoek committed

static void
lapicw(int index, int value)
{
  lapic[index] = value;
  lapic[ID];  // wait for write to finish, by reading
}

rsc's avatar
rsc committed
//PAGEBREAK!
kaashoek's avatar
kaashoek committed
void
lapicinit(int c)
kaashoek's avatar
kaashoek committed
{
rsc's avatar
 
rsc committed
  if(!lapic) 
rsc's avatar
rsc committed
  // Enable local APIC; set spurious interrupt vector.
Russ Cox's avatar
Russ Cox committed
  lapicw(SVR, ENABLE | (T_IRQ0 + IRQ_SPURIOUS));
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
  // The timer repeatedly counts down at bus frequency
  // from lapic[TICR] and then issues an interrupt.  
rsc's avatar
 
rsc committed
  // If xv6 cared more about precise timekeeping,
  // TICR would be calibrated using an external time source.
  lapicw(TDCR, X1);
Russ Cox's avatar
Russ Cox committed
  lapicw(TIMER, PERIODIC | (T_IRQ0 + IRQ_TIMER));
  lapicw(TICR, 10000000); 
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
  // Disable logical interrupt lines.
  lapicw(LINT0, MASKED);
  lapicw(LINT1, MASKED);
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
  // Disable performance counter overflow interrupts
  // on machines that provide that interrupt entry.
  if(((lapic[VER]>>16) & 0xFF) >= 4)
    lapicw(PCINT, MASKED);
rsc's avatar
rsc committed

  // Map error interrupt to IRQ_ERROR.
Russ Cox's avatar
Russ Cox committed
  lapicw(ERROR, T_IRQ0 + IRQ_ERROR);
rsc's avatar
rsc committed

  // Clear error status register (requires back-to-back writes).
  lapicw(ESR, 0);
  lapicw(ESR, 0);
rsc's avatar
rsc committed

  // Ack any outstanding interrupts.
  lapicw(EOI, 0);
kaashoek's avatar
kaashoek committed

rsc's avatar
rsc committed
  // Send an Init Level De-Assert to synchronise arbitration ID's.
  lapicw(ICRHI, 0);
  lapicw(ICRLO, BCAST | INIT | LEVEL);
rsc's avatar
rsc committed
  while(lapic[ICRLO] & DELIVS)
kaashoek's avatar
kaashoek committed
    ;

rsc's avatar
rsc committed
  // Enable interrupts on the APIC (but not on the processor).
  lapicw(TPR, 0);
kaashoek's avatar
kaashoek committed
}

rsc's avatar
 
rsc committed
int
Russ Cox's avatar
Russ Cox committed
cpunum(void)
kaashoek's avatar
kaashoek committed
{
rsc's avatar
 
rsc committed
  // Cannot call cpu when interrupts are enabled:
  // result not guaranteed to last long enough to be used!
  // Would prefer to panic but even printing is chancy here:
kolya's avatar
kolya committed
  // almost everything, including cprintf and panic, calls cpu,
  // often indirectly through acquire and release.
  if(readeflags()&FL_IF){
rsc's avatar
 
rsc committed
    static int n;
rsc's avatar
rsc committed
    if(n++ == 0)
      cprintf("cpu called from %x with interrupts enabled\n",
        __builtin_return_address(0));
rsc's avatar
 
rsc committed
  }

rsc's avatar
 
rsc committed
  if(lapic)
    return lapic[ID]>>24;
  return 0;
kaashoek's avatar
kaashoek committed
}

rsc's avatar
 
rsc committed
// Acknowledge interrupt.
lapiceoi(void)
rsc's avatar
 
rsc committed
  if(lapic)
    lapicw(EOI, 0);
kaashoek's avatar
kaashoek committed
}

rsc's avatar
rsc committed
// Spin for a given number of microseconds.
// On real hardware would want to tune this dynamically.
rsc's avatar
 
rsc committed
void
rsc's avatar
rsc committed
microdelay(int us)
{
}

#define IO_RTC  0x70

Frans Kaashoek's avatar
Frans Kaashoek committed
// Start additional processor running entry code at addr.
rsc's avatar
rsc committed
// See Appendix B of MultiProcessor Specification.
kaashoek's avatar
kaashoek committed
void
lapicstartap(uchar apicid, uint addr)
kaashoek's avatar
kaashoek committed
{
rsc's avatar
 
rsc committed
  int i;
  ushort *wrv;
  
  // "The BSP must initialize CMOS shutdown code to 0AH
  // and the warm reset vector (DWORD based at 40:67) to point at
  // the AP startup code prior to the [universal startup algorithm]."
  outb(IO_RTC, 0xF);  // offset 0xF is shutdown code
  outb(IO_RTC+1, 0x0A);
Frans Kaashoek's avatar
Frans Kaashoek committed
  wrv = (ushort*)P2V((0x40<<4 | 0x67));  // Warm reset vector
  wrv[0] = 0;
  wrv[1] = addr >> 4;

  // "Universal startup algorithm."
  // Send INIT (level-triggered) interrupt to reset other CPU.
  lapicw(ICRHI, apicid<<24);
  lapicw(ICRLO, INIT | LEVEL | ASSERT);
  microdelay(200);
  lapicw(ICRLO, INIT | LEVEL);
rsc's avatar
rsc committed
  microdelay(100);    // should be 10ms, but too slow in Bochs!
rsc's avatar
rsc committed
  
Frans Kaashoek's avatar
Frans Kaashoek committed
  // Send startup IPI (twice!) to enter code.
  // Regular hardware is supposed to only accept a STARTUP
  // when it is in the halted state due to an INIT.  So the second
  // should be ignored, but it is part of the official Intel algorithm.
  // Bochs complains about the second one.  Too bad for Bochs.
rsc's avatar
 
rsc committed
  for(i = 0; i < 2; i++){
    lapicw(ICRHI, apicid<<24);
    lapicw(ICRLO, STARTUP | (addr>>12));
    microdelay(200);
kaashoek's avatar
kaashoek committed
  }
}