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"
|
2011-07-29 11:31:27 +00:00
|
|
|
#include "memlayout.h"
|
2006-06-12 15:22:12 +00:00
|
|
|
#include "mmu.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "x86.h"
|
|
|
|
|
2011-08-16 00:11:13 +00:00
|
|
|
static void startothers(void);
|
2011-08-10 01:47:40 +00:00
|
|
|
static void mpmain(void) __attribute__((noreturn));
|
2011-08-11 16:25:10 +00:00
|
|
|
extern pde_t *kpgdir;
|
2011-09-13 17:14:52 +00:00
|
|
|
extern char end[]; // first address after kernel loaded from ELF file
|
2011-07-29 11:31:27 +00:00
|
|
|
|
2006-09-08 14:36:44 +00:00
|
|
|
// Bootstrap processor starts running C code here.
|
2010-09-13 19:34:44 +00:00
|
|
|
// Allocate a real stack and switch to it, first
|
|
|
|
// doing some setup required for memory allocator to work.
|
2007-08-27 23:32:16 +00:00
|
|
|
int
|
|
|
|
main(void)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2011-09-13 17:14:52 +00:00
|
|
|
kinit1(end, P2V(4*1024*1024)); // phys page allocator
|
2011-08-10 01:37:35 +00:00
|
|
|
kvmalloc(); // kernel page table
|
2010-07-23 11:41:13 +00:00
|
|
|
mpinit(); // collect info about this machine
|
2009-03-08 22:07:13 +00:00
|
|
|
lapicinit(mpbcpu());
|
2010-09-13 19:34:44 +00:00
|
|
|
seginit(); // set up segments
|
2010-07-02 18:51:53 +00:00
|
|
|
cprintf("\ncpu%d: starting xv6\n\n", cpu->id);
|
2010-09-13 19:34:44 +00:00
|
|
|
picinit(); // interrupt controller
|
|
|
|
ioapicinit(); // another interrupt controller
|
|
|
|
consoleinit(); // I/O devices & their interrupts
|
|
|
|
uartinit(); // serial port
|
2009-05-31 00:28:45 +00:00
|
|
|
pinit(); // process table
|
2007-08-22 06:01:32 +00:00
|
|
|
tvinit(); // trap vectors
|
2009-05-31 00:28:45 +00:00
|
|
|
binit(); // buffer cache
|
2007-08-22 06:01:32 +00:00
|
|
|
fileinit(); // file table
|
|
|
|
iinit(); // inode cache
|
2009-05-31 00:28:45 +00:00
|
|
|
ideinit(); // disk
|
2007-08-27 16:57:13 +00:00
|
|
|
if(!ismp)
|
2009-05-31 00:28:45 +00:00
|
|
|
timerinit(); // uniprocessor timer
|
2011-09-13 17:14:52 +00:00
|
|
|
startothers(); // start other processors
|
|
|
|
kinit2(P2V(4*1024*1024), P2V(PHYSTOP)); // must come after startothers()
|
|
|
|
userinit(); // first user process
|
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
|
|
|
|
2011-08-15 16:02:59 +00:00
|
|
|
// Other CPUs jump here from entryother.S.
|
2007-08-28 18:23:48 +00:00
|
|
|
static void
|
2011-08-16 00:11:13 +00:00
|
|
|
mpenter(void)
|
2006-07-16 15:50:13 +00:00
|
|
|
{
|
2011-08-11 16:25:10 +00:00
|
|
|
switchkvm();
|
2011-07-29 11:31:27 +00:00
|
|
|
seginit();
|
|
|
|
lapicinit(cpunum());
|
|
|
|
mpmain();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Common CPU setup code.
|
|
|
|
static void
|
|
|
|
mpmain(void)
|
|
|
|
{
|
2010-08-05 18:15:03 +00:00
|
|
|
cprintf("cpu%d: starting\n", cpu->id);
|
2010-08-06 01:16:55 +00:00
|
|
|
idtinit(); // load idt register
|
2011-08-16 00:11:13 +00:00
|
|
|
xchg(&cpu->started, 1); // tell startothers() we're up
|
2010-08-06 01:16:55 +00:00
|
|
|
scheduler(); // start running processes
|
2006-07-16 15:50:13 +00:00
|
|
|
}
|
|
|
|
|
2011-08-31 00:50:19 +00:00
|
|
|
pde_t entrypgdir[]; // For entry.S
|
2011-08-11 16:25:10 +00:00
|
|
|
|
2011-08-16 00:11:13 +00:00
|
|
|
// Start the non-boot (AP) processors.
|
2007-08-28 04:40:58 +00:00
|
|
|
static void
|
2011-08-16 00:11:13 +00:00
|
|
|
startothers(void)
|
2007-08-27 22:53:31 +00:00
|
|
|
{
|
2011-08-15 16:02:59 +00:00
|
|
|
extern uchar _binary_entryother_start[], _binary_entryother_size[];
|
2007-08-27 22:53:31 +00:00
|
|
|
uchar *code;
|
|
|
|
struct cpu *c;
|
2007-09-27 21:25:37 +00:00
|
|
|
char *stack;
|
2007-08-27 22:53:31 +00:00
|
|
|
|
2011-08-16 00:11:13 +00:00
|
|
|
// Write entry code to unused memory at 0x7000.
|
2011-08-15 16:02:59 +00:00
|
|
|
// The linker has placed the image of entryother.S in
|
|
|
|
// _binary_entryother_start.
|
2011-07-29 11:31:27 +00:00
|
|
|
code = p2v(0x7000);
|
2011-08-15 16:02:59 +00:00
|
|
|
memmove(code, _binary_entryother_start, (uint)_binary_entryother_size);
|
2010-08-06 01:16:55 +00:00
|
|
|
|
2007-08-27 22:53:31 +00:00
|
|
|
for(c = cpus; c < cpus+ncpu; c++){
|
2009-08-31 06:02:08 +00:00
|
|
|
if(c == cpus+cpunum()) // We've started already.
|
2007-08-27 22:53:31 +00:00
|
|
|
continue;
|
|
|
|
|
2011-09-01 14:25:20 +00:00
|
|
|
// Tell entryother.S what stack to use, where to enter, and what
|
|
|
|
// pgdir to use. We cannot use kpgdir yet, because the AP processor
|
|
|
|
// is running in low memory, so we use entrypgdir for the APs too.
|
2011-09-13 17:14:52 +00:00
|
|
|
stack = kalloc();
|
2007-09-27 21:25:37 +00:00
|
|
|
*(void**)(code-4) = stack + KSTACKSIZE;
|
2011-08-16 00:11:13 +00:00
|
|
|
*(void**)(code-8) = mpenter;
|
2011-08-31 00:50:19 +00:00
|
|
|
*(int**)(code-12) = (void *) v2p(entrypgdir);
|
2010-09-13 19:34:44 +00:00
|
|
|
|
2011-07-29 11:31:27 +00:00
|
|
|
lapicstartap(c->id, v2p(code));
|
2007-08-27 22:53:31 +00:00
|
|
|
|
2011-08-11 16:25:10 +00:00
|
|
|
// wait for cpu to finish mpmain()
|
2011-08-16 00:11:13 +00:00
|
|
|
while(c->started == 0)
|
2007-08-27 22:53:31 +00:00
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
2011-02-20 02:17:55 +00:00
|
|
|
|
2011-08-16 00:11:13 +00:00
|
|
|
// Boot page table used in entry.S and entryother.S.
|
2011-08-10 01:37:35 +00:00
|
|
|
// Page directories (and page tables), must start on a page boundary,
|
2011-08-16 00:11:13 +00:00
|
|
|
// hence the "__aligned__" attribute.
|
2011-08-15 21:41:58 +00:00
|
|
|
// Use PTE_PS in page directory entry to enable 4Mbyte pages.
|
2011-08-10 01:37:35 +00:00
|
|
|
__attribute__((__aligned__(PGSIZE)))
|
2011-08-31 00:50:19 +00:00
|
|
|
pde_t entrypgdir[NPDENTRIES] = {
|
2011-08-29 20:12:01 +00:00
|
|
|
// Map VA's [0, 4MB) to PA's [0, 4MB)
|
2011-09-14 17:47:04 +00:00
|
|
|
[0] = (0) | PTE_P | PTE_W | PTE_PS,
|
2011-08-29 20:12:01 +00:00
|
|
|
// Map VA's [KERNBASE, KERNBASE+4MB) to PA's [0, 4MB)
|
2011-09-14 17:47:04 +00:00
|
|
|
[KERNBASE>>PDXSHIFT] = (0) | PTE_P | PTE_W | PTE_PS,
|
2011-08-10 01:37:35 +00:00
|
|
|
};
|
|
|
|
|
2011-02-20 02:17:55 +00:00
|
|
|
//PAGEBREAK!
|
|
|
|
// Blank page.
|
|
|
|
|