2006-06-12 15:22:12 +00:00
|
|
|
#include "types.h"
|
2007-08-27 23:26:33 +00:00
|
|
|
#include "defs.h"
|
2006-06-12 15:22:12 +00:00
|
|
|
#include "param.h"
|
|
|
|
#include "mmu.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "x86.h"
|
|
|
|
|
2007-08-28 04:13:24 +00:00
|
|
|
static void bootothers(void);
|
2007-09-27 19:32:43 +00:00
|
|
|
static void mpmain(void) __attribute__((noreturn));
|
2007-08-27 22:53:31 +00:00
|
|
|
|
2006-09-08 14:36:44 +00:00
|
|
|
// Bootstrap processor starts running C code here.
|
2007-08-27 23:32:16 +00:00
|
|
|
int
|
|
|
|
main(void)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2007-08-28 04:13:24 +00:00
|
|
|
extern char edata[], end[];
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2006-06-13 22:08:20 +00:00
|
|
|
// clear BSS
|
|
|
|
memset(edata, 0, end - edata);
|
|
|
|
|
2006-07-12 17:00:54 +00:00
|
|
|
mp_init(); // collect info about this machine
|
2007-09-27 21:25:37 +00:00
|
|
|
lapic_init(mp_bcpu());
|
2007-08-27 23:26:33 +00:00
|
|
|
cprintf("\ncpu%d: starting xv6\n\n", cpu());
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2007-08-22 06:01:32 +00:00
|
|
|
pinit(); // process table
|
|
|
|
binit(); // buffer cache
|
|
|
|
pic_init(); // interrupt controller
|
|
|
|
ioapic_init(); // another interrupt controller
|
|
|
|
kinit(); // physical memory allocator
|
|
|
|
tvinit(); // trap vectors
|
|
|
|
fileinit(); // file table
|
|
|
|
iinit(); // inode cache
|
|
|
|
console_init(); // I/O devices & their interrupts
|
|
|
|
ide_init(); // disk
|
2007-08-27 16:57:13 +00:00
|
|
|
if(!ismp)
|
2007-09-27 21:25:37 +00:00
|
|
|
timer_init(); // uniprocessor timer
|
2007-08-22 06:01:32 +00:00
|
|
|
userinit(); // first user process
|
2007-09-27 21:25:37 +00:00
|
|
|
bootothers(); // start other processors
|
2006-07-12 01:48:35 +00:00
|
|
|
|
2007-09-27 21:25:37 +00:00
|
|
|
// Finish setting up this processor in mpmain.
|
2007-09-27 19:32:43 +00:00
|
|
|
mpmain();
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|
2006-06-22 20:47:23 +00:00
|
|
|
|
2007-09-27 21:25:37 +00:00
|
|
|
// Bootstrap processor gets here after setting up the hardware.
|
2006-07-16 15:50:13 +00:00
|
|
|
// Additional processors start here.
|
2007-08-28 18:23:48 +00:00
|
|
|
static void
|
2006-07-16 15:50:13 +00:00
|
|
|
mpmain(void)
|
|
|
|
{
|
2007-09-27 19:32:43 +00:00
|
|
|
cprintf("cpu%d: mpmain\n", cpu());
|
2007-08-24 19:36:52 +00:00
|
|
|
idtinit();
|
2007-09-27 19:32:43 +00:00
|
|
|
if(cpu() != mp_bcpu())
|
|
|
|
lapic_init(cpu());
|
2006-08-15 22:18:20 +00:00
|
|
|
setupsegs(0);
|
2006-08-08 19:58:06 +00:00
|
|
|
cpus[cpu()].booted = 1;
|
2006-07-16 15:50:13 +00:00
|
|
|
|
|
|
|
scheduler();
|
|
|
|
}
|
|
|
|
|
2007-08-28 04:40:58 +00:00
|
|
|
static void
|
2007-08-27 22:53:31 +00:00
|
|
|
bootothers(void)
|
|
|
|
{
|
|
|
|
extern uchar _binary_bootother_start[], _binary_bootother_size[];
|
|
|
|
uchar *code;
|
|
|
|
struct cpu *c;
|
2007-09-27 21:25:37 +00:00
|
|
|
char *stack;
|
2007-08-27 22:53:31 +00:00
|
|
|
|
|
|
|
// 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 04:13:24 +00:00
|
|
|
// Fill in %esp, %eip and start code on cpu.
|
2007-09-27 21:25:37 +00:00
|
|
|
stack = kalloc(KSTACKSIZE);
|
|
|
|
*(void**)(code-4) = stack + KSTACKSIZE;
|
2007-08-27 22:53:31 +00:00
|
|
|
*(void**)(code-8) = mpmain;
|
|
|
|
lapic_startap(c->apicid, (uint)code);
|
|
|
|
|
|
|
|
// Wait for cpu to get through bootstrap.
|
|
|
|
while(c->booted == 0)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|