aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/timer/timer.c
blob: 45b254e7c4943c5ad49843d63ae598c09f8c9424 (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
#include "../interrupts/interrupts.h"
#include "../io/io.h"

volatile unsigned int timer_ticks = 0;

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

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

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

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

// Install timer handler into IRQ0
void timer_install() {
    timer_phase(100);
    irq_install_handler(0, timer_handler);
}