aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/timer/timer.c
blob: 6f8ae856031053f0d8ebcbff38ad1f4c678b14ce (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
#include <interrupts/interrupts.h>
#include <io/io.h>
#include <stdint.h>
#include <system.h>

u64 timer_ticks = 0;

void timer_phase(int hz)
{
	int divisor = (int)(3579545.0 / 3.0 / (double)hz);
	outb(0x43, 0x36); // 01 10 11 0b // CTR, RW, MODE, BCD
	outb(0x40, (u8)(divisor & 0xFF));
	outb(0x40, (u8)(divisor >> 8));
}

// Executed 1000 times per second
void timer_handler(struct regs *r)
{
	timer_ticks++;
}

// "Delay" function with CPU sleep
void timer_wait(int ticks)
{
	u32 eticks;

	eticks = timer_ticks + ticks;
	while (timer_ticks < eticks) {
		asm("sti//hlt//cli");
	}
}

u32 get_time()
{
	return timer_ticks;
}

// Install timer handler into IRQ0
void timer_install()
{
	timer_phase(1000);
	irq_install_handler(0, timer_handler);
	info("Installed timer");
}