diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-30 11:08:46 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-09-30 11:08:46 -0400 |
commit | 19d9a04e36e7fb96eebe89e24311408460c29a70 (patch) | |
tree | 4d5f5ba595d5a5e2b59ce7b102c06b77c7be7721 /src/pit.cpp | |
parent | 85c8fd05f1a0c0224882c4fafa60003d3ef56cf3 (diff) |
reorganize files
Diffstat (limited to 'src/pit.cpp')
-rw-r--r-- | src/pit.cpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/pit.cpp b/src/pit.cpp new file mode 100644 index 0000000..964522b --- /dev/null +++ b/src/pit.cpp @@ -0,0 +1,41 @@ +#include "pit.hpp" +#include "idt.hpp" +#include "portio.hpp" +#include "tasking.hpp" + +constexpr std::uint32_t Frequency = 1000; + +static volatile std::uint32_t ticks = 0; + +static void timer_callback(const Registers& regs) +{ + ticks = ticks + 1; + + schedule(regs); +} + +void pit_initialize() +{ + // Firstly, register our timer callback. + idt_register_callback(32, timer_callback); + + // The value we send to the PIT is the value to divide it's input clock + // (1193180 Hz) by, to get our required frequency. Important to note is + // that the divisor must be small enough to fit into 16-bits. + const auto divisor = 1193180ul / Frequency; + + // Send the command byte. + outb(0x43, 0x36); + + // Send the frequency divisor. + outb(0x40, divisor & 0xFF); + outb(0x40, (divisor >> 8) & 0xFF); +} + +void pit_delay_ms(std::int32_t ms) +{ + const auto end = ticks + ms; + while (static_cast<std::int32_t>(end - ticks) > 0) + asm volatile("nop"); +} + |