-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtimer.c
65 lines (52 loc) · 1.11 KB
/
timer.c
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#include <kernel.h>
volatile uint64_t ticks = 0;
volatile uint32_t timer_freq = 0;
volatile uint64_t beep_end = 0;
extern idle_timer_t* timer_idles;
void beep(uint32_t pitch)
{
uint32_t Div;
uint8_t tmp;
Div = 1193180 / pitch;
outb(0x43, 0xb6);
outb(0x42, (uint8_t) (Div) );
outb(0x42, (uint8_t) (Div >> 8));
tmp = inb(0x61);
if (tmp != (tmp | 3))
outb(0x61, tmp | 3);
// A beep is stopped by the timer interrupt half a second
// after it has been started, asyncronously and automatically.
beep_end = ticks + timer_freq / 8;
}
void stopbeep()
{
uint8_t tmp = (inb(0x61) & 0xFC);
outb(0x61, tmp);
beep_end = 0;
}
void sleep_one_tick()
{
uint64_t oldticks = ticks;
while (oldticks != ticks);
}
void sleep(uint64_t secs)
{
uint64_t start = ticks;
uint64_t end = start + (secs * timer_freq);
while (ticks < end)
__asm__ volatile("hlt");
}
uint64_t get_ticks()
{
return ticks;
}
void timer_callback(uint8_t isr, uint64_t errorcode, uint64_t irq, void* opaque)
{
ticks++;
for (idle_timer_t* i = timer_idles; i; i = i->next) {
i->func();
}
if (beep_end != 0 && ticks > beep_end) {
stopbeep();
}
}