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
use core::arch::asm;
pub unsafe fn synch_set_bit(nr: u64, addr: *mut u64) {
asm!("lock", "bts [{}], {}", in(reg) addr, in(reg) nr);
}
pub unsafe fn synch_clear_bit(nr: u64, addr: *mut u64) {
asm!("lock", "btr [{}], {}", in(reg) addr, in(reg) nr);
}
struct PDA {
irqcount: i32,
irqstackptr: *mut u8,
}
static mut PDA: PDA = PDA {
irqcount: -1,
irqstackptr: core::ptr::null_mut(),
};
static mut IRQSTACK: [u8; 2 * 32768] = [0; 2 * 32768];
unsafe fn write_msr(msr: u32, value: u64) {
let low = value as u32;
let high = (value >> 32) as u32;
asm!(
"wrmsr",
in("ecx") msr,
in("eax") low, in("edx") high,
options(nostack, preserves_flags),
);
}
pub fn init_events() {
unsafe {
write_msr(0xc0000101, &mut PDA as *mut _ as u64);
PDA.irqcount = -1;
PDA.irqstackptr = (((IRQSTACK.as_mut_ptr() as u64) + 2 * 32768) & !(32768 - 1)) as *mut _;
}
}