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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
#include "cpu.h"
#include <stdint.h>
#define GDT_ENTRIES 16
#define IDT_ENTRIES 256
#define CODE_SEG_INDEX 1
#define DATA_SEG_INDEX 2
struct dtr64
{
uint16_t limit;
uint64_t base;
} __attribute__((packed));
struct segment_descriptor
{
uint16_t limit0;
uint16_t base0;
uint8_t base16;
uint8_t access;
uint8_t flags_limit16;
uint8_t base24;
} __attribute__((packed));
enum segment_descriptor_type
{
CODE64_SEG,
DATA_SEG,
};
struct gate_descriptor
{
uint16_t offset0;
uint16_t selector;
uint8_t ist;
uint8_t access;
uint16_t offset16;
uint64_t offset32;
} __attribute__((packed));
enum gate_descriptor_type
{
INT64_GATE,
TRAP64_GATE,
};
// TODO: is 16 enough?
static struct segment_descriptor gdt[GDT_ENTRIES];
static struct gate_descriptor idt[IDT_ENTRIES];
static void set_gdt(int index,
uint64_t base,
uint64_t limit,
enum segment_descriptor_type type)
{
gdt[index].limit0 = limit & 0xffff;
gdt[index].base0 = base & 0xffff;
gdt[index].base16 = (base >> 16) & 0xff;
gdt[index].flags_limit16 = (limit >> 16) & 0xf;
gdt[index].base24 = (base >> 24) & 0xff;
switch (type)
{
case CODE64_SEG:
gdt[index].access = 0x9a;
gdt[index].flags_limit16 |= 0xa0;
break;
case DATA_SEG:
gdt[index].access = 0x92;
gdt[index].flags_limit16 |= 0xc0;
break;
};
}
static void set_idt(int index,
uint16_t selector,
uint64_t offset,
enum gate_descriptor_type type)
{
idt[index].offset0 = offset & 0xffff;
idt[index].selector = selector;
idt[index].offset16 = (offset >> 16) & 0xffff;
idt[index].offset32 = (offset >> 32) & 0xffffffff;
switch (type)
{
case INT64_GATE:
idt[index].access = 0x8e;
break;
case TRAP64_GATE:
idt[index].access = 0x8f;
break;
}
}
static void gdt_init(void)
{
set_gdt(CODE_SEG_INDEX, 0, (uint64_t)-1, CODE64_SEG);
set_gdt(DATA_SEG_INDEX, 0, (uint64_t)-1, DATA_SEG);
struct dtr64 gdtr = {sizeof(gdt) - 1, (uint64_t)&gdt};
__asm__ volatile
(
// can't have interrupts during GDT reload
// but don't re-enable interrupts if they were already disabled
"pushf\n"
"cli\n"
"lgdt %0\n"
"mov %w2, %%ds\n"
"mov %w2, %%es\n"
"mov %w2, %%fs\n"
"mov %w2, %%gs\n"
// make a far return frame on the stack
// [ss] @rsp+8
// [rip] @rsp
"pushq %1\n"
"lea .flush(%%rip), %%rax\n"
"push %%rax\n"
// far return, now we're in the code segment
// defined here.
"lretq\n"
".flush:\n"
"popf\n"
// dependency on pre-boot GDT is now gone
:: "m"(gdtr), "i"(CODE_SEG_INDEX << 3), "r"(DATA_SEG_INDEX << 3)
);
}
static void idt_init(void)
{
struct dtr64 idtr = {sizeof(idt) - 1, (uint64_t)&idt};
__asm__ volatile
(
// can't have interrupts enabled during IDT reload--obviously.
// as with GDT don't re-enable interrupts if they were already
// disabled.
"pushf\n"
"cli\n"
"lidt %0\n"
"popf\n"
// much more straightforward than the gdt code.
:: "m"(idtr)
);
}
void cpu_init(void)
{
gdt_init();
idt_init();
}
|