mirror of
https://github.com/cfenollosa/os-tutorial.git
synced 2024-10-27 20:34:19 +00:00
27 lines
658 B
C
27 lines
658 B
C
#include "timer.h"
|
|
#include "isr.h"
|
|
#include "ports.h"
|
|
#include "../libc/function.h"
|
|
|
|
uint32_t tick = 0;
|
|
|
|
static void timer_callback(registers_t *regs) {
|
|
tick++;
|
|
UNUSED(regs);
|
|
}
|
|
|
|
void init_timer(uint32_t freq) {
|
|
/* Install the function we just wrote */
|
|
register_interrupt_handler(IRQ0, timer_callback);
|
|
|
|
/* Get the PIT value: hardware clock at 1193180 Hz */
|
|
uint32_t divisor = 1193180 / freq;
|
|
uint8_t low = (uint8_t)(divisor & 0xFF);
|
|
uint8_t high = (uint8_t)( (divisor >> 8) & 0xFF);
|
|
/* Send the command */
|
|
port_byte_out(0x43, 0x36); /* Command port */
|
|
port_byte_out(0x40, low);
|
|
port_byte_out(0x40, high);
|
|
}
|
|
|