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);
|
2010-07-23 13:41:13 +02:00
|
|
|
static void mpmain(void);
|
2010-08-05 20:15:03 +02:00
|
|
|
void jkstack(void) __attribute__((noreturn));
|
|
|
|
void mainc(void);
|
2007-08-28 00:53:31 +02:00
|
|
|
|
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
|
|
|
{
|
2010-07-23 13:41:13 +02:00
|
|
|
mpinit(); // collect info about this machine
|
2009-03-08 23:07:13 +01:00
|
|
|
lapicinit(mpbcpu());
|
2010-08-06 03:16:55 +02:00
|
|
|
ksegment(); // set up segments
|
2009-05-31 02:28:45 +02:00
|
|
|
picinit(); // interrupt controller
|
|
|
|
ioapicinit(); // another interrupt controller
|
|
|
|
consoleinit(); // I/O devices & their interrupts
|
|
|
|
uartinit(); // serial port
|
2010-08-31 21:39:25 +02:00
|
|
|
kinit(); // initialize memory allocator
|
2010-08-06 03:16:55 +02:00
|
|
|
jkstack(); // call mainc() on a properly-allocated stack
|
2010-08-05 20:15:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
jkstack(void)
|
|
|
|
{
|
2010-08-31 18:54:47 +02:00
|
|
|
char *kstack = kalloc();
|
2010-08-05 20:15:03 +02:00
|
|
|
if (!kstack)
|
|
|
|
panic("jkstack\n");
|
|
|
|
char *top = kstack + PGSIZE;
|
|
|
|
asm volatile("movl %0,%%esp" : : "r" (top));
|
|
|
|
asm volatile("call mainc");
|
|
|
|
panic("jkstack");
|
2010-07-02 20:51:53 +02:00
|
|
|
}
|
2006-06-12 17:22:12 +02:00
|
|
|
|
2010-07-02 20:51:53 +02:00
|
|
|
void
|
|
|
|
mainc(void)
|
|
|
|
{
|
|
|
|
cprintf("\ncpu%d: starting xv6\n\n", cpu->id);
|
2010-08-30 12:38:58 +02:00
|
|
|
kvmalloc(); // initialize the kernel page table
|
2009-05-31 02:28:45 +02:00
|
|
|
pinit(); // process table
|
2007-08-22 08:01:32 +02:00
|
|
|
tvinit(); // trap vectors
|
2009-05-31 02:28:45 +02:00
|
|
|
binit(); // buffer cache
|
2007-08-22 08:01:32 +02:00
|
|
|
fileinit(); // file table
|
|
|
|
iinit(); // inode cache
|
2009-05-31 02:28:45 +02:00
|
|
|
ideinit(); // disk
|
2007-08-27 18:57:13 +02:00
|
|
|
if(!ismp)
|
2009-05-31 02:28:45 +02:00
|
|
|
timerinit(); // uniprocessor timer
|
2007-08-22 08:01:32 +02:00
|
|
|
userinit(); // first user process
|
2010-07-23 13:41:13 +02:00
|
|
|
bootothers(); // start other processors
|
2006-07-12 03:48:35 +02:00
|
|
|
|
2007-09-27 23:25:37 +02:00
|
|
|
// 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
|
|
|
|
2010-08-06 03:16:55 +02:00
|
|
|
// Common CPU setup code.
|
|
|
|
// Bootstrap CPU comes here from mainc().
|
|
|
|
// Other CPUs jump here from bootother.S.
|
2007-08-28 20:23:48 +02:00
|
|
|
static void
|
2006-07-16 17:50:13 +02:00
|
|
|
mpmain(void)
|
|
|
|
{
|
2010-07-02 20:51:53 +02:00
|
|
|
if(cpunum() != mpbcpu()) {
|
|
|
|
ksegment();
|
2009-08-31 08:02:08 +02:00
|
|
|
lapicinit(cpunum());
|
2010-07-02 20:51:53 +02:00
|
|
|
}
|
2010-08-30 16:13:49 +02:00
|
|
|
vmenable(); // turn on paging
|
2010-08-05 20:15:03 +02:00
|
|
|
cprintf("cpu%d: starting\n", cpu->id);
|
2010-08-06 03:16:55 +02:00
|
|
|
idtinit(); // load idt register
|
2009-08-31 08:02:08 +02:00
|
|
|
xchg(&cpu->booted, 1);
|
2010-08-06 03:16:55 +02:00
|
|
|
scheduler(); // start running processes
|
2006-07-16 17:50:13 +02:00
|
|
|
}
|
|
|
|
|
2007-08-28 06:40:58 +02:00
|
|
|
static void
|
2007-08-28 00:53:31 +02:00
|
|
|
bootothers(void)
|
|
|
|
{
|
|
|
|
extern uchar _binary_bootother_start[], _binary_bootother_size[];
|
|
|
|
uchar *code;
|
|
|
|
struct cpu *c;
|
2007-09-27 23:25:37 +02:00
|
|
|
char *stack;
|
2007-08-28 00:53:31 +02:00
|
|
|
|
2010-07-23 13:41:13 +02:00
|
|
|
// Write bootstrap code to unused memory at 0x7000. The linker has
|
|
|
|
// placed the start of bootother.S there.
|
|
|
|
code = (uchar *) 0x7000;
|
2007-08-28 00:53:31 +02:00
|
|
|
memmove(code, _binary_bootother_start, (uint)_binary_bootother_size);
|
2010-08-06 03:16:55 +02:00
|
|
|
|
2007-08-28 00:53:31 +02:00
|
|
|
for(c = cpus; c < cpus+ncpu; c++){
|
2009-08-31 08:02:08 +02:00
|
|
|
if(c == cpus+cpunum()) // We've started already.
|
2007-08-28 00:53:31 +02:00
|
|
|
continue;
|
|
|
|
|
2007-08-28 06:13:24 +02:00
|
|
|
// Fill in %esp, %eip and start code on cpu.
|
2010-08-31 18:54:47 +02:00
|
|
|
stack = kalloc();
|
2007-09-27 23:25:37 +02:00
|
|
|
*(void**)(code-4) = stack + KSTACKSIZE;
|
2007-08-28 00:53:31 +02:00
|
|
|
*(void**)(code-8) = mpmain;
|
2009-08-31 08:02:08 +02:00
|
|
|
lapicstartap(c->id, (uint)code);
|
2007-08-28 00:53:31 +02:00
|
|
|
|
2010-08-06 03:16:55 +02:00
|
|
|
// Wait for cpu to finish mpmain()
|
2007-08-28 00:53:31 +02:00
|
|
|
while(c->booted == 0)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|