blob: 9739633469fc3872f7c978be618bdaa266d5b014 (
plain) (
blame)
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
|
#include "timer.h"
#include "isr.h"
#include "screen.h"
#include "process.h"
#include "common.h"
#define TIMER_FREQ 1000
uint32 gSystemTickCount = 0;
BOOL gSchedulerEnabled = FALSE;
//called from assembly
void handleTimerIRQ(TimerInt_Registers registers) {
gSystemTickCount++;
if (/*gSystemTickCount % 10 == 0 &&*/ gSchedulerEnabled == TRUE) {
schedule(®isters);
}
}
uint32 getSystemTickCount() {
return gSystemTickCount;
}
uint32 getUptimeSeconds() {
return gSystemTickCount / TIMER_FREQ;
}
uint32 getUptimeMilliseconds() {
return gSystemTickCount;
}
void enableScheduler() {
gSchedulerEnabled = TRUE;
}
void disableScheduler() {
gSchedulerEnabled = FALSE;
}
static void initTimer(uint32 frequency) {
uint32 divisor = 1193180 / frequency;
outb(0x43, 0x36);
uint8 l = (uint8)(divisor & 0xFF);
uint8 h = (uint8)( (divisor>>8) & 0xFF );
outb(0x40, l);
outb(0x40, h);
}
void initializeTimer() {
initTimer(TIMER_FREQ);
}
|