2019-02-10 14:11:07 -06:00
|
|
|
#include "isr.h"
|
|
|
|
#include "idt.h"
|
|
|
|
#include "ports.h"
|
|
|
|
#include "../halt.h"
|
|
|
|
#include "../drivers/vga.h"
|
2019-02-11 09:47:28 -06:00
|
|
|
#include "../tasking.h"
|
2019-02-10 14:11:07 -06:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
void irq_handler(registers_t r);
|
|
|
|
isr_t interrupt_handlers[256];
|
|
|
|
|
|
|
|
/* Can't do this with a loop because we need the address
|
|
|
|
* of the function names */
|
|
|
|
void isr_install() {
|
|
|
|
set_idt_gate(0,(uint32_t)isr0);
|
|
|
|
set_idt_gate(1,(uint32_t)isr1);
|
|
|
|
set_idt_gate(2,(uint32_t)isr2);
|
|
|
|
set_idt_gate(3,(uint32_t)isr3);
|
|
|
|
set_idt_gate(4,(uint32_t)isr4);
|
|
|
|
set_idt_gate(5,(uint32_t)isr5);
|
|
|
|
set_idt_gate(6,(uint32_t)isr6);
|
|
|
|
set_idt_gate(7,(uint32_t)isr7);
|
|
|
|
set_idt_gate(8,(uint32_t)isr8);
|
|
|
|
set_idt_gate(9,(uint32_t)isr9);
|
|
|
|
set_idt_gate(10,(uint32_t)isr10);
|
|
|
|
set_idt_gate(11,(uint32_t)isr11);
|
|
|
|
set_idt_gate(12,(uint32_t)isr12);
|
|
|
|
set_idt_gate(13,(uint32_t)isr13);
|
|
|
|
set_idt_gate(14,(uint32_t)isr14);
|
|
|
|
set_idt_gate(15,(uint32_t)isr15);
|
|
|
|
set_idt_gate(16,(uint32_t)isr16);
|
|
|
|
set_idt_gate(17,(uint32_t)isr17);
|
|
|
|
set_idt_gate(18,(uint32_t)isr18);
|
|
|
|
set_idt_gate(19,(uint32_t)isr19);
|
|
|
|
set_idt_gate(20,(uint32_t)isr20);
|
|
|
|
set_idt_gate(21,(uint32_t)isr21);
|
|
|
|
set_idt_gate(22,(uint32_t)isr22);
|
|
|
|
set_idt_gate(23,(uint32_t)isr23);
|
|
|
|
set_idt_gate(24,(uint32_t)isr24);
|
|
|
|
set_idt_gate(25,(uint32_t)isr25);
|
|
|
|
set_idt_gate(26,(uint32_t)isr26);
|
|
|
|
set_idt_gate(27,(uint32_t)isr27);
|
|
|
|
set_idt_gate(28,(uint32_t)isr28);
|
|
|
|
set_idt_gate(29,(uint32_t)isr29);
|
|
|
|
set_idt_gate(30,(uint32_t)isr30);
|
|
|
|
set_idt_gate(31,(uint32_t)isr31);
|
|
|
|
set_idt_gate(80,(uint32_t)isr80);
|
|
|
|
// Remap the PIC
|
|
|
|
port_byte_out(0x20,0x11);
|
|
|
|
port_byte_out(0xA0,0x11);
|
|
|
|
port_byte_out(0x21,0x20);
|
|
|
|
port_byte_out(0xA1,0x28);
|
|
|
|
port_byte_out(0x21,0x04);
|
|
|
|
port_byte_out(0xA1,0x02);
|
|
|
|
port_byte_out(0x21,0x01);
|
|
|
|
port_byte_out(0xA1,0x01);
|
|
|
|
port_byte_out(0x21,0x0);
|
|
|
|
port_byte_out(0xA1,0x0);
|
|
|
|
|
|
|
|
// Install the IRQs
|
|
|
|
set_idt_gate(32,(uint32_t)irq0);
|
|
|
|
set_idt_gate(33,(uint32_t)irq1);
|
|
|
|
set_idt_gate(34,(uint32_t)irq2);
|
|
|
|
set_idt_gate(35,(uint32_t)irq3);
|
|
|
|
set_idt_gate(36,(uint32_t)irq4);
|
|
|
|
set_idt_gate(37,(uint32_t)irq5);
|
|
|
|
set_idt_gate(38,(uint32_t)irq6);
|
|
|
|
set_idt_gate(39,(uint32_t)irq7);
|
|
|
|
set_idt_gate(40,(uint32_t)irq8);
|
|
|
|
set_idt_gate(41,(uint32_t)irq9);
|
|
|
|
set_idt_gate(42,(uint32_t)irq10);
|
|
|
|
set_idt_gate(43,(uint32_t)irq11);
|
|
|
|
set_idt_gate(44,(uint32_t)irq12);
|
|
|
|
set_idt_gate(45,(uint32_t)irq13);
|
|
|
|
set_idt_gate(46,(uint32_t)irq14);
|
|
|
|
set_idt_gate(47,(uint32_t)irq15);
|
|
|
|
|
|
|
|
set_idt(); // Load with ASM
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* To print the message which defines every exception */
|
|
|
|
char *exception_messages[] = {
|
|
|
|
"Division By Zero",
|
|
|
|
"Debug",
|
|
|
|
"Non Maskable Interrupt",
|
|
|
|
"Breakpoint",
|
|
|
|
"Into Detected Overflow",
|
|
|
|
"Out of Bounds",
|
|
|
|
"Invalid Opcode",
|
|
|
|
"No Coprocessor",
|
|
|
|
|
|
|
|
"Double Fault",
|
|
|
|
"Coprocessor Segment Overrun",
|
|
|
|
"Bad TSS",
|
|
|
|
"Segment Not Present",
|
|
|
|
"Stack Fault",
|
|
|
|
"General Protection Fault",
|
|
|
|
"Page Fault",
|
|
|
|
"Unknown Interrupt",
|
|
|
|
|
|
|
|
"Coprocessor Fault",
|
|
|
|
"Alignment Check",
|
|
|
|
"Machine Check",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved",
|
|
|
|
"Reserved"
|
|
|
|
};
|
|
|
|
|
|
|
|
void isr_handler(registers_t r) {
|
|
|
|
switch (r.int_no) {
|
|
|
|
case 14: {
|
|
|
|
uint32_t addr;
|
|
|
|
asm("movl %%cr2,%0": "=r"(addr));
|
2019-02-10 15:04:54 -06:00
|
|
|
if (r.err_code==0) {
|
|
|
|
vga_write_string("Kernel process tried to read a non-present page entry at address ");
|
|
|
|
} else if (r.err_code==1) {
|
|
|
|
vga_write_string("Kernel process tried to read a page and caused a protection fault at address ");
|
|
|
|
} else if (r.err_code==2) {
|
|
|
|
vga_write_string("Kernel process tried to write to a non-present page entry at address ");
|
|
|
|
} else if (r.err_code==3) {
|
|
|
|
vga_write_string("Kernel process tried to write a page and caused a protection fault at address ");
|
|
|
|
} else if (r.err_code==4) {
|
|
|
|
vga_write_string("User process tried to read a non-present page entry at address ");
|
|
|
|
} else if (r.err_code==5) {
|
|
|
|
vga_write_string("User process tried to read a page and caused a protection fault at address ");
|
|
|
|
} else if (r.err_code==6) {
|
|
|
|
vga_write_string("User process tried to write to a non-present page entry at address ");
|
|
|
|
} else if (r.err_code==7) {
|
|
|
|
vga_write_string("User process tried to write a page and caused a protection fault at address ");
|
|
|
|
}
|
|
|
|
char str[11];
|
|
|
|
str[0]='\0';
|
|
|
|
hex_to_ascii(addr,str);
|
|
|
|
vga_write_string(str);
|
|
|
|
vga_write_string("\n");
|
2019-02-10 14:11:07 -06:00
|
|
|
// if ((r.err_code&1)==0) {
|
|
|
|
// // int dir_entry=(addr&0xFFC00000)>>22;
|
|
|
|
// // int table_entry=(addr&0x3FF000)>12;
|
|
|
|
// // if (dir_entry_present(dir_entry)) {
|
|
|
|
// // set_table_entry(dir_entry,table_entry,((dir_entry*1024)+table_entry)*0x1000,1,1,1);
|
|
|
|
// // for(int page=0;page<1024;page++) {
|
|
|
|
// // asm volatile("invlpg (%0)"::"r"(((dir_entry*1024)+page)*0x1000):"memory");
|
|
|
|
// // }
|
|
|
|
// // } else {
|
|
|
|
// // for(int page=0;page<1024;page++) {
|
|
|
|
// // set_table_entry(dir_entry,page,0x0,1,1,0);
|
|
|
|
// // }
|
|
|
|
// // set_table_entry(dir_entry,table_entry,((dir_entry*1024)+table_entry)*0x1000,1,1,1);
|
|
|
|
// // set_directory_entry(dir_entry,dir_entry,1,1,1);
|
|
|
|
// // }
|
|
|
|
// // return;
|
|
|
|
// }
|
|
|
|
halt();
|
|
|
|
break;
|
2019-02-11 09:47:28 -06:00
|
|
|
case 80:
|
|
|
|
if (r.eax==1) {
|
|
|
|
tasking_yield();
|
|
|
|
}
|
|
|
|
break;
|
2019-02-10 14:11:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void register_interrupt_handler(uint8_t n,isr_t handler) {
|
|
|
|
interrupt_handlers[n] = handler;
|
|
|
|
}
|
|
|
|
|
|
|
|
void irq_handler(registers_t r) {
|
|
|
|
/* After every interrupt we need to send an EOI to the PICs
|
|
|
|
* or they will not send another interrupt again */
|
|
|
|
if (r.int_no >= 40) port_byte_out(0xA0,0x20); /* slave */
|
|
|
|
port_byte_out(0x20,0x20); /* master */
|
|
|
|
/* Handle the interrupt in a more modular way */
|
|
|
|
if (interrupt_handlers[r.int_no] != 0) {
|
|
|
|
isr_t handler = interrupt_handlers[r.int_no];
|
|
|
|
handler(r);
|
|
|
|
}
|
|
|
|
}
|