blob: 10651ab2ae9c7ea7e96ca9a453e035da2787cfff (
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
|
#include "timer.h"
#include "idt.h"
#include "sys.h"
#include "monitor.h"
static uint32_t tick = 0, frequency = 0, uptime = 0;
void timer_callback(struct registers *regs) {
tick++;
if (tick == frequency) {
uptime++;
tick = 0;
}
}
uint32_t timer_uptime() { return uptime; }
uint32_t timer_time() {
return (uptime * 1000) + (tick * 1000 / frequency);
}
void timer_init(uint32_t freq) {
frequency = freq;
idt_handleIrq(0, timer_callback);
uint32_t divisor = 1193180 / freq;
outb(0x43, 0x36); //Command byte
uint8_t l = (divisor & 0xFF), h = (divisor >> 8);
outb(0x40, l);
outb(0x40, h);
monitor_write("Timer started\n");
}
|