Newer
Older
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "x86.h"
void jkstack(void) __attribute__((noreturn));
void mainc(void);
mpinit(); // collect info about this machine
picinit(); // interrupt controller
ioapicinit(); // another interrupt controller
consoleinit(); // I/O devices & their interrupts
uartinit(); // serial port
kinit(); // initialize memory allocator
jkstack(); // call mainc() on a properly-allocated stack
if (!kstack)
panic("jkstack\n");
char *top = kstack + PGSIZE;
asm volatile("movl %0,%%esp" : : "r" (top));
asm volatile("call mainc");
panic("jkstack");
void
mainc(void)
{
cprintf("\ncpu%d: starting xv6\n\n", cpu->id);

Robert Morris
committed
kvmalloc(); // initialize the kernel page table
bootothers(); // start other processors
// Common CPU setup code.
// Bootstrap CPU comes here from mainc().
// Other CPUs jump here from bootother.S.
if(cpunum() != mpbcpu()) {
ksegment();
bootothers(void)
{
extern uchar _binary_bootother_start[], _binary_bootother_size[];
uchar *code;
struct cpu *c;
// Write bootstrap code to unused memory at 0x7000. The linker has
// placed the start of bootother.S there.
code = (uchar *) 0x7000;
memmove(code, _binary_bootother_start, (uint)_binary_bootother_size);