forked from nyuichi/xv6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
95 lines (77 loc) · 2.17 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include "types.h"
#include "defs.h"
#include "param.h"
#include "memlayout.h"
#include "mmu.h"
#include "proc.h"
#include "gaia.h"
//static void startothers(void);
static void mpmain(void);
extern pde_t *kpgdir;
extern char end[]; // first address after kernel loaded from ELF file
void init_global_var();
// Bootstrap processor starts running C code here.
// Allocate a real stack and switch to it, first
// doing some setup required for memory allocator to work.
int
main(void)
{
init_global_var();
kinit1(end, P2V(4*1024*1024)); // phys page allocator
kvmalloc(); // kernel page table
seginit(); // set up segments
cprintf("\ncpu%d: starting xv6\n\n", cpu->id);
//picinit(); // interrupt controller
consoleinit(); // I/O devices & their interrupts
uartinit(); // serial port
pinit(); // process table
tvinit(); // trap vectors
binit(); // buffer cache
fileinit(); // file table
iinit(); // inode cache
ideinit(); // disk
if(!ismp)
timerinit(); // uniprocessor timer
kinit2(P2V(4*1024*1024), P2V(PHYSTOP)); // must come after startothers()
userinit(); // first user process
// Finish setting up this processor in mpmain.
mpmain();
}
/*
// Other CPUs jump here from entryother.S.
static void
mpenter(void)
{
switchkvm();
seginit();
lapicinit();
mpmain();
}
*/
// Common CPU setup code.
static void
mpmain(void)
{
cprintf("cpu%d: starting\n", cpu->id);
idtinit(); // load idt register
xchg(&cpu->started, 1); // tell startothers() we're up
scheduler(); // start running processes
}
// Boot page table used in entry.S and entryother.S.
// Page directories (and page tables), must start on a page boundary,
// hence the "__aligned__" attribute.
// Use PTE_PS in page directory entry to enable 4Mbyte pages.
pde_t entrypgdir[NPDENTRIES];
void init_global_var() {
// Map VA's [0, 4MB) to PA's [0, 4MB)
entrypgdir[0] = (0) | PTE_P | PTE_W | PTE_PS;
// Map VA's [KERNBASE, KERNBASE+4MB) to PA's [0, 4MB)
entrypgdir[KERNBASE>>PDXSHIFT] = (0) | PTE_P | PTE_W | PTE_PS;
return;
}
//PAGEBREAK!
// Blank page.
//PAGEBREAK!
// Blank page.
//PAGEBREAK!
// Blank page.