1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include "u.h"
#include "../port/lib.h"
#include "mem.h"
#include "dat.h"
#include "fns.h"
#include "io.h"
#include "ureg.h"
/*
* delay for l milliseconds more or less. delayloop is set by
* clockinit() to match the actual CPU speed.
*/
void
delay(int l)
{
ulong i, j;
j = m->delayloop;
while(l-- > 0)
for(i=0; i < j; i++)
;
}
void
clockinit(void)
{
long x;
m->delayloop = m->speed*100;
do {
x = rdcount();
delay(10);
x = rdcount() - x;
} while(x < 0);
/*
* fix count
*/
m->delayloop = (m->delayloop*m->speed*1000*10)/x;
if(m->delayloop == 0)
m->delayloop = 1;
wrcompare(rdcount()+(m->speed*1000000)/HZ);
}
void
clock(Ureg *ur)
{
int n;
wrcompare(rdcount()+(m->speed*1000000)/HZ);
m->ticks++;
if(m->proc)
m->proc->pc = ur->pc;
accounttime();
ifjab();
kproftimer(ur->pc);
kmapinval();
if((active.machs&(1<<m->machno)) == 0)
return;
if(active.exiting && (active.machs & (1<<m->machno))) {
print("someone's exiting\n");
exit(0);
}
checkalarms();
uartclock();
mouseclock();
if(up == 0 || up->state != Running)
return;
if(anyready()) {
n = up->inlock;
if(n == 0)
sched();
else
up->inlock = n-1;
}
/* user profiling clock */
if(ur->status & KUSER)
(*(ulong*)(USTKTOP-BY2WD)) += TK2MS(1);
}