ref: fcb6d6ec65fb82c3b6b936dd148df72b9955994b
dir: /sys/src/9/arm64/main.c/
#include "u.h" #include "tos.h" #include "../port/lib.h" #include "mem.h" #include "dat.h" #include "fns.h" #include "../port/error.h" #include "pool.h" #include "io.h" #include "sysreg.h" #include "ureg.h" #include "rebootcode.i" Conf conf; int isaconfig(char *, int, ISAConf *) { return 0; } /* * starting place for first process */ void init0(void) { char buf[2*KNAMELEN], **sp; chandevinit(); if(!waserror()){ snprint(buf, sizeof(buf), "%s %s", "ARM64", conffile); ksetenv("terminal", buf, 0); ksetenv("cputype", "arm64", 0); if(cpuserver) ksetenv("service", "cpu", 0); else ksetenv("service", "terminal", 0); setconfenv(); poperror(); } kproc("alarm", alarmkproc, 0); sp = (char**)(USTKTOP-sizeof(Tos) - 8 - sizeof(sp[0])*4); sp[3] = sp[2] = sp[1] = nil; strcpy(sp[1] = (char*)&sp[4], "boot"); sp[0] = (void*)&sp[1]; splhi(); fpukexit(nil, nil); touser((uintptr)sp); } void confinit(void) { int userpcnt; ulong kpages; char *p; int i; conf.nmach = 1; if(p = getconf("*ncpu")) conf.nmach = strtol(p, 0, 0); if(conf.nmach > MAXMACH) conf.nmach = MAXMACH; if(p = getconf("service")){ if(strcmp(p, "cpu") == 0) cpuserver = 1; else if(strcmp(p,"terminal") == 0) cpuserver = 0; } if(p = getconf("*kernelpercent")) userpcnt = 100 - strtol(p, 0, 0); else userpcnt = 0; if(userpcnt < 10) userpcnt = 60 + cpuserver*10; conf.npage = 0; for(i = 0; i < nelem(conf.mem); i++) conf.npage += conf.mem[i].npage; kpages = conf.npage - (conf.npage*userpcnt)/100; if(kpages > ((uintptr)-VDRAM)/BY2PG) kpages = ((uintptr)-VDRAM)/BY2PG; conf.upages = conf.npage - kpages; conf.ialloc = (kpages/2)*BY2PG; /* set up other configuration parameters */ conf.nproc = 100 + ((conf.npage*BY2PG)/MB)*5; if(cpuserver) conf.nproc *= 3; if(conf.nproc > 4000) conf.nproc = 4000; conf.nswap = conf.npage*3; conf.nswppo = 4096; conf.nimage = 200; conf.copymode = conf.nmach > 1; /* * Guess how much is taken by the large permanent * datastructures. Mntcache and Mntrpc are not accounted for. */ kpages = conf.npage - conf.upages; kpages *= BY2PG; kpages -= conf.upages*sizeof(Page) + conf.nproc*sizeof(Proc*) + conf.nimage*sizeof(Image) + conf.nswap + conf.nswppo*sizeof(Page*); mainmem->maxsize = kpages; imagmem->maxsize = kpages; } void machinit(void) { m->ticks = 1; m->perf.period = 1; active.machs[m->machno] = 1; } void mpinit(void) { extern void _start(void); int i; for(i = 1; i < conf.nmach; i++){ Ureg u = {0}; MACHP(i)->machno = i; cachedwbinvse(MACHP(i), MACHSIZE); u.r0 = 0x84000003; /* CPU_ON */ u.r1 = (sysrd(MPIDR_EL1) & ~(0xFF0000FFULL)) | i; u.r2 = PADDR(_start); u.r3 = i; hvccall(&u); } synccycles(); } void cpuidprint(void) { iprint("cpu%d: 1000MHz QEMU\n", m->machno); } void main(void) { machinit(); if(m->machno){ trapinit(); fpuinit(); intrinit(); clockinit(); cpuidprint(); synccycles(); timersinit(); mmu1init(); m->ticks = MACHP(0)->ticks; schedinit(); return; } uartconsinit(); quotefmtinstall(); bootargsinit(); meminit(); confinit(); xinit(); printinit(); print("\nPlan 9\n"); trapinit(); fpuinit(); intrinit(); clockinit(); cpuidprint(); timersinit(); pageinit(); procinit0(); initseg(); links(); chandevreset(); userinit(); mpinit(); mmu1init(); schedinit(); } void exit(int) { Ureg u = { .r0 = 0x84000002 }; /* CPU_OFF */ cpushutdown(); splfhi(); if(m->machno == 0){ /* clear secrets */ zeroprivatepages(); poolreset(secrmem); u.r0 = 0x84000009; /* SYSTEM RESET */ } hvccall(&u); } static void rebootjump(void *entry, void *code, ulong size) { void (*f)(void*, void*, ulong); intrcpushutdown(); /* redo identity map */ setttbr(PADDR(L1BOT)); /* setup reboot trampoline function */ f = (void*)REBOOTADDR; memmove(f, rebootcode, sizeof(rebootcode)); cachedwbinvse(f, sizeof(rebootcode)); cacheiinvse(f, sizeof(rebootcode)); (*f)(entry, code, size); for(;;); } void reboot(void*, void *code, ulong size) { writeconf(); while(m->machno != 0){ procwired(up, 0); sched(); } cpushutdown(); delay(2000); splfhi(); /* turn off buffered serial console */ serialoq = nil; /* shutdown devices */ chandevshutdown(); /* stop the clock */ clockshutdown(); intrsoff(); /* clear secrets */ zeroprivatepages(); poolreset(secrmem); /* off we go - never to return */ rebootjump((void*)(KTZERO-KZERO), code, size); } void dmaflush(int clean, void *p, ulong len) { uintptr s = (uintptr)p; uintptr e = (uintptr)p + len; if(clean){ s &= ~(BLOCKALIGN-1); e += BLOCKALIGN-1; e &= ~(BLOCKALIGN-1); cachedwbse((void*)s, e - s); return; } if(s & BLOCKALIGN-1){ s &= ~(BLOCKALIGN-1); cachedwbinvse((void*)s, BLOCKALIGN); s += BLOCKALIGN; } if(e & BLOCKALIGN-1){ e &= ~(BLOCKALIGN-1); if(e < s) return; cachedwbinvse((void*)e, BLOCKALIGN); } if(s < e) cachedinvse((void*)s, e - s); }