aboutsummaryrefslogtreecommitdiff
path: root/core/idt.c
blob: a20eb69c2532a28993d79410fbfda69ef065719e (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
/*
 * Copyright (C) 2017 Robin Krahl <robin.krahl@ireas.org>
 * 
 * This program 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 (at your option)
 * any later version.
 *
 * This program 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.
 */

#include <garmos/arch.h>
#include <garmos/gdt.h>
#include <garmos/idt.h>
#include <garmos/kernel.h>
#include <garmos/types.h>

#define IDT_GATE_COUNT 256

struct idt_gate {
	uint16_t handler_lo;
	uint16_t gdt_offset;
	uint8_t reserved;
	uint8_t access;
	uint16_t handler_hi;
} __attribute__((packed));

struct idt_gate idt[IDT_GATE_COUNT];

struct idtp idtp = {
	.limit = IDT_GATE_COUNT * sizeof(*idt) - 1,
	.pointer = idt,
};

static void idt_set(uint8_t no, uint16_t offset, uint32_t handler,
		uint8_t access, uint8_t flags);

void idt_init(void)
{
	uint32_t offset = gdt_get_code_offset();
	uint32_t i;
	uint8_t *no = irqnos;
	uint32_t *addr = irqhdls;

	ker_dbg("Initializing IDT ...");

	for (i = 0; i < IDT_GATE_COUNT; i++)
		idt_set(i, offset, (uint32_t) &irqign, 0, 0xE);

	for (; *no; no++, addr++) {
		if (!*addr)
			continue;
		ker_dbg("Registerung IRQ handler ...");
		idt_set(*no, offset, *addr, 0, 0xE);
	}

	idtset(idtp);
}

void idt_activate(void)
{
	idtact();
}

static void idt_set(uint8_t no, uint16_t offset, uint32_t handler,
		uint8_t access, uint8_t flags)
{
	idt[no].handler_lo = handler & 0xFFFF;
	idt[no].handler_hi = (handler >> 16) & 0xFFFF;
	idt[no].gdt_offset = offset;
	idt[no].reserved = 0;
	idt[no].access = 0x80 | flags | ((access & 0x3) << 5);
}