Skip to content
Snippets Groups Projects
main.c 4.01 KiB
Newer Older
rtm's avatar
rtm committed
#include "types.h"
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "defs.h"
#include "x86.h"
#include "traps.h"
#include "syscall.h"
rtm's avatar
rtm committed
#include "elf.h"
#include "param.h"
#include "spinlock.h"
rtm's avatar
rtm committed

rtm's avatar
rtm committed
extern char edata[], end[];
rtm's avatar
rtm committed
extern uchar _binary_userfs_start[], _binary_userfs_size[];
extern uchar _binary_init_start[], _binary_init_size[];
rtm's avatar
rtm committed

// CPU 0 starts running C code here.
rsc's avatar
rsc committed
// This is called main0 not main so that it can have
// a void return type.  Gcc can't handle functions named
// main that don't return int.  Really.
void
main0(void)
rtm's avatar
rtm committed
{
  int i;
rtm's avatar
rtm committed
  struct proc *p;
  lcr4(0); // xxx copy of cpu #

rtm's avatar
rtm committed
  // clear BSS
  memset(edata, 0, end - edata);

  // Make sure interrupts stay disabled on all processors
  // until each signals it is ready, by pretending to hold
  // an extra lock.
  // xxx maybe replace w/ acquire remembering if FL_IF
  for(i=0; i<NCPU; i++){
    cpus[i].nlock++;
    cpus[i].guard1 = 0xdeadbeef;
    cpus[i].guard2 = 0xdeadbeef;
  }
kaashoek's avatar
kaashoek committed
  mp_init(); // collect info about this machine

  lapic_init(mp_bcpu());

  cprintf("\n\ncpu%d: booting xv6\n\n", cpu());
rtm's avatar
rtm committed

kaashoek's avatar
kaashoek committed
  pic_init(); // initialize PIC
rtm's avatar
rtm committed
  kinit(); // physical memory allocator
rtm's avatar
rtm committed
  tvinit(); // trap vectors
  idtinit(); // this CPU's idt register

  // create a fake process per CPU
  // so each CPU always has a tss and a gdt
  for(p = &proc[0]; p < &proc[NCPU]; p++){
    p->state = IDLEPROC;
    p->kstack = cpus[p-proc].mpstack;
    p->pid = p - proc;
  }
rtm's avatar
rtm committed

  // fix process 0 so that copyproc() will work
rtm's avatar
rtm committed
  p = &proc[0];
rtm's avatar
rtm committed
  p->sz = 4 * PAGE;
rtm's avatar
rtm committed
  p->mem = kalloc(p->sz);
  memset(p->mem, 0, p->sz);
  p->kstack = kalloc(KSTACKSIZE);
  p->tf = (struct trapframe *) (p->kstack + KSTACKSIZE - sizeof(struct trapframe));
  memset(p->tf, 0, sizeof(struct trapframe));
  p->tf->es = p->tf->ds = p->tf->ss = (SEG_UDATA << 3) | 3;
  p->tf->cs = (SEG_UCODE << 3) | 3;
  p->tf->eflags = FL_IF;
rtm's avatar
rtm committed
  setupsegs(p);

  // initialize I/O devices, let them enable interrupts
kaashoek's avatar
kaashoek committed
  console_init();
  ide_init(); 

  mp_startthem();
rtm's avatar
rtm committed

  // turn on timer and enable interrupts on the local APIC
kaashoek's avatar
kaashoek committed
  lapic_timerinit();
  lapic_enableintr();
rtm's avatar
rtm committed

  // Enable interrupts on this processor.
  cprintf("cpu%d: nlock %d before -- and sti\n",
          cpu(), cpus[0].nlock);
  cpus[cpu()].nlock--;
rtm's avatar
rtm committed

rsc's avatar
 
rsc committed
  p = copyproc(&proc[0]);
rtm's avatar
rtm committed
  //load_icode(p, _binary_usertests_start, (uint) _binary_usertests_size);
  //load_icode(p, _binary_userfs_start, (uint) _binary_userfs_size);
  load_icode(p, _binary_init_start, (uint) _binary_init_size);
rtm's avatar
rtm committed
  p->state = RUNNABLE;
  cprintf("loaded init\n");
rtm's avatar
rtm committed

rtm's avatar
rtm committed
}
rtm's avatar
rtm committed

// Additional processors start here.
rsc's avatar
rsc committed
void
mpmain(void)
{
  lcr4(1); // xxx copy of cpu #

  cprintf("cpu%d: starting\n", cpu());
  idtinit(); // CPU's idt
rtm's avatar
rtm committed
  if(cpu() == 0)
    panic("mpmain on cpu 0");
  lapic_init(cpu());
  lapic_timerinit();
  lapic_enableintr();

  setupsegs(&proc[cpu()]);

  cpuid(0, 0, 0, 0, 0);	// memory barrier
  cpus[cpu()].booted = 1;

  // Enable interrupts on this processor.
  cprintf("cpu%d: initial nlock %d\n", cpu(), cpus[cpu()].nlock);
  cpus[cpu()].nlock--;
  sti();

  scheduler();
}

rtm's avatar
rtm committed
void
rtm's avatar
rtm committed
load_icode(struct proc *p, uchar *binary, uint size)
rtm's avatar
rtm committed
{
kaashoek's avatar
kaashoek committed
  int i;
  struct elfhdr *elf;
  struct proghdr *ph;
rtm's avatar
rtm committed

kaashoek's avatar
kaashoek committed
  // Check magic number on binary
  elf = (struct elfhdr*) binary;
  cprintf("elf %x magic %x\n", elf, elf->magic);
  if (elf->magic != ELF_MAGIC)
kaashoek's avatar
kaashoek committed
    panic("load_icode: not an ELF binary");
rtm's avatar
rtm committed

  p->tf->eip = elf->entry;
  p->tf->esp = p->sz;
rtm's avatar
rtm committed

kaashoek's avatar
kaashoek committed
  // Map and load segments as directed.
  ph = (struct proghdr*) (binary + elf->phoff);
  for (i = 0; i < elf->phnum; i++, ph++) {
    if (ph->type != ELF_PROG_LOAD)
kaashoek's avatar
kaashoek committed
      continue;
    cprintf("va %x memsz %d\n", ph->va, ph->memsz);
    if (ph->va + ph->memsz < ph->va)
kaashoek's avatar
kaashoek committed
      panic("load_icode: overflow in elf header segment");
    if (ph->va + ph->memsz >= p->sz)
kaashoek's avatar
kaashoek committed
      panic("load_icode: icode wants to be above UTOP");

    // Load/clear the segment
    memmove(p->mem + ph->va, binary + ph->offset, ph->filesz);
    memset(p->mem + ph->va + ph->filesz, 0, ph->memsz - ph->filesz);
kaashoek's avatar
kaashoek committed
  }
rtm's avatar
rtm committed
}