blob: bed86823d446d0df7775d75cfcb958d716fbea02 (
plain)
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
66
67
68
69
70
71
72
73
74
75
76
|
#include "pit.h"
#include <arch/i386/tsc.h>
#include <kmalloc.h>
#include <random.h>
#define PIT_IO_CHANNEL_0 0x40
#define PIT_IO_MODE_COMMAND 0x43
u32 pit_counter = 0;
u32 switch_counter = 0;
u16 hertz;
u16 read_pit_count(void) {
u16 count = 0;
outb(PIT_IO_MODE_COMMAND, 0x0 /*0b00000000*/);
count = inb(PIT_IO_CHANNEL_0);
count |= inb(PIT_IO_CHANNEL_0) << 8;
return count;
}
void set_pit_count(u16 _hertz) {
hertz = _hertz;
u16 divisor = 1193180 / hertz;
/*
* 0b00110110
* ^^
* channel - 0
* ^^
* r/w mode - LSB then MSB
* ^^^
* mode - 3 Square Wave Mode
* ^
* BCD - no
*/
outb(PIT_IO_MODE_COMMAND, 0x36 /*0b00110110*/);
outb(PIT_IO_CHANNEL_0, divisor & 0xFF);
outb(PIT_IO_CHANNEL_0, (divisor & 0xFF00) >> 8);
}
int last_flush = 0;
u64 last_tsc = 0;
extern u64 timer_current_uptime;
extern int is_switching_tasks;
void handle_packet();
void int_clock(reg_t *regs) {
kmalloc_scan();
u64 current_tsc = tsc_get();
timer_current_uptime = tsc_calculate_ms(current_tsc);
random_add_entropy_fast((u8 *)¤t_tsc, sizeof(current_tsc));
switch_counter++;
if (timer_current_uptime - last_flush > 5) {
tcp_flush_buffers();
tcp_flush_acks();
last_flush = timer_current_uptime;
}
if (switch_counter >= hertz) {
EOI(0x20);
switch_counter = 0;
if (is_switching_tasks) {
return;
}
switch_task();
} else {
EOI(0x20);
}
}
void pit_install(void) {
install_handler(int_clock, INT_32_INTERRUPT_GATE(0x3), 0x20);
}
|