2019-03-25 23:10:06 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
2019-04-23 17:06:03 +02:00
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
|
|
|
// Desc: Interrupt related functions //
|
|
|
|
// //
|
|
|
|
// //
|
|
|
|
// Copyright © 2018-2019 The OS/K Team //
|
|
|
|
// //
|
|
|
|
// This file is part of OS/K. //
|
|
|
|
// //
|
|
|
|
// OS/K is free software: you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or //
|
|
|
|
// any later version. //
|
|
|
|
// //
|
|
|
|
// OS/K is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
|
2019-03-25 23:10:06 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2019-04-09 17:16:13 +02:00
|
|
|
#include <kernel/base.h>
|
2019-04-01 23:53:36 +02:00
|
|
|
#include <kernel/cpu.h>
|
2019-04-22 20:15:32 +02:00
|
|
|
#include <kernel/boot.h>
|
2019-04-22 22:32:21 +02:00
|
|
|
#include <kernel/iomisc.h>
|
2019-04-23 17:06:03 +02:00
|
|
|
#include <extras/buf.h>
|
2019-04-01 23:51:48 +02:00
|
|
|
|
2019-04-22 20:15:32 +02:00
|
|
|
IdtEntry_t idt[256] = { 0 };
|
|
|
|
IdtPtr_t idtPtr;
|
2019-03-25 23:10:06 +01:00
|
|
|
|
2019-04-22 22:32:21 +02:00
|
|
|
void CpuIdtSetup(void)
|
2019-04-22 20:15:32 +02:00
|
|
|
{
|
2019-04-23 17:06:03 +02:00
|
|
|
// XXX detect the APIC with cpuid !
|
2019-04-22 22:32:21 +02:00
|
|
|
disablePIC();
|
2019-04-01 23:51:48 +02:00
|
|
|
|
2019-04-22 20:15:32 +02:00
|
|
|
ushort codeSeg = (ushort)(ulong)BtLoaderInfo.codeSegment;
|
|
|
|
|
|
|
|
// Set IDT ptr
|
|
|
|
idtPtr.limit = (sizeof(IdtEntry_t) * 256) - 1;
|
|
|
|
idtPtr.base = &idt;
|
|
|
|
|
|
|
|
// Set IDT gates
|
2019-04-23 17:06:03 +02:00
|
|
|
IdtSetGate(0, (ulong)isr0, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(1, (ulong)isr1, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(2, (ulong)isr2, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(3, (ulong)isr3, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(4, (ulong)isr4, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(5, (ulong)isr5, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(6, (ulong)isr6, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(7, (ulong)isr7, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(8, (ulong)isr8, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(9, (ulong)isr9, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(10, (ulong)isr10, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(11, (ulong)isr11, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(12, (ulong)isr12, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(13, (ulong)isr13, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(14, (ulong)isr14, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(15, (ulong)isr15, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(16, (ulong)isr16, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(17, (ulong)isr17, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(18, (ulong)isr18, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(19, (ulong)isr19, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(20, (ulong)isr20, codeSeg, 0x8E);
|
|
|
|
IdtSetGate(21, (ulong)isr21, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(22, (ulong)isr22, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(23, (ulong)isr23, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(24, (ulong)isr24, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(25, (ulong)isr25, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(26, (ulong)isr26, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(27, (ulong)isr27, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(28, (ulong)isr28, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(29, (ulong)isr29, codeSeg, 0x8E); // INTEL RESERVED
|
|
|
|
IdtSetGate(30, (ulong)isr30, codeSeg, 0x8E); // INTEL RESERVED
|
2019-04-22 20:15:32 +02:00
|
|
|
|
|
|
|
// Load IDT
|
2019-04-22 22:32:21 +02:00
|
|
|
DebugLog("[IdtSetup] Filled \n");
|
2019-04-22 20:15:32 +02:00
|
|
|
idtInit();
|
2019-04-22 22:32:21 +02:00
|
|
|
DebugLog("[IdtSetup] Initialized !\n");
|
2019-03-25 23:10:06 +01:00
|
|
|
}
|
2019-04-22 17:19:53 +02:00
|
|
|
|
2019-04-23 17:06:03 +02:00
|
|
|
void IdtSetGate(uchar rank, ulong base, ushort selector, uchar flags)
|
2019-04-22 20:15:32 +02:00
|
|
|
{
|
|
|
|
// Set Base Address
|
|
|
|
idt[rank].baseLow = base & 0xFFFF;
|
|
|
|
idt[rank].baseMid = (base >> 16) & 0xFFFF;
|
|
|
|
idt[rank].baseHigh = (base >> 32) & 0xFFFFFFFF;
|
|
|
|
|
|
|
|
// Set Selector
|
|
|
|
idt[rank].selector = selector;
|
|
|
|
idt[rank].flags = flags;
|
|
|
|
|
|
|
|
// Set Reserved Areas to Zero
|
|
|
|
idt[rank].reservedIst = 0;
|
|
|
|
idt[rank].reserved = 0;
|
|
|
|
}
|
2019-04-22 22:32:21 +02:00
|
|
|
|
|
|
|
void disablePIC(void) {
|
|
|
|
// Set ICW1
|
|
|
|
IoWriteByteOnPort(0x20, 0x11);
|
|
|
|
IoWriteByteOnPort(0xa0, 0x11);
|
|
|
|
|
|
|
|
// Set ICW2 (IRQ base offsets)
|
|
|
|
IoWriteByteOnPort(0x21, 0xe0);
|
|
|
|
IoWriteByteOnPort(0xa1, 0xe8);
|
|
|
|
|
|
|
|
// Set ICW3
|
|
|
|
IoWriteByteOnPort(0x21, 4);
|
|
|
|
IoWriteByteOnPort(0xa1, 2);
|
|
|
|
|
|
|
|
// Set ICW4
|
|
|
|
IoWriteByteOnPort(0x21, 1);
|
|
|
|
IoWriteByteOnPort(0xa1, 1);
|
|
|
|
|
|
|
|
// Set OCW1 (interrupt masks)
|
|
|
|
IoWriteByteOnPort(0x21, 0xff);
|
|
|
|
IoWriteByteOnPort(0xa1, 0xff);
|
|
|
|
|
|
|
|
// ENABLING LOCAL APIC
|
|
|
|
uint *val = (void*)0xfee000f0;
|
|
|
|
*val |= (1<<8);
|
|
|
|
}
|
|
|
|
|
2019-04-23 17:06:03 +02:00
|
|
|
void IdtHandler(ulong intNo)
|
2019-04-22 22:32:21 +02:00
|
|
|
{
|
2019-04-23 17:06:03 +02:00
|
|
|
int irrecoverable = 0;
|
|
|
|
char *exceptionMsg = "Unhandled ISR exception";
|
|
|
|
|
|
|
|
if (intNo == 6 || intNo == 8 || intNo == 13) irrecoverable++;
|
|
|
|
|
|
|
|
if (intNo < 32) exceptionMsg = IsrExceptions[intNo];
|
|
|
|
|
|
|
|
if (irrecoverable) {
|
|
|
|
KeStartPanic("Irrecoverable exception 0x%x : %s\n", intNo, exceptionMsg);
|
|
|
|
} else {
|
|
|
|
bprintf(BStdOut, "Exception 0x%x : %s\n", intNo, exceptionMsg);
|
|
|
|
}
|
|
|
|
|
2019-04-22 22:32:21 +02:00
|
|
|
return;
|
|
|
|
}
|