xv6-cs450/main.c

82 lines
1.9 KiB
C
Raw Normal View History

2006-06-12 17:22:12 +02:00
#include "types.h"
2007-08-28 01:26:33 +02:00
#include "defs.h"
2006-06-12 17:22:12 +02:00
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "x86.h"
2007-08-28 06:13:24 +02:00
static void bootothers(void);
2007-09-27 21:32:43 +02:00
static void mpmain(void) __attribute__((noreturn));
2006-09-08 16:36:44 +02:00
// Bootstrap processor starts running C code here.
2007-08-28 01:32:16 +02:00
int
main(void)
2006-06-12 17:22:12 +02:00
{
mpinit(); // collect info about this machine
lapicinit(mpbcpu());
2007-08-28 01:26:33 +02:00
cprintf("\ncpu%d: starting xv6\n\n", cpu());
2006-06-12 17:22:12 +02:00
pinit(); // process table
binit(); // buffer cache
picinit(); // interrupt controller
ioapicinit(); // another interrupt controller
kinit(); // physical memory allocator
tvinit(); // trap vectors
fileinit(); // file table
iinit(); // inode cache
consoleinit(); // I/O devices & their interrupts
ideinit(); // disk
if(!ismp)
timerinit(); // uniprocessor timer
userinit(); // first user process
bootothers(); // start other processors
// Finish setting up this processor in mpmain.
2007-09-27 21:32:43 +02:00
mpmain();
2006-06-12 17:22:12 +02:00
}
2006-06-22 22:47:23 +02:00
// Bootstrap processor gets here after setting up the hardware.
// Additional processors start here.
2007-08-28 20:23:48 +02:00
static void
mpmain(void)
{
2007-09-27 21:32:43 +02:00
cprintf("cpu%d: mpmain\n", cpu());
2007-08-24 21:36:52 +02:00
idtinit();
if(cpu() != mpbcpu())
lapicinit(cpu());
setupsegs(0);
xchg(&cpus[cpu()].booted, 1);
cprintf("cpu%d: scheduling\n", cpu());
scheduler();
}
2007-08-28 06:40:58 +02:00
static void
bootothers(void)
{
extern uchar _binary_bootother_start[], _binary_bootother_size[];
uchar *code;
struct cpu *c;
char *stack;
// Write bootstrap code to unused memory at 0x7000.
code = (uchar*)0x7000;
memmove(code, _binary_bootother_start, (uint)_binary_bootother_size);
for(c = cpus; c < cpus+ncpu; c++){
if(c == cpus+cpu()) // We've started already.
continue;
2007-08-28 06:13:24 +02:00
// Fill in %esp, %eip and start code on cpu.
stack = kalloc(KSTACKSIZE);
*(void**)(code-4) = stack + KSTACKSIZE;
*(void**)(code-8) = mpmain;
lapicstartap(c->apicid, (uint)code);
// Wait for cpu to get through bootstrap.
while(c->booted == 0)
;
}
}