ref: 73d7f19cdee40eff4e78c2326c4c338828b57945
dir: /os/pc64/main.c/
#include "u.h" #include "../port/lib.h" #include "mem.h" #include "dat.h" #include "fns.h" #include "io.h" #include "ureg.h" #define X86STEPPING(x) ((x) & 0x0F) #define X86MODEL(x) (((x)>>4) & 0x0F) #define X86FAMILY(x) (((x)>>8) & 0x0F) Conf conf; int idle_spin; extern void bootscreeninit(void); extern int main_pool_pcnt; extern int heap_pool_pcnt; extern int image_pool_pcnt; int pckdebug; static uchar *sp; /* stack pointer for /boot */ char bootdisk[KNAMELEN]; static void doc(char *m) { int i; print("%s...\n", m); /*for(i = 0; i < 100*1024*1024; i++) i++;*/ } enum { VGA_COLOR_BLACK = 0, VGA_COLOR_BLUE = 1, VGA_COLOR_GREEN = 2, VGA_COLOR_CYAN = 3, VGA_COLOR_RED = 4, VGA_COLOR_MAGENTA = 5, VGA_COLOR_BROWN = 6, VGA_COLOR_LIGHT_GREY = 7, VGA_COLOR_DARK_GREY = 8, VGA_COLOR_LIGHT_BLUE = 9, VGA_COLOR_LIGHT_GREEN = 10, VGA_COLOR_LIGHT_CYAN = 11, VGA_COLOR_LIGHT_RED = 12, VGA_COLOR_LIGHT_MAGENTA = 13, VGA_COLOR_LIGHT_BROWN = 14, VGA_COLOR_WHITE = 15, Nvideo = 80*25, }; extern u64 MemMin; u32 nchars = 0; void writemsg(char *msg, int msglen) { u8 *video = (u8*)0xB8000; u8 colour = VGA_COLOR_LIGHT_GREY | (VGA_COLOR_BLACK<<4); u32 i; if(nchars == 0){ memset(video, 0, Nvideo*2); }else if(nchars + msglen >= Nvideo){ memmove(video, video+(2*msglen), 2*(nchars-msglen)); nchars -= msglen; } video += nchars*2; for(i = nchars; i < nchars+msglen; i++){ *video++ = *msg++; *video++ = colour; } nchars += msglen; } void ptedebug(uintptr pa) { uintptr *pml4e, *pdpe, *pde; pml4e = mmuwalk((uintptr*)PML4ADDR, pa, 3, 0); pdpe = mmuwalk((uintptr*)PML4ADDR, pa, 2, 0); pde = mmuwalk((uintptr*)PML4ADDR, pa, 1, 0); print("pml4 @ 0x%p pa 0x%zux page is \n" "\tpml4 entry @ 0x%p i %zd\n" "\tpdp entry @ 0x%p i %zd\n" "\tpd entry @ 0x%p i %zd\n", m->pml4, pa, pml4e, (pml4e-m->pml4)/sizeof(intptr), pdpe, ((intptr)pdpe-(intptr)PDPADDR)/sizeof(intptr), pde, ((intptr)pde-(intptr)PD0ADDR)/sizeof(intptr)); } void setupdebug(void) { print("kdzero 0x%p confaddr 0x%p apbootstrap 0x%p idtaddr 0x%p\n" "\tcpu0mach 0x%p cpu0sp 0x%p cpu0gdt 0x%p\n" "\tcpu0pml4 0x%p cpu0pdp 0x%p cpu0pd 0x%p\n" "\tcpu0end 0x%p\n", (void*)KDZERO, CONFADDR,APBOOTSTRAP, IDTADDR, CPU0MACH, CPU0SP, GDTADDR, PML4ADDR, PDPADDR, PD0ADDR, CPU0END); ptedebug(1*MiB); ptedebug(2*MiB); ptedebug(1*GiB); ptedebug(4ull*GiB); } /* to check from acid on whether the data segment is being trashed */ /* static int globaldatatest = 0x12345678; */ void main(void) { outb(0x3F2, 0x00); /* botch: turn off the floppy motor */ mach0init(); bootargsinit(); trapinit0(); /* set up idt, check notes on why so early */ ioinit(); i8250console(); quotefmtinstall(); screeninit(); print("\nInferno\n"); setupdebug(); cpuidentify(); meminit0(); /* builds the memmap */ archinit(); if(arch->clockinit) arch->clockinit(); meminit(); /* builds the conf.mem entries */ confinit(); xinit(); kbdinit(); i8253init(); /* TODO 9front if(i8237alloc != nil) i8237alloc(); */ pcicfginit(); bootscreeninit(); /* vga maps pages for the frame buffer TODO bug causes an i8042 system reset in poolsizeinit() */ trapinit(); printinit(); cpuidprint(); mmuinit(); /* builds the page tables, lgdt, lidt */ print("after mmuinit\n"); poolsizeinit(); memmapdump(); eve = strdup("inferno"); if(arch->intrinit){ /* launches other processors on an mp */ doc("intrinit"); arch->intrinit(); } doc("timersinit"); timersinit(); doc("mathinit"); mathinit(); doc("kbdenable"); kbdenable(); if(arch->clockenable){ doc("clockinit"); arch->clockenable(); } doc("procinit"); procinit(); doc("links"); links(); doc("chandevreset"); chandevreset(); doc("userinit"); userinit(); doc("schedinit"); active.thunderbirdsarego = 1; schedinit(); } void mach0init(void) { conf.nmach = 1; MACHP(0) = (Mach*)CPU0MACH; m->machno = 0; m->pml4 = (u64*)PML4ADDR; m->gdt = (Segdesc*)GDTADDR; machinit(); active.machs[0] = 1; active.exiting = 0; } void machinit(void) { int machno; Segdesc *gdt; uintptr *pml4; machno = m->machno; pml4 = m->pml4; gdt = m->gdt; memset(m, 0, sizeof(Mach)); m->machno = machno; m->pml4 = pml4; m->gdt = gdt; m->perf.period = 1; /* * For polled uart output at boot, need * a default delay constant. 100000 should * be enough for a while. Cpuidentify will * calculate the real value later. */ m->loopconst = 100000; } void init0(void) { Osenv *o; char buf[2*KNAMELEN]; up->nerrlab = 0; spllo(); if(waserror()) panic("init0: %r"); /* * These are o.k. because rootinit is null. * Then early kproc's will have a root and dot. */ o = up->env; o->pgrp->slash = namec("#/", Atodir, 0, 0); cnameclose(o->pgrp->slash->name); o->pgrp->slash->name = newcname("/"); o->pgrp->dot = cclone(o->pgrp->slash); chandevinit(); if(!waserror()){ ksetenv("cputype", "am64", 0); snprint(buf, sizeof(buf), "amd64 %s", conffile); ksetenv("terminal", buf, 0); setconfenv(); poperror(); } poperror(); disinit("/osinit.dis"); } void userinit(void) { Proc *p; Osenv *o; p = newproc(); o = p->env; o->fgrp = newfgrp(nil); o->pgrp = newpgrp(); kstrdup(&o->user, eve); strcpy(p->text, "interp"); /* * Kernel Stack * * N.B. make sure there's * 4 bytes for gotolabel's return PC */ p->sched.pc = (uintptr)init0; p->sched.sp = (uintptr)p->kstack+KSTACK-sizeof(uintptr); ready(p); } void confinit(void) { char *p; u64 maxmem; int i; if(p = getconf("*maxmem")) maxmem = strtoull(p, 0, 0); else maxmem = 0; conf.npage = 0; for(i=0; i<nelem(conf.mem); i++) conf.npage += conf.mem[i].npage; print("conf.npage %d\n", conf.npage); conf.nproc = 10 /*+ ((conf.npage*BY2PG)/MiB)*5*/; } void poolsizeinit(void) { u64 nb; nb = conf.npage*BY2PG; print("poolsizeinit nb 0x%zx conf.npage %d\n", nb, conf.npage); poolsize(mainmem, (nb*main_pool_pcnt)/100, 0); poolsize(heapmem, (nb*heap_pool_pcnt)/100, 0); poolsize(imagmem, (nb*image_pool_pcnt)/100, 1); } /* * Save the mach dependent part of the process state. */ void procsave(Proc *p) { if(m->dr7 != 0){ m->dr7 = 0; putdr7(0); } if(p->state == Moribund) p->dr[7] = 0; fpuprocsave(p); /* * While this processor is in the scheduler, the process could run * on another processor and exit, returning the page tables to * the free list where they could be reallocated and overwritten. * When this processor eventually has to get an entry from the * trashed page tables it will crash. * * If there's only one processor, this can't happen. * You might think it would be a win not to do this in that case, * especially on VMware, but it turns out not to matter. */ mmuflushtlb(); } void exit(int ispanic) { USED(ispanic); up = 0; print("exiting\n"); /* Shutdown running devices */ chandevshutdown(); arch->reset(); } void reboot(void) { exit(0); }