2006-06-12 15:22:12 +00:00
|
|
|
#include "types.h"
|
|
|
|
#include "param.h"
|
|
|
|
#include "mmu.h"
|
|
|
|
#include "proc.h"
|
|
|
|
#include "defs.h"
|
|
|
|
#include "x86.h"
|
2006-06-15 16:02:20 +00:00
|
|
|
#include "traps.h"
|
|
|
|
#include "syscall.h"
|
2006-06-22 20:47:23 +00:00
|
|
|
#include "elf.h"
|
|
|
|
#include "param.h"
|
2006-07-12 11:15:38 +00:00
|
|
|
#include "spinlock.h"
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2006-06-13 22:08:20 +00:00
|
|
|
extern char edata[], end[];
|
2006-07-20 09:07:53 +00:00
|
|
|
extern uchar _binary_userfs_start[], _binary_userfs_size[];
|
2006-08-11 13:55:18 +00:00
|
|
|
extern uchar _binary_init_start[], _binary_init_size[];
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2006-07-16 15:50:13 +00:00
|
|
|
// CPU 0 starts running C code here.
|
2006-07-16 16:03:51 +00:00
|
|
|
// This is called main0 not main so that it can have
|
|
|
|
// a void return type. Gcc can't handle functions named
|
|
|
|
// main that don't return int. Really.
|
|
|
|
void
|
|
|
|
main0(void)
|
2006-06-12 15:22:12 +00:00
|
|
|
{
|
2006-07-16 15:50:13 +00:00
|
|
|
int i;
|
2006-06-12 15:22:12 +00:00
|
|
|
struct proc *p;
|
2006-06-22 01:28:57 +00:00
|
|
|
|
2006-08-10 22:08:14 +00:00
|
|
|
lcr4(0); // xxx copy of cpu #
|
|
|
|
|
2006-06-13 22:08:20 +00:00
|
|
|
// clear BSS
|
|
|
|
memset(edata, 0, end - edata);
|
|
|
|
|
2006-08-15 22:18:20 +00:00
|
|
|
// switch to cpu0's cpu stack
|
|
|
|
asm volatile("movl %0, %%esp" : : "r" (cpus[0].mpstack + MPSTACK - 32));
|
|
|
|
asm volatile("movl %0, %%ebp" : : "r" (cpus[0].mpstack + MPSTACK));
|
|
|
|
|
2006-07-16 15:50:13 +00:00
|
|
|
// Make sure interrupts stay disabled on all processors
|
|
|
|
// until each signals it is ready, by pretending to hold
|
|
|
|
// an extra lock.
|
2006-08-15 22:18:20 +00:00
|
|
|
// xxx maybe replace w/ acquire remembering if FL_IF was already clear
|
2006-08-10 22:08:14 +00:00
|
|
|
for(i=0; i<NCPU; i++){
|
2006-07-16 15:50:13 +00:00
|
|
|
cpus[i].nlock++;
|
2006-08-10 22:08:14 +00:00
|
|
|
cpus[i].guard1 = 0xdeadbeef;
|
|
|
|
cpus[i].guard2 = 0xdeadbeef;
|
|
|
|
}
|
2006-07-16 15:50:13 +00:00
|
|
|
|
2006-07-12 17:00:54 +00:00
|
|
|
mp_init(); // collect info about this machine
|
|
|
|
|
|
|
|
lapic_init(mp_bcpu());
|
|
|
|
|
2006-08-08 19:58:06 +00:00
|
|
|
cprintf("\n\ncpu%d: booting xv6\n\n", cpu());
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2006-08-10 22:08:14 +00:00
|
|
|
pinit();
|
|
|
|
binit();
|
2006-07-05 20:00:14 +00:00
|
|
|
pic_init(); // initialize PIC
|
2006-08-04 18:12:31 +00:00
|
|
|
ioapic_init();
|
2006-06-13 15:50:06 +00:00
|
|
|
kinit(); // physical memory allocator
|
2006-06-26 20:31:52 +00:00
|
|
|
tvinit(); // trap vectors
|
2006-08-08 19:58:06 +00:00
|
|
|
idtinit(); // this CPU's idt register
|
2006-08-10 22:08:14 +00:00
|
|
|
fd_init();
|
|
|
|
iinit();
|
2006-08-08 19:58:06 +00:00
|
|
|
|
|
|
|
// fix process 0 so that copyproc() will work
|
2006-06-12 15:22:12 +00:00
|
|
|
p = &proc[0];
|
2006-08-15 22:18:20 +00:00
|
|
|
p->state = IDLEPROC;
|
2006-07-01 21:26:01 +00:00
|
|
|
p->sz = 4 * PAGE;
|
2006-06-12 15:22:12 +00:00
|
|
|
p->mem = kalloc(p->sz);
|
|
|
|
memset(p->mem, 0, p->sz);
|
2006-08-15 15:54:53 +00:00
|
|
|
p->kstack = kalloc(KSTACKSIZE);
|
2006-08-15 15:53:46 +00:00
|
|
|
p->tf = (struct trapframe *) (p->kstack + KSTACKSIZE) - 1;
|
2006-07-17 01:58:13 +00:00
|
|
|
memset(p->tf, 0, sizeof(struct trapframe));
|
2006-07-16 15:41:47 +00:00
|
|
|
p->tf->es = p->tf->ds = p->tf->ss = (SEG_UDATA << 3) | 3;
|
|
|
|
p->tf->cs = (SEG_UCODE << 3) | 3;
|
|
|
|
p->tf->eflags = FL_IF;
|
2006-08-15 22:18:20 +00:00
|
|
|
|
|
|
|
// make sure there's a TSS
|
|
|
|
setupsegs(0);
|
2006-06-12 15:22:12 +00:00
|
|
|
|
2006-08-10 02:07:10 +00:00
|
|
|
// initialize I/O devices, let them enable interrupts
|
2006-08-09 16:04:04 +00:00
|
|
|
console_init();
|
2006-08-08 19:58:06 +00:00
|
|
|
ide_init();
|
|
|
|
|
2006-07-12 11:15:38 +00:00
|
|
|
mp_startthem();
|
2006-07-12 01:48:35 +00:00
|
|
|
|
2006-07-06 21:47:22 +00:00
|
|
|
// turn on timer and enable interrupts on the local APIC
|
2006-06-28 16:35:03 +00:00
|
|
|
lapic_timerinit();
|
|
|
|
lapic_enableintr();
|
2006-07-12 01:48:35 +00:00
|
|
|
|
2006-07-16 15:50:13 +00:00
|
|
|
// Enable interrupts on this processor.
|
|
|
|
cpus[cpu()].nlock--;
|
2006-07-11 17:39:45 +00:00
|
|
|
sti();
|
2006-06-16 20:29:25 +00:00
|
|
|
|
2006-08-15 15:53:46 +00:00
|
|
|
// p->cwd = iget(rootdev, 1);
|
|
|
|
// iunlock(p->cwd);
|
2006-07-16 01:47:40 +00:00
|
|
|
p = copyproc(&proc[0]);
|
2006-07-11 17:39:45 +00:00
|
|
|
|
2006-07-20 09:07:53 +00:00
|
|
|
//load_icode(p, _binary_usertests_start, (uint) _binary_usertests_size);
|
2006-08-11 13:55:18 +00:00
|
|
|
//load_icode(p, _binary_userfs_start, (uint) _binary_userfs_size);
|
|
|
|
load_icode(p, _binary_init_start, (uint) _binary_init_size);
|
2006-07-12 01:48:35 +00:00
|
|
|
p->state = RUNNABLE;
|
|
|
|
|
Changes to allow use of native x86 ELF compilers, which on my
Linux 2.4 box using gcc 3.4.6 don't seem to follow the same
conventions as the i386-jos-elf-gcc compilers.
Can run make 'TOOLPREFIX=' or edit the Makefile.
curproc[cpu()] can now be NULL, indicating that no proc is running.
This seemed safer to me than having curproc[0] and curproc[1]
both pointing at proc[0] potentially.
The old implementation of swtch depended on the stack frame layout
used inside swtch being okay to return from on the other stack
(exactly the V6 you are not expected to understand this).
It also could be called in two contexts: at boot time, to schedule
the very first process, and later, on behalf of a process, to sleep
or schedule some other process.
I split this into two functions: scheduler and swtch.
The scheduler is now a separate never-returning function, invoked
by each cpu once set up. The scheduler looks like:
scheduler() {
setjmp(cpu.context);
pick proc to schedule
blah blah blah
longjmp(proc.context)
}
The new swtch is intended to be called only when curproc[cpu()] is not NULL,
that is, only on behalf of a user proc. It does:
swtch() {
if(setjmp(proc.context) == 0)
longjmp(cpu.context)
}
to save the current proc context and then jump over to the scheduler,
running on the cpu stack.
Similarly the system call stubs are now in assembly in usys.S to avoid
needing to know the details of stack frame layout used by the compiler.
Also various changes in the debugging prints.
2006-07-11 01:07:40 +00:00
|
|
|
scheduler();
|
2006-06-12 15:22:12 +00:00
|
|
|
}
|
2006-06-22 20:47:23 +00:00
|
|
|
|
2006-07-16 15:50:13 +00:00
|
|
|
// Additional processors start here.
|
2006-07-16 16:03:51 +00:00
|
|
|
void
|
2006-07-16 15:50:13 +00:00
|
|
|
mpmain(void)
|
|
|
|
{
|
2006-08-10 22:08:14 +00:00
|
|
|
lcr4(1); // xxx copy of cpu #
|
|
|
|
|
2006-08-08 19:58:06 +00:00
|
|
|
cprintf("cpu%d: starting\n", cpu());
|
2006-07-16 15:50:13 +00:00
|
|
|
idtinit(); // CPU's idt
|
2006-07-29 09:35:02 +00:00
|
|
|
if(cpu() == 0)
|
|
|
|
panic("mpmain on cpu 0");
|
2006-07-16 15:50:13 +00:00
|
|
|
lapic_init(cpu());
|
|
|
|
lapic_timerinit();
|
|
|
|
lapic_enableintr();
|
|
|
|
|
2006-08-15 22:18:20 +00:00
|
|
|
// make sure there's a TSS
|
|
|
|
setupsegs(0);
|
2006-08-08 19:58:06 +00:00
|
|
|
|
|
|
|
cpuid(0, 0, 0, 0, 0); // memory barrier
|
|
|
|
cpus[cpu()].booted = 1;
|
|
|
|
|
2006-07-16 15:50:13 +00:00
|
|
|
// Enable interrupts on this processor.
|
|
|
|
cpus[cpu()].nlock--;
|
|
|
|
sti();
|
|
|
|
|
|
|
|
scheduler();
|
|
|
|
}
|
|
|
|
|
2006-06-22 20:47:23 +00:00
|
|
|
void
|
2006-07-20 09:07:53 +00:00
|
|
|
load_icode(struct proc *p, uchar *binary, uint size)
|
2006-06-22 20:47:23 +00:00
|
|
|
{
|
2006-06-28 16:35:03 +00:00
|
|
|
int i;
|
2006-07-17 01:58:13 +00:00
|
|
|
struct elfhdr *elf;
|
|
|
|
struct proghdr *ph;
|
2006-06-22 20:47:23 +00:00
|
|
|
|
2006-06-28 16:35:03 +00:00
|
|
|
// Check magic number on binary
|
2006-07-17 01:58:13 +00:00
|
|
|
elf = (struct elfhdr*) binary;
|
2006-07-16 15:41:47 +00:00
|
|
|
if (elf->magic != ELF_MAGIC)
|
2006-06-28 16:35:03 +00:00
|
|
|
panic("load_icode: not an ELF binary");
|
2006-06-22 20:47:23 +00:00
|
|
|
|
2006-07-16 15:41:47 +00:00
|
|
|
p->tf->eip = elf->entry;
|
|
|
|
p->tf->esp = p->sz;
|
2006-06-22 20:47:23 +00:00
|
|
|
|
2006-06-28 16:35:03 +00:00
|
|
|
// Map and load segments as directed.
|
2006-07-17 01:58:13 +00:00
|
|
|
ph = (struct proghdr*) (binary + elf->phoff);
|
2006-07-16 15:41:47 +00:00
|
|
|
for (i = 0; i < elf->phnum; i++, ph++) {
|
|
|
|
if (ph->type != ELF_PROG_LOAD)
|
2006-06-28 16:35:03 +00:00
|
|
|
continue;
|
2006-07-16 15:41:47 +00:00
|
|
|
if (ph->va + ph->memsz < ph->va)
|
2006-06-28 16:35:03 +00:00
|
|
|
panic("load_icode: overflow in elf header segment");
|
2006-07-16 15:41:47 +00:00
|
|
|
if (ph->va + ph->memsz >= p->sz)
|
2006-06-28 16:35:03 +00:00
|
|
|
panic("load_icode: icode wants to be above UTOP");
|
|
|
|
|
|
|
|
// Load/clear the segment
|
2006-07-16 15:41:47 +00:00
|
|
|
memmove(p->mem + ph->va, binary + ph->offset, ph->filesz);
|
|
|
|
memset(p->mem + ph->va + ph->filesz, 0, ph->memsz - ph->filesz);
|
2006-06-28 16:35:03 +00:00
|
|
|
}
|
2006-06-22 20:47:23 +00:00
|
|
|
}
|