toaruos/kernel/devices/timer.c
2012-12-07 19:06:43 -08:00

65 lines
1.1 KiB
C

/* vim: tabstop=4 shiftwidth=4 noexpandtab
*
* Programmable Interrupt Timer
*/
#include <system.h>
#include <logging.h>
#define PIT_A 0x40
#define PIT_B 0x41
#define PIT_C 0x42
#define PIT_CONTROL 0x43
#define PIT_MASK 0xFF
#define PIT_SCALE 1193180
#define PIT_SET 0x36
#define TIMER_IRQ 0
#define SUBTICKS_PER_TICK 100
/*
* Set the phase (in hertz) for the Programmable
* Interrupt Timer (PIT).
*/
void
timer_phase(
int hz
) {
int divisor = PIT_SCALE / hz;
outportb(PIT_CONTROL, PIT_SET);
outportb(PIT_A, divisor & PIT_MASK);
outportb(PIT_A, (divisor >> 8) & PIT_MASK);
}
/*
* Internal timer counters
*/
unsigned long timer_ticks = 0;
unsigned char timer_subticks = 0;
/*
* IRQ handler for when the timer fires
*/
void
timer_handler(
struct regs *r
) {
if (++timer_subticks == SUBTICKS_PER_TICK) {
timer_ticks++;
timer_subticks = 0;
}
irq_ack(TIMER_IRQ);
switch_task(1);
}
/*
* Device installer for the PIT
*/
void timer_install() {
debug_print(NOTICE,"Initializing interval timer");
irq_install_handler(TIMER_IRQ, timer_handler);
timer_phase(100); /* 100Hz */
}