Newer
Older
#include "param.h"
#include "mmu.h"
#include "proc.h"
#include "x86.h"
static void mpmain(void);
void jkstack(void) __attribute__((noreturn));
mpinit(); // collect info about this machine
ksegment();
picinit(); // interrupt controller
ioapicinit(); // another interrupt controller
consoleinit(); // I/O devices & their interrupts
uartinit(); // serial port
pminit(); // physical memory for kernel
jkstack(); // Jump to mainc on a proper-allocated kernel stack
}
void
mainc(void)
{
cprintf("cpus %p cpu %p\n", cpus, cpu);
cprintf("\ncpu%d: starting xv6\n\n", cpu->id);
kvmalloc(); // allocate the kernel page table
bootothers(); // start other processors
if(cpunum() != mpbcpu()) {
ksegment();
cprintf("other cpu\n");
vminit(); // Run with paging on each processor
xchg(&cpu->booted, 1);
cprintf("cpu%d: scheduling\n", cpu->id);
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);
for(c = cpus; c < cpus+ncpu; c++){