swissChili | defeb0d | 2021-02-18 15:28:36 -0800 | [diff] [blame^] | 1 | #include "timer.h" |
| 2 | #include "pic.h" |
| 3 | #include "log.h" |
| 4 | #include "registers.h" |
| 5 | #include "io.h" |
| 6 | |
| 7 | static ulong tick = 0; |
| 8 | |
| 9 | static void timer_cb(struct registers regs) |
| 10 | { |
| 11 | kprintf("Timer tick %d\n", tick++); |
| 12 | } |
| 13 | |
| 14 | void init_timer(uint hz) |
| 15 | { |
| 16 | add_interrupt_handler(IRQ_TO_INT(0), timer_cb); |
| 17 | |
| 18 | uint divisor = TIMER_FREQ / hz; |
| 19 | |
| 20 | kprintf("Divisor is %d\n", divisor); |
| 21 | |
| 22 | outb(0x43, 0x36); |
| 23 | io_wait(); |
| 24 | uchar l = divisor & 0xff, |
| 25 | h = (divisor >> 8) & 0xff; |
| 26 | |
| 27 | outb(0x40, l); |
| 28 | io_wait(); |
| 29 | outb(0x40, h); |
| 30 | io_wait(); |
| 31 | |
| 32 | kprintf("Initialized timer\n"); |
| 33 | } |