-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterrupt.h
55 lines (45 loc) · 1.18 KB
/
interrupt.h
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
#ifndef __INTERRUPT_H__
#define __INTERRUPT_H__
#include <stdint.h>
#include "ioport.h"
#include "io.h"
struct idt_ptr {
uint16_t size;
uint64_t base;
} __attribute__((packed));
struct idt_entry { //дискриптор обработки прерывания.
uint16_t offset0;
uint16_t segment_selector;
uint16_t flags;
uint16_t offset1;
uint32_t offset2;
uint32_t reserved;
} __attribute__((packed));
struct interrupt_handler_args {
uint64_t rax;
uint64_t rcx;
uint64_t rdx;
uint64_t rsi;
uint64_t rdi;
uint64_t r8;
uint64_t r9;
uint64_t r10;
uint64_t r11;
uint64_t interrupt_id;
uint64_t error_code;
};
static inline void set_idt(const struct idt_ptr *ptr) {
__asm__ volatile ("lidt (%0)" : : "a"(ptr));
}
static inline void interrupt_off() {
__asm__ volatile ("cli"); // запрещаем прерывание
}
static inline void interrupt_on() {
__asm__ volatile ("sti"); //разрешаем прерываться
}
static inline void send_EOI() {
/*послали подтверждение прерывания EOI*/
out8(0x20, 0x20);
}
void init_interrupt();
#endif /*__INTERRUPT_H__*/